Foppah Posted September 29, 2005 Posted September 29, 2005 Is it possible to always automaticly remove favoicons in ie? I would like to always have the standard icons instead of favoicons from some sites.Now I manually change icon for every link and I don't like it.
mattofak Posted September 29, 2005 Posted September 29, 2005 hmm... well, you can go into your Temporary Internet Files folderC:\Documents and Settings\<username>\Local Settings\Temporary Internet Filesand just delete every item that is 'favicon.ico'
Foppah Posted September 29, 2005 Author Posted September 29, 2005 hmm... well, you can go into your Temporary Internet Files folderC:\Documents and Settings\<username>\Local Settings\Temporary Internet Filesand just delete every item that is 'favicon.ico'<{POST_SNAPBACK}>Great! How do i write that in a batch file?DEL favicon.ico C:\Documents and Settings\USER\Local Settings\Temporary Internet Files
mattofak Posted September 29, 2005 Posted September 29, 2005 (edited) honestly havent a clue, the "Temp Int Files" folder isnt really a folder is the problem...EDIT:AHAHAAAA::: M$oft being helpful for once!http://www.microsoft.com/technet/scriptcen...04/hey1102.mspx Edited September 29, 2005 by mattofak
Takeshi Posted September 30, 2005 Posted September 30, 2005 honestly havent a clue, the "Temp Int Files" folder isnt really a folder is the problem...http://www.microsoft.com/technet/scriptcen...04/hey1102.mspx<{POST_SNAPBACK}>When I ran this vbs I got an error saying "Permission denied".This is what I would expect from my experience with the Temp Int Files folder.Perhaps someone else would care to try this out.Recently someone posted a cmd script here to do something like that, but it only clears the whole of Content.IE5 folder (which is a subfolder).
nakira Posted September 30, 2005 Posted September 30, 2005 Great! How do i write that in a batch file?This should do it@echo offpushd %userprofile%\Local Settings\Temporary Internet Files\Content.IE5for /f "tokens=*" %%a in ('dir /s/b favicon*.ico') do del "%%a"popd
Foppah Posted September 30, 2005 Author Posted September 30, 2005 Great! How do i write that in a batch file?This should do it@echo offpushd %userprofile%\Local Settings\Temporary Internet Files\Content.IE5for /f "tokens=*" %%a in ('dir /s/b favicon*.ico') do del "%%a"popd<{POST_SNAPBACK}>Thank you nakira! It works verry well!
Recommended Posts
Create an account or sign in to comment
You need to be a member in order to leave a comment
Create an account
Sign up for a new account in our community. It's easy!
Register a new accountSign in
Already have an account? Sign in here.
Sign In Now