Update-SPRepopulateMicroblogFeedCache
マイクロブログ フィード キャッシュを更新します。
構文
Update-SPRepopulateMicroblogFeedCache
[-AccountName <String>]
-ProfileServiceApplicationProxy <SPServiceApplicationProxyPipeBind>
[-AssignmentCollection <SPAssignmentCollection>]
[-SiteSubscription <SPSiteSubscriptionPipeBind>]
[-SiteUrl <String>]
[<CommonParameters>]
Update-SPRepopulateMicroblogFeedCache
[-AccountName <String>]
-ProfileServiceApplicationProxy <SPServiceApplicationProxyPipeBind>
[-AssignmentCollection <SPAssignmentCollection>]
[-SiteSubscription <SPSiteSubscriptionPipeBind>]
[-SiteUrl <String>]
[<CommonParameters>]
Update-SPRepopulateMicroblogFeedCache
-ProfileServiceApplicationProxy <SPServiceApplicationProxyPipeBind>
[-AssignmentCollection <SPAssignmentCollection>]
-SiteSubscription <SPSiteSubscriptionPipeBind>
-ListId <Guid>
-ListRootFolderUrl <String>
-SiteId <Guid>
-WebId <Guid>
[<CommonParameters>]
説明
コマンドレットを Update-SPRepopulateMicroblogFeedCache
使用して、特定のユーザーのフィードを更新します。
このコマンドレットは、自動更新が失敗した場合や、ユーザーの個人用サイトを古いバージョンに戻す場合に使用できます。
キャッシュを更新するときは、最初にコマンドレットを Update-SPRepopulateMicroblogLMTCache
実行し、次にコマンドレットを 2 番目に実行する Update-SPRepopulateMicroblogFeedCache
必要があります。
Windows PowerShell for SharePoint 製品のアクセス許可と最新情報については、「SharePoint Server コマンドレット」のオンライン ドキュメントをご覧ください。
例
------------例 1------------
$proxy = Get-SPServiceApplicationProxy | ?{$_.TypeName -eq 'User Profile Service Application Proxy'}
Update-SPRepopulateMicroblogFeedCache -ProfileServiceApplicationProxy $proxy -AccountName contoso\userName
次の使用例は、AccountName パラメーターを使用して、特定のユーザーのフィードを更新します。
------------例 2------------
$site = (Get-SPWebApplication -IncludeCentralAdministration | ?{$_.IsAdministrationWebApplication -eq $true}).Sites[0]
$context = Get-SPServiceContext $site
$upm = New-Object Microsoft.Office.Server.UserProfiles.UserProfileManager($context)
$profiles = $upm.GetEnumerator()
$proxy = Get-SPServiceApplicationProxy | ?{$_.TypeName -eq 'User Profile Service Application Proxy'}
while($profiles.MoveNext()) {
$profile = $profiles.Current
Update-SPRepopulateMicroblogFeedCache -ProfileServiceApplicationProxy $proxy -AccountName $profile.AccountName }
次の使用例は、ユーザー プロファイル サービス アプリケーションのすべてのユーザーのフィードを更新します。
------------例 3------------
Update-SPRepopulateMicroblogFeedCache -ProfileServiceApplicationProxy $proxy -SiteUrl https://sharepoint.contoso.com
次の使用例は、サイト https://sharepoint.contoso.comのフィードを更新します。
パラメーター
-AccountName
ユーザー プロファイル サービス アプリケーションのユーザーのアカウント名を指定します。
Type: | String |
Position: | Named |
Default value: | None |
Required: | False |
Accept pipeline input: | False |
Accept wildcard characters: | False |
Applies to: | 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 2013, SharePoint Server 2016, SharePoint Server 2019 |
-ListId
FollowableList の ListId。
Type: | Guid |
Position: | Named |
Default value: | None |
Required: | True |
Accept pipeline input: | False |
Accept wildcard characters: | False |
Applies to: | SharePoint Server 2016, SharePoint Server 2019 |
-ListRootFolderUrl
FollowableList の RootFolderUrl。
Type: | String |
Position: | Named |
Default value: | None |
Required: | True |
Accept pipeline input: | False |
Accept wildcard characters: | False |
Applies to: | SharePoint Server 2016, SharePoint Server 2019 |
-ProfileServiceApplicationProxy
更新対象のユーザー プロファイル サービス アプリケーションのプロキシを指定します。
この型は、次のいずれかの形式であることが必要です。
--12345678-90ab-cdef-1234-567890bcdefgh --A 有効なサービス アプリケーション プロキシの名前 (UserProfileSvcProxy1 など) の有効な GUID --A 有効な SPServiceApplicationProxy オブジェクトのインスタンス
Type: | SPServiceApplicationProxyPipeBind |
Position: | Named |
Default value: | None |
Required: | True |
Accept pipeline input: | True |
Accept wildcard characters: | False |
Applies to: | SharePoint Server 2013, SharePoint Server 2016, SharePoint Server 2019 |
-SiteId
FollowableList を含む SiteId。
Type: | Guid |
Position: | Named |
Default value: | None |
Required: | True |
Accept pipeline input: | False |
Accept wildcard characters: | False |
Applies to: | SharePoint Server 2016, SharePoint Server 2019 |
-SiteSubscription
このサービスの実行に使用するアカウントを指定します。 このパラメーターは、ホスト環境では必須、非ホスト環境では省略可です。
Type: | SPSiteSubscriptionPipeBind |
Position: | Named |
Default value: | None |
Required: | True |
Accept pipeline input: | True |
Accept wildcard characters: | False |
Applies to: | SharePoint Server 2013, SharePoint Server 2016, SharePoint Server 2019 |
-SiteUrl
サイト フィードを再作成するサイトの URL を指定します。 このパラメーターを指定しない場合、AccountName パラメーターを指定する必要があります。 どちらのパラメーターも指定しないと、エラー メッセージが表示されます。
Type: | String |
Position: | Named |
Default value: | None |
Required: | False |
Accept pipeline input: | False |
Accept wildcard characters: | False |
Applies to: | SharePoint Server 2013, SharePoint Server 2016, SharePoint Server 2019 |
-WebId
FollowableList を含む WebId。
Type: | Guid |
Position: | Named |
Default value: | None |
Required: | True |
Accept pipeline input: | False |
Accept wildcard characters: | False |
Applies to: | SharePoint Server 2016, SharePoint Server 2019 |