This website uses cookies. By clicking Accept, you consent to the use of cookies. Click Here to learn more about how we use cookies.
Turn on suggestions
Auto-suggest helps you quickly narrow down your search results by suggesting possible matches as you type.
- Revenera Community
- :
- InstallShield
- :
- InstallShield Forum
- :
- Re: How to modify value of UninstallString in registry entry
Subscribe
- Mark Topic as New
- Mark Topic as Read
- Float this Topic for Current User
- Subscribe
- Mute
- Printer Friendly Page
- Mark as New
- Subscribe
- Mute
- Permalink
- Report Inappropriate Content
‎Jan 05, 2010
02:02 AM
How to modify value of UninstallString in registry entry
In my application,UninstallString in registry entry is taking value as "MsiExec.exe /I{32A3A4F4-B792-11D6-A78A-00B0D0160060}".But i want this value should be assigned as "C:\Program Files\InstallShield Installation Information\{32A3A4F4-B792-11D6-A78A-00B0D0160060}\setup.exe".
Any help appreciated.
Regards,
Parul
Any help appreciated.
Regards,
Parul
(5) Replies
- Mark as New
- Subscribe
- Mute
- Permalink
- Report Inappropriate Content
‎Jan 05, 2010
02:25 AM
You can use RegDBSetItem() with REGDB_UNINSTALL_STRING for modifying UninstallString value.
- Mark as New
- Subscribe
- Mute
- Permalink
- Report Inappropriate Content
‎Jan 05, 2010
04:05 AM
Thanks for your reply.
But i want to create a folder with name of application's Product GUID in C:/programfiles/Installshield Information/
This folder contains setup.exe.
Please guide me how this folder is created at C:/programfiles/Installshield Information/
Regards,
Parul
But i want to create a folder with name of application's Product GUID in C:/programfiles/Installshield Information/
This folder contains setup.exe.
Please guide me how this folder is created at C:/programfiles/Installshield Information/
Regards,
Parul
- Mark as New
- Subscribe
- Mute
- Permalink
- Report Inappropriate Content
‎Jan 05, 2010
04:15 AM
CreateDir(PROGRAMFILES ^ "InstalShield Installation Information " ^ IFX_PRODUCT_GUID);
But why do you want to create this folder? It will be created by installer during installation of your application.
But why do you want to create this folder? It will be created by installer during installation of your application.
- Mark as New
- Subscribe
- Mute
- Permalink
- Report Inappropriate Content
‎Jan 05, 2010
04:25 AM
In my case, this folder is not created.
Actually when user clicks on Remove button,then maintainence dialogue is not coming.Windows Installer is coming.I want that maintainence dialogue should come.If i assign UninstallString to "C:\Program Files\InstallShield Installation Information\{3A470F9C-D0A4-4F8B-9CF9-DF43B0300444}\setup.exe" -runfromtemp -l0x0009 -removeonly then it will work.
But in my application,"C:\Program Files\InstallShield Installation Information\{3A470F9C-D0A4-4F8B-9CF9-DF43B0300444}folder is not created.
Please help me.
Regards,
Parul
Actually when user clicks on Remove button,then maintainence dialogue is not coming.Windows Installer is coming.I want that maintainence dialogue should come.If i assign UninstallString to "C:\Program Files\InstallShield Installation Information\{3A470F9C-D0A4-4F8B-9CF9-DF43B0300444}\setup.exe" -runfromtemp -l0x0009 -removeonly then it will work.
But in my application,"C:\Program Files\InstallShield Installation Information\{3A470F9C-D0A4-4F8B-9CF9-DF43B0300444}folder is not created.
Please help me.
Regards,
Parul
- Mark as New
- Subscribe
- Mute
- Permalink
- Report Inappropriate Content
‎Jan 05, 2010
05:02 AM
What is your project type?
