win10-prep

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

commit f765486590c1d9185863a7d8f6e6c5c542cc8e65
parent 6457c80cd2f4bb7de9a8e0aef10e497808bbf253
Author: Peter <peter@minskio.co.uk>
Date:   Wed,  2 Oct 2019 16:11:26 +0100

Fix arguments in aliases

Also add a grep alias

Diffstat:
M2-tweaks.bat | 11++++++-----
1 file changed, 6 insertions(+), 5 deletions(-)

diff --git a/2-tweaks.bat b/2-tweaks.bat @@ -13,7 +13,8 @@ rem don't require signin after wakeup powercfg /SETDCVALUEINDEX SCHEME_CURRENT SUB_NONE CONSOLELOCK 0 powercfg /SETACVALUEINDEX SCHEME_CURRENT SUB_NONE CONSOLELOCK 0 rem batch file shortcuts -echo robocopy . . /s /move > %windir%\system32\empties.bat -echo dir /b > %windir%\system32\ls.bat -echo del > %windir%\system32\rm.bat -echo exit > %windir%\system32\x.bat -\ No newline at end of file +echo robocopy . . /s /move> %windir%\system32\empties.bat +echo findstr %1> %windir%\system32\grep.bat +echo dir /b> %windir%\system32\ls.bat +echo del %1> %windir%\system32\rm.bat +echo exit> %windir%\system32\x.bat +\ No newline at end of file