遇到盤點 .NET 組件(.dll)版號比對多個環境版本差異的需求,看起來是 PowerShell 的主場,試寫一下,比想像還簡單:
param (
[Parameter(Mandatory = $true)]
[string]
$path
)
Get-ChildItem -... Read More
↧