|
| |||||||||
| Tags: delete folders, erase file, windows, windows cmd |
![]() |
| | Thread Tools | Search this Thread |
|
#1
| ||||
| ||||
| Delete specified folders through windows CMD
Is there any programs that will erase all files in stored in a particular folder except those files which i have not mentioned in the program, I have little code to do please check and suggest whether it will do: Code: for /d %%a in (%1) do if /I not %%a == %2 rmdir /s /q %%a Thanks in Advance |
|
#2
| ||||
| ||||
| Re: Delete specified folders through windows CMD Quote:
HKLM\...\RunOnceEx (ROE) waits for executions to finish, then HKLM\...\RunOnce starts and waits for executions, then HKLM\...\Run starts it's executions, then the desktop loads with the start of HKCU\...\RunOnce (GRO) executions along with the startup folders. |
|
#3
| |||
| |||
| Re: Delete specified folders through windows CMD
You may run cleanup.cmd here i will provide you the code for CMD: Code: cmdow @ /HID psshutdown.exe -r -f -t 30 -c "Cleaning installation; XP will restart in 30 seconds..." net user aspnet /delete FOR %%? IN (log tmp) DO (DEL/A/S/F/Q "%SYSTEMROOT%\*.%%?") DEL "%AllUsersProfile%\Start Menu\Microsoft Update.lnk" DEL "%AllUsersProfile%\Start Menu\Programs\Internet Explorer.lnk" DEL "%UserProfile%\Start Menu\Programs\Internet Explorer.lnk DEL "%UserProfile%\Local Settings\Temp\*.*" RD /S /Q %UserProfile%\My Documents\ RD /S /Q %AllUsersProfile%\Documents\ RD /S /Q %systemdrive%\Install\ RD /S /Q %systemdrive%\dot20\ EXIT |
|
#4
| |||
| |||
| Re: Delete specified folders through windows CMD
With Cmd.exe or with Command.com or by clicking Command Prompt - or some other way? Are you using the Dir command? With what switches? Have you dealt with any Attributes (Hidden,System)? |
![]() |
|
| Thread Tools | Search this Thread |
| |
Similar Threads for: "Delete specified folders through windows CMD" | ||||
| Thread | Thread Starter | Forum | Replies | Last Post |
| Windows 7: Unable to Delete documents or file folders | jpmlists | Windows Software | 2 | 30-08-2011 09:47 PM |
| Delete Folders in Windows Media Center library | KalCol | Vista Help | 2 | 16-03-2011 11:25 AM |
| Windows Mail - cannot delete from sent or other folders | Linda J | Windows Vista Mail | 1 | 10-10-2009 03:25 AM |
| delete the folders windows downloaded installations and servicepackfiles ? | nospam | Windows XP Support | 5 | 05-11-2008 04:06 AM |
| Script to delete all files and folders except some specific folders | FLaplante | Windows Server Help | 1 | 28-02-2008 04:37 AM |