This commit is contained in:
USER
2023-02-27 15:59:01 +00:00
parent aac57342df
commit 14e187ed76
3 changed files with 30 additions and 0 deletions

6
SpeedUp.bat Normal file
View File

@ -0,0 +1,6 @@
@echo off
set EXE="%SYSTEMROOT%\system32\WindowsPowerShell\v1.0\powershell.exe"
set TEMPLATE="C:\Packages\SSH\SpeedUp.ps1"
%EXE% -ExecutionPolicy Bypass -File %TEMPLATE%

8
b_power.bat Normal file
View File

@ -0,0 +1,8 @@
powercfg /change monitor-timeout-ac 0
powercfg /change monitor-timeout-dc 0
powercfg /change disk-timeout-ac 0
powercfg /change disk-timeout-dc 0
powercfg /change standby-timeout-ac 0
powercfg /change standby-timeout-dc 0

16
printfix.bat Normal file
View File

@ -0,0 +1,16 @@
@echo off
echo.
echo TH PrintFix v1
echo Checking Print Jobs..
wmic printjob get jobid, document, jobstatus
Pause
echo Purging the print queue...
net stop Spooler
echo Deleting all print jobs...
ping localhost -n 4 > nul
del /q %SystemRoot%\system32\spool\printers\*.*
net start Spooler
echo Current Print Jobs...
wmic printjob get jobid, document, jobstatus
echo Done! - Windows will automaticaly close...
ping localhost -n 5 > nul