I created a Active Directory security group called "AllKixInstallCallTracking" and added members to this group. When I run the script it bypasses this part of the script and does not run what is shown below. But if I take out the (If InGroup) the script that installs the call tracking software runs. Anyone else has experienced this??

If InGroup ("AllKixInstallCallTracking")
? "Installing Call Tracking Software"
If NOT ReadValue('HKEY_CURRENT_USER\SOFTWARE\RunOnce','cal2')
? "regvalue does not exist" ?
sleep 5
SHELL '%windir%\system32\msiexec.exe /i \\Fldavrep01\calltracking\PSCallRecordingSetup\PSCallTracking_Setup.msi /qb-'
WriteValue('HKEY_CURRENT_USER\SOFTWARE\RunOnce','cal2','1','REG_SZ')
EndIf
EndIf