msi suppress “Getting Started screen
trying to suppress the display of the “Getting Started “ page that DWF Viewer 7 displays the first time it is run using Microsoft tool ORCA to edit the MSI.
I have viewed the Autodesk DWF Viewer 7.x Registry Tweaks that discusses Disabling Auto Update, the article also discusses Suppressing the Start-up Page. I have tried to find this in orca but I cannot find it. can somebody please help.
I have viewed the Autodesk DWF Viewer 7.x Registry Tweaks that discusses Disabling Auto Update, the article also discusses Suppressing the Start-up Page. I have tried to find this in orca but I cannot find it. can somebody please help.
0 Comments
[ + ] Show comments
Answers (6)
Please log in to answer
Posted by:
AngelD
18 years ago
Hi iain,
This setting is not included in the MSI by default, the application creates these settings on first use.
To Suppress the "Start-up Page" you need to change the "HKCU\Software\Autodesk\Design Review\Preferences\User Interface\Suppress Startup Page" (DWORD) value from 0 to 1.
You will have to add this registry to your package, use a transform instead of altering the MSI.
This setting is not included in the MSI by default, the application creates these settings on first use.
To Suppress the "Start-up Page" you need to change the "HKCU\Software\Autodesk\Design Review\Preferences\User Interface\Suppress Startup Page" (DWORD) value from 0 to 1.
You will have to add this registry to your package, use a transform instead of altering the MSI.
Posted by:
iain
18 years ago
Posted by:
iain
18 years ago
Posted by:
AngelD
18 years ago
The registry entry is not included in the MSI so you will not find it there using ORCA or any other packaging tool.
When you start the application the first time this registry any alot more will be created by the application under "HKCU\Software\Autodesk".
So to trigger a "profile fix" (self-heal user profile) add this to a transform:
Component table
Component, ComponentId, Directory, Attributes, Condition, KeyPath
UserSettings, {B464EA88-AAEB-4052-A4BE-A46D224FF291}, TARGETDIR, 4, , Suppress_Startup_Page
Feature table
Feature, Feature Parent, Title, Description, Display, Level, Directory, Attributes
CurrentUser, , Current User, , 2, 1, INSTALLDIR, 48
Set the Feature_Parent column of the Autodesk_Design_Review feature to CurrentUser
FeatureComponents table
Feature, Component
CurrentUser, UserSettings
Registry table
Registry, Root, Key, Name, Value, Component
Suppress_Startup_Page, 1, Software\Autodesk\Design Review\Preferences\User Interface, Suppress Startup Page, #1, UserSettings
Shortcut table
Change Target column of the "DesignReview_shortcut" shortcut from "[INSTALLDIR]DesignReview.exe" to Autodesk_Design_Review
The shortcut change will change the shortcut from a regular shortcut to a advertised shortcut making the HKCU registry self-heal when the shortcut executes.
There seems to be something looping self-healing that you would have to fix also.
When you start the application the first time this registry any alot more will be created by the application under "HKCU\Software\Autodesk".
So to trigger a "profile fix" (self-heal user profile) add this to a transform:
Component table
Component, ComponentId, Directory, Attributes, Condition, KeyPath
UserSettings, {B464EA88-AAEB-4052-A4BE-A46D224FF291}, TARGETDIR, 4, , Suppress_Startup_Page
Feature table
Feature, Feature Parent, Title, Description, Display, Level, Directory, Attributes
CurrentUser, , Current User, , 2, 1, INSTALLDIR, 48
Set the Feature_Parent column of the Autodesk_Design_Review feature to CurrentUser
FeatureComponents table
Feature, Component
CurrentUser, UserSettings
Registry table
Registry, Root, Key, Name, Value, Component
Suppress_Startup_Page, 1, Software\Autodesk\Design Review\Preferences\User Interface, Suppress Startup Page, #1, UserSettings
Shortcut table
Change Target column of the "DesignReview_shortcut" shortcut from "[INSTALLDIR]DesignReview.exe" to Autodesk_Design_Review
The shortcut change will change the shortcut from a regular shortcut to a advertised shortcut making the HKCU registry self-heal when the shortcut executes.
There seems to be something looping self-healing that you would have to fix also.
Posted by:
iain
18 years ago
Ihanks for your help so, getting a bit further. I have applied the solution, why when I save a msi using orca the file size decrease also when I try to install the msi it fails.
In the Shortcuts table there dosn't seem to be an entry DesignReview_Shortcut, do I have to enter a new enrty if so what would it be.
cheers
In the Shortcuts table there dosn't seem to be an entry DesignReview_Shortcut, do I have to enter a new enrty if so what would it be.
cheers
Posted by:
AngelD
18 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.