Skip to content

Instantly share code, notes, and snippets.

View Qwizi's full-sized avatar
🎯
Focusing

Adrian Ciołek Qwizi

🎯
Focusing
View GitHub Profile
@Qwizi
Qwizi / InstallSoftware.ps1
Last active January 14, 2025 11:11 — forked from dougwaldron/InstallSoftware.ps1
Install software with winget / automate installation with PowerShell
# 1. Make sure the Microsoft App Installer is installed:
# https://www.microsoft.com/en-us/p/app-installer/9nblggh4nns1
# 2. Edit the list of apps to install.
# 3. Run this script as administrator.
Write-Output "Installing Apps"
$apps = @(
@{name = "7zip.7zip" },
@{name = "Adobe.Acrobat.Reader.64-bit" },
@{name = "Microsoft.Office" },