Any other bat to exe converters/wrappers?
Moderator: DosItHelp
Any other bat to exe converters/wrappers?
My question is, are there any other bat to exe converter/wrappers out here?
I only know of http://www.battoexeconverter.com/.
You may ask, "Why do you need other bat to exe converters when you already have one?".
So, i have seen that files converted with this program turn on quite a bit longer than normal .bat files, which is not suitable for making functions/plugins.
Is there a way to make it open just as fast as normal .bat files?
Thanks for any help.
- uglyninja
I only know of http://www.battoexeconverter.com/.
You may ask, "Why do you need other bat to exe converters when you already have one?".
So, i have seen that files converted with this program turn on quite a bit longer than normal .bat files, which is not suitable for making functions/plugins.
Is there a way to make it open just as fast as normal .bat files?
Thanks for any help.
- uglyninja
Re: Any other bat to exe converters/wrappers?
viewtopic.php?p=36858#p36858
No idea why people think they need to wrap Batch scripts into self-extractors.
Steffen
No idea why people think they need to wrap Batch scripts into self-extractors.
Steffen
Re: Any other bat to exe converters/wrappers?
better performanceaGerman wrote: ↑18 May 2018 17:10viewtopic.php?p=36858#p36858
No idea why people think they need to wrap Batch scripts into self-extractors.
Steffen
Re: Any other bat to exe converters/wrappers?
Quick Batch File Compiler v3.6.0.0 gives me a noticeable performance benefit after the script has been unpacked. [25-50]% is not unusual.
Re: Any other bat to exe converters/wrappers?
I might miss something, but isn't that the same statement as aGermans:Ed Dyreen wrote: ↑19 May 2018 08:40Quick Batch File Compiler v3.6.0.0 gives me a noticeable performance benefit after the script has been unpacked. [25-50]% is not unusual.
The (unpacked) batch file is (25-50%) faster than the executable (which probably is caused by unpacking the batch file).
Beside this i downloaded and tested "Quick Batch File Compiler v3.6.0.0" (because i wasn't sure if i misunderstood something):
In my tests the original batch file always is (noticably) faster than the compiled one (i used recursive calls to the executable to compute the n-th fibonacci number; but i'm unsure how big the influence of the disclaimer was - i created an exe that spammed the cmd window with returns).
When viewing the resulting exe file within a hex editor, it's obvious that it's just the standard zip self extracting archieve, as all the so called "compilers" i saw in the past.
If one of them would be really a "compiler" (in the sense of that word) it would probably be much faster than the original batch;
but i've never seen one (probably because the resulting exe wouldn't be 100% batch compatible),
which anwers the question of the op "Is there a way to make it open just as fast as normal .bat files?":
No.
You probably (untested, but i'm pretty sure) could mimic/copy the main functionality (executing batch code from packed state) of such bat2exe compilers by using "makecab.exe" and "extrac32.exe", so i even don't see why someone would want to give money away for such tools (only to get an icon and some file informations added, which i suspect also to be possible by using windows onboard tools only).
penpen
Re: Any other bat to exe converters/wrappers?
https://stackoverflow.com/questions/281 ... arty-tools
But there's now way to have the same performance as a pure bat file.
But there's now way to have the same performance as a pure bat file.
Re: Any other bat to exe converters/wrappers?
You are correct, I remembered it badly that it would run much faster. I tested a compiled batch versus an uncompiled and it seemed that the compiled version was a little faster but then I timed it and found no noticeable difference.penpen wrote: ↑19 May 2018 14:56I might miss something, but isn't that the same statement as aGermans:
The (unpacked) batch file is (25-50%) faster than the executable (which probably is caused by unpacking the batch file).
Beside this i downloaded and tested "Quick Batch File Compiler v3.6.0.0" (because i wasn't sure if i misunderstood something):
In my tests the original batch file always is (noticably) faster than the compiled one (i used recursive calls to the executable to compute the n-th fibonacci number; but i'm unsure how big the influence of the disclaimer was - i created an exe that spammed the cmd window with returns).
Then the only reason I used QBFC was because it allowed me to turn a batch file into an executable which allowed me to rename it to .SCR which allowed me to set it as a screensaver.
- Attachments
-
- TheMatrix.7z
- (29.59 KiB) Downloaded 475 times
Re: Any other bat to exe converters/wrappers?
Nice idea, finally an actual use for those things.
Also, to respond to OP, what is this obsession with file size? Where does it come from and what does it matter? You need to look into 4k intro competitions and start coding assembler instead if size optimisation is your thing
Re: Any other bat to exe converters/wrappers?
Indeed a nice usecase.
But when i tried to download it, my "Windows Defender" automatically deletes the file to cure "Trojan:Win32/Fuery.A!cl".
Because it is from you i think this probably is a false positive, but i unfortunately can't convince my "Defender" from my point of view (and because here it's 3:30am i will probably try again later).
penpen
But when i tried to download it, my "Windows Defender" automatically deletes the file to cure "Trojan:Win32/Fuery.A!cl".
Because it is from you i think this probably is a false positive, but i unfortunately can't convince my "Defender" from my point of view (and because here it's 3:30am i will probably try again later).
penpen
Re: Any other bat to exe converters/wrappers?
I only have a virus scanner running on my pfsense firewall not on any local systems so I can't really scan unless I download anti virus software. I find it very odd that a compiled file would trigger an anti virus, this highly suggest it may be infected also because the version of QBFC I use is pirated. However, I have not noticed any negative effects on systems using the software. Although pfsense logs do not seem to provide such evidence, I shall install an outbound firewall to test for abnormal outbound traffic.penpen wrote: ↑21 May 2018 19:31Indeed a nice usecase.
But when i tried to download it, my "Windows Defender" automatically deletes the file to cure "Trojan:Win32/Fuery.A!cl".
Because it is from you i think this probably is a false positive, but i unfortunately can't convince my "Defender" from my point of view (and because here it's 3:30am i will probably try again later).
penpen
I suggest to always be careful, to not trust anyone regardless what their reputation might be and not just blindly run software on critical systems. I have no assembly knowledge so I can only do that much.
Re: Any other bat to exe converters/wrappers?
I agree, one has to be carefully handling possible viruses, but also i think one also shouldn't overreact:
I always scan files before executing them, but i don't like that the windows defender doesn't let me make a copy of that file... .
Especially when i never wanted to execute that exe, but wanted to view the batch file:
Nice work by the way i like it.
I had to setup another pc to get this 7z-file, and i still think this is a false positive (i renamed the scr to exe):
https://www.virustotal.com/de/file/9b4c ... 527021735/.
penpen
I always scan files before executing them, but i don't like that the windows defender doesn't let me make a copy of that file... .
Especially when i never wanted to execute that exe, but wanted to view the batch file:
Nice work by the way i like it.
I had to setup another pc to get this 7z-file, and i still think this is a false positive (i renamed the scr to exe):
https://www.virustotal.com/de/file/9b4c ... 527021735/.
penpen