REGSET problem

(imported topic written by jdonlin)

Hi All,

I’m trying to create a Custom Task to correct a registry value. Part of my relevance is the existance of the regkey where that value resides.

I’ve coded the following and although the line shows completed, I am not seeing the change on my test boxes:

regset "

HKEY_LOCAL_MACHINE\SOFTWARE\CompanyName\CoreBuild

" “InstallShare” = {escape of “\TEST123\LPRROOT”}

I have reviewed the Action Language PDF. Does anyone see any sytax problems? What other document would I find additional information?

Many thanks.

Jim

(imported comment written by jessewk)

I think you need quotes around your relevance substitution:

regset "

HKEY_LOCAL_MACHINE\SOFTWARE\CompanyName\CoreBuild

" “InstallShare”="{escape of “\TEST123\LPRROOT”}"

(imported comment written by jdonlin)

So close, yet so far…

Thanks Jesse. That worked.

Jim