PowerShell Logo Small

Rename-NetIPHttpsConfiguration



This is the built-in help made by Microsoft for the command 'Rename-NetIPHttpsConfiguration', in PowerShell version 4 - as retrieved from Windows version 'Microsoft Windows 8.1 Enterprise' 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] [-CimSession <CimSession[]>] [-PassThru] [-PolicyStore <String>] [-Profile <String[]>] [-ProfileActivated <Boolean[]>] [-Throt
tleLimit <Int32>] -NewName <String> [-Confirm] [-WhatIf] [<CommonParameters>]
Rename-NetIPHttpsConfiguration [-AsJob] [-CimSession <CimSession[]>] [-GPOSession <String>] [-PassThru] [-Profile <String[]>] [-ProfileActivated <Boolean[]>] [-Thrott
leLimit <Int32>] -NewName <String> [-Confirm] [-WhatIf] [<CommonParameters>]
Rename-NetIPHttpsConfiguration [-AsJob] [-CimSession <CimSession[]>] [-PassThru] [-ThrottleLimit <Int32>] -InputObject <CimInstance[]> -NewName <String> [-Confirm] [-
WhatIf] [<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

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