執行一段powershell 顯示
找不到類型 [Microsoft.SqlServer.Management.Smo.Server]: 請確認包含此類型的組件是否已載入
參考https://docs.microsoft.com/zh-tw/sql/powershell/load-the-smo-assemblies-in-windows-powershell?view=sql-server-ver15
在執行前加入以下
# Loads the SQL Server Management Objects (SMO)
[System.Reflection.Assembly]::LoadWithPartialName("Microsoft.SqlServer.SMO") | Out-Null
[System.Reflection.Assembly]::LoadWithPartialName("Microsoft.SqlServer.SmoExtended") | Out-Null