tsollas wrote:
> 
>     <CustomAction Id="RestoreLogDirectoryBackup"
> Property="RestoreLogDirectoryBackup" ExeCommand="/c if not exist
> &quot;[service.dir]logs&quot; ren &quot;[service.dir]logs-backup&quot;
> &quot;logs&quot;"
>                   Execute="deferred" Return="ignore"/>
> 

Correction. The above task is set to "immediate", not deferred (cut 'n
pasted the wrong line), so it should read:

    <CustomAction Id="RestoreLogDirectoryBackup"
Property="RestoreLogDirectoryBackup" ExeCommand="/c if not exist
&quot;[service.dir]logs&quot; ren &quot;[service.dir]logs-backup&quot;
&quot;logs&quot;"
                  Execute="immediate" Return="ignore"/>
-- 
View this message in context: 
http://www.nabble.com/RemoveExistingProducts-and-Duplicate-GUIDs-tp17655018p17655113.html
Sent from the wix-users mailing list archive at Nabble.com.


-------------------------------------------------------------------------
Check out the new SourceForge.net Marketplace.
It's the best place to buy or sell services for
just about anything Open Source.
http://sourceforge.net/services/buy/index.php
_______________________________________________
WiX-users mailing list
WiX-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wix-users

Reply via email to