InitalCommit
This commit is contained in:
1
InstallTools/Choco-PKGS.list
Normal file
1
InstallTools/Choco-PKGS.list
Normal file
@@ -0,0 +1 @@
|
||||
7zip bulk-crap-uninstaller caesium.install firefox gimp handbrake inkscape libreoffice-fresh notepadplusplus paint.net pdfsam.install pnggauntlet.install vlc vscode.install xnconvert.install choco install googlechrome pswindowsupdate git
|
||||
15
InstallTools/Download-OandO-Tools.cmd
Normal file
15
InstallTools/Download-OandO-Tools.cmd
Normal file
@@ -0,0 +1,15 @@
|
||||
@echo off
|
||||
REM ###################################################
|
||||
REM # @description: #
|
||||
REM # Download O&O Shutup 10 and App buster #
|
||||
REM # These tools are used for setting up the image #
|
||||
REM # #
|
||||
REM # @project: IMGSystTools #
|
||||
REM # @author: Bram Prieshof #
|
||||
REM ###################################################
|
||||
|
||||
PowerShell.exe "Invoke-WebRequest -UseBasicParsing -Uri https://dl5.oo-software.com/files/ooshutup10/OOSU10.exe -OutFile C:\SysTools\InstallTools\OOSU10.exe; Invoke-WebRequest -UseBasicParsing -Uri https://dl5.oo-software.com/files/ooappbuster/OOAPB.exe -OutFile C:\SysTools\InstallTools\OOAPB.exe.exe"
|
||||
echo Downlaod [OK]
|
||||
pause
|
||||
|
||||
|
||||
21
InstallTools/Install-Chocolatey.cmd
Normal file
21
InstallTools/Install-Chocolatey.cmd
Normal file
@@ -0,0 +1,21 @@
|
||||
@echo off
|
||||
|
||||
REM #############################################################
|
||||
REM # @description: #
|
||||
REM # Downloads and install Chocolatry #
|
||||
REM # This tools is used for installing and managing software #
|
||||
REM # #
|
||||
REM # @project: IMGSystTools #
|
||||
REM # @author: Bram Prieshof #
|
||||
REM #############################################################
|
||||
|
||||
NET SESSION >nul 2>&1
|
||||
IF %ERRORLEVEL% EQU 0 (
|
||||
PowerShell.exe "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'))"
|
||||
ECHO Chocolatey installed
|
||||
PAUSE
|
||||
) ELSE (
|
||||
ECHO Please run this script as administrator
|
||||
PAUSE
|
||||
)
|
||||
|
||||
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
|
||||
)
|
||||
|
||||
20
InstallTools/Remove-AdobeNotificationClient.cmd
Normal file
20
InstallTools/Remove-AdobeNotificationClient.cmd
Normal file
@@ -0,0 +1,20 @@
|
||||
@echo off
|
||||
REM #######################################
|
||||
REM # @description: #
|
||||
REM # Removes AdobeNotificationClient #
|
||||
REM # Run this just before sysprep, #
|
||||
REM # since this app conflicts with it #
|
||||
REM # #
|
||||
REM # @project: IMGSystTools #
|
||||
REM # @author: Bram Prieshof #
|
||||
REM #######################################
|
||||
|
||||
NET SESSION >nul 2>&1
|
||||
IF %ERRORLEVEL% EQU 0 (
|
||||
PowerShell.exe "Get-AppxPackage -AllUsers *AdobeNotificationClient* | Remove-AppxPackage -AllUsers"
|
||||
ECHO AdobeNotificationClient Removed
|
||||
PAUSE
|
||||
) ELSE (
|
||||
ECHO Please run this script as administrator
|
||||
PAUSE
|
||||
)
|
||||
Reference in New Issue
Block a user