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
- :
- InstallAnywhere
- :
- InstallAnywhere Forum
- :
- Re: Unable to Delete Registry key in Windows Server 2008 R2 and Windows 7
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
‎Nov 23, 2011
01:07 AM
Unable to Delete Registry key in Windows Server 2008 R2 and Windows 7
Hi,
I am unable to delete registry key in Windows Server 2008 R2 and Win 7 64bit. After uninstalling I am getting message like unable to delete HKEY_LOCAL_MACHINE\SOFTWARE\My Project\test.
I tried to delete it by giving command in post-uninstall panel reg delete "HKEY_LOCAL_MACHINE\SOFTWARE\My Project\test". But its not working.
Could some one help me in this regard.
Regards
Ravi
I am unable to delete registry key in Windows Server 2008 R2 and Win 7 64bit. After uninstalling I am getting message like unable to delete HKEY_LOCAL_MACHINE\SOFTWARE\My Project\test.
I tried to delete it by giving command in post-uninstall panel reg delete "HKEY_LOCAL_MACHINE\SOFTWARE\My Project\test". But its not working.
Could some one help me in this regard.
Regards
Ravi
(6) Replies
- Mark as New
- Subscribe
- Mute
- Permalink
- Report Inappropriate Content
‎Nov 23, 2011
03:02 AM
FYI, these 2 Windows versions were not supported in the IA 2009: there was 2008 support, but not 2008 R2 support, nor Windows 7, as they were not released by the time IA 2009 was released.
- Mark as New
- Subscribe
- Mute
- Permalink
- Report Inappropriate Content
‎Nov 23, 2011
05:15 AM
Hi Vlad,
Thanks for your quick response.
I tried it with IA2010 SP1 but their is no change.
I have checked in IA2010 community and found that their is similar issue http://community.flexerasoftware.com/showthread.php?t=199471
you commented here saying you requested Flexara support. Did you get any resolution for this?
Regards
Ravi
Thanks for your quick response.
I tried it with IA2010 SP1 but their is no change.
I have checked in IA2010 community and found that their is similar issue http://community.flexerasoftware.com/showthread.php?t=199471
you commented here saying you requested Flexara support. Did you get any resolution for this?
Regards
Ravi
- Mark as New
- Subscribe
- Mute
- Permalink
- Report Inappropriate Content
‎Nov 23, 2011
05:28 AM
pv7721 wrote:
FYI, these 2 Windows versions were not supported in the IA 2009: there was 2008 support, but not 2008 R2 support, nor Windows 7, as they were not released by the time IA 2009 was released.
Hi Vald,
Thanks for the quick response.
I have tried with IA2010 SP1 also but their was no change.
I searched in IA2010 community and found that http://community.flexerasoftware.com/showthread.php?t=199471
In this Thread you commented that you raised a Flexera Support. Did you get any resolution?
Regards
Ravi
- Mark as New
- Subscribe
- Mute
- Permalink
- Report Inappropriate Content
‎Nov 23, 2011
05:45 AM
Hi,
I am also facing similar issue.
I have tried with IA2010 SP1 also but their was no change.
I searched in IA2010 community and found that http://community.flexerasoftware.com/showthread.php?t=199471
In this Thread you commented that you raised a Flexera Support. Did you get any resolution?
I am also facing similar issue.
I have tried with IA2010 SP1 also but their was no change.
I searched in IA2010 community and found that http://community.flexerasoftware.com/showthread.php?t=199471
In this Thread you commented that you raised a Flexera Support. Did you get any resolution?
- Mark as New
- Subscribe
- Mute
- Permalink
- Report Inappropriate Content
‎Nov 23, 2011
05:58 AM
Hi Vald,
Thanks for the quick response.
I have tried with IA2010 SP1 also but their was no change.
I searched in IA2010 community and found that http://community.flexerasoftware.com/showthread.php?t=199471
In this Thread you commented that you raised a Flexera Support. Did you get any resolution?
Regards
Ravi
Thanks for the quick response.
I have tried with IA2010 SP1 also but their was no change.
I searched in IA2010 community and found that http://community.flexerasoftware.com/showthread.php?t=199471
In this Thread you commented that you raised a Flexera Support. Did you get any resolution?
Regards
Ravi
- Mark as New
- Subscribe
- Mute
- Permalink
- Report Inappropriate Content
‎Nov 24, 2011
09:23 AM
Use the below Vb script in Execute script and batch file
Dim WshShell, cal1, cal2
Set WshShell = WScript.CreateObject("WScript.Shell")
cal1 = "HKEY_LOCAL_MACHINE\SOFTWARE\My Project\Test\"
cal2 = "HKEY_LOCAL_MACHINE\SOFTWARE\My Project\"
WshShell.RegDelete cal1
WshShell.RegDelete cal2
Dim WshShell, cal1, cal2
Set WshShell = WScript.CreateObject("WScript.Shell")
cal1 = "HKEY_LOCAL_MACHINE\SOFTWARE\My Project\Test\"
cal2 = "HKEY_LOCAL_MACHINE\SOFTWARE\My Project\"
WshShell.RegDelete cal1
WshShell.RegDelete cal2