Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I have a batch file that runs another batch file as a different user.

I also need to run the calling batch file remotely. Locally I can bypass having to enter the password with the /savecred option but then when I run the batch remotley, I still get prompted for the password but it would appear the connection times out because I'm brought back to the powershell prompt on the machine i'm connecting from.

my batch looks like this:

runas.exe  /env /savecred /user:sqlsvr_dba ".\myBatch.bat"

How can I run the remote batch on my local machine without having to enter the password? I've been trying to use powershell for this.

share|improve this question

1 Answer

Same question bothered me too :-) I've tried to workaround this with schtasks and eventcreate.Here i posted my solution :

http://ss64.org/viewtopic.php?id=1539

If you want to run the script on a remote machine you can also try with wmic:

http://ss64.org/viewtopic.php?id=1495

Hope these will help you.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.