Changes
Vlc
,no edit summary
This has been tested on Windows Vista x64.
== Alternative method without forking ==
As described in the [http://nsis.sourceforge.net/When_I_use_ExecWait_uninstaller.exe_it_doesn%27t_wait_for_the_uninstaller NSIS Wiki], there is a command line argument to prevent the uninstaller from backgrounding. It cannot delete itself in this case, though so you need to do that separately. Thus an alternative uninstall command sequence is:
<source lang="xml">
<uninstall cmd='"%ProgramFiles%\VideoLAN\VLC\uninstall.exe /S _?="%ProgramFiles%\VideoLAN\VLC"'/>
<uninstall cmd='%COMSPEC% rmdir /S /Q "%ProgramFiles%\VideoLAN"'/>
</source>
[[category:Silent Installers]]
[[category:Security Advisories]]