Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 169083
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 11, 20262026-05-11T12:34:03+00:00 2026-05-11T12:34:03+00:00

I have an Windows Form application that supplies the User Name, Domain, and Password

  • 0

I have an Windows Form application that supplies the User Name, Domain, and Password to the StartInfo, and it throws this:

System.ComponentModel.Win32Exception: The handle is invalid at System.Diagnostics.Process.StartWithCreateProcess(ProcessStartInfo startInfo) at System.Diagnostics.Process.Start()

When I allow the credentials to default to current user I get no such error, and the process I start works to the extent that it doesn’t need to use credentials (the creds are necessary for mapping a drive in an MSBuild script). Here’s the code that fills the start info:

Process p = new Process(); ProcessStartInfo si = new ProcessStartInfo(buildApp, buildArgs); si.WorkingDirectory = msBuildWorkingDir; si.UserName = txtUserName.Text; char[] psw = txtPassword.Text.ToCharArray(); SecureString ss = new SecureString(); for (int x = 0; x < psw.Length; x++) {     ss.AppendChar(psw[x]); } si.Password = ss; si.Domain = 'ABC'; si.RedirectStandardOutput = true; si.UseShellExecute = false; si.WorkingDirectory = txtWorkingDir.Text; p.StartInfo = si; p.Start(); 

It isn’t that the user/psw isn’t matching, because when I provide a bad psw, for example, it catches it. So, this ‘invalid handle’ thing is happening after the cred is passed. Any ideas on what I might be omitting or screwing up?

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. 2026-05-11T12:34:04+00:00Added an answer on May 11, 2026 at 12:34 pm

    You have to redirect your Input, Error, and Output.

    for example:

    ProcessStartInfo info = new ProcessStartInfo('cmd.exe');  info.UseShellExecute = false;  info.RedirectStandardInput = true;  info.RedirectStandardError = true;  info.RedirectStandardOutput = true;  info.UserName = dialog.User;   using (Process install = Process.Start(info)) {        string output = install.StandardOutput.ReadToEnd();        install.WaitForExit();        // Do something with you output data            Console.WriteLine(output);  } 

    Also microsoft has said the error should read, ‘Unable to redirect input.’ (used to have a link, but that no longer worked)

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I have a C# Windows Form application that contains a menu with this event:
I have a Windows Form application. What this application does, is let the user
I have an a windows form application that use one class (its name is
I have a Windows Form Application Project that references a class library containing user
I have a windows form application where a user inputs their name (First and
I have a Windows form application that's consuming web services over https and is
I have a combo box in a C# Windows form application that is being
I have a Windows application that has 2 Forms . From one form I
I am using windows application and I have four combo boxes(comboeventname,combosendtype,comboType,comboschedule) in that form....
I have a Windows form application that users can log into. The application is

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.