win10-prep

Batch script to tweak Windows 10 to a more usable form
Log | Files | Refs

commit 4992165a02cdf50b30d1ff2c7531e9fe264fe05f
parent 587386462ca98f85441f032a1df67db22401d21b
Author: Peter <peter@minskio.co.uk>
Date:   Tue,  5 Apr 2022 17:01:17 +0100

Show hidden files in WinSCP

Diffstat:
Mwin10-prep.bat | 3+++
1 file changed, 3 insertions(+), 0 deletions(-)

diff --git a/win10-prep.bat b/win10-prep.bat @@ -427,6 +427,9 @@ rem add syncthing autostart entry reg add "HKLM\SOFTWARE\Microsoft\Windows\CurrentVersion\Run" /v "Syncthing" /t REG_SZ /d "\"%programfiles%\Syncthing\syncthing.exe\" -no-console -no-browser" /f rem add syncthing firewall rule netsh advfirewall firewall add rule name="Syncthing" dir=in action=allow program="%programfiles%\Syncthing\syncthing.exe" enable=yes +rem show hidden files in winscp +reg add "HKCU\Software\Martin Prikryl\WinSCP 2\Configuration\Interface" /v "DimmHiddenFiles" /t REG_DWORD /d "0" /f +reg add "HKCU\Software\Martin Prikryl\WinSCP 2\Configuration\Interface" /v "ShowHiddenFiles" /t REG_DWORD /d "1" /f exit /b %errorlevel% :cleanup