Copy-ItemProperty
Copies a property and value from a specified location to another location.
Copy-ItemProperty [-Path*] <String[]> [-Destination*] <String> [-Name*] <String> [-Credential [<PSCredential>]][-Exclude [<String[]>]] [-Filter [<String>]] [-Force] [-Include [<String[]>]] [-PassThru] [-Confirm] [-WhatIf][-UseTransaction [<SwitchParameter>]] [<CommonParameters>]
Copy-ItemProperty [-Destination*] <String> [-Name*] <String> [-Credential [<PSCredential>]] [-Exclude [<String[]>]][-Filter [<String>]] [-Force] [-Include [<String[]>]] [-PassThru] -LiteralPath* <String[]> [-Confirm] [-WhatIf][-UseTransaction [<SwitchParameter>]] [<CommonParameters>]
The Copy-ItemProperty cmdlet copies a property and value from a specified location to another location. For instance, you can use this cmdlet to copy one or more registry entries from one registry key to another registry key.
Parameters |
---|
-Credential [<PSCredential>]
|
-Destination <String>
|
-Exclude [<String[]>]
|
-Filter [<String>]
|
-Force [<SwitchParameter>]
|
-Include [<String[]>]
|
-LiteralPath <String[]>
|
-Name <String>
|
-PassThru [<SwitchParameter>]
|
-Path <String[]>
|
-Confirm [<SwitchParameter>]
|
-WhatIf [<SwitchParameter>]
|
-UseTransaction [<SwitchParameter>]
|
<CommonParameters>
|
Inputs
System.String
You can pipe a string that contains a path to this cmdlet.
Outputs
None or System.Management.Automation.PSCustomObject
When you use the Passthru parameter, this cmdlet generates a PsCustomObject representing the copied item property. Otherwise, this cmdlet does not generate any output.
Examples
- Copy a property from a registry key to another registry key:
PS C:> Copy-ItemProperty -Path "MyApplication" -Destination "HKLM:SoftwareMyApplicationRev2" -Name "MyProperty"
This command copies the property named MyProperty from the MyApplication registry key to the MyApplicationRev2 registry key.
Additional Notes
This cmdlet is designed to work with the data exposed by any provider. To list the providers available in your session, type Get-PSProvider. For more information, see about_Providers.
Related Links
Clear-ItemProperty
Get-ItemProperty
Move-ItemProperty
New-ItemProperty
Rename-ItemProperty
Set-ItemProperty
Get-PSProvider