I am translating my installer and program into japanese and had to switch to the unicode build of nsis (http://www.scratchpaper.com/)
All worked good for installation but now it failed to find process for uninstallation. In fact I check that some process are not running before uninstalling. To do that, I use the plugin nsProcess (http://nsis.sourceforge.net/NsProcess_plugin)
The problem is that the plugin detects that the process is running but it is not.$(nsProcess::FindProcess) "myprocessname.exe" $R0
THis is what is returned for answer :
Have someone an idea why this plugin failed with unicode build ?
THanks in advance for your help.