Hello,
I have a project that launches another application from a mapped drive (drive mapped through domain login script). It works on 20 desktops, but not on 2... all users have the same permissions/rights to that mapped drive.
So 20 people can launch the app - 2 cannot - get an error that the path is not valid or does not exist. The same users can manually go to the file in Windows Explorer (in the mapped drive) and launch it.
This is the script that is associated with the button:
result = Shell.Execute("R:\\SAMSVision\\runcheq.bat", "open", "", "R:\\SAMSVision\\", SW_SHOWNORMAL, false);
Can I make a change that will fix this for them?
I have a project that launches another application from a mapped drive (drive mapped through domain login script). It works on 20 desktops, but not on 2... all users have the same permissions/rights to that mapped drive.
So 20 people can launch the app - 2 cannot - get an error that the path is not valid or does not exist. The same users can manually go to the file in Windows Explorer (in the mapped drive) and launch it.
This is the script that is associated with the button:
result = Shell.Execute("R:\\SAMSVision\\runcheq.bat", "open", "", "R:\\SAMSVision\\", SW_SHOWNORMAL, false);
Can I make a change that will fix this for them?
Comment