Using RMDir with both /R and /REBOOTOK: Difference between revisions

From NSIS Wiki
Jump to navigationJump to search
m (Wikipedia python library)
(No difference)

Revision as of 19:56, 9 April 2005

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
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.

Page author: virtlink