I have a Wxruby program that needs to work on multiple versions of windows. I'm using Ruby 1.9.2. At some points in the program system() is being used to call windows commands.
For example, this part of the program should return true if run on an administrator account..
system('net localgroup administrators | find "%USERNAME%"')
If this is run using ruby.exe on windows vista and logged in as an administrator it returns as true. If I run this using rubyw.exe as the same user it returns as false. I'm not sure why it is working differently between the two.