name of operating system = “WinXP” AND(exists key “HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Uninstall{4EEF203F-E980-4DB0-AFF4-4373C890D644}” of registry) or (exists “HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Uninstall{DB2E3989-259D-4290-8CA4-57D1688718A6}”) of registry AND (not exists Key “HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Uninstall{B4AA1091-60B6-4783-B557-C7D188852E36}” of registry)
(name of operating system = “WinXP”) AND ((exists key “HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Uninstall{4EEF203F-E980-4DB0-AFF4-4373C890D644}” of registry) or (exists “HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Uninstall{DB2E3989-259D-4290-8CA4-57D1688718A6}”) of registry AND (not exists Key “HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Uninstall{B4AA1091-60B6-4783-B557-C7D188852E36}” of registry))
name of operating system = "WinXP" AND exists key "HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Uninstall{DB2E3989-259D-4290-8CA4-57D1688718A6}" of registry or exists key "HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Uninstall{4EEF203F-E980-4DB0-AFF4-4373C890D644}" of registry AND (not exists Key "HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Uninstall{B4AA1091-60B6-4783-B557-C7D188852E36}" of registry)
What are you trying to do? I’m guessing you are trying to find machines that apply to all 3 of these?:
XP Machines
Machines that don’t have uninstall key {B4AA1091-60B6-4783-B557-C7D188852E36}
Machines that have uninstall key {DB2E3989-259D-4290-8CA4-57D1688718A6} OR uninstall key {4EEF203F-E980-4DB0-AFF4-4373C890D644}
IF so, try this:
name of operating system = “WinXP” AND (not exists Key “HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Uninstall{B4AA1091-60B6-4783-B557-C7D188852E36}” of registry) AND (exists key “HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Uninstall{DB2E3989-259D-4290-8CA4-57D1688718A6}” of registry or exists key “HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Uninstall{4EEF203F-E980-4DB0-AFF4-4373C890D644}” of registry)