-
Notifications
You must be signed in to change notification settings - Fork 10
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
3 changed files
with
42 additions
and
35 deletions.
There are no files selected for viewing
This file contains 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
This file contains 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
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,36 @@ | ||
# Windows Sandbox Tips | ||
|
||
You can use *Windows Sandbox* for safe evaluation of this codebase. | ||
|
||
## Install Windows Store and `winget` in Sandbox First | ||
|
||
Right-click on Windows icon, start "Windows Powershell (Admin)" session and do | ||
the following to install Microsoft Store in the Sandbox: | ||
|
||
```psh | ||
Set-ExecutionPolicy Bypass -Scope Process -Force | ||
$url="https://github.com/bonben365/add-store-win-sandbox/raw/main/install.ps1" | ||
iex ((New-Object System.Net.WebClient).DownloadString($url)) | ||
``` | ||
|
||
Exit the current "Windows Powershell (Admin)" session restart another "Windows | ||
Powershell (Admin)" session then proceed to install the Windows Package Manager | ||
(`winget`) in Sandbox using | ||
[these instructions](https://learn.microsoft.com/en-us/windows/package-manager/winget/#install-winget-on-windows-sandbox). | ||
|
||
Exit the current "Windows Powershell (Admin)" session restart another "Windows | ||
Powershell (Admin)" session then proceed. | ||
|
||
## Install PowerShell 7+ and Windows Terminal | ||
|
||
```psh | ||
winget install Microsoft.Powershell | ||
``` | ||
|
||
Exit the current "Windows Powershell (Admin)" session (close the window). | ||
|
||
Click on Windows icon, start "Microsoft Store", search for "Windows Terminal" | ||
and install it. | ||
|
||
Launch Windows Terminal and proceed with "Quick start (Windows)" section in | ||
[README.md](../../README.md). |