Click here to Skip to main content
15,867,686 members
Articles / Programming Languages / C#
Article

Bat file compiler

Rate me:
Please Sign up or sign in to vote.
3.82/5 (47 votes)
13 Feb 2008CPOL1 min read 167K   3.5K   106   49
An article deskribing how to convert a bat file to an executable.

Image 1

Contents

Introduction

This article shows how to compile a bat file into an executable file. The compiled executable can run without showing a window, and you can pass command line parameters to it as you would pass them to the bat file.

How the program works

The way this program compiles a bat file is quite tricky and weird, so I call this program a "Mock compiler". The bat file is not even parsed. This program creates another program, and adds the specified bat file as an embedded file in that program. When the generated program is executed, it extracts the embedded bat file to a temp folder, and runs it using the Process class. Simple, isn't it?

Using the code

In order to create another program from your application, you will need to create an instance of the CSharpCodeProvider class. The code snippet below shows how to do it:

C#
using (CSharpCodeProvider code=new CSharpCodeProvider())
{
    CompilerParameters compar = new CompilerParameters();

    string option = "/target:winexe";

    // Set the icon for executable
    if (Properties.Settings.Default.Customicon && 
        File.Exists(Properties.Settings.Default.iconpath))
    {
       option += " " + "/win32icon:" + "\"" + 
                 Properties.Settings.Default.iconpath + "\"";
    }

    compar.CompilerOptions = option;
    compar.GenerateExecutable = true;
    compar.IncludeDebugInformation = false;

    //Add the bat file as an embedded resource
    if (File.Exists(filepath))
    {
       compar.EmbeddedResources.Add(filepath); 
    }

    compar.OutputAssembly = path;
    compar.GenerateInMemory = false; 

    //Add references
    compar.ReferencedAssemblies.Add("System.dll");
    compar.ReferencedAssemblies.Add("System.Data.dll");
    compar.ReferencedAssemblies.Add("System.Deployment.dll");
    compar.ReferencedAssemblies.Add("System.Drawing.dll");
    compar.ReferencedAssemblies.Add("System.Windows.Forms.dll");
    compar.ReferencedAssemblies.Add("System.Xml.dll");

    compar.TreatWarningsAsErrors = false;

    //Compile it
    //The code is included in the executable as a resource
    CompilerResults res = 
              code.CompileAssemblyFromSource(compar, Properties.Resources.Program);

    if (res.Errors.Count > 0)
    {
       result = false;
    }
    else
       result = true;
    }

When you run the generated executable, it will extract the bat file, process the command line arguments if any, and run it. If specified, the bat file will run without creating any window. Here is the code that shows how this is accomplished.

C#
//This code requires System.Reflection namespace
//Extracts the bat file
private void extract()
{
    string name = Assembly.GetExecutingAssembly().GetManifestResourceNames()[0];
    hide = name.EndsWith("hideit.bat");

    Stream theResource = Assembly.GetExecutingAssembly().GetManifestResourceStream(name);

    BinaryReader br = new BinaryReader(theResource);
    FileStream fs = new FileStream(Environment.GetEnvironmentVariable("TEMP") + 
                    "\\it.bat", FileMode.Create);

    byte[] bt = new byte[theResource.Length];
    theResource.Read(bt, 0, bt.Length);
    fs.Write(bt, 0, bt.Length);

    br.Close();
    fs.Close();
}

//Process command line arguments
private string buildargument(string[] args)
{
    StringBuilder arg = new StringBuilder();

    for (int i = 0; i < args.Length; i++)
    {
       arg.Append(args[i] + " ");
    }

    return arg.ToString();
}

//Start the process
private void start(string[] args)
{
    ProcessStartInfo info = new ProcessStartInfo();
    info.FileName = Environment.GetEnvironmentVariable("TEMP") + "\\it.bat";

    //Specify argument
    info.Arguments = buildargument(args);

    //Hide the window if specified
    info.CreateNoWindow = hide;
    if (hide)
    {
        info.WindowStyle = ProcessWindowStyle.Hidden;
    }

    //Set the working directory for the bat file. This is important as the
    //bat file might use relative path
    info.WorkingDirectory = Application.StartupPath;

    //At last start the process
    Process proc = new Process();
    proc.StartInfo = info;
    proc.Start();
}

