This website uses cookies. By clicking Accept, you consent to the use of cookies. Click Here to learn more about how we use cookies.
Turn on suggestions
Auto-suggest helps you quickly narrow down your search results by suggesting possible matches as you type.
- Revenera Community
- :
- InstallShield
- :
- InstallShield Forum
- :
- Re: Can Installshield detect the processor type ?
Subscribe
- Mark Topic as New
- Mark Topic as Read
- Float this Topic for Current User
- Subscribe
- Mute
- Printer Friendly Page
- Mark as New
- Subscribe
- Mute
- Permalink
- Report Inappropriate Content
‎Aug 02, 2009
04:06 AM
Can Installshield detect the processor type ?
Can Installshield detect the processor type of the pc where my product will be installed .. whether it is Intel or AMD & whether it is 32 bit or 64 bit ?
(3) Replies
- Mark as New
- Subscribe
- Mute
- Permalink
- Report Inappropriate Content
‎Aug 02, 2009
01:25 PM
Try this:
Add before "begin":
Add in your code:
Hope it helps! 🙂
Kind regards,
Flitskikker
Add before "begin":
BOOL bCPU, b64;
Add in your code:
bCPU = SYSINFO.bIntel;
b64 = SYSINFO.bIsWow64;
if (bCPU) then
MessageBox("You have Intel CPU.",INFORMATION);
else
MessageBox("You don't have Intel CPU.",INFORMATION);
endif;
if (b64) then
MessageBox("You have 64 bit system.",INFORMATION);
else
MessageBox("You have 32 bit system.",INFORMATION);
endif;
Hope it helps! 🙂
Kind regards,
Flitskikker
- Mark as New
- Subscribe
- Mute
- Permalink
- Report Inappropriate Content
‎Aug 02, 2009
05:35 PM
And for MSI, there are the properties Intel, Intel64, and Msix64...
- Mark as New
- Subscribe
- Mute
- Permalink
- Report Inappropriate Content
‎Aug 03, 2009
03:45 AM
Flitskikker wrote:
Try this:
Add before "begin":BOOL bCPU, b64;
Add in your code:bCPU = SYSINFO.bIntel;
b64 = SYSINFO.bIsWow64;
if (bCPU) then
MessageBox("You have Intel CPU.",INFORMATION);
else
MessageBox("You don't have Intel CPU.",INFORMATION);
endif;
if (b64) then
MessageBox("You have 64 bit system.",INFORMATION);
else
MessageBox("You have 32 bit system.",INFORMATION);
endif;
Hope it helps! 🙂
Kind regards,
Flitskikker
Sorry I didn't get where to write this code , would you plz tell me & if I can change it from properties for MSI Projects , how can I do this !?