Search found 109 matches

by phillid
07 Apr 2010 20:03
Forum: DOS Batch Forum
Topic: Password for bat Access!!
Replies: 8
Views: 9598

Re: Password for bat Access!!

I am using one of the first versions of Bat to Exe converter. It doesn't have a decompiler feature, does the latest version? It's standalone so it doesn't require any installation, it just comes with a .exe and a .hlp. In my version of it, The ADD function just lets you have extra information in the...
by phillid
05 Apr 2010 20:30
Forum: DOS Batch Forum
Topic: Making Batch files a command
Replies: 0
Views: 4069

Making Batch files a command

Hey. I have half a dozen batch files that I want to be able to run from the command line. I can't write to the C: drive because I'm not an admin. How can I do this??
Thanks 8)
by phillid
05 Apr 2010 20:05
Forum: DOS Batch Forum
Topic: Password for bat Access!!
Replies: 8
Views: 9598

Re: Password for bat Access!!

You could do a piece of code something like: set /P %password% = "Please enter the password:" if %password% == your_password ( echo Password correct! [your code] ) else ( echo Password incorrect! exit /B ) This would be easily hacked by opening the batch file for editing unless you downloa...
by phillid
03 Apr 2010 20:38
Forum: DOS Batch Forum
Topic: How do I put arguments in my batch file?
Replies: 2
Views: 3989

How do I put arguments in my batch file?

I know this sounds a dumb and simple question, but how do I put arguments in my batch file? For example, I want to be able to run some of my own batch files from the command line like: example.bat /A /2 /F /T --OR-- example.bat -W +E -1 -G +5 Can I please get some help on how to do this? Am I able t...