From ef5eaba4cddf1f0e7cb27ea5aa6dd5c1f10c6e2d Mon Sep 17 00:00:00 2001 From: vm-packages Date: Tue, 27 Feb 2024 16:25:51 +0000 Subject: [PATCH] Add regcool.vm Closes https://github.com/mandiant/VM-Packages/issues/923. --- packages/regcool.vm/regcool.vm.nuspec | 12 ++++++++++++ packages/regcool.vm/tools/chocolateyinstall.ps1 | 10 ++++++++++ packages/regcool.vm/tools/chocolateyuninstall.ps1 | 7 +++++++ 3 files changed, 29 insertions(+) create mode 100644 packages/regcool.vm/regcool.vm.nuspec create mode 100644 packages/regcool.vm/tools/chocolateyinstall.ps1 create mode 100644 packages/regcool.vm/tools/chocolateyuninstall.ps1 diff --git a/packages/regcool.vm/regcool.vm.nuspec b/packages/regcool.vm/regcool.vm.nuspec new file mode 100644 index 000000000..7f2b53ebe --- /dev/null +++ b/packages/regcool.vm/regcool.vm.nuspec @@ -0,0 +1,12 @@ + + + + regcool.vm + 1.361 + Kurt Zimmermann + In addition to all the features that you can find in RegEdit and RegEdt32, RegCool adds many powerful features that allow you to work faster and more efficiently with registry related tasks + + + + + diff --git a/packages/regcool.vm/tools/chocolateyinstall.ps1 b/packages/regcool.vm/tools/chocolateyinstall.ps1 new file mode 100644 index 000000000..1088a1f16 --- /dev/null +++ b/packages/regcool.vm/tools/chocolateyinstall.ps1 @@ -0,0 +1,10 @@ +$ErrorActionPreference = 'Stop' +Import-Module vm.common -Force -DisableNameChecking + +$toolName = 'RegCool' +$category = 'Utilities' + +$zipUrl = 'https://kurtzimmermann.com/files/RegCoolX64.zip' +$zipSha256 = '9b15369b688a5cabcf86f6ecc725d99678a60bf0c370bfd1b0d9cccf2eee9003' + +VM-Install-From-Zip $toolName $category $zipUrl -zipSha256 $zipSha256 -consoleApp $false -innerFolder $false diff --git a/packages/regcool.vm/tools/chocolateyuninstall.ps1 b/packages/regcool.vm/tools/chocolateyuninstall.ps1 new file mode 100644 index 000000000..2d017b50e --- /dev/null +++ b/packages/regcool.vm/tools/chocolateyuninstall.ps1 @@ -0,0 +1,7 @@ +$ErrorActionPreference = 'Continue' +Import-Module vm.common -Force -DisableNameChecking + +$toolName = 'RegCool' +$category = 'Utilities' + +VM-Uninstall $toolName $category