Skip to content

Commit b84d365

Browse files
authored
Made the download of the logicappscript more readable
change at section "3. Run the following cmdlet to download the createazurelogicapp.ps1 script file on your local machine." Made the download of the logicappscript more readable
1 parent 70107c9 commit b84d365

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

articles/virtual-desktop/virtual-desktop-fall-2019/set-up-scaling-script.md

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -156,7 +156,9 @@ Finally, you'll need to create the Azure Logic App and set up an execution sched
156156
3. Run the following cmdlet to download the createazurelogicapp.ps1 script file on your local machine.
157157
158158
```powershell
159-
Invoke-WebRequest -Uri "https://raw.githubusercontent.com/Azure/RDS-Templates/master/wvd-templates/wvd-scaling-script/createazurelogicapp.ps1" -OutFile "your local machine path\ createazurelogicapp.ps1"
159+
Set-Location -Path "c:\temp"
160+
$uri = "https://raw.githubusercontent.com/Azure/RDS-Templates/master/wvd-templates/wvd-scaling-script/createazurelogicapp.ps1"
161+
Invoke-WebRequest -Uri $uri -OutFile ".\createazurelogicapp.ps1"
160162
```
161163
162164
4. Run the following cmdlet to sign into Windows Virtual Desktop with an account that has RDS Owner or RDS Contributor permissions.

0 commit comments

Comments
 (0)