Skip to content

Commit 305e332

Browse files
committed
move script into azure-docs-powershell-samples
1 parent f2ebe84 commit 305e332

18 files changed

+18
-18
lines changed

articles/application-gateway/application-gateway-create-multisite-azureresourcemanager-powershell.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -223,7 +223,7 @@ for ($i=1; $i -le 2; $i++)
223223
### Install IIS
224224

225225
```azurepowershell-interactive
226-
$publicSettings = @{ "fileUris" = (,"https://raw.githubusercontent.com/davidmu1/samplescripts/master/appgatewayurl.ps1");
226+
$publicSettings = @{ "fileUris" = (,"https://raw.githubusercontent.com/Azure/azure-docs-powershell-samples/master/application-gateway/iis/appgatewayurl.ps1");
227227
"commandToExecute" = "powershell -ExecutionPolicy Unrestricted -File appgatewayurl.ps1" }
228228
229229
for ($i=1; $i -le 2; $i++)

articles/application-gateway/application-gateway-create-multisite-portal.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -99,7 +99,7 @@ In this example, you create two virtual machines to be used as backend servers f
9999
2. Run the following command to install IIS on the virtual machine:
100100

101101
```azurepowershell-interactive
102-
$publicSettings = @{ "fileUris" = (,"https://raw.githubusercontent.com/davidmu1/samplescripts/master/appgatewayurl.ps1"); "commandToExecute" = "powershell -ExecutionPolicy Unrestricted -File appgatewayurl.ps1" }
102+
$publicSettings = @{ "fileUris" = (,"https://raw.githubusercontent.com/Azure/azure-docs-powershell-samples/master/application-gateway/iis/appgatewayurl.ps1"); "commandToExecute" = "powershell -ExecutionPolicy Unrestricted -File appgatewayurl.ps1" }
103103
Set-AzureRmVMExtension `
104104
-ResourceGroupName myResourceGroupAG `
105105
-Location eastus `

articles/application-gateway/application-gateway-create-url-route-arm-ps.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -319,7 +319,7 @@ for ($i=1; $i -le 3; $i++)
319319
### Install IIS
320320

321321
```azurepowershell-interactive
322-
$publicSettings = @{ "fileUris" = (,"https://raw.githubusercontent.com/davidmu1/samplescripts/master/appgatewayurl.ps1");
322+
$publicSettings = @{ "fileUris" = (,"https://raw.githubusercontent.com/Azure/azure-docs-powershell-samples/master/application-gateway/iis/appgatewayurl.ps1");
323323
"commandToExecute" = "powershell -ExecutionPolicy Unrestricted -File appgatewayurl.ps1" }
324324
325325
for ($i=1; $i -le 3; $i++)

articles/application-gateway/application-gateway-create-url-route-portal.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -100,7 +100,7 @@ In this example, you create three virtual machines to be used as backend servers
100100
2. Run the following command to install IIS on the virtual machine:
101101

102102
```azurepowershell-interactive
103-
$publicSettings = @{ "fileUris" = (,"https://raw.githubusercontent.com/davidmu1/samplescripts/master/appgatewayurl.ps1"); "commandToExecute" = "powershell -ExecutionPolicy Unrestricted -File appgatewayurl.ps1" }
103+
$publicSettings = @{ "fileUris" = (,"https://raw.githubusercontent.com/Azure/azure-docs-powershell-samples/master/application-gateway/iis/appgatewayurl.ps1"); "commandToExecute" = "powershell -ExecutionPolicy Unrestricted -File appgatewayurl.ps1" }
104104
Set-AzureRmVMExtension `
105105
-ResourceGroupName myResourceGroupAG `
106106
-Location eastus `

articles/application-gateway/application-gateway-ssl-arm.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -230,7 +230,7 @@ New-AzureRmVmss `
230230
### Install IIS
231231

232232
```azurepowershell-interactive
233-
$publicSettings = @{ "fileUris" = (,"https://raw.githubusercontent.com/davidmu1/samplescripts/master/appgatewayurl.ps1");
233+
$publicSettings = @{ "fileUris" = (,"https://raw.githubusercontent.com/Azure/azure-docs-powershell-samples/master/application-gateway/iis/appgatewayurl.ps1");
234234
"commandToExecute" = "powershell -ExecutionPolicy Unrestricted -File appgatewayurl.ps1" }
235235
$vmss = Get-AzureRmVmss -ResourceGroupName myResourceGroupAG -VMScaleSetName myvmss
236236
Add-AzureRmVmssExtension -VirtualMachineScaleSet $vmss `

articles/application-gateway/create-multiple-sites-portal.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -100,7 +100,7 @@ In this example, you create two virtual machines to be used as backend servers f
100100
2. Run the following command to install IIS on the virtual machine:
101101

102102
```azurepowershell-interactive
103-
$publicSettings = @{ "fileUris" = (,"https://raw.githubusercontent.com/davidmu1/samplescripts/master/appgatewayurl.ps1"); "commandToExecute" = "powershell -ExecutionPolicy Unrestricted -File appgatewayurl.ps1" }
103+
$publicSettings = @{ "fileUris" = (,"https://raw.githubusercontent.com/Azure/azure-docs-powershell-samples/master/application-gateway/iis/appgatewayurl.ps1"); "commandToExecute" = "powershell -ExecutionPolicy Unrestricted -File appgatewayurl.ps1" }
104104
Set-AzureRmVMExtension `
105105
-ResourceGroupName myResourceGroupAG `
106106
-Location eastus `

articles/application-gateway/create-url-route-portal.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -101,7 +101,7 @@ In this example, you create three virtual machines to be used as backend servers
101101
2. Run the following command to install IIS on the virtual machine:
102102

103103
```azurepowershell-interactive
104-
$publicSettings = @{ "fileUris" = (,"https://raw.githubusercontent.com/davidmu1/samplescripts/master/appgatewayurl.ps1"); "commandToExecute" = "powershell -ExecutionPolicy Unrestricted -File appgatewayurl.ps1" }
104+
$publicSettings = @{ "fileUris" = (,"https://raw.githubusercontent.com/Azure/azure-docs-powershell-samples/master/application-gateway/iis/appgatewayurl.ps1"); "commandToExecute" = "powershell -ExecutionPolicy Unrestricted -File appgatewayurl.ps1" }
105105
Set-AzureRmVMExtension `
106106
-ResourceGroupName myResourceGroupAG `
107107
-Location eastus `

articles/application-gateway/redirect-http-to-https-powershell.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -301,7 +301,7 @@ New-AzureRmVmss `
301301
### Install IIS
302302

303303
```powershell
304-
$publicSettings = @{ "fileUris" = (,"https://raw.githubusercontent.com/davidmu1/samplescripts/master/appgatewayurl.ps1");
304+
$publicSettings = @{ "fileUris" = (,"https://raw.githubusercontent.com/Azure/azure-docs-powershell-samples/master/application-gateway/iis/appgatewayurl.ps1");
305305
"commandToExecute" = "powershell -ExecutionPolicy Unrestricted -File appgatewayurl.ps1" }
306306
$vmss = Get-AzureRmVmss -ResourceGroupName myResourceGroupAG -VMScaleSetName myvmss
307307
Add-AzureRmVmssExtension -VirtualMachineScaleSet $vmss `

articles/application-gateway/redirect-internal-site-powershell.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -265,7 +265,7 @@ New-AzureRmVmss `
265265
### Install IIS
266266

267267
```azurepowershell-interactive
268-
$publicSettings = @{ "fileUris" = (,"https://raw.githubusercontent.com/davidmu1/samplescripts/master/appgatewayurl.ps1");
268+
$publicSettings = @{ "fileUris" = (,"https://raw.githubusercontent.com/Azure/azure-docs-powershell-samples/master/application-gateway/iis/appgatewayurl.ps1");
269269
"commandToExecute" = "powershell -ExecutionPolicy Unrestricted -File appgatewayurl.ps1" }
270270
$vmss = Get-AzureRmVmss -ResourceGroupName myResourceGroupAG -VMScaleSetName myvmss
271271
Add-AzureRmVmssExtension -VirtualMachineScaleSet $vmss `

articles/application-gateway/tutorial-create-vmss-powershell.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -188,7 +188,7 @@ New-AzureRmVmss `
188188
### Install IIS
189189

190190
```azurepowershell-interactive
191-
$publicSettings = @{ "fileUris" = (,"https://raw.githubusercontent.com/davidmu1/samplescripts/master/appgatewayurl.ps1");
191+
$publicSettings = @{ "fileUris" = (,"https://raw.githubusercontent.com/Azure/azure-docs-powershell-samples/master/application-gateway/iis/appgatewayurl.ps1");
192192
"commandToExecute" = "powershell -ExecutionPolicy Unrestricted -File appgatewayurl.ps1" }
193193
$vmss = Get-AzureRmVmss -ResourceGroupName myResourceGroupAG -VMScaleSetName myvmss
194194
Add-AzureRmVmssExtension -VirtualMachineScaleSet $vmss `

0 commit comments

Comments
 (0)