We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent b69765a commit 39365bdCopy full SHA for 39365bd
1 file changed
Infrastructure/README.md
@@ -429,9 +429,12 @@ Get-AzSAlert -AzureStackCredentials $credential -TenantID $TenantID -Environment
429
This command modifies an Azure Stack instance's latitude and longitude location
430
431
```powershell
432
+$EnvironmentName = "AzureStackAdmin"
433
$credential = Get-Credential
434
$latitude = '12.972442'
435
$longitude = '77.580643'
436
$regionName = 'local'
437
+
438
+$TenantID = Get-DirectoryTenantID -AADTenantName $directoryName -EnvironmentName AzureStackAdmin
439
Set-AzSLocationInformation -TenantID $AadTenant -EnvironmentName $EnvironmentName -AzureStackCredentials $credential -Region $regionName -Latitude $latitude -Longitude $longitude
-```
440
+```
0 commit comments