Skip to content
  • Categories
  • Recent
  • Tags
  • Popular
  • World
  • Users
  • Groups
Skins
  • Light
  • Cerulean
  • Cosmo
  • Flatly
  • Journal
  • Litera
  • Lumen
  • Lux
  • Materia
  • Minty
  • Morph
  • Pulse
  • Sandstone
  • Simplex
  • Sketchy
  • Spacelab
  • United
  • Yeti
  • Zephyr
  • Dark
  • Cyborg
  • Darkly
  • Quartz
  • Slate
  • Solar
  • Superhero
  • Vapor

  • Default (No Skin)
  • No Skin
Collapse
Code Project
  1. Home
  2. General Programming
  3. C#
  4. process.startinfo

process.startinfo

Scheduled Pinned Locked Moved C#
securityquestion
4 Posts 2 Posters 0 Views 1 Watching
  • Oldest to Newest
  • Newest to Oldest
  • Most Votes
Reply
  • Reply as topic
Log in to reply
This topic has been deleted. Only users with topic management privileges can see it.
  • A Offline
    A Offline
    arkiboys
    wrote on last edited by
    #1

    Hi, Is this correct? I am not sure why I get unknown username or bad password. Note that the login and password I enter are both correct. Is there something wrong with the way I am setting the username and password? Thanks private void CheckLogin() { System.Diagnostics.Process process = new System.Diagnostics.Process(); process.StartInfo.FileName = "cscript.exe"; process.StartInfo.Arguments = strScriptPath; process.StartInfo.WindowStyle = System.Diagnostics.ProcessWindowStyle.Hidden; process.StartInfo.UseShellExecute = false; process.StartInfo.RedirectStandardOutput = true; process.StartInfo.UserName = "myusername"; System.Security.SecureString strPassword = ReadPassword("password"); } public static System.Security.SecureString ReadPassword(string password) { System.Security.SecureString secPass = new System.Security.SecureString(); for (int i = 0; i < password.Length; i++) secPass.AppendChar(password[i]); return secPass; }

    C 1 Reply Last reply
    0
    • A arkiboys

      Hi, Is this correct? I am not sure why I get unknown username or bad password. Note that the login and password I enter are both correct. Is there something wrong with the way I am setting the username and password? Thanks private void CheckLogin() { System.Diagnostics.Process process = new System.Diagnostics.Process(); process.StartInfo.FileName = "cscript.exe"; process.StartInfo.Arguments = strScriptPath; process.StartInfo.WindowStyle = System.Diagnostics.ProcessWindowStyle.Hidden; process.StartInfo.UseShellExecute = false; process.StartInfo.RedirectStandardOutput = true; process.StartInfo.UserName = "myusername"; System.Security.SecureString strPassword = ReadPassword("password"); } public static System.Security.SecureString ReadPassword(string password) { System.Security.SecureString secPass = new System.Security.SecureString(); for (int i = 0; i < password.Length; i++) secPass.AppendChar(password[i]); return secPass; }

      C Offline
      C Offline
      Curtis Schlak
      wrote on last edited by
      #2

      It doesn't look like that you're setting the password on the process.StartInfo.Password property....

      "we must lose precision to make significant statements about complex systems." -deKorvin on uncertainty

      A 1 Reply Last reply
      0
      • C Curtis Schlak

        It doesn't look like that you're setting the password on the process.StartInfo.Password property....

        "we must lose precision to make significant statements about complex systems." -deKorvin on uncertainty

        A Offline
        A Offline
        arkiboys
        wrote on last edited by
        #3

        This is what I am doing now but still get the same error: process.StartInfo.UserName = "username"; process.StartInfo.Password = ReadPassword("password"); Any thoughts please?

        C 1 Reply Last reply
        0
        • A arkiboys

          This is what I am doing now but still get the same error: process.StartInfo.UserName = "username"; process.StartInfo.Password = ReadPassword("password"); Any thoughts please?

          C Offline
          C Offline
          Curtis Schlak
          wrote on last edited by
          #4

          Is the account that you're using a domain account? If so, you might need

          process.StartInfo.UserName = "domain\username";

          for it to work properly.

          "we must lose precision to make significant statements about complex systems." -deKorvin on uncertainty

          1 Reply Last reply
          0
          Reply
          • Reply as topic
          Log in to reply
          • Oldest to Newest
          • Newest to Oldest
          • Most Votes


          • Login

          • Don't have an account? Register

          • Login or register to search.
          • First post
            Last post
          0
          • Categories
          • Recent
          • Tags
          • Popular
          • World
          • Users
          • Groups