PowerShell Logo Small

Set-DAEntryPointTableItem



This is the built-in help made by Microsoft for the command 'Set-DAEntryPointTableItem', in PowerShell version 5 - as retrieved from Windows version 'Microsoft Windows Server 2012 R2 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] [-CimSession <CimSession[]>] [-EntryPointIPAddress <String>] [-EntryPointName <String[]>] [-EntryPointRange <String[]>]
[-GslbIP <String>] [-IPHttpsProfile <String>] [-PassThru] [-TeredoServerIP <String>] [-ThrottleLimit <Int32>] -PolicyStore <String> [-Confirm] [-WhatIf] [<CommonParameters>]
Set-DAEntryPointTableItem [-ADSite <String>] [-AsJob] [-CimSession <CimSession[]>] [-EntryPointIPAddress <String>] [-EntryPointRange <String[]>] [-GslbIP <String>]
[-IPHttpsProfile <String>] [-PassThru] [-TeredoServerIP <String>] [-ThrottleLimit <Int32>] -InputObject <CimInstance[]> [-Confirm] [-WhatIf] [<CommonParameters>]
Set-DAEntryPointTableItem [-ADSite <String>] [-AsJob] [-CimSession <CimSession[]>] [-EntryPointIPAddress <String>] [-EntryPointName <String[]>] [-EntryPointRange <String[]>]
[-GslbIP <String>] [-IPHttpsProfile <String>] [-PassThru] [-TeredoServerIP <String>] [-ThrottleLimit <Int32>] -GPOSession <String> [-Confirm] [-WhatIf] [<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

Online Version: http://go.microsoft.com/fwlink/?linkid=287319
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"
PS C:\> $x.GslbIP = 131.107.0.1
PS C:\> $x | Set-DAEntryTableItem



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