Skip to content

Instantly share code, notes, and snippets.

View Aeontanvir's full-sized avatar

Md Tanvir Rahman Khan Aeontanvir

View GitHub Profile
@Aeontanvir
Aeontanvir / install-choco-script.bat
Last active January 27, 2023 09:37 — forked from fmtarif/install-choco-script.bat
Chocolatey install script (PowerShell) - Install software and web development dependencies automatically in Windows through a script
:: Open Windows PowerShell in Administrative mode and run this file, i.e., ./install-choco-script.bat
@powershell -NoProfile -ExecutionPolicy Bypass -Command "iex ((New-Object System.Net.WebClient).DownloadString('https://chocolatey.org/install.ps1'))" && SET "PATH=%PATH%;%ALLUSERSPROFILE%\chocolatey\bin"
:: Install Applications
choco install vcredist2010 -fy
choco install flashplayerplugin -fy
choco install k-litecodecpackfull -fy
choco install ffmpeg -fy
choco install jre8 -fy
choco install javaruntime -fy