Advertisement
Guest User

Untitled

a guest
Feb 11th, 2016
94
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.27 KB | None | 0 0
  1. ProcessStartInfo myProcess = new ProcessStartInfo(@"C:Program FilesInternet Exploreriexplore.exe");
  2. myProcess.UserName = username;
  3. myProcess.Password = MakeSecureString(password);
  4. myProcess.UseShellExecute = false;
  5. Process.Start(myProcess);
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement