Created
May 20, 2017 20:54
-
-
Save MukeshGreenDeveloper/c63e6ef74cfc2db551727d4b1d529e68 to your computer and use it in GitHub Desktop.
Delete Temporary files andee Enable Wifi Hotspot using Batch file
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 |
Author
MukeshGreenDeveloper
commented
May 20, 2017
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment