Skip to content

Commit 19bde62

Browse files
authored
Update README to be in sync with other tools
1 parent b33f743 commit 19bde62

1 file changed

Lines changed: 9 additions & 6 deletions

File tree

CanaryValidator/README.md

Lines changed: 9 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -13,8 +13,9 @@ Set-Location -Path ".\AzureStack-Tools-master\CanaryValidator" -PassThru
1313

1414
# To execute Canary as Tenant Administrator (if Windows Server 2016 or Windows Server 2012-R2 images are already present in the PIR)
1515
```powershell
16-
# Install-Module AzureRM -RequiredVersion 1.2.8 -Scope CurrentUser
17-
# Install-Module AzureStack -RequiredVersion 1.2.8 -Force
16+
# Install-Module -Name 'AzureRm.Bootstrapper' -Scope CurrentUser
17+
# Install-AzureRmProfile -profile '2017-03-09-profile' -Force -Scope CurrentUser
18+
# Install-Module -Name AzureStack -RequiredVersion 1.2.9 -Scope CurrentUser
1819
$TenantAdminCreds = New-Object System.Management.Automation.PSCredential "<Tenant Admin username>", (ConvertTo-SecureString "<Tenant Admin password>" -AsPlainText -Force)
1920
$ServiceAdminCreds = New-Object System.Management.Automation.PSCredential "<Service Admin username>", (ConvertTo-SecureString "<Service Admin password>" -AsPlainText -Force)
2021
.\Canary.Tests.ps1 -TenantID "<TenantID from Azure Active Directory>" -AdminArmEndpoint "<Administrative ARM endpoint>" -ServiceAdminCredentials $ServiceAdminCreds -TenantArmEndpoint "<Tenant ARM endpoint>" -TenantAdminCredentials $TenantAdminCreds -WindowsISOPath "<path where the WS2016 ISO is present>"
@@ -23,17 +24,19 @@ $ServiceAdminCreds = New-Object System.Management.Automation.PSCredential "<Ser
2324
# To execute Canary as Tenant Administrator (if Windows Server 2016 or Windows Server 2012-R2 images are not present in PIR)
2425
```powershell
2526
# Download the WS2016 ISO image from: https://www.microsoft.com/en-us/evalcenter/evaluate-windows-server-2016, and place it on your local machine
26-
# Install-Module AzureRM -RequiredVersion 1.2.8 -Scope CurrentUser
27-
# Install-Module AzureStack-RequiredVersion 1.2.8 -Force
27+
# Install-Module -Name 'AzureRm.Bootstrapper' -Scope CurrentUser
28+
# Install-AzureRmProfile -profile '2017-03-09-profile' -Force -Scope CurrentUser
29+
# Install-Module -Name AzureStack -RequiredVersion 1.2.9 -Scope CurrentUser
2830
$TenantAdminCreds = New-Object System.Management.Automation.PSCredential "<Tenant Admin username>", (ConvertTo-SecureString "<Tenant Admin password>" -AsPlainText -Force)
2931
$ServiceAdminCreds = New-Object System.Management.Automation.PSCredential "<Service Admin username>", (ConvertTo-SecureString "<Service Admin password>" -AsPlainText -Force)
3032
.\Canary.Tests.ps1 -TenantID "<TenantID from Azure Active Directory>" -AdminArmEndpoint "<Administrative ARM endpoint>" -ServiceAdminCredentials $ServiceAdminCreds -TenantArmEndpoint "<Tenant ARM endpoint>" -TenantAdminCredentials $TenantAdminCreds -WindowsISOPath "<path where the WS2016 ISO is present>" -WindowsISOPath "<Local ISO path>"
3133
```
3234

3335
# To execute Canary as Service Administrator
3436
```powershell
35-
# Install-Module AzureRM -RequiredVersion 1.2.8 -Scope CurrentUser
36-
# Install-Module AzureStack-RequiredVersion 1.2.8 -Force
37+
# Install-Module -Name 'AzureRm.Bootstrapper' -Scope CurrentUser
38+
# Install-AzureRmProfile -profile '2017-03-09-profile' -Force -Scope CurrentUser
39+
# Install-Module -Name AzureStack -RequiredVersion 1.2.9 -Scope CurrentUser
3740
$ServiceAdminCreds = New-Object System.Management.Automation.PSCredential "<Service Admin username>", (ConvertTo-SecureString "<Service Admin password>" -AsPlainText -Force)
3841
.\Canary.Tests.ps1 -TenantID "<TenantID from Azure Active Directory>" -AdminArmEndpoint "<Administrative ARM endpoint>" -ServiceAdminCredentials $ServiceAdminCreds -WindowsISOPath "<path where the WS2016 ISO is present>"
3942
```

0 commit comments

Comments
 (0)