Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Star 1 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save MukeshGreenDeveloper/c63e6ef74cfc2db551727d4b1d529e68 to your computer and use it in GitHub Desktop.
Save MukeshGreenDeveloper/c63e6ef74cfc2db551727d4b1d529e68 to your computer and use it in GitHub Desktop.
Delete Temporary files andee Enable Wifi Hotspot using Batch file
echo off
TITLE Your Cleaner
echo "Deleting Temporaty Files from %Temp%, Temp and Recent folders"
del c:\windows\temp\*.* /S /F /Q
del C:\ProgramData\AVAST Software\Avast\log\*.* /S /F /Q
del C:\Users\User\Recent\*.* /S /F /Q
del C:\Users\User\AppData\Local\Temp\*.* /S /F /Q
del C:\Users\user\AppData\Roaming\Microsoft\Office\Recent\*.* /S /F /Q
del C:\Users\User\appdata\Roaming\Microsoft\Windows\Recent*.* /S /F /Q
C:\Users\User\AppData\Roaming\Microsoft\Windows\Cookies*.* /S /F /Q
echo "done"
netsh wlan start hostednetwork
@MukeshGreenDeveloper
Copy link
Author

12
3
4
5
6

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment