cancel
Showing results for 
Show  only  | Search instead for 
Did you mean: 
Ravi1238
Level 3

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
Labels (1)
0 Kudos
(6) Replies
pv7721
Level 20

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.
0 Kudos
Ravi1238
Level 3

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
0 Kudos
Ravi1238
Level 3

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
0 Kudos
pri17585
Level 3

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?
0 Kudos
Ravi1238
Level 3

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
0 Kudos
SunnyBoy
Level 6

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
0 Kudos