PowerShell Logo Small

Remove-DAEntryPointTableItem



This is the built-in help made by Microsoft for the command 'Remove-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

Removes a DirectAccess entry point from the specified configuration store.

SYNTAX


Remove-DAEntryPointTableItem [-AsJob [<SwitchParameter>]] [-CimSession <CimSession[]>] [-EntryPointName <String[]>] [-PassThru
[<SwitchParameter>]] [-State <State[]>] [-ThrottleLimit <Int32>] -PolicyStore <String> [-Confirm [<SwitchParameter>]] [-WhatIf
[<SwitchParameter>]] [<CommonParameters>]
Remove-DAEntryPointTableItem [-AsJob [<SwitchParameter>]] [-CimSession <CimSession[]>] [-EntryPointName <String[]>] [-PassThru
[<SwitchParameter>]] [-State <State[]>] [-ThrottleLimit <Int32>] -GPOSession <String> [-Confirm [<SwitchParameter>]] [-WhatIf
[<SwitchParameter>]] [<CommonParameters>]
Remove-DAEntryPointTableItem [-AsJob [<SwitchParameter>]] [-CimSession <CimSession[]>] [-PassThru [<SwitchParameter>]] [-ThrottleLimit
<Int32>] -InputObject <CimInstance[]> [-Confirm [<SwitchParameter>]] [-WhatIf [<SwitchParameter>]] [<CommonParameters>]



Search powershellhelp.space

DESCRIPTION


Remove-DAEntryPointTableItem removes a DirectAccess entry point from the specified configuration store. You must specify both the
configuration store, by using either GPOSession or PolicyStore, and name of the entry point to remove.



<

RELATED LINKS

New-DAEntryPointTableItem
Get-DAEntryPointTableItem
Set-DAEntryPointTableItem
Reset-DAEntryPointTableItem
Rename-DAEntryPointTableItem

REMARKS

<

Examples


Example 1: Remove an entry point by using the pipeline

PS C:\> Get-DAEntryPointTableItem -EntryPointName "Redmond" -PolicyStore "Contoso\GPO1" | Remove-DAEntryPointTableItem



This cmdlet removes the entry point named Redmond by first getting the entry point information using Get-DAEntryPointTableItem and then
passing the information to Remove-DAEntryPointTableItem.




Example 2: Remove an entry point directly

PS C:\> Remove-DAEntryPointTableItem -EntryPointName "Redmond" -PolicyStore "Contoso\GPO1"



This cmdlet removes an entry point named Redmond by using specifying the EntryPointName and PolicyStore.