Skip to main content

Documentation Index

Fetch the complete documentation index at: https://mintlify.com/HewlettPackard/POSH-HPEOneView/llms.txt

Use this file to discover all available pages before exploring further.

Synopsis

Reserved for future use. This cmdlet is not implemented in the current release.

Description

Set-OVServerProfileTemplate is defined in the HPE OneView 10.00 PowerShell library but is not implemented. Calling it will throw:
Not implemented.
To update a server profile template, use Set-OVResource to PUT the modified object directly.

Alternative approach

Modify a template property and save with Set-OVResource

# Get the template
$template = Get-OVServerProfileTemplate -Name 'Hypervisor Cluster Node Template v1'

# Modify a property
$template.description = 'Corp standard hypervisor cluster node, version 1.1'

# Save changes using the low-level Set-OVResource cmdlet
Set-OVResource -InputObject $template | Wait-OVTaskComplete
After updating a template, any derived server profiles that were previously compliant may become non-compliant. Use Get-OVServerProfile -NonCompliant to identify affected profiles and Update-OVServerProfile to remediate them.