TECHNOLOGIES
FORUMS
JOBS
BOOKS
EVENTS
INTERVIEWS
Live
MORE
LEARN
Training
CAREER
MEMBERS
VIDEOS
NEWS
BLOGS
Sign Up
Login
No unread comment.
View All Comments
No unread message.
View All Messages
No unread notification.
View All Notifications
Answers
Post
An Article
A Blog
A News
A Video
An EBook
An Interview Question
Ask Question
Forums
Monthly Leaders
Forum guidelines
Kristijan Koncar
NA
1
801
Problem with process privilege escalation
Sep 5 2015 4:49 PM
string file = "C:\test.bat";
ProcessStartInfo psi = new ProcessStartInfo();
psi.Domain = "KRISTIJANK";
psi.UserName = "John";
psi.Password = sec_pass; //created in Form_Load
psi.WorkingDirectory = @"C:\Windows\System32";
psi.FileName = @"cmd.exe";
psi.Arguments = @"/C del " + file;
psi.UseShellExecute = false;
Process.Start(psi);
Idk whay this code not working...
CMD window appear and disapear without an error.
Maybe process arent started as admin? :/
p.s. John is admin
Reply
Answers (
1
)
caculator
C# signal processing