For my NSIS uninstaller, I want to check if the process is running. FindProcDLL does not work under Windows 7 x64, so I tried nsProcess.
I downloaded version 1.6 from the website: http://nsis.sourceforge.net/NsProcess_plugin
If I run nsProcessTest.nsi in the Example folder, I get the following errors:
Section: "Find process" ->(FindProcess) !insertmacro: nsProcess::FindProcess Invalid command: nsProcess::_FindProcess Error in macro nsProcess::FindProcess on macroline 1 Error in script "C:\Users\Sebastian\Desktop\nsProcess_1_6\Example\nsProcessTest.nsi" on line 14 -- aborting creation process
This is line 14 of the sample script:
${nsProcess::FindProcess} "Calc.exe" $R0
Does anyone know what is wrong? How to check if a process works with NSIS?
source share