Hello

I am a scripting newbie trying to correct a problem created by a predecessor.

We use kix to deliver packaged applications to user across our site. in one install he use
SETM "path=c:\program Files\Common Files\Autodesk Shared"

But this overwrote the Path variable rather than adding it to the existing entries

I thought I could read the existing value and add the new to it, but I get the error Path not found (76) using the following code
code:
  $path = ReadValue ("HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Control\Session Manager\Environment","Path")

$autocad = $path+"c:\program Files\Common Files\Autodesk Shared"

SetM "path=" + $autocad

I would be very grateful for assistance
gary