Project

PSPublishModule

PSPublishModule is an open-source PowerShell and .NET project with packages, release history, and technical documentation.

Stars47
Forks16
Open issues0
PowerShell Gallery downloads17213
Releasev3.0.131
Language: C# Updated: 2026-09-02T21:02:59.0000000+00:00

Curated Examples

Example.Detectusedlibraries

Source-owned example maintained with PSPublishModule.

[appdomain]::currentdomain.getassemblies() | Sort-Object -Property fullname | Format-Table Fullname, Name, Location -AutoSize
[appdomain]::currentdomain.getassemblies() | Where-Object { $_.FullName -like "*identity*" } | Sort-Object -Property fullname | Format-Table Fullname, Name, Location -AutoSize