How to set the display name for Active Setup
I understand that the Name displayed while active setup is running comes from the (Default) key. When this is blank the StubPath is displayed instead. When I try to set a value to Default it just creates a new string each time. When exporting a .reg file I see this is stored as @="String Name". The entry I added with a REG ADD script is "@"="String Name".
Is there a way to set the default value via a script? I would prefer a common name to show up rather than "msiexec /fu {GUID} /qn". I could just make a .reg file and silently import that but I figure there has to be a way to do this using reg add??
Thanks.
Is there a way to set the default value via a script? I would prefer a common name to show up rather than "msiexec /fu {GUID} /qn". I could just make a .reg file and silently import that but I figure there has to be a way to do this using reg add??
Thanks.
0 Comments
[ + ] Show comments
Answers (3)
Please log in to answer
Posted by:
schieb
16 years ago
Posted by:
gmorgan618
16 years ago
reg add "HKLM\SOFTWARE\Microsoft\Active Setup\Installed Components\ActiveSetupTest" /ve /t REG_SZ /d "Test" /f
If you want to specify a value name
reg add "HKLM\SOFTWARE\Microsoft\Active Setup\Installed Components\ActiveSetupTest" /v "StubPath" /t REG_SZ /d "Test" /f
reg /?
reg add /?
Posted by:
schieb
16 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.