PowerShell Logo Small

Remove-NetIPHttpsConfiguration



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

Removes an IP-HTTPS configuration profile.

SYNTAX


Remove-NetIPHttpsConfiguration [-AsJob] [-CimSession <CimSession[]>] [-GPOSession <String>] [-PassThru] [-PolicyStore <String>] [-Profile <String[]>] [-ThrottleLimit
<Int32>] [-Confirm] [-WhatIf] [<CommonParameters>]
Remove-NetIPHttpsConfiguration [-AsJob] [-CimSession <CimSession[]>] [-PassThru] [-ThrottleLimit <Int32>] -InputObject <CimInstance[]> [-Confirm] [-WhatIf]
[<CommonParameters>]



Search powershellhelp.space

DESCRIPTION


The Remove-NetIPHttpsConfiguration cmdlet removes an IP-HTTPS configuration profile from a specified store.


You can specify the IP-HTTPS configuration profile to remove 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=287469
Get-NetIPHttpsConfiguration
New-NetIPHttpsConfiguration
Rename-NetIPHttpsConfiguration
Reset-NetIPHttpsConfiguration
Set-NetIPHttpsConfiguration

REMARKS

<

Examples


Example 1: Remove a profile

PS C:\>Remove-NetIPHttpsConfiguration -Profile Profile1 –PolicyStore Domain\GPO



This command removes the IP-HTTPS configuration profile named Profile1 from a GPO.




Example 2: Remove a profile using configuration object

PS C:\>Get-NetIPHttpsConfiguration -Profile profile2 -PolicyStore Domain\GPO | Remove-NetIPHttpsConfiguration



This command gets the configuration profile object with profile named profile2 on a GPO using the Get-NetIPHttpsConfiguration cmdlet, and then provides the object as input
to this cmdlet using the pipeline operator.