Skip to content

Instantly share code, notes, and snippets.

@iainbrighton
Created March 21, 2018 12:26
Show Gist options
  • Save iainbrighton/536ef194df212d686a7d8367121a74a9 to your computer and use it in GitHub Desktop.
Save iainbrighton/536ef194df212d686a7d8367121a74a9 to your computer and use it in GitHub Desktop.
Chocolatey install/uninstall log
C:\Windows\system32>choco list --local-only
Chocolatey v0.10.8
chocolatey 0.10.8
1 packages installed.
C:\Windows\system32>choco install "C:\Users\Administrator\Documents\citrix-receiver.4.11.nupkg"
The use of .nupkg or .nuspec in for package name or source is known to cause issues. Please use the package id from the nuspec `<id />` with `-s .` (for local folder where nupkg is found).
Chocolatey v0.10.8
Installing the following packages:
C:\Users\Administrator\Documents\citrix-receiver.4.11.nupkg
By installing you accept licenses for the packages.
citrix-receiver v4.11
citrix-receiver package files install completed. Performing other installation steps.
The package citrix-receiver wants to run 'ChocolateyInstall.ps1'.
Note: If you don't run this script, the installation will fail.
Note: To confirm automatically next time, use '-y' or consider:
choco feature enable -n allowGlobalConfirmation
Do you want to run the script?([Y]es/[N]o/[P]rint): p
------ BEGIN SCRIPT ------
## Template VirtualEngine.Build ChocolateyInstall.ps1 file for EXE/MSI installations
$installChocolateyPackageParams = @{
PackageName = 'Citrix-Receiver';
FileType = 'EXE';
SilentArgs = '/noreboot /silent';
Url = 'http://downloadplugins.citrix.com/Windows/CitrixReceiver.exe';
ValidExitCodes = @(0,3010);
Checksum = '9EDEE35936EC7ACC3DB4BD57FA8DCF8E9ED67AFD525E7F6F0803BCAC2A192EDF';
ChecksumType = 'sha256';
}
Install-ChocolateyPackage @installChocolateyPackageParams;
------- END SCRIPT -------
Do you want to run this script?([Y]es/[N]o): y
WARNING: Url has SSL/TLS available, switching to HTTPS for download
Downloading Citrix-Receiver
from 'https://downloadplugins.citrix.com/Windows/CitrixReceiver.exe'
Progress: 100% - Completed download of C:\Users\Administrator\AppData\Local\Temp\chocolatey\citrix-receiver\4.11\CitrixReceiver.exe (38.93 MB).
Download of CitrixReceiver.exe (38.93 MB) completed.
Hashes match.
Installing Citrix-Receiver...
Citrix-Receiver has been installed.
citrix-receiver may be able to be automatically uninstalled.
The install of citrix-receiver was successful.
Software installed to 'C:\Program Files (x86)\Citrix\'
Chocolatey installed 1/1 packages.
See the log for details (C:\ProgramData\chocolatey\logs\chocolatey.log).
C:\Windows\system32>
C:\Windows\system32>
C:\Windows\system32>choco list --local-only
Chocolatey v0.10.8
chocolatey 0.10.8
citrix-receiver 4.11
2 packages installed.
C:\Windows\system32>choco uninstall citrix-receiver
Chocolatey v0.10.8
Uninstalling the following packages:
citrix-receiver
citrix-receiver v4.11
The package citrix-receiver wants to run 'ChocolateyUninstall.ps1'.
Note: If you don't run this script, the installation will fail.
Note: To confirm automatically next time, use '-y' or consider:
choco feature enable -n allowGlobalConfirmation
Do you want to run the script?([Y]es/[N]o/[P]rint): p
------ BEGIN SCRIPT ------
## Template VirtualEngine.Build ChocolateyUninstall.ps1 file for EXE installations
Uninstall-ChocolateyPackage -PackageName 'Citrix-Receiver' -FileType 'EXE' -SilentArgs '/silent /uninstall /cleanup' -File "$env:ALLUSERSPROFILE\Citrix\Citrix Receiver 4.11\TrolleyExpress.exe" -ValidExitCodes @(0,3010);
------- END SCRIPT -------
Do you want to run this script?([Y]es/[N]o): y
Uninstalling Citrix-Receiver...
0
Citrix-Receiver has been uninstalled.
Running auto uninstaller...
Skipping auto uninstaller - 'Citrix Receiver 4.11' appears to have been uninstalled already by other means.
Skipping auto uninstaller - 'Citrix Receiver(USB)' appears to have been uninstalled already by other means.
Skipping auto uninstaller - 'Citrix Web Helper' appears to have been uninstalled already by other means.
Skipping auto uninstaller - 'Citrix Receiver Inside' appears to have been uninstalled already by other means.
Skipping auto uninstaller - 'Online Plug-in' appears to have been uninstalled already by other means.
Skipping auto uninstaller - 'Citrix Receiver(Aero)' appears to have been uninstalled already by other means.
Skipping auto uninstaller - 'Citrix Authentication Manager' appears to have been uninstalled already by other means.
Skipping auto uninstaller - 'Citrix Receiver (HDX Flash Redirection)' appears to have been uninstalled already by other means.
Skipping auto uninstaller - 'Self-service Plug-in' appears to have been uninstalled already by other means.
Skipping auto uninstaller - 'Citrix Receiver(DV)' appears to have been uninstalled already by other means.
citrix-receiver has been successfully uninstalled.
Chocolatey uninstalled 1/1 packages.
See the log for details (C:\ProgramData\chocolatey\logs\chocolatey.log).
C:\Windows\system32>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment