PowerShell Logo Small

Remove-DAEntryPointTableItem



This is the built-in help made by Microsoft for the command 'Remove-DAEntryPointTableItem', in PowerShell version 4 - as retrieved from Windows version 'Microsoft Windows 8.1 Enterprise' 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] [-CimSession <CimSession[]>] [-EntryPointName <String[]>] [-PassThru] [-ThrottleLimit <Int32>] -PolicyStore <String> [-Confirm]
[-WhatIf] [<CommonParameters>]
Remove-DAEntryPointTableItem [-AsJob] [-CimSession <CimSession[]>] [-EntryPointName <String[]>] [-PassThru] [-ThrottleLimit <Int32>] -GPOSession <String> [-Confirm] [
-WhatIf] [<CommonParameters>]
Remove-DAEntryPointTableItem [-AsJob] [-CimSession <CimSession[]>] [-PassThru] [-ThrottleLimit <Int32>] -InputObject <CimInstance[]> [-Confirm] [-WhatIf] [<CommonPara
meters>]



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

Online Version: http://go.microsoft.com/fwlink/?linkid=287314
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 Rem
ove-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.