Get-SPProjectQueueSettings
指定した Project Server サービス アプリケーションのすべての Project Server キュー設定とその現在の値の一覧を返します。
構文
Get-SPProjectQueueSettings
[-ServiceApplication <PsiServiceApplicationPipeBind>]
[-AssignmentCollection <SPAssignmentCollection>]
[<CommonParameters>]
説明
すべての Project Server キュー設定と、特定の Project Server サービス アプリケーションの現在の値の一覧を返します。 返される設定は次のとおりです。
- MaxDegreeOfConcurrency
- MsgRetryInterval
- MsgRetryLimit
- SqlRetryInterval
- SqlRetryLimit
- SqlCommandTimeout
- CleanupSuccessAgeLimit
- CleanupNonSuccessAgeLimit
- PeriodicTasksInterval
- QueueTimeout
- MaxConnections
Project Server のWindows PowerShellに関するアクセス許可と最新の情報については、(https://go.microsoft.com/fwlink/p/?LinkId=251833) のオンライン ドキュメントを参照してくださいhttps://go.microsoft.com/fwlink/p/?LinkId=251833。
例
-------------------- 例 ---------------------
Get-SPProjectQueueSettings -ServiceApplication "Project Service Application"
この例では、"Project Service Application" というサービス アプリケーションのキュー設定を取得します。
パラメーター
-AssignmentCollection
適切な破棄を行うためにオブジェクトを管理します。 SPWeb や SPSite などのオブジェクトの使用によって大量のメモリが使用される場合があるので、Windows PowerShell スクリプトでこれらのオブジェクトを使用するには適切なメモリ管理が必要です。 メモリの解放が必要になった場合は、SPAssignment オブジェクトを使用して、変数へのオブジェクトの割り当てとオブジェクトの破棄を行うことができます。 割り当てコレクションまたは Global パラメーターが使用されていない場合、SPWeb、SPSite、または SPSiteAdministration オブジェクトが使用されていると、オブジェクトは自動的に破棄されます。
Global パラメーターが使用されている場合は、オブジェクトはすべてグローバル ストアに格納されます。 Stop-SPAssignment コマンドを使用してオブジェクトの使用または破棄を直接行わないと、メモリ不足のシナリオになる場合があります。
Type: | SPAssignmentCollection |
Position: | Named |
Default value: | None |
Required: | False |
Accept pipeline input: | True |
Accept wildcard characters: | False |
Applies to: | Project Server 2013, Project Server 2016, Project Server 2019 |
-ServiceApplication
ターゲットにする Project Server サービス アプリケーションを指定します。
型は、12345678-90ab-cdef-1234-567890bcdefg という形式の有効な GUID である必要があります。Project Server サービス アプリケーションの有効な名前 (ProjectServiceApp1 など)。または有効な PsiServiceApplication オブジェクトのインスタンス。
Type: | PsiServiceApplicationPipeBind |
Aliases: | sa |
Position: | Named |
Default value: | None |
Required: | False |
Accept pipeline input: | True |
Accept wildcard characters: | False |
Applies to: | Project Server 2013, Project Server 2016, Project Server 2019 |