Login | |
|
 |
RE: Need an exe creator for free - 4/12/2006 4:40:14 AM
|
|
 |
|
| |
mbouchard
Posts: 1835
Score: 14
Joined: 5/15/2003
From: USA
Status: offline
|
As far as I know there isn't a free compiler out there. PrimalScript and AdminScriptEditer are the only 2 that I know of and they aren't really compiling the code anyways.
_____________________________
Mike For useful Scripting links see the Read Me First stickey! Always remember Search is your friend.
|
|
| |
|
|
|
 |
RE: Need an exe creator for free - 9/15/2006 6:25:54 AM
|
|
 |
|
| |
Fredledingue
Posts: 326
Score: 0
Joined: 5/9/2005
From:
Status: offline
|
I'v looked for something like a VBS-to-VB translator, that would realy create a compilable VB code out of a VBScript but there are no such software. The only free ones are simply creating a self-extracting archive that will launch VHS with the script after extraction. As I see it they may even include the VSH executable in the archive, adding a 600Kb overhead for each compilation! Totaly useless IMO. And I suspect the paid softwwares to do the same. Translating VBS code to VB is cool and relax as long as the codes are compatible, when a VBS code doesn't exists in VB, it's another story and nobody has bothered to create VB routines equivalent to the non-compatible VBS codes and store them in a dictionary.
_____________________________
Fred
|
|
| |
|
|
|
 |
RE: Need an exe creator for free - 2/26/2007 1:47:24 AM
|
|
 |
|
| |
ebgreen
Posts: 4613
Score: 31
Joined: 7/12/2005
Status: offline
|
There are 2 problems that I see with that utility right off the bat. First, the utility provides the ability to extract the vbscript back out of the exe. Granted you can apply a password but a user would still be able to see the vbscript code even if you did. More importantly, a simple script like this: WScript.Echo "FOO" WScript.Sleep 30000 won't even run as a compiled exe.
_____________________________
"... when you are good and crazy, oooh, oooh, oooh, the sky is the limit!" - The Tick Goog places to start:http://www.visualbasicscript.com/m_24727/tm.htm http://www.visualbasicscript.com/m_47117/tm.htm
|
|
| |
|
|
|
 |
RE: Need an exe creator for free - 3/1/2007 2:34:48 AM
|
|
 |
|
| |
ebgreen
Posts: 4613
Score: 31
Joined: 7/12/2005
Status: offline
|
Not that I have ever found. There are lots of ways to hide it but none that I have found to truly encrypt it. The best solution that I have found is to encode the script then hide the encoded script in an alternate data stream in a file. Actually the best solution is a C# executeable, but that obviously isn't a script.
_____________________________
"... when you are good and crazy, oooh, oooh, oooh, the sky is the limit!" - The Tick Goog places to start:http://www.visualbasicscript.com/m_24727/tm.htm http://www.visualbasicscript.com/m_47117/tm.htm
|
|
| |
|
|
|
|
|