I'm using the Processes Plug-in to check to see if a certain process is running or not.
Try the below code. If you don't have the Windows Calculator (Start-->Run-->calc) running you will get 0 in the message box. If you do have it running, you will get a 1. This is great, however now re-compile the below code and change the two instances of "$R0" below to just "$0".
Now you don't any answer in the message box...what gives? I'm so confused. Thanks for your help.
Name Test
OutFile Test.exe
Section ""
Processes::FindProcess Calc
Pop $R0
MessageBox MB_OK "Result: $R0"
SectionEnd