Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/jetersen/setup
Personal setup
https://github.com/jetersen/setup
setup windows windows-10 wsl
Last synced: 2 months ago
JSON representation
Personal setup
- Host: GitHub
- URL: https://github.com/jetersen/setup
- Owner: jetersen
- License: mit
- Created: 2017-01-21T12:41:01.000Z (almost 8 years ago)
- Default Branch: main
- Last Pushed: 2024-11-07T12:05:33.000Z (2 months ago)
- Last Synced: 2024-11-07T13:19:55.248Z (2 months ago)
- Topics: setup, windows, windows-10, wsl
- Language: PowerShell
- Homepage:
- Size: 139 KB
- Stars: 8
- Watchers: 3
- Forks: 7
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
- jimsghstars - jetersen/setup - Personal setup (PowerShell)
README
# Personal setup
I frequently need to run my setup, so I written it into scripts.
## ClickOnce Microsoft Edge
* [Home Setup](https://boxstarter.org/package/url?https://raw.githubusercontent.com/jetersen/setup/main/windows-home.ps1)
* [Work Setup](https://boxstarter.org/package/url?https://raw.githubusercontent.com/jetersen/setup/main/windows-work.ps1)## Backup ways to run
### ClickOnce Chromium Edge
```powershell
$path = "HKLM:\SOFTWARE\Policies\Microsoft\Edge"; New-Item $path -Force | Out-Null; Set-ItemProperty -LiteralPath "$PATH" ClickOnceEnabled 1; start https://boxstarter.org/package/url?https://raw.githubusercontent.com/jetersen/setup/main/windows-home.ps1
```### Install from Windows Powershell
```powershell
Set-ExecutionPolicy Bypass -Scope Process -Force `
[System.Net.ServicePointManager]::SecurityProtocol = [System.Net.ServicePointManager]::SecurityProtocol -bor 3072 `
iex ((New-Object System.Net.WebClient).DownloadString('https://boxstarter.org/bootstrapper.ps1')) `
Get-Boxstarter -Force `
Install-BoxstarterPackage -PackageName https://raw.githubusercontent.com/jetersen/setup/main/windows-home.ps1
```## Linux
```bash
curl -s https://raw.githubusercontent.com/jetersen/setup/main/linux.sh | bash
```