I guess a custom action can handle your requirement.
S
Slalom Zhang
@Slalom Zhang
Posts
-
msi commandline how to update? -
Get the Processor / Bios MAC using C#get processor id is possible. The following code will retrieve the CPU ID (processor id):
ManagementObjectCollection mbsList = null;
ManagementObjectSearcher mbs = new ManagementObjectSearcher("Select * From Win32_processor");
mbsList = mbs.Get();
string id="";
foreach (ManagementObject mo in mbsList)
{
id = mo["ProcessorID"].ToString();
}