PowerShell Logo Small

Set-DAEntryPointTableItem



This is the built-in help made by Microsoft for the command 'Set-DAEntryPointTableItem', in PowerShell version 3 - as retrieved from Windows version 'Microsoft Windows Server 2012 Standard' PowerShell help files on 2016-06-23.

For PowerShell version 3 and up, where you have Update-Help, this command was run just before creating the web pages from the help files.

SYNOPSIS

Modifies the configuration of a DirectAccess entry point stored in a Group Policy object.

SYNTAX


Set-DAEntryPointTableItem [-ADSite <String>] [-AsJob [<SwitchParameter>]] [-CimSession <CimSession[]>] [-EntryPointIPAddress <String>]
[-EntryPointName <String[]>] [-EntryPointRange <String[]>] [-GslbIP <String>] [-IPHTTPsProfile <String>] [-PassThru [<SwitchParameter>]]
[-State <State[]>] [-TeredoServerIP <String>] [-ThrottleLimit <Int32>] -PolicyStore <String> [-Confirm [<SwitchParameter>]] [-WhatIf
[<SwitchParameter>]] [<CommonParameters>]
Set-DAEntryPointTableItem [-ADSite <String>] [-AsJob [<SwitchParameter>]] [-CimSession <CimSession[]>] [-EntryPointIPAddress <String>]
[-EntryPointRange <String[]>] [-GslbIP <String>] [-IPHTTPsProfile <String>] [-PassThru [<SwitchParameter>]] [-TeredoServerIP <String>]
[-ThrottleLimit <Int32>] -InputObject <CimInstance[]> [-Confirm [<SwitchParameter>]] [-WhatIf [<SwitchParameter>]] [<CommonParameters>]
Set-DAEntryPointTableItem [-ADSite <String>] [-AsJob [<SwitchParameter>]] [-CimSession <CimSession[]>] [-EntryPointIPAddress <String>]
[-EntryPointName <String[]>] [-EntryPointRange <String[]>] [-GslbIP <String>] [-IPHTTPsProfile <String>] [-PassThru [<SwitchParameter>]]
[-State <State[]>] [-TeredoServerIP <String>] [-ThrottleLimit <Int32>] -GPOSession <String> [-Confirm [<SwitchParameter>]] [-WhatIf
[<SwitchParameter>]] [<CommonParameters>]



Search powershellhelp.space

DESCRIPTION


Set-DAEntryPointTableItem modifies an entry point configuration that is stored in a Group Policy object (GPO). You must specifiy the name of
the GPO in which the DirectAccess entry point configuration is stored.



<

RELATED LINKS

New-DAEntryPointTableItem
Get-DAEntryPointTableItem
Reset-DAEntryPointTableItem
Rename-DAEntryPointTableItem
Remove-DAEntryPointTableItem

REMARKS

<

Examples


Example 1: Modify an entry point

PS C:\> Set-DAEntryTableItem -EntryPointName "Paris" -GslbIP 131.107.0.1 -PolicyStore "Contoso\GPO1"



This cmdlet modifies the GSLB of the entry point named Paris.




Example 2: Modify an entry point using an input object

PS C:\> $x = Set-DAEntryTableItem -EntryPointName "Paris" -PolicyStore "Contoso\GPO1"



This cmdlet modifies an entry point named Paris by passing an input object on the pipeline.