-
Notifications
You must be signed in to change notification settings - Fork 73
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add the parameter -arguments to VM-Install_with-Pip so it runs without arguments. The default parameter is `--help` which doesn't exist in capesolo.
- Loading branch information
1 parent
b86fdc2
commit 740b7fa
Showing
3 changed files
with
28 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,13 @@ | ||
<?xml version="1.0" encoding="utf-8"?> | ||
<package xmlns="http://schemas.microsoft.com/packaging/2015/06/nuspec.xsd"> | ||
<metadata> | ||
<id>capesolo.vm</id> | ||
<version>0.4.23</version> | ||
<authors>kevoreilly, enzok, doomedraven</authors> | ||
<description>Standalone sandbox tool with unpacker and debugger</description> | ||
<dependencies> | ||
<dependency id="common.vm" version="0.0.0.20241209" /> | ||
<dependency id="python3.vm" /> | ||
</dependencies> | ||
</metadata> | ||
</package> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,8 @@ | ||
$ErrorActionPreference = 'Stop' | ||
Import-Module vm.common -Force -DisableNameChecking | ||
|
||
$toolName = 'CAPEsolo' | ||
$category = 'Debuggers' | ||
$version = '==0.4.23' | ||
|
||
VM-Install-With-Pip -toolName $toolName -category $category -version $version -arguments "" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,7 @@ | ||
$ErrorActionPreference = 'Continue' | ||
Import-Module vm.common -Force -DisableNameChecking | ||
|
||
$toolName = 'CAPEsolo' | ||
$category = 'Debuggers' | ||
|
||
VM-Uninstall-With-Pip $toolName $category |