Skip to content

Instantly share code, notes, and snippets.

View kev494's full-sized avatar

Kevin Schäfer kev494

View GitHub Profile
@kev494
kev494 / Update-AUPackages.md
Last active August 26, 2021 00:23
Update-AUPackages Report #powershell #chocolatey
@kev494
kev494 / Install-NeededSoftware.ps1
Last active January 18, 2021 08:14
Setup SW for my device
# Install Chocolatey
Set-ExecutionPolicy Bypass -Scope Process -Force; [System.Net.ServicePointManager]::SecurityProtocol = [System.Net.ServicePointManager]::SecurityProtocol -bor 3072; iex ((New-Object System.Net.WebClient).DownloadString('https://chocolatey.org/install.ps1'))
. C:\ProgramData\chocolatey\bin\RefreshEnv.cmd
#Install SW
choco upgrade 7zip -y
choco upgrade discord -y
choco upgrade foxitreader -y
choco upgrade git -y
choco upgrade microsoft-edge -y