LawrenceAlbert Posted June 19, 2008 Share Posted June 19, 2008 (edited) Clear and erase your Temporary Files Easily Free-up more space in your Hard drive! After Reading some questions on how to remove temporary files manually in Windows Vista and XP. Thankfully, Something pops-up in my head, If I will create a small program or script and be able to delete the temporary files in just one click, That would be Great! Delete %Temp% files and folders (User Temp Folder), and Windows Temp Folder in Windows Vista If WScript.Arguments.Count > 0 Then Set objApp = CreateObject("WScript.Shell") objApp.Run "cmd.exe /c " & Chr(34) & "rmdir /S /Q %temp%" & Chr(34) objApp.Run "cmd.exe /c " & Chr(34) & "rmdir /S /Q %SystemRoot%\temp" & Chr(34) Else Set objLaunch = CreateObject("Shell.Application") objLaunch.ShellExecute "wscript.exe", Chr(34) & WScript.ScriptFullName & Chr(34) & " RunAsAdmin", , "runas", 1 End If Open Notepad > Just Copy and Paste the Code Above and Save the the file to Any filename that you want with extension ".vbs" e.g. deltempfiles.vbs Or If you're afraid to commit a mistake, just Download the file, here: Adding the Script to Context Menu: 1. Download WinBubble 2. If you prefer to manually add the entry to Computer, Desktop, Start Menu, Folders Context Menu, Read here: Adding your applications to Context Menu (Right-Click Menu) 3. Using WinBubble: Go to Miscellaneous Tab > Click the Computer Button > Type Any Name. In this guide, let's try "Remove Temp Files" > Click the Browse Button and locate the VB Script File > Add wscript.exe before the path and enclosed the path in a quotation mark ("). Name: Remove Temp Files Command: wscript.exe "C:\Tools\deltempfiles.vbs" Click the Add Button. That's it! %Temp% Folder Only C:\Users\[userName]\AppData\Local\Temp If you want to clear the User's temporary Folder only because UAC will not prompt to elevate the command: Repeat the steps from 1 to 3 and use the script below: Set objApp = CreateObject("WScript.Shell") objApp.Run "cmd.exe /c " & Chr(34) & "rmdir /S /Q %temp%" & Chr(34) Download: UserTempFileOnly.vbs Also, you can use this to Clear your Personal Temp Folder when Windows Starts. Just drag the Shortcut to Start Menu > All Programs > Start Up Folder. That's it! Ok, you Want to learn How it was created? My First Step: How to Run VBScripts as Administrator in Windows Vista Enjoy!!! Please post any suggestion for the tip. Thanks in Advance :) ------------------------------------------------------------------------------------------------------ Hello Guys, First I would like to thank everybody that help me in this version. I will now declare, WinBubble 1.73 as the most popular version of WinBubble!!! How? Please try to search using Google. Most of the features in this version is NOT MINE. It is a Requested by the Users which Amazingly proven to be useful and popular. Again Thank you very much Guys!!! Neowin.net!!! Edited June 19, 2008 by LawrenceAlbert Link to comment https://www.neowin.net/forum/topic/644313-add-remove-temp-files-to-right-click-menu/ Share on other sites More sharing options...
+Gary7 Subscriber² Posted June 19, 2008 Subscriber² Share Posted June 19, 2008 No, Thank You! (Y) (Y) (Y) Link to comment https://www.neowin.net/forum/topic/644313-add-remove-temp-files-to-right-click-menu/#findComment-589495549 Share on other sites More sharing options...
LawrenceAlbert Posted June 19, 2008 Author Share Posted June 19, 2008 No, Thank You! (Y) (Y) (Y) Your Welcome Gary!!! Link to comment https://www.neowin.net/forum/topic/644313-add-remove-temp-files-to-right-click-menu/#findComment-589496875 Share on other sites More sharing options...
Rebdomine Posted June 20, 2008 Share Posted June 20, 2008 Thanks for the guide Lawrence Link to comment https://www.neowin.net/forum/topic/644313-add-remove-temp-files-to-right-click-menu/#findComment-589497589 Share on other sites More sharing options...
LawrenceAlbert Posted June 20, 2008 Author Share Posted June 20, 2008 No problem Rebdomine, It's my pleasure to share my ideas. If you have some suggestions. Please share too! Thanks in advance. Link to comment https://www.neowin.net/forum/topic/644313-add-remove-temp-files-to-right-click-menu/#findComment-589498408 Share on other sites More sharing options...
Rebdomine Posted June 20, 2008 Share Posted June 20, 2008 Nope, but i've sure used WinBubble ! :D Link to comment https://www.neowin.net/forum/topic/644313-add-remove-temp-files-to-right-click-menu/#findComment-589498459 Share on other sites More sharing options...
LawrenceAlbert Posted June 27, 2008 Author Share Posted June 27, 2008 Nope, but i've sure used WinBubble ! Thanks Rebdomine! No, Thank You! By the way Gary, Are you the guy that requested the Taking the ownership of Folders? It rocks! Tons of people like it... Congratulations if your the guy! :D Link to comment https://www.neowin.net/forum/topic/644313-add-remove-temp-files-to-right-click-menu/#findComment-589514164 Share on other sites More sharing options...
Dick Montage Posted June 27, 2008 Share Posted June 27, 2008 Handy but no need for this on a right click is there? Right Click = Context menu This would be out of context. Link to comment https://www.neowin.net/forum/topic/644313-add-remove-temp-files-to-right-click-menu/#findComment-589514169 Share on other sites More sharing options...
LawrenceAlbert Posted June 27, 2008 Author Share Posted June 27, 2008 It depends on the user... Anyway thanks for the suggestion. For me it's better if you'll have different options. That's why I've used ".Run" in the script. By seeing the script you can use the command in the command prompt. Link to comment https://www.neowin.net/forum/topic/644313-add-remove-temp-files-to-right-click-menu/#findComment-589514285 Share on other sites More sharing options...
Recommended Posts