|
-
Dec 14th, 2010, 02:16 PM
#1
Thread Starter
New Member
Adding program to Add/Uninstall List
Hey, how can i add a program to the add/uninstall program list? using vb.net
Is it even possible?
Thanks for who ever resolves this question ;D
-
Dec 14th, 2010, 02:51 PM
#2
Re: Adding program to Add/Uninstall List
Make a Setup Project or publish with the ClickOnce system.
-
Dec 17th, 2010, 10:31 AM
#3
Re: Adding program to Add/Uninstall List
Definitely use a proper installer if it is your own program you are trying to install/add as Jenner suggests, but if you are for some reason wanting to add just any program you like to the Add/Remove Programs list then you just need to create registry key in this location: HKEY_LOCAL_MACHINE\Software\Microsoft\Windows\CurrentVersion\Uninstall (name the new key anything you like but generally best to name it with the name of the program) and then within that new key create two REG_SZ type registry entries. One named DisplayName and one named UninstallString. DisplayName should hold the name that you want to appear in Add/Remove Programs and UninstallString should hold the full path to the EXE that will uninstall this program. There are other values you can add, DisplayVersion for example, but those two are the only essentials.
Posting Permissions
- You may not post new threads
- You may not post replies
- You may not post attachments
- You may not edit your posts
-
Forum Rules
|
Click Here to Expand Forum to Full Width
|