Curated Examples
Example.Detectusedlibraries
Source-owned example maintained with PSPublishModule.
- Source repository: https://github.com/EvotecIT/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