잡다한거
Windows Sandbox 설정 파일
Blueknee
2021. 6. 12. 16:55
샌드박스 사용할 때, 몇몇 상황에 따른 WSB 파일
- isolated.wsb : 네트워크 단절
- net-enabled.wsb : 네트워크 연결
공통적으로 호스트 폴더 공유는 태그에 경로를 추가하면, 샌드박스의 Downloads 디렉토리 아래 origin 폴더로 호스트 컴퓨터의 downloads 폴더 접근 가능 (읽기 전용)
* 샌드박스의 downloads 디렉토리로 직접 마운트하지 않은 이유는, 호스트 디렉토리 마운트 시, 읽기 전용으로 설정되어 웹 브라우저에서 파일을 다운받을 때 문제가 생김. -> 다운 디렉토리 변경 가능하나, 귀찮아서...........
* 적용방법은... 아래 파일들을 각각의 파일들로 만들고, 그냥 더블클릭하면 해당 설정으로 실행됩니다. (샌드박스 설치는 공식 사이트 참조)
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<Configuration> | |
<VGpu>Disable</VGpu> | |
<Networking>Disable</Networking> | |
<MappedFolders> | |
<MappedFolder> | |
<HostFolder>[Path on host computer to share with sandbox]</HostFolder> | |
<SandboxFolder>C:\Users\WDAGUtilityAccount\Downloads\origin</SandboxFolder> | |
<ReadOnly>true</ReadOnly> | |
</MappedFolder> | |
</MappedFolders> | |
</Configuration> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<Configuration> | |
<VGpu>Disable</VGpu> | |
<Networking>Enable</Networking> | |
<MappedFolders> | |
<MappedFolder> | |
<HostFolder>[Path on host computer to share with sandbox]</HostFolder> | |
<SandboxFolder>C:\Users\WDAGUtilityAccount\Downloads\origin</SandboxFolder> | |
<ReadOnly>true</ReadOnly> | |
</MappedFolder> | |
</MappedFolders> | |
</Configuration> |