Regset issue

(imported topic written by SystemAdmin)

Trying to use the following command to create a registry key value using an action script, but it is not working. What am I missing?

regset "

HKEY_CLASSES_ROOT\Installer\Products\9040110900063D11C8EF10054038389C

" “Transforms”={escape of “c:\windows\installer{90110409-6000-11D3-8CFE-0150048383C9}\pro11xp.mst”}

Key = HKEY_CLASSES_ROOT\Installer\Products\9040110900063D11C8EF10054038389C

Value = Transforms

Data = c:\windows\installer{90110409-6000-11D3-8CFE-0150048383C9}\pro11xp.mst

(imported comment written by SystemAdmin)

try…

regset

HKEY_CLASSES_ROOT\Installer\Products\9040110900063D11C8EF10054038389C

“Transforms”=“c:\windows\installer\{{90110409-6000-11D3-8CFE-0150048383C9}\pro11xp.mst”

likewise to delete that key…

if {exists key “HKEY_CLASSES_ROOT\Installer\Products\9040110900063D11C8EF10054038389C” whose (value “Transforms” of it = (“c:\windows\installer{90110409-6000-11D3-8CFE-0150048383C9}}\pro11xp.mst”) of (rope (value “Transforms” of it as string as lowercase) as string)) of registry}

regdelete

HKEY_CLASSES_ROOT\Installer\Products\9040110900063D11C8EF10054038389C

“Transforms”

endif

(imported comment written by SystemAdmin)

Thank you!