Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 8527319
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 11, 20262026-06-11T08:31:29+00:00 2026-06-11T08:31:29+00:00

Hoping you can help me with the code below, when a user logs into

  • 0

Hoping you can help me with the code below, when a user logs into a certain PC the program below runs. After the process the runs the exe closes I want the PC to logoff, the myProcess_Exited method below doesn’t run, can you spot any problems?

Thanks
Steven

private void myProcess_Exited(object sender, System.EventArgs e)
 {
         System.Diagnostics.Process proc1 = new System.Diagnostics.Process();
         proc.StartInfo.FileName = "C:\\windows\\SysWOW64\\shutdown.exe";
         proc1.StartInfo.Arguments = "/l";
         proc1.StartInfo.UseShellExecute = false;
         proc1.StartInfo.RedirectStandardOutput = false;
         proc1.Start();
         Application.Exit();
}

private void Form1_Load(object sender, EventArgs e)
{
             System.Diagnostics.ProcessStartInfo p = new                                            System.Diagnostics.ProcessStartInfo(@"K:\App\pc\stub.exe");
             p.Arguments = "-RunForever";
             proc = new System.Diagnostics.Process();
             proc.StartInfo = p;
             proc.EnableRaisingEvents = true;
             proc.Exited += new EventHandler(myProcess_Exited);
             proc.Start();
 }
}
  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-06-11T08:31:30+00:00Added an answer on June 11, 2026 at 8:31 am

    The below one works perfectly fine.

        Process proc = new Process();
    
        private void myProcess_Exited(object sender, System.EventArgs e)
        {
            System.Diagnostics.Process proc1 = new System.Diagnostics.Process();
            proc1.StartInfo.FileName = "C:\\windows\\SysWOW64\\shutdown.exe";
            proc1.StartInfo.Arguments = "/l";
            proc1.StartInfo.UseShellExecute = false;
            proc1.StartInfo.RedirectStandardOutput = false;
            proc1.Start();
            Application.Exit();
        }
    
        private void Form1_Load(object sender, EventArgs e)
        {
            System.Diagnostics.ProcessStartInfo p = new System.Diagnostics.ProcessStartInfo(@"K:\App\pc\stub.exe");
            p.Arguments = "-RunForever";
            Process proc = new System.Diagnostics.Process();
            proc.StartInfo = p;
            proc.StartInfo.CreateNoWindow = true;
            proc.EnableRaisingEvents = true;
            proc.Exited += new EventHandler(myProcess_Exited);
            proc.Start();
        }
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I'm hoping someone can help me with the below issue, which is likely very
Hoping someone can help. I am working on an aspx site, using the c#
Hoping someone can help me with a slight hurdle I've come up against in
Hoping you can help as im not sure how to approach this. Cant seem
im hoping someone can help me quickly with a question i have. As site
I'm hoping someone can help on this one, I have created a custom object
I am really hoping someone can help me out, because I'm really stuck on
I am hoping someone can help me with a css problem... I am using
I am hoping someone can help me with a question i have relating to
I'm hoping someone can help me as I've been stuck on this problem for

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.