A search for *lite*;*.bat;*.cmd;*razor* on all local drives and backups returned no related results. Searching inside archives would take a really long time and only work for non-passworded ones. Do let me know if you remember any specific filenames.
Had a look at the repo and you added 100% of what I use on a daily basis But I can add these... take whatever is useful.
Code:
rem Personalize
rundll32.exe shell32.dll,Control_RunDLL desk.cpl desk,@Themes
rem Activate a theme directly
rundll32.exe shell32.dll,Control_RunDLL desk,@Themes /Action:OpenTheme /file:"%LOCALAPPDATA%\Microsoft\Windows\Themes\%THEME%\%THEME%.theme"
rem ALGO is one of: MD2 MD4 MD5 SHA1 SHA256 SHA384 SHA512 (case sensitive on Windows 7!)
certutil -hashfile %FILE% %ALGO%
rem Wipe WebCache (of course, you can stop and start other tasks too)
schtasks /end /tn "\Microsoft\Windows\Wininet\CacheTask"
del /f /q "%localappdata%\Microsoft\Windows\WebCache\*.*"
schtasks /run /tn "\Microsoft\Windows\Wininet\CacheTask"
rem Clear ALL event logs; use %%a if it's a batch file
for /f %a in ('wevtutil el') do wevtutil cl "%a"
rem Power efficiency report
powercfg.exe -energy -duration 60 -output report.htm
rem Open power plan properties
rem 381b4222-f694-41f0-9685-ff5bb260df2e = Balanced
rem 8c5e7fda-e8bf-4a96-9a85-a6e23a8c635c = High performance
rem a1841308-3541-4fab-bc81-f71556f20b4a = Power saver
rundll32.exe shell32.dll,Control_RunDLL powercfg.cpl @0,/editplan:381b4222-f694-41f0-9685-ff5bb260df2e
rem Prevents "An audio stream is currently in use" from blocking sleep mode; running without the last parameter "system" deletes the override
powercfg -requestsoverride driver "High Definition Audio Device" system
Bookmarks