PowerShell Logo Small

Reset-NetIPHttpsConfiguration



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

Resets the IP-HTTPS configuration elements in a Group Policy Object (GPO).

SYNTAX


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



Search powershellhelp.space

DESCRIPTION


The Reset-NetIPHttpsConfiguration cmdlet resets the IP-HTTP configuration elements in a Group Policy Object (GPO) to the not configured state.


Group Policy settings have one of the following three states: not configured, enabled, or disabled.



<

RELATED LINKS

Get-NetIPHttpsConfiguration
New-NetIPHttpsConfiguration
Remove-NetIPHttpsConfiguration
Rename-NetIPHttpsConfiguration
Set-NetIPHttpsConfiguration

REMARKS

<

Examples


Example 1: Reset the IP-HTTPS configuration

PS C:\> $config = Get-NetIPHttpsConfiguration


PS C:\> Reset-NetIPHttpsConfiguration –InputObject $config



This set of commands gets the IP-HTTPS configuration using the Get-NetIPHttpsConfiguration cmdlet, stores it in a variable named $config and
then passes the contents of the variable to this cmdlet.