I have created a setup project for a Windows Application developed using Visual Stduio 2008(C#).
In the portion of installation screen where it says, this installer will guide you through the steps required to install ABC on your computer
I want this changed to this installer will guide you through the steps required to install XYZ on your computer
How can I change the word ABC to XYZ?
Follow these steps to change your application's name:
Ensure that your setup project is open in Visual Studio.
Click on the project's root-level icon in the Solution Explorer.
In the Properties Window, change the ProductName
property to "XYZ" or whatever you want the installer to display as your application's name.
Rebuild the setup project.
Now, if your right-click on the project icon in the Solution Explorer and click "Install", the setup program will start and you can verify that the application name that it displays is correct.
It's also worth investigating the other deployment properties that are available for setup projects to make sure that these are set appropriately for your application.