Set-SPAlternateURL
指定した代替 URL を構成します。
構文
Set-SPAlternateURL
[-Identity] <SPAlternateUrlPipeBind>
[-Url <String>]
[-Zone <SPUrlZone>]
[-AssignmentCollection <SPAssignmentCollection>]
[-Confirm]
[-WhatIf]
[<CommonParameters>]
説明
コマンドレットは Set-SPAlternateUrl
、Identity パラメーターで指定された代替 URL の URL またはゾーンを変更します。
このコマンドレットは、内部 URL のゾーンのみを変更するために使用でき、パブリック URL のゾーンを変更するために使用することはできません。
Windows PowerShell for SharePoint 製品のアクセス許可と最新情報については、「SharePoint Server コマンドレット」のオンライン ドキュメントをご覧ください。
例
------------------ 例 1 ------------------
Set-SPAlternateURL -Identity https://www.contoso.com -Zone "Internet"
次の使用例は、代替 URL のゾーンを変更します https://www.contoso.com。
------------------ 例 2 ------------------
Set-SPAlternateURL -Identity https://www.contoso.com -Url https://sharepoint.contoso.com -Zone "Default"
この例では、代替 URL の URL とゾーンを変更します https://www.contoso.com。
------------------ 例 3 ------------------
Get-SPAlternateURL https://www.contoso.com | Set-SPAlternateURL -Zone "Internet"
次の使用例は、代替 URL のゾーンを変更します https://www.contoso.com。
------------------ 例 4 ------------------
Get-SPWebApplication |%{ Get-SPAlternateURL -WebApplication $_ -Zone "Extranet" } | Set-SPAlternateURL -Zone "Intranet"
この例では、指定された Web アプリケーションの代替 URL の領域を Extranet から Intranet に変更します。
パラメーター
-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 Subscription Edition |
-Confirm
コマンドを実行する前に確認メッセージを表示します。
詳細については、次のコマンドを入力します。get-help about_commonparameters
Type: | SwitchParameter |
Aliases: | cf |
Position: | Named |
Default value: | None |
Required: | False |
Accept pipeline input: | False |
Accept wildcard characters: | False |
Applies to: | SharePoint Server Subscription Edition |
-Identity
変更する代替 URL の URL または GUID を指定します。
この型は、http://<サーバー名>/WebApplication/site という形式の有効な URL であるか、12345678-90ab-cdef-1234-567890bcdefgh という形式の有効な GUID であることが必要です。
Type: | SPAlternateUrlPipeBind |
Position: | 1 |
Default value: | None |
Required: | True |
Accept pipeline input: | True |
Accept wildcard characters: | False |
Applies to: | SharePoint Server Subscription Edition |
-Url
新しい代替 URL を指定します。
Type: | String |
Position: | Named |
Default value: | None |
Required: | False |
Accept pipeline input: | False |
Accept wildcard characters: | False |
Applies to: | SharePoint Server Subscription Edition |
-WhatIf
コマンドを実行する代わりに、コマンドの実行結果を説明するメッセージを表示します。
詳細については、次のコマンドを入力します。get-help about_commonparameters
Type: | SwitchParameter |
Aliases: | wi |
Position: | Named |
Default value: | None |
Required: | False |
Accept pipeline input: | False |
Accept wildcard characters: | False |
Applies to: | SharePoint Server Subscription Edition |
-Zone
指定した代替 URL を 5 つの領域の 1 つとして設定します。
この型は、 Default 、 Intranet 、 Internet 、 Extranet 、 Custom のいずれかの値であることが必要です。
Type: | SPUrlZone |
Position: | Named |
Default value: | None |
Required: | False |
Accept pipeline input: | False |
Accept wildcard characters: | False |
Applies to: | SharePoint Server Subscription Edition |