-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsample-config.wsb
More file actions
54 lines (45 loc) · 2.09 KB
/
sample-config.wsb
File metadata and controls
54 lines (45 loc) · 2.09 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
<Configuration>
<!-- GPU Virtualization - Enable for better graphics performance -->
<VGpu>Enable</VGpu>
<!-- Networking - Enable for internet access -->
<Networking>Enable</Networking>
<!-- Memory allocation - 8GB for development work -->
<MemoryInMB>8192</MemoryInMB>
<!-- Audio Input - Enable microphone access -->
<AudioInput>Enable</AudioInput>
<!-- Video Input - Disable webcam for security -->
<VideoInput>Disable</VideoInput>
<!-- Protected Client - Enhanced security with AppContainer Isolation -->
<ProtectedClient>Disable</ProtectedClient>
<!-- Printer Redirection - Disable for security -->
<PrinterRedirection>Disable</PrinterRedirection>
<!-- Clipboard Redirection - Enable for easy file sharing -->
<ClipboardRedirection>Enable</ClipboardRedirection>
<!-- Mapped Folders - Share host folders with sandbox -->
<MappedFolders>
<MappedFolder>
<HostFolder>C:\Users\%USERNAME%\Desktop</HostFolder>
<SandboxFolder>C:\Users\WDAGUtilityAccount\Desktop</SandboxFolder>
<ReadOnly>false</ReadOnly>
</MappedFolder>
<MappedFolder>
<HostFolder>C:\Users\%USERNAME%\Documents</HostFolder>
<SandboxFolder>C:\Users\WDAGUtilityAccount\Documents</SandboxFolder>
<ReadOnly>false</ReadOnly>
</MappedFolder>
<MappedFolder>
<HostFolder>C:\Users\%USERNAME%\Downloads</HostFolder>
<SandboxFolder>C:\Users\WDAGUtilityAccount\Downloads</SandboxFolder>
<ReadOnly>true</ReadOnly>
</MappedFolder>
<MappedFolder>
<HostFolder>C:\Temp</HostFolder>
<SandboxFolder>C:\Temp</SandboxFolder>
<ReadOnly>true</ReadOnly>
</MappedFolder>
</MappedFolders>
<!-- Logon Command - Open Microsoft Edge and Notepad on startup -->
<LogonCommand>
<Command>cmd.exe /c start microsoft-edge:https://www.microsoft.com && start notepad.exe</Command>
</LogonCommand>
</Configuration>