Spinland
5 years agoNew Contributor
MacOS Big Sur host: no mouse click or keyboard input accepted from client
Since upgrading my Mac to MacOS Big Sur I am unable to interact with it via the LogMeIn Client (both MacOS and iOS versions of the client are affected) as it no longer accepts mouse clicks or keyboar...
- 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.