The GoTo Community is currently experiencing some technical issues affecting new posts and comments. We are actively working with our service provider and apologize for the frustration.

Forum Discussion

0000000000's avatar
0000000000
New Contributor
2 years ago
Solved

Scripting Limitations/unable to run certain commands in C:\WINDOWS\System32

I have the following script that I am deploying to a LogMeIn session with private session mode (using link to download LogMeIn agent and not calling card). The LogMeIn technician console and the agen...
  • GlennD's avatar
    2 years ago

    Hi 0000000000, welcome to the community.

     

    I have been informed that the best practice is to check if path C:\Windows\Sysnative\msg.exe exists and then refer msg.exe this way in the shell, otherwise you may call simply msg.exe. 

     

     

    It is recommended to use the following code in a CMD file:
    "
    if exist C:\Windows\Sysnative\msg.exe (
         C:\Windows\Sysnative\msg.exe blabla........
    ) else (
         msg.exe blabbla...
    )
    "

    I hope this helps.