Jump to content

Simple little batch creator/installer


uber125
 Share

Recommended Posts

Yea it's lame but I just thought I would share it.

$file = FileOpen ("C:\hello world.bat", 1)
$file = FileOpen ("hello world.bat", 1)
; Check if file opened for writing OK
If $file = -1 Then
    MsgBox(0, "Error", "Unable to open file.")
    Exit
EndIf

FileWriteLine($file, "@Echo off")
FileWriteLine($file, "color 03")
FileWriteLine($file, "Echo Hello World")
FileWriteLine($file, "pause")
FileWriteLine($file, "Echo This window will now close")
FileWriteLine($file, "pause")
Link to comment
Share on other sites

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now
 Share

  • Recently Browsing   0 members

    • No registered users viewing this page.
×
×
  • Create New...