This commit is contained in:
Michael H.G. Schmidt 2021-02-14 20:58:44 +01:00
parent bf9dd5b5c9
commit e2e93797dd
5 changed files with 18 additions and 7 deletions

View File

@ -72,9 +72,8 @@ echo ### UNINSTALL tasks ###
echo #######################
echo.
rem uninstall ALL Apps (but keep the store) ...
rem powershell -Command .\uninstall-apps.ps1
rem echo.
powershell -command .\uninstall-apps.ps1
echo.
call uninstall-onedrive.cmd
echo.

View File

@ -68,6 +68,18 @@ reg add "HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\Explorer\Hi
echo refresh desktop (W10 style)
ie4uinit.exe -show
echo enabling fast shutdown ...
reg add "HKEY_CURRENT_USER\Control Panel\Desktop"
/v "WaitToKillAppTimeOut" /t REG_DWORD /d 2000 /f 1>nul
reg add "HKEY_CURRENT_USER\Control Panel\Desktop"
/v "HungAppTimeout" /t REG_DWORD /d 2000 /f 1>nul
reg add "HKEY_CURRENT_USER\Control Panel\Desktop"
/v "AutoEndTasks" /t REG_DWORD /d 1 /f 1>nul
echo add seconds to clock ...
reg add "HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\Explorer\Advanced"
/v "ShowSecondsInSystemClock" /t REG_DWORD /d 1 /f 1>nul
echo disable search box on taskbar ...
reg add "HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\Search" ^
/v "SearchboxTaskbarMode" /t REG_DWORD /d 0 /f 1>nul

View File

@ -1,22 +1,22 @@
# REMOVE all applications except the Store and the Terminal ...
# REMOVE all applications except the Calculator, the Store and the Terminal ...
write-host '#######',(split-path $PSCommandPath -Leaf),'#######'
$ErrorActionPreference = 'SilentlyContinue'
Get-AppxPackage -AllUsers |
where-object {$_.name -notlike "*calc*"} |
where-object {$_.name -notlike "*store*"} |
where-object {$_.name -notlike "*terminal*"} |
Remove-AppxPackage
Get-AppxProvisionedPackage -online |
where-object {$_.name -notlike "*calc*"} |
where-object {$_.name -notlike "*store*"} |
where-object {$_.name -notlike "*terminal*"} |
Remove-AppxProvisionedPackage -online
# REINSTALL the Calculator ...
# just sparing it is not working ... must be reinstalled ...
# make sure that the calculator is installed ...
$PROGS=$Env:ProgramFiles
$CALC=Get-AppXpackage -Allusers Microsoft.WindowsCalculator | select -expand PackageFullName
Add-AppXPackage -register "$PROGS\WindowsApps\$CALC\AppXManifest.xml" -DisableDevelopmentMode