cancel
Showing results for 
Show  only  | Search instead for 
Did you mean: 
Mohsen6558
Level 2

Can Installshield detect the processor ID ?

Hi
I need detect Installshield processor ID
please help me
Labels (1)
0 Kudos
(3) Replies
Ajay_Ladsaria
Level 7

It does not seem like there is an available Windows Installer property to get the processor ID, and I don't believe InstallShield makes one available. This means that you will need to implement a custom action or system search to obtain this information. System Search will only be possible if the information is stored in the registry somewhere.

Reference:
Hardware Properties
http://msdn.microsoft.com/en-us/library/aa370905(v=VS.85).aspx#hardware_properties
0 Kudos
girishkatti123
Level 7

please use tasklist to get the process ID
example
tasklist /FI "IMAGENAME eq setup.exe"
0 Kudos
Vijay__K
Level 7

Can't you just use the PROCESSOR_IDENTIFIER environment variable?

Try echo %PROCESSOR_IDENTIFIER%, on the command line, to see if it returning what you want.

You can use a custom action to retrieve this.

Vijay.
0 Kudos