• We’re currently investigating an issue related to the forum theme and styling that is impacting page layout and visual formatting. The problem has been identified, and we are actively working on a resolution. There is no impact to user data or functionality, this is strictly a front-end display issue. We’ll post an update once the fix has been deployed. Thanks for your patience while we get this sorted.

XP Pro-Starting a program from a scheduled task as another user without a password

BG4533

Golden Member
I have a scheduled task that runs a batch file. The batch file does a number of things and needs to be invisible to the current user. I would like the batch file to start up a program if the program is not already running. The user has to be able to interact with the program so the program cannot be started as System. I can start the program using runas, but then it prompts for a password and this is not acceptable either. Does anyone have any idea how I can go about accomplishing this? Thanks.
 
This may or may not do the trick: go to Control Panel > Administrative Tools > Local Security Policy and start it. Drill down to Local Policies > Security Options and look at the third item, Accounts: Limit loca account use of blank passwords to console logon only. I dunno, it might work if you disable that.
 
look at psexec (from the pstools kit) and that may work
psexec \\localhost -i -u username -p password batchfile.bat

 
Originally posted by: Rilex
If you want to interact with the local user, you're going to have to have their password.

I don't think so, not with psexec. You specify username and p/w with -u and -p, and -i makes it desktop interactive. Not sure, I'm always looking to get remote stuff done, not local stuff.
 
Back
Top