I downloaded script via:
I need to modify the script to reflect versions < 12.1.44.1 from lines below. I receive an error because code can't find the string utilizing multiple decimals. I think the coincidence relates to line VersionArray = Split(strVersion, ".")
I've tried changing to Split(strVersion, "\.") yet didn't work. Could someone please assist?
If Left(strName, 21) = "CITRIX ONLINE PLUG-IN" Then
'Comment the IF & End If lines out if you want to remove all "Citrix Online Plug-in" 's.
'This If statement will leave version 12.0 and higher installed.
If Version < 12.0 Then
UninstallApp strDisplayName, strVersion, strID, strUninstall
End If
End If
Next
I need to modify the script to reflect versions < 12.1.44.1 from lines below. I receive an error because code can't find the string utilizing multiple decimals. I think the coincidence relates to line VersionArray = Split(strVersion, ".")
I've tried changing to Split(strVersion, "\.") yet didn't work. Could someone please assist?
If Left(strName, 21) = "CITRIX ONLINE PLUG-IN" Then
'Comment the IF & End If lines out if you want to remove all "Citrix Online Plug-in" 's.
'This If statement will leave version 12.0 and higher installed.
If Version < 12.0 Then
UninstallApp strDisplayName, strVersion, strID, strUninstall
End If
End If
Next