Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/torbenmoeller/setup-scripts
Jump start your windows setup or: Install Chrome without using the Internet Explorer
https://github.com/torbenmoeller/setup-scripts
cmd powershell winget
Last synced: 3 months ago
JSON representation
Jump start your windows setup or: Install Chrome without using the Internet Explorer
- Host: GitHub
- URL: https://github.com/torbenmoeller/setup-scripts
- Owner: torbenmoeller
- License: mit
- Created: 2021-08-01T22:23:13.000Z (over 3 years ago)
- Default Branch: main
- Last Pushed: 2021-08-04T20:49:08.000Z (over 3 years ago)
- Last Synced: 2024-05-28T03:20:50.672Z (5 months ago)
- Topics: cmd, powershell, winget
- Language: PowerShell
- Homepage:
- Size: 2.93 KB
- Stars: 2
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
- jimsghstars - torbenmoeller/setup-scripts - Jump start your windows setup or: Install Chrome without using the Internet Explorer (PowerShell)
README
# How to use this project
Execute this script to automatically install software with winget.You can find more information on my [blog post](https://pluvial.dev/post/setup-dev-environment/)
```powershell
$Url = "https://github.com/torbenmoeller/setup-scripts/archive/refs/heads/main.zip"
$DownloadZipFile = "setup-scripts/main.zip"
$ExtractPath = "setup-scripts/unpacked/"
$Location = $ExtractPath + "setup-scripts-main/"
$InstallAllScript = "./install-all.ps1"# Create new folder, if not existing
New-Item -ItemType Directory -Force -Path $ExtractPath
# Download zip file from main branch
Invoke-WebRequest -Uri $Url -OutFile $DownloadZipFile
# Unzip archive
Expand-Archive $DownloadZipFile -DestinationPath $ExtractPath
# Switch inside the unzipped folders
Push-Location $Location
#Run install-all-script
& $InstallAllScript
```# Contact
Get in touch: [email protected]