Can't get nsProcess and Processes plugins to work in Win 7 x64
Hi,
I need to detect a running firefox before installation in Win 7 x64. I tried both nsProcess and Processes plugins, but failed to get an expected return value.
The code I tried was the following ($5 contains the process name):
${nsProcess::FindProcess} "firefox.exe" $R0
StrCmp $R0 0 0 notdetected
After this, R0 contained rubbish.
Processes::FindProcess "firefox"
StrCmp $R0 1 0 notdetected
After this, R0 was empty.
Anything I could do next?