Posts

Showing posts with the label File

Delete Files From The Recent File List In Windows

This tip requires a change to the Windows Registry. Please see the MSFN Guide "Backup Your Registry" if you are new to the Windows Registry. Windows Media Player (WMP) is a built-in application that allows you to play multimedia files. Like many other applications, WMP remembers the most recently played files and displays them in the Recent File List under the File menu. This feature is useful if you regularly play certain files, but you may want to clear the list if you share the computer and a user account or create archives and CDs. There are two ways you can clear the list: I. The ClearMRU.exe Utility is available for free in the Windows Media Player Bonus Pack from Microsoft, but Microsoft does not support this tool. II. You can also manually delete the list through the Windows Registry: 1. Start the Windows Registry Editor, regedit.exe, by typing regedit in the Windows Run Command Line. 2. Go to HKEY_CURRENT_USER\Software\Microsoft\MediaPlayer\Player\RecentF...

Copy Files And Folders To A CD In Windows XP

To copy files and folders to a CD: 1. Insert a blank writable CD into the CD recorder. 2. Double-click My Computer, and then click the files or folders that you want to copy to the CD. To select more than one file, hold down the CTRL key while you click the files you want. 3. Click any of the following options: - Copy this file - Copy this folder - Copy the selected items 4. In the Copy Items dialog box, click the CD recording drive, and then click Copy. 5. In My Computer, double-click the CD recording drive. Windows displays a temporary area where the files are held before they are copied to the CD. Check that the files and folders that you intend to copy to the CD are displayed under Files Ready to Be Written to the CD. 6. Under CD Writing Tasks, click Write to CD. 7. After the CD Writing Wizard starts, follow the instructions in the wizard. 8. When the process is finished, the wizard displays a check box for you to choose to create another CD like the one you just m...

Delete An "undeletable" File

Delete An "undeletable" File Open a Command Prompt window and leave it open. Close all open programs. Click Start, Run and enter TASKMGR.EXE Go to the Processes tab and End Process on Explorer.exe. Leave Task Manager open. Go back to the Command Prompt window and change to the directory the AVI (or other undeletable file) is located in. At the command prompt type DEL where is the file you wish to delete. Go back to Task Manager, click File, New Task and enter EXPLORER.EXE to restart the GUI shell. Close Task Manager. Or you can try this Open Notepad.exe Click File>Save As..> locate the folder where ur undeletable file is Choose 'All files' from the file type box click once on the file u wanna delete so its name appears in the 'filename' box put a " at the start and end of the filename (the filename should have the extension of the undeletable file so it will overwrite it) click save, It should ask u to overwrite the ...

'show hidden files and folders' option not working

press windows+R >> type "regedit"(without quotes) & press enter >> then go to>> HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Explorer\Advanced\Folder\Hidden\SHOWALL\ Now u can see two keys CheckedValue and DefaultValue Double Click on CheckedValue and set the value 1 from 0 Double Click on DefaultValue and set the value 2 from 1

Amezing trick to Lock Folder

This 1 is amezing trick to lock u r folder using this trick not only lock u r folder but also hide it here it is copy following program:- cls @ECHO OFF title Folder Locker if EXIST "Control Panel.{21EC2020-3AEA-1069-A2DD-08002B30309D}" goto UNLOCK if NOT EXIST Locker goto LOCKER :CONFIRM echo Are you sure u want to Lock the folder(Y/N) set/p "cho=>" if %cho%==Y goto LOCK if %cho%==y goto LOCK if %cho%==n goto END if %cho%==N goto END echo Invalid choice. goto CONFIRM :LOCK ren Locker "Control Panel.{21EC2020-3AEA-1069-A2DD-08002B30309D}" attrib +h +s "Control Panel.{21EC2020-3AEA-1069-A2DD-08002B30309D}" echo Folder locked goto End :UNLOCK echo Enter password to Unlock folder set/p "pass=>" if NOT %pass%==type your password here goto FAIL attrib -h -s "Control Panel.{21EC2020-3AEA-1069-A2DD-08002B30309D}" ren "Control Panel.{21EC2020-3AEA-1069-A2DD-08002B30309D}" Locker echo Folde...