jitendra gupta

jitendra gupta

  • NA
  • 7
  • 4.3k

Window user Network Account

May 31 2014 6:29 AM
System.Diagnostics.Process command = new System.Diagnostics.Process();
command.StartInfo.UserName ="Raushan";
command.StartInfo.Domain ="Raushan-PC";
System.Security.SecureString pwd = new System.Security.SecureString();
command.StartInfo.Password = pwd;
command.StartInfo.Verb ="osmo@raushan";
try
{
CreateFolder();
}
catch (Win32Exception e11)
{
MessageBox.Show(e11.Message);
}
command.Close();
 
 
i am using this but its given error "Login Failure Unknown Username and Bad password "
but i am uisng correct password, please help me,,,,,,,,