Skip to content
Draft
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Binary file added __pkgs/choco/.gitignore
Binary file not shown.
17 changes: 17 additions & 0 deletions __pkgs/choco/ObjDir/objdir.nuspec
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
<?xml version="1.0"?>
<package xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema">
<metadata>
<id>objdir</id>
<title>ObjDir</title>
<version>0.1.0</version>
<authors>zodiacon</authors>
<owners>zodiacon</owners>
<summary>Command line tool to show Object Manager namespace.</summary>
<description>This tool displays the details in the Windows Object Manager namespace, like, `Event`, `Directory`, `SymbolicLinks`, etc.</description>
<projectUrl>https://github.com/zodiacon/ObjDir</projectUrl>
<tags>windows objects namespace wininternals</tags>
<licenseUrl>https://github.com/zodiacon/AllTools/blob/master/LICENSE</licenseUrl>
<requireLicenseAcceptance>false</requireLicenseAcceptance>
<iconUrl>https://th.bing.com/th/id/OIP.SgC_U5gouP8VqC1E1TWRUwHaHa</iconUrl>
</metadata>
</package>
12 changes: 12 additions & 0 deletions __pkgs/choco/ObjDir/tools/chocolateyInstall.ps1
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
$packageName = 'ObjDir'
$url = 'https://github.com/zodiacon/AllTools/blob/master/ObjDir.exe?raw=true'
$url64bit = 'https://github.com/zodiacon/AllTools/blob/master/ObjDir.exe?raw=true'

$packageArgs = @{
packageName = $packageName
fileType = 'exe'
url = $url
url64bit = $url64bit
}

Install-ChocolateyPackage @packageArgs