문제

How to find a list of Solution packages are in the solution store in sharePoint 2007 using Powershell?

도움이 되었습니까?

해결책

You can use the following code:

[System.Reflection.Assembly]::LoadWithPartialName("Microsoft.SharePoint")
$farm = [Microsoft.SharePoint.Administration.SPFarm]::Local
$farm

to the the SPFarm object and you will have access to the Solutions collection.

Source: Getting an SPFarm object using PowerShell

라이센스 : CC-BY-SA ~와 함께 속성
제휴하지 않습니다 sharepoint.stackexchange
scroll top