diff --git a/packages/sclauncher.vm/sclauncher.vm.nuspec b/packages/sclauncher.vm/sclauncher.vm.nuspec new file mode 100644 index 000000000..1533d724d --- /dev/null +++ b/packages/sclauncher.vm/sclauncher.vm.nuspec @@ -0,0 +1,12 @@ + + + + sclauncher.vm + 0.0.3 + Josh Stroschein + A small program to load 32-bit shellcode and allow for execution or debugging. Can also output PE files from shellcode. + + + + + diff --git a/packages/sclauncher.vm/tools/chocolateyinstall.ps1 b/packages/sclauncher.vm/tools/chocolateyinstall.ps1 new file mode 100644 index 000000000..1c305a29d --- /dev/null +++ b/packages/sclauncher.vm/tools/chocolateyinstall.ps1 @@ -0,0 +1,10 @@ +$ErrorActionPreference = 'Stop' +Import-Module vm.common -Force -DisableNameChecking + +$toolName = 'SCLauncher' +$category = 'Utilities' + +$exeUrl = 'https://github.com/jstrosch/sclauncher/releases/download/v0.0.3/sclauncher.exe' +$exeSha256 = '0c716e23af2ada3955993b08aa233db54a671c0b2da68072a8ad5bb470d4a47b' + +VM-Install-Single-Exe $toolName $category $exeUrl -exeSha256 $exeSha256 -consoleApp $true diff --git a/packages/sclauncher.vm/tools/chocolateyuninstall.ps1 b/packages/sclauncher.vm/tools/chocolateyuninstall.ps1 new file mode 100644 index 000000000..e38019742 --- /dev/null +++ b/packages/sclauncher.vm/tools/chocolateyuninstall.ps1 @@ -0,0 +1,7 @@ +$ErrorActionPreference = 'Continue' +Import-Module vm.common -Force -DisableNameChecking + +$toolName = 'SCLauncher' +$category = 'Utilities' + +VM-Uninstall $toolName $category