Skip to content

Commit 556102c

Browse files
committed
Adding details about the WS2016 ISO image
1 parent dbaa708 commit 556102c

1 file changed

Lines changed: 11 additions & 1 deletion

File tree

CanaryValidator/README.md

Lines changed: 11 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ Expand-Archive master.zip -DestinationPath . -Force
1212
Set-Location -Path ".\AzureStack-Tools-master\CanaryValidator" -PassThru
1313
```
1414

15-
# To execute Canary as Tenant Administrator
15+
# To execute Canary as Tenant Administrator (if Windows Server 2016 or Windows Server 2012-R2 images are already present in the PIR)
1616
```powershell
1717
# Install-Module AzureRM -RequiredVersion 1.2.8 -Force
1818
# Install-Module AzureStack
@@ -21,6 +21,16 @@ $ServiceAdminCreds = New-Object System.Management.Automation.PSCredential "<Ser
2121
.\Canary.Tests.ps1 -AADTenantID "<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>"
2222
```
2323

24+
# To execute Canary as Tenant Administrator (if Windows Server 2016 or Windows Server 2012-R2 images are not present in PIR)
25+
```powershell
26+
# Download the WS2016 ISO image from: https://www.microsoft.com/en-us/evalcenter/evaluate-windows-server-2016, and place it on your local machine
27+
# Install-Module AzureRM -RequiredVersion 1.2.8 -Force
28+
# Install-Module AzureStack
29+
$TenantAdminCreds = New-Object System.Management.Automation.PSCredential "<Tenant Admin username>", (ConvertTo-SecureString "<Tenant Admin password>" -AsPlainText -Force)
30+
$ServiceAdminCreds = New-Object System.Management.Automation.PSCredential "<Service Admin username>", (ConvertTo-SecureString "<Service Admin password>" -AsPlainText -Force)
31+
.\Canary.Tests.ps1 -AADTenantID "<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>"
32+
```
33+
2434
# To execute Canary as Service Administrator
2535
```powershell
2636
# Install-Module AzureRM -RequiredVersion 1.2.8 -Force

0 commit comments

Comments
 (0)