vote up 1 vote down star

What is the best compilable scripting language for Win32? I prefer .EXE's because I don't want to install the runtime on the servers first (my company administrates many via remote), but I need to be able to do things like NTFS permissions and (if possible) APIs over the network.

There was a small Perl which appeared to be able to do most of this, but it does not seem to have been updated/developed in quite a while. I have wondered about Lua, but I don't know if it has everything I need yet (and don't want to hunt through fifty library sites trying to find out). Any thoughts?

flag

6 Answers

vote up 4 vote down check

Have you considered using an EXE maker? For example, you can code in Python and use py2exe to create a standalone EXE that runs anywhere (it actually packages Python into the exe, so you don't have to install the runtime).

link|flag
py2exe is great...except when it comes to threading... – mmattax Sep 17 '08 at 3:24
vote up 0 vote down

At OSCON 2005, I heard Damien Conway say "the only thing better than Perl is something that works well, even if it's not written in Perl."

It's good advice. Instead of looking for the best language that can be compiled to an .EXE, worry a lot more about writing it in a language that can be compiled to an .EXE. Use whatever works. Just remember that the quality of your programming matters infinitely more than what language you use.

That said, I like py2exe. YMMV. Good luck!

link|flag
vote up 1 vote down

Did you consider AutoIt ?

It is a scripting language, and you can quickly transform a script into an exe...

link|flag
vote up 0 vote down

That will do as my answer! I had investigated EXE generators for Python about two years ago, but the situation was rather different for the four or five relevant projects I found.

link|flag
Add a comment to the relevant post instead of posting another answer. The order is defined by the votes not by the date posted so discussion doesn't work. – spoon16 Sep 17 '08 at 3:29
You also won't risk being down voted. – Brad Gilbert Sep 17 '08 at 3:51
Before downvoting for posting instead of commenting, look at the poster's rep points. He only has 11 left (as of 7 hours after his post), which is a while yet before he has the necessary 50 rep points to post comments. – Chris OC Sep 17 '08 at 11:25
vote up 3 vote down

Ruby is my scripting language of choice.

Try RubyScript2Exe.

link|flag
That's interesting. Does Ruby do Win32 as thoroughly as Python? – Jonathan E. Brickman Sep 17 '08 at 3:28
vote up 2 vote down

A scripting language is, almost by definition, not compiled into a standalone executable. So maybe you need to restate your intentions or give some indication about what kind of program you want to create.

C# is a powerful language that compiles to .EXE and allows you to interface with pretty much anything (through native p/invoke calls, if necessary). A basic but very usable Visual Studio for C# can be downloaded for free from the Microsoft website. The .NET runtime is installed on most systems nowadays.

link|flag
Actually C# compiles to bytecode, it just has a compiled stub. Which is a lot like py2exe or PAR (perl). – Brad Gilbert Sep 17 '08 at 3:50
I know, but it still compiles to .EXE. I never said that the .EXE contained only native code ;) – Thomas Sep 17 '08 at 16:40

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.