PowerShell Logo Small

Set-NetIsatapConfiguration



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

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] [-CimSession <CimSess
ion[]>] [-GPOSession <String>] [-IPInterface <CimInstance>] [-PassThru] [-PolicyStore <String>] [-ThrottleLimit <Int32>] [-Confirm] [-WhatIf] [<CommonParameters>]
Set-NetIsatapConfiguration [[-State] <State>] [[-Router] <String>] [[-ResolutionState] <State>] [[-ResolutionIntervalSeconds] <UInt32>] [-AsJob] [-CimSession <CimSess
ion[]>] [-PassThru] [-ThrottleLimit <Int32>] -InputObject <CimInstance[]> [-Confirm] [-WhatIf] [<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

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