The GoTo Community is currently experiencing some technical issues affecting new posts and comments. You may need to reload the page you are on before you can post a comment. We are actively working with our service provider and apologize for the frustration.
User Profile
mattyb
Active Contributor
Joined 18 years ago
User Widgets
Contributions
Re: One2Many Script Repository
Here is a small script I use to clear out the junk files (temp, internet etc) off all local profiles. IF "%OS%"=="" GOTO WIN9X @REM - FIND "DOCUMENTS AND SETTINGS" FOLDER: %SYSTEMDRIVE% CD %USERPROFILE%\.. FOR /D %%F IN (*.*) DO DEL /F/S/Q "%%F\LOCAL SETTINGS\TEMP\*.*" FOR /D %%F IN (*.*) DO DEL /F/S/Q "%%F\LOCAL SETTINGS\TEMPORARY INTERNET FILES\*.*" FOR /D %%F IN (*.*) DO DEL /F/S/Q "%%F\COOKIES\*.*" DEL /F/S/Q %WINDIR%\TEMP\*.* DEL /F/S/Q %WINDIR%\*.TMP GOTO END :WIN9X REM - WIN9X systems are currently not supported. :END Takes a while when first run, but daily it's fantastic.27KViews1like2Comments