moving some scripts
This commit is contained in:
parent
8394915660
commit
96335e3e93
@ -16,15 +16,18 @@ $bags = 'HKCR\Local Settings\Software\Microsoft\Windows\Shell\Bags'
|
|||||||
$defaults = 'HKCU\Software\Microsoft\Windows\CurrentVersion\Explorer\Streams\Defaults'
|
$defaults = 'HKCU\Software\Microsoft\Windows\CurrentVersion\Explorer\Streams\Defaults'
|
||||||
|
|
||||||
# Delete saved views and 'Apply to folders' 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 $bagMRU /f 2>&1 | Out-Null
|
||||||
reg delete $bags /f 2>&1 | Out-Null
|
reg delete $bags /f 2>&1 | Out-Null
|
||||||
reg delete $defaults /f 2>&1 | Out-Null
|
reg delete $defaults /f 2>&1 | Out-Null
|
||||||
reg delete ($dst.Replace(':','')) /f 2>&1 | Out-Null
|
reg delete ($dst.Replace(':','')) /f 2>&1 | Out-Null
|
||||||
|
|
||||||
# First, we copy HKLM\...\FolderTypes to HKCU\...\FolderTypes
|
# First, we copy HKLM\...\FolderTypes to HKCU\...\FolderTypes
|
||||||
|
write-host 'copying HKLM folder types to HKCU ...'
|
||||||
Copy-Item $src "$(Split-Path $dst)" -Recurse
|
Copy-Item $src "$(Split-Path $dst)" -Recurse
|
||||||
|
|
||||||
# Set all 'LogicalViewMode' values to the desired style
|
# Set all 'LogicalViewMode' values to the desired style
|
||||||
|
write-host 'setting explorer styles ...'
|
||||||
Get-ChildItem $topViews | % {
|
Get-ChildItem $topViews | % {
|
||||||
|
|
||||||
$key2edit = (get-item $_.PSParentPath).OpenSubKey($_.PSChildName, $True);
|
$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
|
Get-Process Explorer | Stop-Process
|
||||||
|
|
||||||
write-host '#######',(split-path $PSCommandPath -Leaf),'#######'
|
write-host '#######',(split-path $PSCommandPath -Leaf),'#######'
|
@ -27,7 +27,7 @@ echo starting BGInfo ...
|
|||||||
%TOOLS%\bginfo\bginfo64.exe %TOOLS%\bginfo\config.bgi /NOLICPROMPT /silent /timer:0
|
%TOOLS%\bginfo\bginfo64.exe %TOOLS%\bginfo\config.bgi /NOLICPROMPT /silent /timer:0
|
||||||
|
|
||||||
echo setting RECYCLE BIN limits ...
|
echo setting RECYCLE BIN limits ...
|
||||||
powershell -command %TOOLS%\set-recyclebin.ps1
|
powershell -command %TOOLS%\scripts\set-recyclebin.ps1
|
||||||
|
|
||||||
echo.
|
echo.
|
||||||
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
|
/v "ShowSecondsInSystemClock" /t REG_DWORD /d 1 /f 1>nul
|
||||||
|
|
||||||
echo setting GLOBAL view mode for windows EXPLORER ...
|
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 ...
|
echo Enabling the show file extensions feature in explorer ...
|
||||||
reg add "HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\Explorer\Advanced" ^
|
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
|
/v "ShowFrequent" /t REG_DWORD /d 0 /f 1>nul
|
||||||
|
|
||||||
echo disabling unwanted NETWORK features ...
|
echo disabling unwanted NETWORK features ...
|
||||||
powershell -command %TOOLS%\disable-networkfeatures.ps1
|
powershell -command %TOOLS%\scripts\disable-networkfeatures.ps1
|
||||||
|
|
||||||
echo Restarting explorer ...
|
echo cleaning START menu tiles ...
|
||||||
taskkill /f /im explorer.exe 2>nul
|
powershell -command %TOOLS%\scripts\cleanup-tiles.ps1
|
||||||
rem sleep 2 seconds ...
|
|
||||||
ping 127.0.0.1 -n 2 >nul 2>&1
|
|
||||||
start explorer.exe
|
|
||||||
|
|
||||||
rem create statusfile (this block must be executed only once) ...
|
rem create statusfile (this block must be executed only once) ...
|
||||||
echo 1 >%STATUSFILE%
|
echo 1 >%STATUSFILE%
|
||||||
|
8
tools/restart-explorer.cmd
Normal file
8
tools/restart-explorer.cmd
Normal 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
|
||||||
|
|
Loading…
Reference in New Issue
Block a user