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 6664681
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 26, 20262026-05-26T02:38:17+00:00 2026-05-26T02:38:17+00:00

I am trying to pass parameters from a .Net console app to a batch

  • 0

I am trying to pass parameters from a .Net console app to a batch file. The parameters are not coming into the batch file.

How can I properly set up passing the parameters into the bat file?

Here is the method in the console app that I’m executing.

private static int ProcessBatFile(string ifldr, string ofldr, string iext, string oext, Int16 filewidth, Int16 fileheight, Int16 ctr)
        {
            ProcessStartInfo psi = new ProcessStartInfo();
            psi.FileName = ConfigurationSettings.AppSettings.Get("BatProcessDir") + "imagemagick.bat";
            psi.Arguments = "-ifldr=" + ifldr + " -ofldr=" + ofldr + " -iext=" + iext + " -oext=" + oext + " -iwid=" + filewidth + " -ihgt=" + fileheight;
            psi.UseShellExecute = false;

            Process process = new Process();
            process.StartInfo = psi;
            process.Start();

            return ctr;
        }

Below, is the code in the bat file I’m trying to execute:

@echo on

echo %ofldr%

echo %ifldr%

echo %iwid%

echo %ihgt% 

echo %oext% 

echo %iext%
  • 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-05-26T02:38:17+00:00Added an answer on May 26, 2026 at 2:38 am

    If you pass them as paramters, you can do this in the c# code:

    psi.Arguments = ifldr + " " + ofldr + " " + iext + " " + oext + " " + filewidth + " " + fileheight;
    

    and do this in the batch file:

    @echo on
    set ifldr=%1
    set ofldr=%2
    set iext=%3
    set oext=%4
    set iwid=%5
    set ihgt=%6
    
    echo %ofldr%
    echo %ifldr%
    echo %iwid%
    echo %ihgt% 
    echo %oext% 
    echo %iext%
    

    As an alternative solution, you can also directly modify the environment before executing the batch file using System.Environment.SetEnvironmentVariable:

    System.Environment.SetEnvironmentVariable ("ifldr", ifldr);
    ....
    

    This causes less problems if the parameters may contain spaces.

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

Sidebar

Related Questions

I am trying to pass parameters from Visual Studio using VB.net to a Crystal
I'm trying to pass 2 parameters from JQuery's Autocomplete plugin to an ASP.Net MVC2
I'm trying to pass parameters from HTML-land to Flex-3 Flash-land, and can't seem to
I'm trying to pass parameters from a PHP middle tier to a java backend
I am trying to pass parameters from one action (foo) to another (foobar). In
I'm trying to find an easy way to pass parameters from my C# class
I'm trying to insert values from my asp.net application into my MySQL database. On
I'm trying to run a batch file on a server via an ASP.Net page,
I'm trying to pass some parameters (count) from a form to a model. The
I'm trying to pass parameters to my static web method (which is in an

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.