64-bit support?

VBS to EXE and JScript to EXE Compiler
Post Reply
audiofan
Posts: 16
Joined: Sat Oct 06, 2012 7:52 am

64-bit support?

Post by audiofan »

I am using a vbscript to determine the cpu architecture.
When the compiled script is running in 32 bits mode, the result will always be 32 bits. Even if the script is running on a 64 bits machine.

I don't know if it's possible to create one executable that can run on both machines, and still get the right result.
support
Site Admin
Posts: 476
Joined: Fri Feb 13, 2004 1:05 pm

Post by support »

We already working on 64-bit version. It will be ready soon.
zgeorgem
Posts: 4
Joined: Mon Mar 02, 2015 9:28 am

Post by zgeorgem »

I am running a 64-Bit OS and the following code seems to work for me :


Function Extract_OSBit(oWMI)
On Error Resume Next
Set colCPU = oWMI.InstancesOf("Win32_Processor")
strOutput=""
For Each objCPU in colCPU
strOutput = objCPU.AddressWidth
Extract_OSBit = strOutput
Next
End Function
zgeorgem
Posts: 4
Joined: Mon Mar 02, 2015 9:28 am

Post by zgeorgem »

support wrote:We already working on 64-bit version. It will be ready soon.
any update on this? eagerly waiting for it
support
Site Admin
Posts: 476
Joined: Fri Feb 13, 2004 1:05 pm

Post by support »

We are faced with the problem of compatibility between 32-bit IDE and 64-bit runtime.
audiofan
Posts: 16
Joined: Sat Oct 06, 2012 7:52 am

Post by audiofan »

Thank you for new version with 64-bit support. Works like a charm :)
Post Reply