PowerShell Logo Small

Rename-NetIPHttpsConfiguration



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

Renames an IP-HTTPS profile.

SYNTAX


Rename-NetIPHttpsConfiguration [-AsJob [<SwitchParameter>]] [-CimSession <CimSession[]>] [-PassThru [<SwitchParameter>]] [-PolicyStore
<String>] [-Profile <String[]>] [-ProfileActivated <Boolean[]>] [-ThrottleLimit <Int32>] -NewName <String> [-Confirm [<SwitchParameter>]]
[-WhatIf [<SwitchParameter>]] [<CommonParameters>]
Rename-NetIPHttpsConfiguration [-AsJob [<SwitchParameter>]] [-CimSession <CimSession[]>] [-GPOSession <String>] [-PassThru
[<SwitchParameter>]] [-Profile <String[]>] [-ProfileActivated <Boolean[]>] [-ThrottleLimit <Int32>] -NewName <String> [-Confirm
[<SwitchParameter>]] [-WhatIf [<SwitchParameter>]] [<CommonParameters>]
Rename-NetIPHttpsConfiguration [-AsJob [<SwitchParameter>]] [-CimSession <CimSession[]>] [-PassThru [<SwitchParameter>]] [-ThrottleLimit
<Int32>] -InputObject <CimInstance[]> -NewName <String> [-Confirm [<SwitchParameter>]] [-WhatIf [<SwitchParameter>]] [<CommonParameters>]



Search powershellhelp.space

DESCRIPTION


The Rename-NetIPHttpsConfiguration cmdlet renames an IP-HTTPS profile, either on a computer or in a Group Policy Object (GPO).



<

RELATED LINKS

Get-NetIPHttpsConfiguration
New-NetIPHttpsConfiguration
Remove-NetIPHttpsConfiguration
Reset-NetIPHttpsConfiguration
Set-NetIPHttpsConfiguration

REMARKS

<

Examples


Example 1: Rename an IP-HTTPS profile using a configuration object

PS C:\> $config = Get-NetIPHttpsConfiguration –PolicyStore "testdomain\GPOName"


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



This set of commands uses the Get-NetIPHttpsConfiguration cmdlet to get an IP-HTTPS configuration object and stores it in a variable named
$config. The contents of the variable are then passed to this cmdlet.




Example 2: Rename an IP-HTTPS profile

PS C:\> Rename-NetIPHttpsConfiguration –Profile Redmond –NewName Fareast



This command renames the IP-HTTPS profile named Redmond to Fareast.