You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
# Copyright (c) Microsoft Corporation. All rights reserved.
3
+
.SYNOPSIS
4
+
This script initiates a resource synchronization job in the backend, fixing the documented known issue where the Storage Account Overview does not load within Azure Stack portals (both Admin and User portals) for Storage accounts created with "apiVersion": "2015-06-15".
5
+
6
+
.DESCRIPTION
7
+
Created to be run on the HLH, DVM, ASDK HOST or Jumpbox from an administrative powershell session.
8
+
Start-ResourceSynchronization.ps1 must be run after the user has logged in as the Service Admin to the Default Provider Subscription within their Azure Stack subscription.
9
+
10
+
Applies to: Azure Stack Integraded System and ASDK
11
+
Relevant build(s): 1802
12
+
13
+
It can be run without any parameters - if done so, it will initiate the resource synchronization on the Default Provider Subscription as well as any available User Subscriptions.
14
+
NOTE: A warning will be thrown (-WarningAction Inquire) if more than 10 subscriptions exist, as there could be a performance impact during the execution of the resource synchronization agianst all the user subscriptions at once.
15
+
Alternatively, the script can be run one subscription at a time, leveraging the optional SubscriptionId parameter.
16
+
17
+
.PARAMETERSubscriptionId
18
+
OPTIONAL [Guid] parameter specifying a single subscription to run the resource synchronization against.
19
+
Use this option for targeted subscription resource synchronization.
Write-Warning"You have more than 10 subscriptions. Synchronizing all these subscriptions might cause performance degradation during the resynchronization period."-WarningAction Inquire
0 commit comments