PowerShell Logo Small

Set-NetIPHttpsConfiguration



This is the built-in help made by Microsoft for the command 'Set-NetIPHttpsConfiguration', 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 an IP-HTTPS configuration.

SYNTAX


Set-NetIPHttpsConfiguration [-AsJob] [-AuthMode <AuthMode>] [-CimSession <CimSession[]>] [-PassThru] [-PolicyStore <String>] [-Profile <String[]>] [-ProfileActivated
<Boolean[]>] [-ServerURL <String>] [-State <State>] [-StrongCRLRequired <Boolean>] [-ThrottleLimit <Int32>] [-Type <Type>] [-Confirm] [-WhatIf] [<CommonParameters>]
Set-NetIPHttpsConfiguration [-AsJob] [-AuthMode <AuthMode>] [-CimSession <CimSession[]>] [-PassThru] [-ServerURL <String>] [-State <State>] [-StrongCRLRequired <Boolean>]
[-ThrottleLimit <Int32>] [-Type <Type>] -InputObject <CimInstance[]> [-Confirm] [-WhatIf] [<CommonParameters>]
Set-NetIPHttpsConfiguration [-AsJob] [-AuthMode <AuthMode>] [-CimSession <CimSession[]>] [-GPOSession <String>] [-PassThru] [-Profile <String[]>] [-ProfileActivated
<Boolean[]>] [-ServerURL <String>] [-State <State>] [-StrongCRLRequired <Boolean>] [-ThrottleLimit <Int32>] [-Type <Type>] [-Confirm] [-WhatIf] [<CommonParameters>]



Search powershellhelp.space

DESCRIPTION


The Set-NetIPHttpsConfiguration cmdlet modifies an IP-HTTPS configuration.


You can specify the IP-HTTPS configuration profile to modify either by using a configuration object retrieved by the Get-NetIPHttpsConfiguration cmdlet or by specifying the
profile name.



<

RELATED LINKS

Online Version: http://go.microsoft.com/fwlink/?linkid=287479
Get-NetIPHttpsConfiguration
New-NetIPHttpsConfiguration
Rename-NetIPHttpsConfiguration
Remove-NetIPHttpsConfiguration
Reset-NetIPHttpsConfiguration

REMARKS

<

Examples


Example 1: Set the server URL of the profile

PS C:\>Set-NetIPHttpsConfiguration -Profile Redmond -ServerURL https://da.com:443/IPHTTPs -PolicyStore Domain\TestGPO



This command modifies the profile named Redmond in the GPO named TestGPO, modifying the server URL.




Example 2: Set the server URL using IP-HTTPS configuration object

PS C:\>Get-NetIPHttpsConfiguration -Profile Redmond -PolicyStore Domain\TestGPO | Set-NetIPHttpsConfiguration -ServerURL https://da.com:443/IPHTTPs



This command gets the IP-HTTPS configuration profile named Redmond in the GPO named TestGPO using the Get-NetIPHttpsConfiguration cmdlet, and then provides the output object
as input to this cmdlet using the pipeline operator.