Link to home
Start Free TrialLog in
Avatar of scs-paul
scs-paul

asked on

RUNAS error - windows 7 PC running batch script via unc

I have a Windows 7 PC where the user opens a batch file from a mapped drive which then calls a script via a unc path using the runas command to elevate privileges.  This works from an XP machine but not from a Windows 7 machine.

For example the first script on the mapped drive is as follows:

runas /user:scs\chrismanbup \\192.1.3.4\manual_backup\test.bat

The user then keys the password for the chrismanbup account and we get the below error from the Windows 7 machine:

Attempting to start \\192.1.3.4\manual_backup\test.bat as user "scs\chrismanbup" ...
RUNAS ERROR: Unable to run - \\192.1.3.4\manual_backup\test.bat
299: Only part of a ReadProcessMemory or WriteProcessMemory request was completed.

The user is not an administrator but if I use "Run as administrator" it still gives the same error. As mentioned if I run from an XP machine as the same user it runs.

Any ideas?
Avatar of villeah
villeah

Hello,

Are you trying with 64-bit or 32-bit Windows 7? What is the script trying to do?
Avatar of scs-paul

ASKER

This is 32bit Windows 7.  The script does the above - it calls a second script on another server using elevated privileges. The script fails with the aforementioned-mentioned error and does not start the second script.
Avatar of Qlemo
It might be because the mapped drive is not available to the other user in runas, so while trying to start the command the working dir is removed. For test, try if running the script locally helps.
I can map the drive as the user in the runas script from an XP machine but not from a Windows 7 machine. This occurs whether UAC is on or off.
How do you try to map the drive? Can you map it outside of the runas script as that user?
No I cannot map the drive from Windows 7 as the user in the runas script from windows explorer menu but I can do so from an XP machine.
Hmm. But you can see the server's share on the W7 PC if you just type   \\servername   in Explorer?
Tried mapping the share on another Windows 7 machine and it could map as the runas user which was not working on the other Windows 7 machine this morning. Tried again on the original machine  and it is now mapping the share as the runas user.
This has not solved the error when using the first script to call to this share and run the batch file and I assume this is to do with UNC paths and added security to Win7.
I need to use the first script to call the second script with the elevated privileges as the second script deletes/moves some directories and then stops a service on the machine, copies some files and then restarts the service - so needs to run as an administrator.
Mapping the drive on the windows 7 PC and then right clicking the second script batch file (while holding shift) and using "run as different user" and using the RUNAS user from the script has the same error as running the first script to call the second script.

ASKER CERTIFIED SOLUTION
Avatar of scs-paul
scs-paul

Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial
Eventually solved this issue by using the /netonly switch in the runas command line.