Using RMDir with both /R and /REBOOTOK: Difference between revisions
From NSIS Wiki
Jump to navigationJump to search
m (Added category links.) |
(no longer an issue for v2.01+) |
||
Line 3: | Line 3: | ||
|} | |} | ||
<br style="clear:both;"> | <br style="clear:both;"> | ||
This is no longer an issue for NSIS version 2.01 and above. | |||
; Issue | ; Issue | ||
: I want to delete a complete directory structure, but I don't know if the files it contains are in use. But RMDir ... /R /REBOOTOK doesn't work. | : I want to delete a complete directory structure, but I don't know if the files it contains are in use. But RMDir ... /R /REBOOTOK doesn't work. | ||
Line 10: | Line 11: | ||
; Solution | ; Solution | ||
: | : Upgrade to the latest version of NSIS. If you can't upgrade, use Delete /REBOOTOK (works with wildcards) and use RMDir /REBOOTOK on an empty directory, or a directory that's about to become empty after a reboot. | ||
[[{{ns:14}}:Minor Issues]] | [[{{ns:14}}:Minor Issues]] |
Revision as of 23:03, 23 June 2005
Author: virtlink (talk, contrib) |
This is no longer an issue for NSIS version 2.01 and above.
- Issue
- I want to delete a complete directory structure, but I don't know if the files it contains are in use. But RMDir ... /R /REBOOTOK doesn't work.
- Cause
- You can't use the /R and /REBOOTOK switches at the same time.
- Solution
- Upgrade to the latest version of NSIS. If you can't upgrade, use Delete /REBOOTOK (works with wildcards) and use RMDir /REBOOTOK on an empty directory, or a directory that's about to become empty after a reboot.