PowerShell Logo Small

Reset-NetIPHttpsConfiguration



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

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

SYNTAX


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

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