Last active
March 26, 2023 01:14
-
-
Save dorbeus/d993936d817ee5342e53b93304734008 to your computer and use it in GitHub Desktop.
choco
This file contains hidden or 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 chocolatey | |
Set-ExecutionPolicy Bypass -Scope Process -Force; iex ((New-Object System.Net.WebClient).DownloadString('https://chocolatey.org/install.ps1')) | |
#generate list of installed applications with exact version | |
choco list -lo -r -y | % { "choco install " + $_.Replace("|", " ") + " -y" } | |
#generate list of installed application without version. | |
choco list -lo --id-only -y | % { "choco install " + $_.Replace("|", " ") + " -y" } | |
#install applications. | |
choco install 7zip -y | |
choco install adobereader -y | |
choco install ditto -y | |
choco install ditto.install -y | |
choco install drawio -y | |
choco install Everything -y | |
choco install filezilla -y | |
choco install Firefox -y | |
choco install git -y | |
choco install GoogleChrome -y | |
choco install grepwin -y | |
choco install hashcheck -y | |
choco install javaruntime -y | |
choco install jre8 -y | |
choco install kubernetes-cli -y | |
choco install LinkShellExtension -y | |
choco install maven -y | |
choco install notepadplusplus -y | |
choco install openssl -y | |
choco install packer -y | |
choco install paint.net -y | |
choco install PDFCreator -y | |
choco install picasa -y | |
choco install putty -y | |
choco install rapidee -y | |
choco install rdcman -y | |
choco install Sudo -y | |
choco install sysinternals -y | |
choco install tortoisegit -y | |
choco install tortoisesvn -y | |
choco install virtualbox -y | |
choco install VirtualBox.ExtensionPack -y | |
choco install vlc -y | |
choco install vscode -y | |
choco install windirstat -y | |
choco install microsoft-windows-terminal -y | |
choco install winmerge -y | |
choco install WinPcap -y | |
choco install wireshark -y | |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment