Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

How to remove "Welcome to the Setup Wizard" text from Visual Studio Installer project

I have a Visual Studio Installer Project that I'm making in Visual Studio 2010 and am unable to figure out how to remove the "Welcome to the [Product Name] Setup Wizard" text from the wizard's dialog boxes.

For example: How do I remove the text "Welcome to the Setup1 Setup Wizard" from the screenshot below?

enter image description here

like image 748
Jed Avatar asked Sep 01 '11 21:09

Jed


People also ask

Why is Visual Studio installer not installing?

Deleting the Visual Studio Installer files and then rerunning the bootstrapper solves some update failures. Performing the following actions reinstalls the Visual Studio Installer files and resets the installation metadata. Close the Visual Studio Installer. Delete the Visual Studio Installer installation directory.

Where is the installer wizard?

Press windows key + R and type "services. msc" in the run box and press enter. b. In services windows check for windows installer status.

What is install aware wizard?

InstallAware Installation Wizard is Windows Installer without Rocket Science. The InstallAware Installation Wizard completely insulates you from the proprietary challenges of the Windows Installer engine and database, while generating fully logo-compliant MSI setups.


2 Answers

You can "remove" the text by removing the Welcome dialog and replacing it with a custom dialog. In VS 2005 -

  1. Right click on the Setup project in the solution explorer
  2. Select View - User Interface
  3. Under the Start group for Install and Administrative Install delete "Welcome"

Then you can add a "Textboxes (A)" dialog (right click the "Start" group and select Add Dialog) to the project, set the visible property for the text boxes to false. Move the Textboxes (A) up to the top of the "Start" sequence.

The properties for this dialog include:

  • BannerBitmap
  • BannerText
  • BodyText

This should allow you to control the look / feel (to a certain extent) of this new "Welcome" page.

like image 74
Hassanation Avatar answered Oct 22 '22 12:10

Hassanation


You can easily change the welcome text by modifying the the project file in notepad. (i.e. project1.vdproj) Make sure to change the ProductName or Title. I can't remember which one exactly and then rebuild the project and you're all done.

like image 42
user1181437 Avatar answered Oct 22 '22 11:10

user1181437