Points of interest

The way this program compiles bat files is quite tricky and a little bit strange.

History

  • 17 June, 2007 - Initial release.

License

This article, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)


Written By
Software Developer
Georgia Georgia
This member has not yet provided a Biography. Assume it's interesting and varied, and probably something to do with programming.

Comments and Discussions

 
QuestionThanks! Pin
Pavlovic Predrag13-May-20 7:14
Pavlovic Predrag13-May-20 7:14 
QuestionThanks. Pin
pier pier6-Jul-19 18:29
pier pier6-Jul-19 18:29 
Questioninteresting Pin
hdbbdh19-Mar-14 21:54
hdbbdh19-Mar-14 21:54 
GeneralMy vote of 5 Pin
Gun Gun Febrianza5-Jan-12 3:27
Gun Gun Febrianza5-Jan-12 3:27 
GeneralRe: My vote of 5 Pin
Member 18269037-Feb-12 19:57
Member 18269037-Feb-12 19:57 
QuestionAdd stuff... Pin
Brandon-X120005-Dec-11 2:30
Brandon-X120005-Dec-11 2:30 
Generalwithout dos window Pin
Hafiz Muhammad Suleman19-Feb-11 8:45
Hafiz Muhammad Suleman19-Feb-11 8:45 
QuestionExe shown code Pin
mohit kumar paliwal19-Feb-08 19:15
mohit kumar paliwal19-Feb-08 19:15 
GeneralUnusefull Pin
Izzet Kerem Kusmezer13-Feb-08 21:09
Izzet Kerem Kusmezer13-Feb-08 21:09 
GeneralRe: Unusefull Pin
Brandon-X120005-Dec-11 2:34
Brandon-X120005-Dec-11 2:34 
GeneralRe: G E N I A L, Sir !!!!!!!!!! Pin
Giorgi Dalakishvili14-Nov-07 19:49
mentorGiorgi Dalakishvili14-Nov-07 19:49 
Thanks Smile | :)

#region signature
my articles
#endregion

GeneralTemp filename Pin
Guido_d5-Nov-07 21:38
Guido_d5-Nov-07 21:38 
GeneralRe: Temp filename Pin
Giorgi Dalakishvili5-Nov-07 21:44
mentorGiorgi Dalakishvili5-Nov-07 21:44 
AnswerRe: Temp filename Pin
lvorrtax14-Nov-07 13:09
lvorrtax14-Nov-07 13:09 
GeneralGood Idea. Pin
NormDroid5-Nov-07 20:50
professionalNormDroid5-Nov-07 20:50 
GeneralRe: Good Idea. Pin
Giorgi Dalakishvili5-Nov-07 21:44
mentorGiorgi Dalakishvili5-Nov-07 21:44 
GeneralInteresting... Pin
PIEBALDconsult22-Aug-07 4:54
mvePIEBALDconsult22-Aug-07 4:54 
GeneralRe: Interesting... Pin
Giorgi Dalakishvili22-Aug-07 4:58
mentorGiorgi Dalakishvili22-Aug-07 4:58 
GeneralRe: Interesting... Pin
MartyK200723-Sep-07 21:47
MartyK200723-Sep-07 21:47 
GeneralRe: Interesting... Pin
J4amieC10-Oct-07 23:02
J4amieC10-Oct-07 23:02 
GeneralRe: Interesting... Pin
MartyK200710-Oct-07 23:06
MartyK200710-Oct-07 23:06 
GeneralRe: Interesting... Pin
ogrig11-Oct-07 14:05
ogrig11-Oct-07 14:05 
GeneralRe: Interesting... Pin
MartyK200711-Oct-07 22:53
MartyK200711-Oct-07 22:53 
GeneralRe: Interesting... Pin
PCoffey13-Feb-08 9:23
PCoffey13-Feb-08 9:23 
GeneralIt's pefect if encryption function added Pin
frx23-Jul-07 21:26
frx23-Jul-07 21:26 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.