João Paul
Named pipe connection over network error (The username or password is incorrect)
When running a solution where one machine runs a server and a second machine runs a client connecting via named pipes I'm having a strange issue.
If both machines run the same Microsoft account, the connection is done successfully. However, if the account is not the same, the connection fails with a "The username or password is incorrect" exception on the client side.
I already added an access rule where I gave the WorldSid full control so I do not believe it to be a permission issue. I'm however wondering if it is a limitation that I'm not aware of.
3 replies
✅ Running cmd line command via c# not working
Hello everyone.
I have the following code:
kioskProcess = new Process
{
StartInfo =
{
FileName = "cmd.exe",
WorkingDirectory = Constants.KioskPath,
Arguments = @"npm start",
UseShellExecute = false,
}
};
kioskProcess.Start();
If I run this, the command line opens and goes to the working directory correctly but never runs the "npm start". Am I doing something really stupid here?
4 replies