PowerShell 小工具 - 盤點及比較 DLL 版本差異 2021-04-22 11:39 PM 2 2,090 遇到盤點 .NET 組件(.dll)版號比對多個環境版本差異的需求,看起來是 PowerShell 的主場,試寫一下,比想像還簡單: param ( [Parameter(Mandatory = $true)] [string] $path ) Get-ChildItem -...