How to make an .EXE app?

March 28, 2010

An EXE is the file extension in Windows operating systems, which donates that that file is executable and can be installed. For a programmer creating an executable file is not a big thing, but for  non- techies it is a great thing. Today here in this post at Chaaps I am going to show you a tutorial how can you create a simple executable file without any programming knowledge.

Steps

  • Download a small application of 422Kb called Bat to EXE converter from here. Using this app you can easily convert any batch coded file to EXE.
  • Second step is to create a batch application. Those who don’t how what is a batch application? Let me explain you first. It is a notepad file coded with CMD command and saved with .BAT extension, here in this tutorial I am going to show an example with a simple batch code to cancel any printing job.
  • Copy paste this code in a notepad file with . bat extention.

@echo off
echo Stopping print spooler.
echo.
net stop spooler
echo deleting stuff... where? I'm not sure. Just deleting stuff.
echo.
FOR %%A IN (%systemroot%system32spoolprinters*.*) DO DEL %%A
echo Starting print spooler.
echo.
net start spooler

  • After copying the code start the Bat to EXE converter application.
  • Browse the batch app and set the directory where you want it to be converted and get saved.
  • You can easily encrypt, password protect it or add Windows Vista admin manifest.
  • To add encryption click on the “Encrypt” and enter the password.
  • To add Windows Vista admin manifest click on the “Add Vista Adminstrator mainfest” below the Misc section.

Make it Pro!

Version Info

Version Info

You can easily make it look like a professional looking application by adding an icon, version info and etc etc by clicking on the version information tab. Yo! your professional looking EXE application is ready without doing any programming. You can download it from here.

Similar Post:
  • 10 Awesome Notepad Tricks
  • 5 More Notepad Tricks
  • Make your own portable software that runs from a pen drive without installation
  • Delete extra large folders within seconds!
  • New iPhone app, Pepsi Loot. Get freebies for an entry in restaurants!
  • { 13 comments… read them below or add one }

    Ankit March 28, 2010 at 6:54 pm

    Yay! my first post on Chaaps approved!
    Ankit´s last blog ..Internet Explorer losing its Market Share! My ComLuv Profile

    Reply

    Chethan Thimmappa March 28, 2010 at 7:03 pm

    Very Nicely Explained Ankit.. liked this post… for me building an App is a GREAT thing as you said :P

    Welcome to Chaaps dot com :)

    Reply

    Ankit April 1, 2010 at 11:22 pm
    provamsi @ India365 March 28, 2010 at 10:02 pm

    I too liked it. But I seriously don’t know how to create a .exe file.
    provamsi @ India365´s last blog ..Best Gaming Laptop with 3D Effects and High Definition Sound My ComLuv Profile

    Reply

    Suhasini March 29, 2010 at 12:11 am

    Good one Ankit, I was also not aware of making .exe file. You have written a nice article.
    Suhasini´s last blog ..Loudable is Kicking-off “All Categories” from 1st April till 31st May My ComLuv Profile

    Reply

    Ankit March 29, 2010 at 10:30 am

    @All: Thanks ;)

    Reply

    Shiva March 29, 2010 at 2:23 pm

    Great article ankit, Even though we do not a little bit of understanding of Batch programming for creating .bat programs like that. None the less converting from .bat to .exe would have been impossible without this app. Thanks ma
    Shiva´s last blog ..WebSecurify – Finds Out Your Sites’ Vulnerabilities My ComLuv Profile

    Reply

    Siddhu March 29, 2010 at 9:27 pm

    I sense danger :P wondering why you’re playing around with the spooler :P anyway awesome post….
    Siddhu´s last blog ..Tips to choose your antivirus My ComLuv Profile

    Reply

    Samuel March 30, 2010 at 10:31 am

    Lol simple nd nice tip! Need to try it lol

    Reply

    Ankit April 1, 2010 at 11:23 pm

    Give it a try and let me know about your experience please. :)
    Ankit´s last blog ..Use front cam of Sony Ericsson w910i to capture & record! My ComLuv Profile

    Reply

    Pubudu Kodikara March 30, 2010 at 3:33 pm

    Cool post mate! thanks for the geeky tips :D
    Pubudu Kodikara´s last blog ..The Top Free Malware Killer for Windows My ComLuv Profile

    Reply

    Ankit April 1, 2010 at 11:23 pm
    Sourish May 9, 2010 at 4:15 pm

    we can do that in c++ compiler too . nice post
    Sourish´s last blog ..The Art of Public Speaking My ComLuv Profile

    Reply

    Leave a Comment

    CommentLuv Enabled

    Previous post:

    Next post: