I had created WScript file, and I need to make it .EXE file so nobody can access my code, is there is anyway to do that ? I just want to hide my code from other users who may use the script file.
3 Answers
You can try the Script Encoder which will encrypt or obfuscate the script, but there is probably a way to circumvent that.
There is no VBS to EXE conversion that I'm aware of - you could just port it over to VB and compile that. VBS & VB6 are so similar that it should be fairly easy to port the code. Then again, there are decompilers for VB as well. It all comes down to how high you want to make the barrier.
Comments
Thanks all, but i had found a useful,easy to implement way, this using the below site, it converts JS and VBS files into .exe files.
http://www.f2ko.de/programs.php?lang=en&pid=ov2e
Thanks, Manaysah