Reputation: 622
I want to run a EXE file under current user in windows XP. I want to do that ProcessStartInfo class and Process.Start() method.
In current user there is no password.
so how can i do that ?
Upvotes: 3
Views: 2099
Reputation: 499002
Process.Start
will execute under the current account by default. You do not have to provide credentials for that to happen.
Upvotes: 6