diff --git a/tools/disable-networkfeatures.ps1 b/scripts/disable-networkfeatures.ps1 similarity index 100% rename from tools/disable-networkfeatures.ps1 rename to scripts/disable-networkfeatures.ps1 diff --git a/tools/set-exlorer-viewmode.ps1 b/scripts/set-explorer-viewmode.ps1 similarity index 87% rename from tools/set-exlorer-viewmode.ps1 rename to scripts/set-explorer-viewmode.ps1 index 458007c..292598b 100644 --- a/tools/set-exlorer-viewmode.ps1 +++ b/scripts/set-explorer-viewmode.ps1 @@ -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),'#######' diff --git a/tools/set-recyclebin.ps1 b/scripts/set-recyclebin.ps1 similarity index 100% rename from tools/set-recyclebin.ps1 rename to scripts/set-recyclebin.ps1 diff --git a/tools/logon.cmd b/tools/logon.cmd index 254555f..d52538a 100644 --- a/tools/logon.cmd +++ b/tools/logon.cmd @@ -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% diff --git a/tools/restart-explorer.cmd b/tools/restart-explorer.cmd new file mode 100644 index 0000000..bb82279 --- /dev/null +++ b/tools/restart-explorer.cmd @@ -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 +