How to stop .avi files from locking up in Windows Explorer
Published 2 years, 6 months ago in Tips and WindowsIf you’ve downloaded a corrupt .avi file in Windows then you may have noticed that if you try to delete, rename or move it that explorer complains that the file is in use. This is because Windows is trying to load the whole file to generate a preview image for you. You can turn this preview off by doing the following:
- Open the ‘Run’ dialog box from the start menu (Start->Run or press the Windows and r keys together):
- To remove image preview, type and hit enter
regsvr32 /u shimgvw.dll - To readd image preview, type and hit enter
regsvr32 shimgvw.dll - To remove media preview, type and hit enter
regsvr32 /u shmedia.dll - To readd media preview, type and hit enter
regsvr32 shmedia.dll
Note: I found this information copy+pasted on a forum a while ago and I don’t know the original source.
If you have a low-traffic website, consider joining the Money4Banners advertising network. They will pay you £10 + £5 each month for displaying a small advert on three of your pages, regardless of traffic. American webmasters are welcome, and since £10 == $20, you make more!
One Response to “How to stop .avi files from locking up in Windows Explorer”
Leave a Reply
You must log in to post a comment.
Search
Categories
- ASP (3)
- ASP Basics (3)
- Blogs (2)
- C# (1)
- Firefox (1)
- Flash (1)
- Google (6)
- Hacks (3)
- Java (1)
- PHP (12)
- Basics (8)
- Files (1)
- Image Handling (3)
- Puzzles (1)
- Ruby (1)
- Tips (10)
- Web Hosting (3)
- Web Hosting Articles (1)
- Web Hosting News (2)
- Windows (6)
- Wordpress (2)
Related Entries
- Hide a hard drive from My Computer
- Kill a Process from the Windows Command Line
- Save Embedded Media and Other Files in Firefox
- How to use PHP in pages with a .html extension (or any other)
- Add Notepad To Your "Send To" Menu
- Output redirection to a file from the Windows Command Line
- List all processes with the Windows Command Line
- How to Control the Mouse Pointer Without a Mouse in Windows XP
- The Difference Between require() and include()
- Write Text on to an existing PNG image using PHP
This solution worked. Thanks man.