Skip to content

Instantly share code, notes, and snippets.

@raandree
Created March 4, 2020 12:51
Show Gist options
  • Save raandree/ccd975fff14361b271e3e94ae9118e06 to your computer and use it in GitHub Desktop.
Save raandree/ccd975fff14361b271e3e94ae9118e06 to your computer and use it in GitHub Desktop.
Install Wireshark and Fiddler
$vms = Get-LabVM -Role FileServer
$wiresharkUri = 'https://1.eu.dl.wireshark.org/win64/Wireshark-win64-3.2.2.exe'
$fiddlerUri = 'https://telerik-fiddler.s3.amazonaws.com/fiddler/FiddlerSetup.exe'
$fiddler = Get-LabInternetFile -Uri $fiddlerUri -Path $labSources\SoftwarePackages -PassThru
$wireshark = Get-LabInternetFile -Uri $wiresharkUri -Path $labSources\SoftwarePackages -FileName Wireshark.exe -PassThru
Install-LabSoftwarePackage -Path $fiddler.FullName -CommandLine /S -ComputerName $vms
Install-LabSoftwarePackage -Path $wireshark.FullName -CommandLine /S -ComputerName $vms
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment