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: 2 days 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 (about 7 years ago)
- Default Branch: master
- Last Pushed: 2025-03-22T19:40:43.000Z (about 1 year ago)
- Last Synced: 2025-03-22T20:27:39.133Z (about 1 year ago)
- Topics: dll, dll-inspection, powershell, powershell-module
- Language: PowerShell
- Homepage:
- Size: 10.7 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- Funding: .github/FUNDING.yml
- 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