diff --git a/scripts/autoconfig-all.cmd b/scripts/autoconfig-all.cmd index 984e829..894b7f1 100644 --- a/scripts/autoconfig-all.cmd +++ b/scripts/autoconfig-all.cmd @@ -37,6 +37,10 @@ rem echo DISABLE firewall ... rem netsh advfirewall set allprofiles state off rem echo. +rem this must be done EARLY! +call disable-updates.cmd +echo. + rem allow execution of any powershell script ... powershell -Command "Set-ExecutionPolicy -ExecutionPolicy Bypass -Scope LocalMachine" powershell -Command ^ diff --git a/scripts/disable-updates.cmd b/scripts/disable-updates.cmd new file mode 100644 index 0000000..bde6fa9 --- /dev/null +++ b/scripts/disable-updates.cmd @@ -0,0 +1,11 @@ +@echo off +set TOOLS=c:\tools + +echo ####### %0 ####### + +echo disabling UPDATES for ALL users ... +%TOOLS%\wub.exe /D /P +echo FUCK YOU MICROSOFT ! + +echo ####### %0 ####### + diff --git a/scripts/install-receiver.cmd b/scripts/install-receiver.cmd index 4412786..e5e2072 100644 --- a/scripts/install-receiver.cmd +++ b/scripts/install-receiver.cmd @@ -7,5 +7,12 @@ echo ####### %0 ####### echo installing Citrix Receiver LTS ... %EXE% /silent /noreboot +echo disabling autostart for Citrix Receiver ... +reg add "HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Explorer\StartupApproved\Run32" ^ + /v "ConnectionCenter" /d 0300000065d2d743d402d701 /t REG_BINARY /f + +reg add "HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Explorer\StartupApproved\Run32" ^ + /v "Redirector" /d 030000005e06c842d402d701 /t REG_BINARY /f + echo ####### %0 ####### diff --git a/scripts/uninstall-apps.ps1 b/scripts/uninstall-apps.ps1 index fed21ef..bec3593 100644 --- a/scripts/uninstall-apps.ps1 +++ b/scripts/uninstall-apps.ps1 @@ -1,4 +1,4 @@ -# REMOVE all applications except the Storem, Calculator and Terminal ... +# REMOVE all applications except the Store and the Terminal ... write-host '#######',(split-path $PSCommandPath -Leaf),'#######' @@ -14,5 +14,12 @@ Get-AppxProvisionedPackage -online | where-object {$_.name -notlike "*terminal*"} | Remove-AppxProvisionedPackage -online +# REINSTALL the Calculator ... +# just sparing it is not working ... must be reinstalled ... + +$PROGS=$Env:ProgramFiles +$CALC=Get-AppXpackage -Allusers Microsoft.WindowsCalculator | select -expand PackageFullName +Add-AppXPackage -register "$PROGS\WindowsApps\$CALC\AppXManifest.xml" -DisableDevelopmentMode + write-host '#######',(split-path $PSCommandPath -Leaf),'#######' diff --git a/tools/.gitignore b/tools/.gitignore index 67056d6..a61ef9a 100644 --- a/tools/.gitignore +++ b/tools/.gitignore @@ -1,5 +1,5 @@ -*.exe -*.msi -*.xpi -*.zip - +*.exe +*.msi +*.xpi +*.zip +*.ini diff --git a/wim/remove-apps.cmd b/wim/remove-apps.cmd index c0be774..3c990be 100644 --- a/wim/remove-apps.cmd +++ b/wim/remove-apps.cmd @@ -43,7 +43,6 @@ dism /Image:%MNT% /Remove-ProvisionedAppxPackage /PackageName:Microsoft.XboxSpee dism /Image:%MNT% /Remove-ProvisionedAppxPackage /PackageName:Microsoft.YourPhone_2019.430.2026.0_neutral_~_8wekyb3d8bbwe dism /Image:%MNT% /Remove-ProvisionedAppxPackage /PackageName:Microsoft.ZuneMusic_2019.19071.19011.0_neutral_~_8wekyb3d8bbwe dism /Image:%MNT% /Remove-ProvisionedAppxPackage /PackageName:Microsoft.ZuneVideo_2019.19071.19011.0_neutral_~_8wekyb3d8bbwe -dism /Image:%MNT% /Remove-ProvisionedAppxPackage /PackageName:Microsoft.WindowsCalculator_2020.1906.55.0_neutral_~_8wekyb3d8bbwe @echo off