outrolacerda
New Member
- Messages
- 2
- Reaction score
- 0
- Points
- 1
Hello 
I need to remove Citrix Receiver (deprecated) fom my computers. So i've created a Application in SCCM with this parameters:
Deployment Type: Script Installer
Content: citrixreceiver.exe
Installation Program: CitrixReceiver.exe /SILENT
Uninstall program: CitrixReceiver.exe /SILENT /uninstall /cleanup /noreboot
Detection Method:
Path - C:\Program Files (x86)\Citrix\ICA Client\SelfServicePlugin\
File - SelfService.exe
OR
Path - C:\Program Files\Citrix\ICA Client\SelfServicePlugin\
File - SelfService.exe
So I did a Deployment with Uninstall goal. All my computers reported "Already Compliant" and the app is not uninstalled.
So I changed the detection method to script:
And again: All my computers reported "Already Compliant" and the app is not uninstalled
What I'm missing at this point??
I need to remove Citrix Receiver (deprecated) fom my computers. So i've created a Application in SCCM with this parameters:
Deployment Type: Script Installer
Content: citrixreceiver.exe
Installation Program: CitrixReceiver.exe /SILENT
Uninstall program: CitrixReceiver.exe /SILENT /uninstall /cleanup /noreboot
Detection Method:
Path - C:\Program Files (x86)\Citrix\ICA Client\SelfServicePlugin\
File - SelfService.exe
OR
Path - C:\Program Files\Citrix\ICA Client\SelfServicePlugin\
File - SelfService.exe
So I did a Deployment with Uninstall goal. All my computers reported "Already Compliant" and the app is not uninstalled.
So I changed the detection method to script:
Code:
if (Test-Path "C:\Program Files (x86)\Citrix\ICA Client\SelfServicePlugin\SelfService.exe")
{
Write-Host "Installed"
}
else
{
}
And again: All my computers reported "Already Compliant" and the app is not uninstalled
What I'm missing at this point??