PowerShell Logo Small

Set-NetIsatapConfiguration



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

Sets an ISATAP configuration on a computer or on a Group Policy Object (GPO).

SYNTAX


Set-NetIsatapConfiguration [[-State] <State>] [[-Router] <String>] [[-ResolutionState] <State>] [[-ResolutionIntervalSeconds] <UInt32>]
[-AsJob [<SwitchParameter>]] [-CimSession <CimSession[]>] [-GPOSession <String>] [-IPInterface <CimInstance>] [-PassThru [<SwitchParameter>]]
[-PolicyStore <String>] [-ThrottleLimit <Int32>] [-Confirm [<SwitchParameter>]] [-WhatIf [<SwitchParameter>]] [<CommonParameters>]
Set-NetIsatapConfiguration [[-State] <State>] [[-Router] <String>] [[-ResolutionState] <State>] [[-ResolutionIntervalSeconds] <UInt32>]
[-AsJob [<SwitchParameter>]] [-CimSession <CimSession[]>] [-PassThru [<SwitchParameter>]] [-ThrottleLimit <Int32>] -InputObject
<CimInstance[]> [-Confirm [<SwitchParameter>]] [-WhatIf [<SwitchParameter>]] [<CommonParameters>]



Search powershellhelp.space

DESCRIPTION


The Set-NetIsatapConfiguration cmdlet sets an ISATAP configuration on a computer or on a Group Policy Object (GPO).



<

RELATED LINKS

Get-NetIPInterface
Get-NetIsatapConfiguration
Set-NetIsatapConfiguration

REMARKS

<

Examples


Example 1: Set ISATAP configuration

PS C:\> Set-NetIsatapConfiguration -Router superisatap



This command modifies the router name.




Example 2: Set a router using an input object

PS C:\> $config = ( Get-NetIPInterface -InterfaceIndex 14 | Get-NetIPISATAPConfiguration )


PS C:\> $config.Router = "SuperIsatap"


PS C:\> Set-NetIsatapConfiguration -InputObject $config



This set of commands uses the Get-NetIPInterface and Get-NetIsatapConfiguration cmdlets to get the ISATAP configuration of the interface at
index 14 and stores it in a variable named $config, and then sets the router name to SuperIsatap using this cmdlet.