N-able / CustomMonitoring

Custom Monitoring components for N-Central
52 stars 45 forks source link

Storagecraft Imagemanager, ImageManagerPoll.exe doesn't work on when applied on 32-Bit OS #1

Closed chriscrisp closed 9 years ago

chriscrisp commented 9 years ago

The script has been incredibly usefull, however, I have run into an issue when attempting to run the ImageManagerPoll.exe.
Upon examining the source, I found that at least part of the problem is due to the call in ImageManagerPoll/Program.cs to "C:\windows\SysWOW64\config\systemprofile\AppData\local\StorageCraft_Technology_C" on line 69 and 72. In 32-bit Windows, these calls would be to "C:\windows\System32\config\systemprofile\AppData\local\StorageCraft_Technology_C".

Unfortunately, I have no programming experience to fix this. But I am hoping that this will help

chriscrisp commented 9 years ago

Also, any references to "C:\Program Files (x86)", would have to be "C:\Program Files"

jamesweakley commented 9 years ago

Thanks for reporting this, and it looks like you've figured out the issue. I'll post a fix for it soon, but in the meantime you can work around the issue by symlinking the SysWOW64 folder:

C:\Windows>mklink /J SysWOW64 system32

jamesweakley commented 9 years ago

I've committed a fix for this issue, try downloading the new executable

chriscrisp commented 9 years ago

Thanks for the quick response.. I'll give it a go!