moving some scripts

This commit is contained in:
Michael H.G. Schmidt 2022-06-22 00:07:25 +02:00
parent 8394915660
commit 96335e3e93
5 changed files with 17 additions and 9 deletions

View File

@ -16,15 +16,18 @@ $bags = 'HKCR\Local Settings\Software\Microsoft\Windows\Shell\Bags'
$defaults = 'HKCU\Software\Microsoft\Windows\CurrentVersion\Explorer\Streams\Defaults'
# Delete saved views and 'Apply to folders' defaults
write-host 'deleting Explorer saved views ...'
reg delete $bagMRU /f 2>&1 | Out-Null
reg delete $bags /f 2>&1 | Out-Null
reg delete $defaults /f 2>&1 | Out-Null
reg delete ($dst.Replace(':','')) /f 2>&1 | Out-Null
# First, we copy HKLM\...\FolderTypes to HKCU\...\FolderTypes
write-host 'copying HKLM folder types to HKCU ...'
Copy-Item $src "$(Split-Path $dst)" -Recurse
# Set all 'LogicalViewMode' values to the desired style
write-host 'setting explorer styles ...'
Get-ChildItem $topViews | % {
$key2edit = (get-item $_.PSParentPath).OpenSubKey($_.PSChildName, $True);
@ -37,7 +40,7 @@ Get-ChildItem $topViews | % {
}
# restart explorer ...
write-host 'restarting explorer ...'
Get-Process Explorer | Stop-Process
write-host '#######',(split-path $PSCommandPath -Leaf),'#######'

View File

@ -27,7 +27,7 @@ echo starting BGInfo ...
%TOOLS%\bginfo\bginfo64.exe %TOOLS%\bginfo\config.bgi /NOLICPROMPT /silent /timer:0
echo setting RECYCLE BIN limits ...
powershell -command %TOOLS%\set-recyclebin.ps1
powershell -command %TOOLS%\scripts\set-recyclebin.ps1
echo.
echo #####
@ -124,7 +124,7 @@ reg add "HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\Explorer\Ad
/v "ShowSecondsInSystemClock" /t REG_DWORD /d 1 /f 1>nul
echo setting GLOBAL view mode for windows EXPLORER ...
powershell -command %TOOLS%\set-exlorer-viewmode.ps1
powershell -command %TOOLS%\scripts\set-explorer-viewmode.ps1
echo Enabling the show file extensions feature in explorer ...
reg add "HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\Explorer\Advanced" ^
@ -194,13 +194,10 @@ reg add "HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\Explorer" ^
/v "ShowFrequent" /t REG_DWORD /d 0 /f 1>nul
echo disabling unwanted NETWORK features ...
powershell -command %TOOLS%\disable-networkfeatures.ps1
powershell -command %TOOLS%\scripts\disable-networkfeatures.ps1
echo Restarting explorer ...
taskkill /f /im explorer.exe 2>nul
rem sleep 2 seconds ...
ping 127.0.0.1 -n 2 >nul 2>&1
start explorer.exe
echo cleaning START menu tiles ...
powershell -command %TOOLS%\scripts\cleanup-tiles.ps1
rem create statusfile (this block must be executed only once) ...
echo 1 >%STATUSFILE%

View File

@ -0,0 +1,8 @@
@echo off
echo Restarting explorer ...
taskkill /f /im explorer.exe 2>nul
rem sleep 2 seconds ...
ping 127.0.0.1 -n 2 >nul 2>&1
start explorer.exe