Skip to content

Commit 02fd7c3

Browse files
committed
increasing powershell command readability
1 parent d9a9f4e commit 02fd7c3

File tree

1 file changed

+6
-1
lines changed

1 file changed

+6
-1
lines changed

articles/virtual-machines/windows/run-command-managed.md

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -103,7 +103,12 @@ Set-AzVMRunCommand -ResourceGroupName "myRG" -VMName "myVM" -Location "EastUS" -
103103
`OutputBlobUri` and `ErrorBlobUri` are optional parameters.
104104

105105
```powershell-interactive
106-
Set-AzVMRunCommand -ResourceGroupName -VMName -RunCommandName -SourceScriptUri “< SAS URI of a storage blob with read access or public URI>" -OutputBlobUri “< SAS URI of a storage append blob with read, add, create, write access>” -ErrorBlobUri “< SAS URI of a storage append blob with read, add, create, write access>”
106+
Set-AzVMRunCommand -ResourceGroupName "myRg" `
107+
-VMName "myVM" `
108+
-RunCommandName "RunCommandName" `
109+
-SourceScriptUri “<SAS_URI_of_a_storage_blob_with_read_access_or_public_URI>" `
110+
-OutputBlobUri “<SAS_URI_of_a_storage_append_blob_with_read_add_create_write_access>" `
111+
-ErrorBlobUri “<SAS_URI_of_a_storage_append_blob_with_read_add_create_write_access>”
107112
```
108113

109114

0 commit comments

Comments
 (0)