Skip to content

Commit 55b3e8d

Browse files
authored
Merge pull request #54446 from michawets/patch-10
Made the download of the logicappscript more readable
2 parents 70107c9 + b84d365 commit 55b3e8d

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)