Ways how to delete files
Normally we use delete button or right click the files then click delete or using shit+click to permanently delete the files. But some files cannot be deleted using that kind of ways and we have to find another ways to delete that files. Here are some ways to delete specified files by forcing the windows.

1. Force delete using Windows

Open command prompt from the program files or open it using run(Start-> Run-> Cmd) and enter the commands:

Syntax

del [Drive:][PathFileName [ ...] [/p] [/f] [/s] [/q] [/a[:attributes]]
erase [Drive:][PathFileName [ ...] [/p] [/f] [/s] [/q] [/a[:attributes]]

Parameters

[Drive:][PathFileName Specifies the location and name of the file or set of files you want to delete. Filename is required. You can use multiple file names. Separate file names with spaces, commas, or semicolons.
/p Prompts you for confirmation before deleting the specified file.
/f Forces deletion of read-only files.
/s Deletes specified files from the current directory and all subdirectories. Displays the names of the files as they are being deleted.
/q Specifies quiet mode. You are not prompted for delete confirmation.
/a Deletes files based on specified attributes.
attributes Specifies any of the following file attributes:
AttributeDescription
r
Read-only
a
Archive
s
System
h
Hidden
-
Prefix meaning "not"
/? Displays help at the command prompt.

Remarks

Using /p
If you use /pdel displays the name of a file and sends the following message:
filename, Delete (Y/N)?
Press Y to confirm the deletion, N to cancel the deletion and display the next file name (if you specified a group of files), or CTRL+C to stop the del command.
Disabling command extensions
If you disable command extensions, the /s command-line option displays the names of any files that were not found, instead of displaying the names of files that are being deleted (that is, the behavior is reversed). For more information about disabling command extensions, see cmd in Related Topics.
Deleting more than one file at a time
You can delete all of the files in a folder by typing del followed by [Drive:]Path. For example, the following command deletes all files in the \Work folder:
del \work
You can also use wildcards (that is, * and ?) to delete more than one file at a time. However, you should use wildcards cautiously with the del command to avoid deleting files unintentionally. For example, if you type the following command:
del *.*
The del command displays the following prompt:
All files in directory will be deleted! Are you sure (Y/N)?
Press Y and then ENTER to delete all files in the current folder, or press N and then ENTER to cancel the deletion.
Before you use wildcards with the del command to delete a group of files, you can use the same wildcards with the dir command to see a list of the names of all the files included in the group.
 Warning
After you delete a file from your disk using del, you cannot retrieve it.
The del command, with different parameters, is available from the Recovery Console.

Examples

To delete all the files in a folder named Test on drive C:\, type any of the following:
del c:\test
del c:\test\*.*

2. Use Unlocker

Unlocker is a free program that simplifies the deletion of locked files. It adds a context menu item to Internet Explorer, and can be activated by right-click. It also allows the user to rename or move a locked file.
source :
http://www.sitepoint.com/web-foundations/force-windows-delete-file/
https://www.microsoft.com/resources/documentation/windows/xp/all/proddocs/en-us/del.mspx?mfr=true
0 Responses

Posting Komentar