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

  • Home
  • SEARCH
  • 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 8636215
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 12, 20262026-06-12T10:10:37+00:00 2026-06-12T10:10:37+00:00

I am opening the command prompt from c# Process.Start(cmd); when it opens i need

  • 0

I am opening the command prompt from c#

 Process.Start("cmd");

when it opens i need to write ipconfig automatically such that process opens and finds the ip of the workstation, How should i do that?

  • 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-12T10:10:38+00:00Added an answer on June 12, 2026 at 10:10 am

    EDIT

    Process p = new Process();
    p.StartInfo.UseShellExecute = false;
    p.StartInfo.RedirectStandardOutput = true;
    p.StartInfo.FileName = "ipconfig.exe";
    p.Start();
    p.WaitForExit();
    string output = p.StandardOutput.ReadToEnd();
    return output;
    

    or

    EDIT

      Process pr = new Process();
      pr.StartInfo.FileName = "cmd.exe";
      pr.StartInfo.Arguments = "/k ipconfig"; 
      pr.Start();
    

    Check : How to Execute a Command in C# ?

    System.Diagnostics.Process process = new System.Diagnostics.Process(); 
    System.Diagnostics.ProcessStartInfo startInfo = new System.Diagnostics.ProcessStartInfo();
     startInfo.WindowStyle = System.Diagnostics.ProcessWindowStyle.Hidden;
     startInfo.FileName = "cmd.exe";
     startInfo.Arguments = "ipconfig";
     process.StartInfo = startInfo;
     process.Start(); 
    

    or

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

When I run commit from a standard command prompt it is opening the configured
In the Windows Explorer there is a function 'command-prompt-here' that opens a command prompt
I'm having some trouble with getting input from the command line before opening a
I going to get the command prompt from my C# application to compile some
How can you use imagemagick from python without opening a new command line window
I am trying to keep my command prompt from closing when there is an
After opening a directory, I wanna check if a command (such as ls) resides
Opening the calculator to do such tiny stuff appears annoying to me ,and I
Opening an application( probably an .exe file) as an administrator in headless mode from
I am running a find command for a particular file that I know exists.

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.