Created
November 22, 2016 15:06
-
-
Save gsmitheidw/39ea5b16dbb9e7dc0f676224ccdce671 to your computer and use it in GitHub Desktop.
packet tracer 7.0 chocolatey install script
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# contents of chocolateyinstall.ps1 | |
Install-ChocolateyPackage ` | |
-PackageName 'packettracer' ` | |
-FileType 'exe' ` | |
-SilentArgs '/VERYSILENT /SUPPRESSMSGBOXES /NORESTART /SP-' ` | |
#-Url '\\uncpath\packettracer\PacketTracer70_64bit_setup.exe' ` | |
-Url64bit '\\uncpath\packettracer\PacketTracer70_64bit_setup.exe' ` | |
-Checksum 'F0270A04BE880297D8B6B20DC7F3690D4063E8FFECED533A03D6D7BB21574624' ` | |
#-Checksum64 'F0270A04BE880297D8B6B20DC7F3690D4063E8FFECED533A03D6D7BB21574624' ` | |
-ChecksumType 'sha256' ` | |
-ChecksumType64 'sha256' |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment