Content
A simple Powershell module to facilitate quick removal of the Citrix SecureLink application.
When working with several remote customer clients, there are frequent crashes upon connect due to version incompatibility. I wanted a quick way of running the uninstaller, without having to open Add/Remove programs, scroll to the entry, and then click uninstall.
Open Powershell and execute the following command to install this package using PowerShellGet:
Install-Module -Name Remove-Securelink
Then, to manually import the module, execute the following:
Import-Module Remove-Securelink
Or, add the above line to your Microsoft.PowerShell_profile.ps1 to automatically load the module whenever a Powershell terminal is opened.
https://www.powershellgallery.com/packages/Remove-Securelink/1.0.0
Remove-Securelink
Find-Securelink
Invoke-Uninstall
It is preferrable to add this module to your Powershell profile to auto-import the module when starting a Powershell console.
Simply execute Remove-Securelink
at your Powershell prompt. If SecureLink is installed in the typical location (%appdata%/Local/), it will be uninstalled. If SecureLink is not present, it will let you know and not attempt to uninstall.
1.0.0 - Initial Release