Skip to content

Commit

Permalink
Add windump.vm
Browse files Browse the repository at this point in the history
Closes #948.
  • Loading branch information
vm-packages committed Mar 7, 2024
1 parent 45790b3 commit 7658ad4
Show file tree
Hide file tree
Showing 3 changed files with 29 additions and 0 deletions.
10 changes: 10 additions & 0 deletions packages/windump.vm/tools/chocolateyinstall.ps1
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
$ErrorActionPreference = 'Stop'
Import-Module vm.common -Force -DisableNameChecking

$toolName = 'WinDump'
$category = 'Networking'

$exeUrl = 'https://www.winpcap.org/windump/install/bin/windump_3_9_5/WinDump.exe'
$exeSha256 = '2525041dca2bd37240cca59eb83fa1ec10a4a43716d324dc104dd39db98d358f'

VM-Install-Single-Exe $toolName $category $exeUrl -exeSha256 $exeSha256 -consoleApp $false
7 changes: 7 additions & 0 deletions packages/windump.vm/tools/chocolateyuninstall.ps1
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
$ErrorActionPreference = 'Continue'
Import-Module vm.common -Force -DisableNameChecking

$toolName = 'WinDump'
$category = 'Networking'

VM-Uninstall $toolName $category
12 changes: 12 additions & 0 deletions packages/windump.vm/windump.vm.nuspec
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
<?xml version="1.0" encoding="utf-8"?>
<package xmlns="http://schemas.microsoft.com/packaging/2015/06/nuspec.xsd">
<metadata>
<id>windump.vm</id>
<version>3.9.5</version>
<authors>Riverbed Technology</authors>
<description>Windows version of tcpdump, the command line network analyzer for UNIX</description>
<dependencies>
<dependency id="common.vm" />
</dependencies>
</metadata>
</package>

0 comments on commit 7658ad4

Please sign in to comment.