VBS to EXE and JScript to EXE Compiler
-
audiofan
- Posts: 13
- Joined: Sat Oct 06, 2012 7:52 am
Post
by audiofan » Sat Oct 06, 2012 8:10 am
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: 419
- Joined: Fri Feb 13, 2004 1:05 pm
Post
by support » Sat Oct 06, 2012 8:32 am
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 » Mon Apr 20, 2015 11:27 am
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 » Fri May 22, 2015 12:21 pm
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: 419
- Joined: Fri Feb 13, 2004 1:05 pm
Post
by support » Wed May 27, 2015 8:45 pm
We are faced with the problem of compatibility between 32-bit IDE and 64-bit runtime.
-
audiofan
- Posts: 13
- Joined: Sat Oct 06, 2012 7:52 am
Post
by audiofan » Wed Sep 21, 2016 9:33 pm
Thank you for new version with 64-bit support. Works like a charm
