answersLogoWhite

0

If you run Install then Repair it shouldn't delete files in "My Documents" (at least it didn't when I did it recently). If you run Install then Install it will delete the files.

User Avatar

Wiki User

16y ago

What else can I help you with?

Related Questions

Can you delete files on your recovery drive?

yes, if you are using windows vista all you have to do is go to my computer, recovery (D:) (click on that) then there shold be a file that has your computer name.. mine being CHRIS-PC. chose that and scrool through the files listed... delete files you don't need or you don't use anymore. and that should free up some space on your recovery.


Which method or program you believe is most appropriate for destroying data so that nobody can recover it?

XL Delete is a powerful secure delete software that will permanently delete your private files using its powerful wipe engine.XL Delete can permanently delete any type of file, folders, and even your Internet cookies, history, and cache files. Files deleted with XL Delete can not be restored using file recovery software.


How do you delete temporary files?

A simple way to delete temporary files would include using your 'disk cleanup' utility. Just click on the program and check the box next to 'temporary files.' Then confirm the delete.


How does one delete files in Windows 8?

There are many ways to delete files on Windows 8. This includes selecting the file and using the delete key, as well as right clicking the object and selecting delete.


Using the Disk Cleanup utility which files can you delete from your system?

Downloaded program files Recycle Bin files Temporary Internet files


Is it safe to delete XML files?

Yes, there is no need for them, unless your using them.


When you right-click on a folder on the hard drive and choose Delete the files are?

When you right-click on a folder on the hard drive and choose Delete, the folder and its contents are typically moved to the Recycle Bin (on Windows) or Trash (on macOS). This allows for the possibility of recovery unless the Recycle Bin or Trash is emptied. If you delete the folder using Shift + Delete, it bypasses the Recycle Bin and the files are marked for deletion but may still be recoverable until overwritten by new data.


How do you delete all files using Linux?

rm -rf <path to directory>


How do you delete old chat files?

The instructions would depend on which chat program you are using.


How do you clear your computer's cache when using Internet Explorer?

go to tools internet option and delete all history, delete all files


How do you delete 0 byte files using DOS?

The command for deleting a file in DOS is DEL. If the file you are trying to delete is in the current directory, type DEL followed by the full filename. E.g. del file001.txt If there are multiple files, the wildcard * can be used. del file*.txt will delete all the text files that start with 'file' del file*.* will delete all the files that start with file. del *.txt will delete all the text files. del *.* will delete all the files in the current directory. It is possible to delete files in another directory by typing the full path and filename del c:\folder01\*.* will delete all the files in the directory c:\folder01\ DEL will not affect hidden files, but careless use of this command could damage your operating system so use with care.


How do you delete hidden files using batch scripts?

You can just delete hidden files with the same del command, but since the files are hidden you need to map the location of the hidden folder in the command so the batch file knows where to look and delete. @Echo off del "location of hidden files and/or folders" /Q /F /S exit