﻿id	summary	reporter	owner	description	type	status	milestone	component	version	severity	resolution	keywords	cc
961	RegDelete fails to to delete reg key containing sub keys	Starboy	Jon	"This issue only happens when using a 32bit exe on a 64bit OS. Trying to delete a key containing sub keys fails in the 64bit nod and the 32bit nod but only while using a 32bit exe. Using the same code on a 32bit OS works fine or the same code on a 64bit OS compiled as a 64bit exe.

I have only been able to test it on 2003 Server 64bit.

{{{
;This tests is for bug with deleting 32bit keys on a 64bit OS using a 32bit exe

; Write a single REG_SZ value and another subkey
RegWrite(""HKLM\SOFTWARE\Test"", ""TestKey"", ""REG_SZ"", ""Hello this is a test"")
RegWrite(""HKLM\SOFTWARE\Test\test2"", ""TestKey"", ""REG_SZ"", ""Hello this is the second test"")

MsgBox(4096, """", ""Check for the new keys then click OK"" & @CR & ""then check to see if it was deleted."")

; Delete the previously created key
RegDelete(""HKLM\SOFTWARE\Test"")
}}}

{{{
;This tests is for bug with deleting 64bit keys on a 64bit OS using 32bit exe

; Write a single REG_SZ value and another subkey
RegWrite(""HKLM64\SOFTWARE\Test"", ""TestKey"", ""REG_SZ"", ""Hello this is a test"")
RegWrite(""HKLM64\SOFTWARE\Test\test2"", ""TestKey"", ""REG_SZ"", ""Hello this is the second test"")

MsgBox(4096, """", ""Check for the new keys then click OK"" & @CR & ""then check to see if it was deleted."")

; Delete the previously created key and subkey
RegDelete(""HKLM64\SOFTWARE\Test"")
}}}"	Bug	closed	3.3.5.2	AutoIt	3.3.0.0	None	Fixed		
