-
Notifications
You must be signed in to change notification settings - Fork 70
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Introduce `VM-Install-Node-Tool` to easily create packages that use `npm` to install tools published on the JavaScript Package Registry. Use `VM-Install-Node-Tool` to add `obfuscator-io-deobfuscator`.
- Loading branch information
Showing
5 changed files
with
47 additions
and
1 deletion.
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
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
13 changes: 13 additions & 0 deletions
13
packages/obfuscator-io-deobfuscator.vm/obfuscator-io-deobfuscator.vm.nuspec
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>obfuscator-io-deobfuscator.vm</id> | ||
<version>0.0.0.20240514</version> | ||
<authors>ben-sb</authors> | ||
<description>A deobfuscator for scripts obfuscated by Obfuscator.io</description> | ||
<dependencies> | ||
<dependency id="common.vm" version="0.0.0.20240514"/> | ||
<dependency id="nodejs.vm" /> | ||
</dependencies> | ||
</metadata> | ||
</package> |
6 changes: 6 additions & 0 deletions
6
packages/obfuscator-io-deobfuscator.vm/tools/chocolateyinstall.ps1
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,6 @@ | ||
$ErrorActionPreference = 'Stop' | ||
Import-Module vm.common -Force -DisableNameChecking | ||
|
||
$toolName = 'obfuscator-io-deobfuscator' | ||
$category = 'Javascript' | ||
VM-Install-Node-Tool -toolName $toolName -category $category -arguments "--help" |
7 changes: 7 additions & 0 deletions
7
packages/obfuscator-io-deobfuscator.vm/tools/chocolateyuninstall.ps1
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 = 'obfuscator-io-deobfuscator' | ||
$category = 'Javascript' | ||
|
||
VM-Remove-Tool-Shortcut $toolName $category |