|
-
Oct 10th, 2006, 06:50 PM
#1
Thread Starter
PowerPoster
[2.0] Psi
I'm trying to run a process on another computer giving it user credentials however I always get the username or bad password exception. Any ideas what im doing wrong?
ProcessStartInfo psi = new ProcessStartInfo("notepad");
psi.Username = "Administrator";
psi.Password = theSecureString;
psi.Domain = "ComputerName";
psi.LoadUserProfile = true;
psi.UseShellExecute = false;
Process.Start(psi);
of course the username and password are correct.
any ideas?
Posting Permissions
- You may not post new threads
- You may not post replies
- You may not post attachments
- You may not edit your posts
-
Forum Rules
|
Click Here to Expand Forum to Full Width
|