InitalCommit
This commit is contained in:
24
InstallTools/Install-From-Choco-PKGSlist.cmd
Normal file
24
InstallTools/Install-From-Choco-PKGSlist.cmd
Normal file
@@ -0,0 +1,24 @@
|
||||
@echo off
|
||||
|
||||
REM #############################################################
|
||||
REM # @description: #
|
||||
REM # Installes software listed in Choco-PGKS.list #
|
||||
REM # using the Chocolatry package manager #
|
||||
REM # #
|
||||
REM # @project: IMGSystTools #
|
||||
REM # @author: Bram Prieshof #
|
||||
REM #############################################################
|
||||
|
||||
|
||||
NET SESSION >nul 2>&1
|
||||
IF %ERRORLEVEL% EQU 0 (
|
||||
echo Install packages listed in Choco-PKGS.list
|
||||
pause
|
||||
PowerShell.exe "$content = [IO.File]::ReadAllText("C:\SysTools\InstallTools\Choco-PKGS.list"); choco install $content -y"
|
||||
echo Chocolatey installed
|
||||
pasue
|
||||
) ELSE (
|
||||
echo Please run this script as administrator
|
||||
pause
|
||||
)
|
||||
|
||||
Reference in New Issue
Block a user