overwriting ARPNOREPAIR=1
Hi guys,
Is there a way you can overwrite ARPNOREPAIR=1 on the command line so that the it enables the button. This is for our deployment people who do not want to go editing msi. I think you could run a vbscript to do this but is there anything i can add to the end of msiexec /i .........
Regards
Is there a way you can overwrite ARPNOREPAIR=1 on the command line so that the it enables the button. This is for our deployment people who do not want to go editing msi. I think you could run a vbscript to do this but is there anything i can add to the end of msiexec /i .........
Regards
0 Comments
[ + ] Show comments
Answers (5)
Please log in to answer
Posted by:
WiseUser
19 years ago
Except you can set ARPNOREPAIR to whatever value you like - it won't make a blind bit of difference!
Unless you remove the property or "blank it" the button will be missing.
Try this variation of Brent's command line:
msiexec /I packagename.msi ARPNOREPAIR=""
See here for details on how to use properties:
http://msdn.microsoft.com/library/en-us/msi/setup/getting_and_setting_properties.asp
Something else that might be worth mentionning, is how to enable the button after the product has been installed. An administrator can change the following "REG_DWORD" key from 1 to 0.
"HKLM\SOFTWARE\Microsoft\Windows\CurrentVersion\Uninstall\{XXXXXXXX-XXXX-XXXX-XXXX-XXXXXXXXXXXX}\NoRepair"
The Xs represent the product code.
Unless you remove the property or "blank it" the button will be missing.
Try this variation of Brent's command line:
msiexec /I packagename.msi ARPNOREPAIR=""
See here for details on how to use properties:
http://msdn.microsoft.com/library/en-us/msi/setup/getting_and_setting_properties.asp
Something else that might be worth mentionning, is how to enable the button after the product has been installed. An administrator can change the following "REG_DWORD" key from 1 to 0.
"HKLM\SOFTWARE\Microsoft\Windows\CurrentVersion\Uninstall\{XXXXXXXX-XXXX-XXXX-XXXX-XXXXXXXXXXXX}\NoRepair"
The Xs represent the product code.
Posted by:
sean_c_roberts
19 years ago
Posted by:
BobTheBuilder
19 years ago
Posted by:
WiseUser
19 years ago
Rating comments in this legacy AppDeploy message board thread won't reorder them,
so that the conversation will remain readable.
so that the conversation will remain readable.