-
-
Save miraficus/d35d5a4ecb42d9c9ff132c630bab6b97 to your computer and use it in GitHub Desktop.
DevMachineSetup
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
#Install WinGet | |
#Based on this gist: https://gist.github.com/crutkas/6c2096eae387e544bd05cde246f23901 | |
$hasPackageManager = Get-AppPackage -name 'Microsoft.DesktopAppInstaller' | |
if (!$hasPackageManager -or [version]$hasPackageManager.Version -lt [version]"1.10.0.0") { | |
"Installing winget Dependencies" | |
Add-AppxPackage -Path 'https://aka.ms/Microsoft.VCLibs.x64.14.00.Desktop.appx' | |
$releases_url = 'https://api.github.com/repos/microsoft/winget-cli/releases/latest' | |
[Net.ServicePointManager]::SecurityProtocol = [Net.SecurityProtocolType]::Tls12 | |
$releases = Invoke-RestMethod -uri $releases_url | |
$latestRelease = $releases.assets | Where { $_.browser_download_url.EndsWith('msixbundle') } | Select -First 1 | |
"Installing winget from $($latestRelease.browser_download_url)" | |
Add-AppxPackage -Path $latestRelease.browser_download_url | |
} | |
else { | |
"winget already installed" | |
} | |
#Configure WinGet | |
Write-Output "Configuring winget" | |
#winget config path from: https://github.com/microsoft/winget-cli/blob/master/doc/Settings.md#file-location | |
$settingsPath = "$env:LOCALAPPDATA\Packages\Microsoft.DesktopAppInstaller_8wekyb3d8bbwe\LocalState\settings.json"; | |
$settingsJson = | |
@" | |
{ | |
// For documentation on these settings, see: https://aka.ms/winget-settings | |
"experimentalFeatures": { | |
"experimentalMSStore": true, | |
} | |
} | |
"@; | |
$settingsJson | Out-File $settingsPath -Encoding utf8 | |
#Install New apps | |
Write-Output "Installing Apps" | |
$apps = @( | |
@{name = "VSCodium.VSCodium" }, | |
@{name = "Microsoft.PowerToys" }, | |
@{name = "Git.Git" }, | |
@{name = "Microsoft.dotnet" }, | |
@{name = "Google.Chrome" }, | |
@{name = "Discord.Discord" }, | |
@{name = "VideoLAN.VLC" }, | |
@{name = "SublimeHQ.SublimeText.4" }, | |
@{name = "LibreWolf.LibreWolf" }, | |
@{name = "Mozilla.Thunderbird" }, | |
@{name = "Logitech.GHUB" }, | |
@{name = "GitHub.GitHubDesktop" }, | |
@{name = "7zip.7zip" }, | |
@{name = "DuongDieuPhap.ImageGlass" }, | |
@{name = "KDE.KDEConnect" }, | |
@{name = "Balena.Etcher" }, | |
@{name = "Ultimaker.Cura" }, | |
@{name = "RaspberryPiFoundation.RaspberryPiImager" }, | |
@{name = "qBittorrent.qBittorrent" }, | |
@{name = "OpenVPNTechnologies.OpenVPNConnect" }, | |
@{name = "ONLYOFFICE.DesktopEditors" }, | |
@{name = "OBSProject.OBSStudio" }, | |
@{name = "Guru3D.Afterburner" }, | |
@{name = "AppWork.JDownloader" }, | |
@{name = "REALiX.HWiNFO" }, | |
@{name = "darktable.darktable" }, | |
@{name = "GitHub.cli" } | |
); | |
Foreach ($app in $apps) { | |
$listApp = winget list --exact -q $app.name --accept-source-agreements | |
if (![String]::Join("", $listApp).Contains($app.name)) { | |
Write-host "Installing:" $app.name | |
if ($app.source -ne $null) { | |
winget install --exact --silent $app.name --source $app.source --accept-source-agreements | |
} | |
else { | |
winget install --exact --silent $app.name --accept-source-agreements | |
} | |
} | |
else { | |
Write-host "Skipping Install of " $app.name | |
} | |
} | |
#Remove Apps | |
Write-Output "Removing Apps" | |
$apps = "*3DPrint*", "Microsoft.MixedReality.Portal" | |
Foreach ($app in $apps) | |
{ | |
Write-host "Uninstalling:" $app | |
Get-AppxPackage -allusers $app | Remove-AppxPackage | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Paste Into Powershell
iex ((New-Object System.Net.WebClient).DownloadString('https://gist.githubusercontent.com/miraficus/d35d5a4ecb42d9c9ff132c630bab6b97/raw/9e0babb44d15a2980915b710ad8dc97efbfdbd82/DevMachineSetup.ps1'))
Reboot After