New-SPSecureStoreApplication
新しい Secure Store アプリケーションを作成します。
構文
New-SPSecureStoreApplication
-ServiceContext <SPServiceContextPipeBind>
-TargetApplication <TargetApplication>
[-Administrator <SPClaim[]>]
[-AssignmentCollection <SPAssignmentCollection>]
[-CredentialsOwnerGroup <SPClaim[]>]
-Fields <TargetApplicationField[]>
[-TicketRedeemer <SPClaim[]>]
[<CommonParameters>]
説明
コマンドレットは New-SPSecureStoreApplication
、新しい Secure Store アプリケーションを作成します。
Windows PowerShell for SharePoint 製品のアクセス許可と最新情報については、「SharePoint Server コマンドレット」のオンライン ドキュメントをご覧ください。
例
------------------ 例 ------------------
$usernameField = New-SPSecureStoreApplicationField -Name "UserName" -Type WindowsUserName -Masked:$false
$passwordField = New-SPSecureStoreApplicationField -Name "Password" -Type WindowsPassword -Masked:$true
$fields = $usernameField,$passwordField
$userClaim = New-SPClaimsPrincipal -Identity "CONTOSO\janedoe" -IdentityType WindowsSamAccountName
$contosoTargetApp = New-SPSecureStoreTargetApplication -Name "ContosoTargetApplication" -FriendlyName "Contoso Target Application" -ApplicationType Group
New-SPSecureStoreApplication -ServiceContext http://contoso -TargetApplication $contosoTargetApp -Fields $fields -Administrator $userClaim
この例では、新しいグループ ターゲット アプリケーション ContosoTargetApplication を作成し、そのターゲット アプリケーションの新しいアプリケーションを作成します。 この新しいアプリケーションには、2 つのフィールドがあります。WindowsUserName 型の UserName と WindowsPassword 型のパスワード。 ID が janedoe である CONTOSO ドメイン上のユーザーが、ターゲット アプリケーションの管理者として設定されます。
パラメーター
-Administrator
新しい Secure Store アプリケーションの管理者を指定します。
Type: | SPClaim[] |
Position: | Named |
Default value: | None |
Required: | False |
Accept pipeline input: | False |
Accept wildcard characters: | False |
Applies to: | SharePoint Server 2010, SharePoint Server 2013, SharePoint Server 2016, SharePoint Server 2019 |
-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: | SharePoint Server 2010, SharePoint Server 2013, SharePoint Server 2016, SharePoint Server 2019 |
-CredentialsOwnerGroup
グループ資格情報を所有するグループの要求オブジェクトを指定します。
Type: | SPClaim[] |
Position: | Named |
Default value: | None |
Required: | False |
Accept pipeline input: | False |
Accept wildcard characters: | False |
Applies to: | SharePoint Server 2010, SharePoint Server 2013, SharePoint Server 2016, SharePoint Server 2019 |
-Fields
アプリケーションのフィールド情報を指定します。 既定のフィールドはユーザー名とパスワードです。
Type: | TargetApplicationField[] |
Position: | Named |
Default value: | None |
Required: | True |
Accept pipeline input: | False |
Accept wildcard characters: | False |
Applies to: | SharePoint Server 2010, SharePoint Server 2013, SharePoint Server 2016, SharePoint Server 2019 |
-ServiceContext
ターゲット アプリケーションのサービス コンテキストを指定します。
Type: | SPServiceContextPipeBind |
Position: | Named |
Default value: | None |
Required: | True |
Accept pipeline input: | False |
Accept wildcard characters: | False |
Applies to: | SharePoint Server 2010, SharePoint Server 2013, SharePoint Server 2016, SharePoint Server 2019 |
-TargetApplication
ターゲット アプリケーションに関する情報を指定します。 たとえば、TargetApplication オブジェクトには、アプリケーション名、表示名、連絡先情報、チケット発行フラグと URL アドレスを有効にして資格情報を設定するためのデータ値が含まれています。 TargetApplication オブジェクトのスキーマは、ターゲット アプリケーションのメタデータを公開する ISecureSToreProviderExtended インターフェイスで定義されます。
Type: | TargetApplication |
Position: | Named |
Default value: | None |
Required: | True |
Accept pipeline input: | False |
Accept wildcard characters: | False |
Applies to: | SharePoint Server 2010, SharePoint Server 2013, SharePoint Server 2016, SharePoint Server 2019 |
-TicketRedeemer
チケットの引き換えユーザーの要求の値を指定します。
Type: | SPClaim[] |
Position: | Named |
Default value: | None |
Required: | False |
Accept pipeline input: | False |
Accept wildcard characters: | False |
Applies to: | SharePoint Server 2010, SharePoint Server 2013, SharePoint Server 2016, SharePoint Server 2019 |