https://github.com/applejxd/windows-setup
Initialize Windows 10 by Chocolatey and Boxstarter
https://github.com/applejxd/windows-setup
Last synced: 4 months ago
JSON representation
Initialize Windows 10 by Chocolatey and Boxstarter
- Host: GitHub
- URL: https://github.com/applejxd/windows-setup
- Owner: applejxd
- License: mit
- Created: 2020-12-15T15:10:38.000Z (over 4 years ago)
- Default Branch: main
- Last Pushed: 2024-11-24T01:03:49.000Z (5 months ago)
- Last Synced: 2024-11-24T02:18:06.674Z (5 months ago)
- Language: Python
- Size: 313 KB
- Stars: 1
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
- jimsghstars - applejxd/windows-setup - Initialize Windows 10 by Chocolatey and Boxstarter (Python)
README
# windows-setup
Initialize Windows 10 by Chocolatey and Boxstarter
## How To Use
1. Run a script as administrator
```powershell
Set-ExecutionPolicy Bypass -Scope Process -Force
iex ((new-object net.webclient).DownloadString('https://raw.githubusercontent.com/applejxd/windows-setup/main/deploy.ps1'))
```2. Run a script as current user
```powershell
Set-ExecutionPolicy Bypass -Scope Process -Force
iex ((new-object net.webclient).DownloadString('https://raw.githubusercontent.com/applejxd/windows-setup/main/scoop.ps1'))
# iex ((new-object net.webclient).DownloadString('https://raw.githubusercontent.com/applejxd/windows-setup/main/personal.ps1'))
```3. Enable profile.ps1
```powershell
Set-ExecutionPolicy Bypass -Scope CurrentUser -Force
```