https://github.com/powershelllibrary/dllinfo
PowerShell module for gathering information about DLL
https://github.com/powershelllibrary/dllinfo
dll dll-inspection powershell powershell-module
Last synced: about 2 months ago
JSON representation
PowerShell module for gathering information about DLL
- Host: GitHub
- URL: https://github.com/powershelllibrary/dllinfo
- Owner: PowerShellLibrary
- License: mit
- Created: 2019-03-13T22:39:53.000Z (almost 7 years ago)
- Default Branch: master
- Last Pushed: 2019-10-08T18:25:10.000Z (over 6 years ago)
- Last Synced: 2025-01-21T05:07:10.594Z (about 1 year ago)
- Topics: dll, dll-inspection, powershell, powershell-module
- Language: PowerShell
- Homepage:
- Size: 8.79 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# DLLInfo
[](https://www.powershellgallery.com/packages/DLLInfo)
[](LICENSE)
This is a PowerShell module for reading DLLs information.
It can be used to find out what's the build configuration, target CPU and more.
# Installation
Module is available on [Powershell Gallery][gallery]
### Install
```powershell
Install-Module -Name DLLInfo
```
### Import
```powershell
Import-Module DLLInfo
```
# Usage
```powershell
Get-BuildConfiguration "C:\dll\SiteMetadata.dll"
Release
Get-TargetCPU "C:\dll\SiteMetadata.dll"
AnyCPU
Get-JitOptimized "C:\dll\SiteMetadata.dll"
True
```
[gallery]: https://www.powershellgallery.com/packages/DLLInfo