Added content types to code blocks

This commit is contained in:
Gary Moore 2020-03-27 13:55:32 -07:00 committed by GitHub
parent aaad6c1bb4
commit 00bb5bf330
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -60,7 +60,7 @@ Supported values:
**Mapped folders**: An array of folders, each representing a location on the host machine that will be shared into the sandbox at the specified path. At this time, relative paths are not supported. If no path is specified, the folder will be mapped to the container user's desktop. **Mapped folders**: An array of folders, each representing a location on the host machine that will be shared into the sandbox at the specified path. At this time, relative paths are not supported. If no path is specified, the folder will be mapped to the container user's desktop.
``` ```xml
<MappedFolders> <MappedFolders>
<MappedFolder> <MappedFolder>
<HostFolder>absolute path to the host folder</HostFolder> <HostFolder>absolute path to the host folder</HostFolder>
@ -85,7 +85,7 @@ Supported values:
**Logon command**: Specifies a single command that will be invoked automatically after the sandbox logs on. Apps in the sandbox are run under the container user account. **Logon command**: Specifies a single command that will be invoked automatically after the sandbox logs on. Apps in the sandbox are run under the container user account.
``` ```xml
<LogonCommand> <LogonCommand>
<Command>command to be invoked</Command> <Command>command to be invoked</Command>
</LogonCommand> </LogonCommand>
@ -160,7 +160,7 @@ The following config file can be used to easily test downloaded files inside the
*Downloads.wsb* *Downloads.wsb*
``` ```xml
<Configuration> <Configuration>
<VGpu>Disable</VGpu> <VGpu>Disable</VGpu>
<Networking>Disable</Networking> <Networking>Disable</Networking>
@ -176,6 +176,7 @@ The following config file can be used to easily test downloaded files inside the
</LogonCommand> </LogonCommand>
</Configuration> </Configuration>
``` ```
***Example 2*** ***Example 2***
The following config file installs Visual Studio Code in the sandbox, which requires a slightly more complicated LogonCommand setup. The following config file installs Visual Studio Code in the sandbox, which requires a slightly more complicated LogonCommand setup.
@ -186,7 +187,7 @@ With the Visual Studio Code installer script already mapped into the sandbox, th
*VSCodeInstall.cmd* *VSCodeInstall.cmd*
``` ```console
REM Download Visual Studio Code REM Download Visual Studio Code
curl -L "https://update.code.visualstudio.com/latest/win32-x64-user/stable" --output C:\users\WDAGUtilityAccount\Desktop\vscode.exe curl -L "https://update.code.visualstudio.com/latest/win32-x64-user/stable" --output C:\users\WDAGUtilityAccount\Desktop\vscode.exe
@ -196,7 +197,7 @@ C:\users\WDAGUtilityAccount\Desktop\vscode.exe /verysilent /suppressmsgboxes
*VSCode.wsb* *VSCode.wsb*
``` ```xml
<Configuration> <Configuration>
<MappedFolders> <MappedFolders>
<MappedFolder> <MappedFolder>