diff --git a/packages/rpcview.vm/rpcview.vm.nuspec b/packages/rpcview.vm/rpcview.vm.nuspec new file mode 100644 index 000000000..0988c7f7a --- /dev/null +++ b/packages/rpcview.vm/rpcview.vm.nuspec @@ -0,0 +1,13 @@ + + + + rpcview.vm + 0.3.1.20231018 + silverf0x + RpcView is an open-source tool to explore and decompile all RPC functionalities present on a Microsoft system + + + + + + diff --git a/packages/rpcview.vm/tools/chocolateyinstall.ps1 b/packages/rpcview.vm/tools/chocolateyinstall.ps1 new file mode 100644 index 000000000..1cbc4abe0 --- /dev/null +++ b/packages/rpcview.vm/tools/chocolateyinstall.ps1 @@ -0,0 +1,10 @@ +$ErrorActionPreference = 'Stop' +Import-Module vm.common -Force -DisableNameChecking + +$toolName = 'RpcView' +$category = 'Utilities' + +$zipUrl = 'https://github.com/silverf0x/RpcView/releases/download/v0.3.1.90/RpcView64.7z' +$zipSha256 = 'a1d89c9d81a2e9c7558e8f0c91ec8652d40af94726f3125f9fe31206adb528de' + +VM-Install-From-Zip $toolName $category $zipUrl -zipSha256 $zipSha256 -consoleApp $false -innerFolder $true diff --git a/packages/rpcview.vm/tools/chocolateyuninstall.ps1 b/packages/rpcview.vm/tools/chocolateyuninstall.ps1 new file mode 100644 index 000000000..04405cb1f --- /dev/null +++ b/packages/rpcview.vm/tools/chocolateyuninstall.ps1 @@ -0,0 +1,7 @@ +$ErrorActionPreference = 'Continue' +Import-Module vm.common -Force -DisableNameChecking + +$toolName = 'RpcView' +$category = 'Utilities' + +VM-Uninstall $toolName $category