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 #######################
echo. echo.
rem uninstall ALL Apps (but keep the store) ... powershell -command .\uninstall-apps.ps1
rem powershell -Command .\uninstall-apps.ps1 echo.
rem echo.
call uninstall-onedrive.cmd call uninstall-onedrive.cmd
echo. echo.

View File

@ -68,6 +68,18 @@ reg add "HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\Explorer\Hi
echo refresh desktop (W10 style) echo refresh desktop (W10 style)
ie4uinit.exe -show 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 ... echo disable search box on taskbar ...
reg add "HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\Search" ^ reg add "HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\Search" ^
/v "SearchboxTaskbarMode" /t REG_DWORD /d 0 /f 1>nul /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),'#######' write-host '#######',(split-path $PSCommandPath -Leaf),'#######'
$ErrorActionPreference = 'SilentlyContinue' $ErrorActionPreference = 'SilentlyContinue'
Get-AppxPackage -AllUsers | Get-AppxPackage -AllUsers |
where-object {$_.name -notlike "*calc*"} |
where-object {$_.name -notlike "*store*"} | where-object {$_.name -notlike "*store*"} |
where-object {$_.name -notlike "*terminal*"} | where-object {$_.name -notlike "*terminal*"} |
Remove-AppxPackage Remove-AppxPackage
Get-AppxProvisionedPackage -online | Get-AppxProvisionedPackage -online |
where-object {$_.name -notlike "*calc*"} |
where-object {$_.name -notlike "*store*"} | where-object {$_.name -notlike "*store*"} |
where-object {$_.name -notlike "*terminal*"} | where-object {$_.name -notlike "*terminal*"} |
Remove-AppxProvisionedPackage -online Remove-AppxProvisionedPackage -online
# REINSTALL the Calculator ... # make sure that the calculator is installed ...
# just sparing it is not working ... must be reinstalled ...
$PROGS=$Env:ProgramFiles $PROGS=$Env:ProgramFiles
$CALC=Get-AppXpackage -Allusers Microsoft.WindowsCalculator | select -expand PackageFullName $CALC=Get-AppXpackage -Allusers Microsoft.WindowsCalculator | select -expand PackageFullName
Add-AppXPackage -register "$PROGS\WindowsApps\$CALC\AppXManifest.xml" -DisableDevelopmentMode Add-AppXPackage -register "$PROGS\WindowsApps\$CALC\AppXManifest.xml" -DisableDevelopmentMode