diff --git a/HPEOneView.910.psd1 b/HPEOneView.910.psd1 index 246655f..02a13fb 100644 --- a/HPEOneView.910.psd1 +++ b/HPEOneView.910.psd1 @@ -12,7 +12,7 @@ RootModule = 'HPEOneView.910.psm1' # Version number of this module. -ModuleVersion = '9.10.4006.1748' +ModuleVersion = '9.10.4012.2256' # Supported PSEditions # CompatiblePSEditions = @() @@ -156,15 +156,10 @@ PrivateData = @{ # IconUri = '' # ReleaseNotes of this module - ReleaseNotes = 'Release 9.10.4006.1748 - -- Initial HPE OneView 9.10 library release. -- Added Get-OVRotateMPPasswordPolicy and Set-OVRotateMPPasswordPolicy cmdlets that will rotate the priviledged user account OneView deploys to a servers embedded management processor (i.e. iLO). -- Added Firmware Bundle Updates to New-OVServerProfileTemplate and New-OVServerProfile Cmdlets. -- Added server profile support to Update-OVServerFirmware Cmdlet. This will modify the server profile resource directly, and not invoke the process with the server hardware resource. -- Added Get-OVRemoteSupportPortalConnection, Register-OVRemoteSupportPortalConnection, Unregister-OVRemoteSupportPortalConnection Cmdlets to manage registering the appliance with the HPE Support Center for enhanced support case vibility. -- Fixed New-OVRemoteSupportContact returning the correct object type. -- Remove-OVRemoteSupportPartner API returns an Async task.' + ReleaseNotes = 'Release 9.10.4012.2256 + +- Added Compliance Preview back to Update-OVServerFirmware with -PreviewOnly switch parameter. +- Fixed incorrect handling of server profile resource (assigned and unassigned) with Update-OVServerFirmware.' # Prerelease string of this module # Prerelease = '' diff --git a/HPEOneView.910.psm1 b/HPEOneView.910.psm1 index 1af6567..ee6e7a5 100644 --- a/HPEOneView.910.psm1 +++ b/HPEOneView.910.psm1 @@ -27,7 +27,7 @@ THE SOFTWARE. #> # Set HPEOneView POSH Library Version -[Version]$ModuleVersion = '9.10.4006.1748' +[Version]$ModuleVersion = '9.10.4012.2256' New-Variable -Name PSLibraryVersion -Scope Global -Value ([HPEOneView.Library.Version]::new($ModuleVersion)) -Option Constant -ErrorAction SilentlyContinue $Global:CallStack = Get-PSCallStack $script:ModuleVerbose = [Bool]($Global:CallStack | Where-Object { $_.Command -eq "" }).position.text -match "-verbose" @@ -6832,11 +6832,12 @@ function Send-OVRequest "[{0}] Response members and automatic pagination" -f $MyInvocation.InvocationName.ToString().ToUpper() | Write-Verbose - $resp.members | ForEach-Object { + ForEach ($_member in $resp.members) + { - Add-Member -InputObject $_ -NotePropertyName ApplianceConnection -NotePropertyValue ([HPEOneView.Library.ApplianceConnection]::new($ApplianceHost.Name, $ApplianceHost.ConnectionId)) -Force + Add-Member -InputObject $_member -NotePropertyName ApplianceConnection -NotePropertyValue ([HPEOneView.Library.ApplianceConnection]::new($ApplianceHost.Name, $ApplianceHost.ConnectionId)) -Force - [void]$AllMembers.Add($_) + [void]$AllMembers.Add($_member) } @@ -6885,9 +6886,10 @@ function Send-OVRequest "[{0}] Response members and manual paging" -f $MyInvocation.InvocationName.ToString().ToUpper() | Write-Verbose - $resp.members | ForEach-Object { + ForEach ($_member in $resp.members) + { - Add-Member -InputObject $_ -NotePropertyName ApplianceConnection -NotePropertyValue ([HPEOneView.Library.ApplianceConnection]::new($ApplianceHost.Name, $ApplianceHost.ConnectionId)) -Force + Add-Member -InputObject $_member -NotePropertyName ApplianceConnection -NotePropertyValue ([HPEOneView.Library.ApplianceConnection]::new($ApplianceHost.Name, $ApplianceHost.ConnectionId)) -Force } @@ -6895,14 +6897,19 @@ function Send-OVRequest } - elseif ($resp) + else { "[{0}] Response object, no paging needed." -f $MyInvocation.InvocationName.ToString().ToUpper() | Write-Verbose - Add-Member -InputObject $resp -NotePropertyName ApplianceConnection -NotePropertyValue ([HPEOneView.Library.ApplianceConnection]::new($ApplianceHost.Name, $ApplianceHost.ConnectionId)) -Force + ForEach ($_member in $resp) + { - [void]$AllResponses.Add($resp) + Add-Member -InputObject $_member -NotePropertyName ApplianceConnection -NotePropertyValue ([HPEOneView.Library.ApplianceConnection]::new($ApplianceHost.Name, $ApplianceHost.ConnectionId)) -Force + + [void]$AllResponses.Add($_member) + + } } @@ -42310,7 +42317,7 @@ function Get-OVFirmwareBundleUpdateSchedule } - if ($ApplianceUpdateScheduleConfig.state -eq "DISABLED") + if ($ApplianceUpdateScheduleConfig.state -eq [HPEOneView.Appliance.StateEnum]::DISABLED) { Return [HPEOneView.Appliance.FirmwareBundleUpdateSchedule]::new($ApplianceUpdateScheduleConfig.state, @@ -50523,6 +50530,9 @@ function Update-OVServerFirmware [Parameter (Mandatory = $false, ParameterSetName = "Default")] [Switch]$ReinstallFirmware, + [Parameter (Mandatory = $false, ParameterSetName = "Default")] + [Switch]$PreviewOnly, + [Parameter (Mandatory = $false, ParameterSetName = "Default")] [Switch]$Async, @@ -50617,23 +50627,78 @@ function Update-OVServerFirmware { $_CompliancePreview = [System.Collections.ArrayList]::new() + $_ServerFirmwareBundleCompliance = NewObject -ServerFirmwareBundleCompliance - if ($InputObject.category -ne $ResourceCategoryEnum.ServerHardware) + if ($ResourceCategoryEnum.ServerHardware, $ResourceCategoryEnum.ServerProfile -notcontains $InputObject.category) { - $ExceptionMessage = "The provided InputObject is not a server hardware resource." + $ExceptionMessage = "The provided InputObject is not a server hardware or server profile resource." $ErrorRecord = New-ErrorRecord HPEOneView.Library.ParameterValidationException InvalidInputObjectParameter InvalidOperation 'InputObject' -Message $ExceptionMessage $PSCmdlet.ThrowTerminatingError($ErrorRecord) } # This policy setting is only supported with Gen10 and newer platforms - if (-not [enum]::IsDefined([FirmwarePolicyGenerationSupportEnum], $InputObject.generation.Replace(" ", $null))) + if ($InputObject.category -eq $ResourceCategoryEnum.ServerHardware) { - $ExceptionMessage = "Firmware installation without server profile is only available with Gen10 and newer platforms. It is not supported with '{0}' server generation." -f $InputObject.generation - $ErrorRecord = New-ErrorRecord HPEOneView.ServerHardwareResourceException InvalidFirmwareInstallPolicy InvalidArgument 'FirmwareInstallationPolicy' -Message $ExceptionMessage - $PSCmdlet.ThrowTerminatingError($ErrorRecord) + if (-not [enum]::IsDefined([FirmwarePolicyGenerationSupportEnum], $InputObject.generation.Replace(" ", $null))) + { + + $ExceptionMessage = "Firmware installation without server profile is only available with Gen10 and newer platforms. It is not supported with '{0}' server generation." -f $InputObject.generation + $ErrorRecord = New-ErrorRecord HPEOneView.ServerHardwareResourceException InvalidFirmwareInstallPolicy InvalidArgument 'FirmwareInstallationPolicy' -Message $ExceptionMessage + $PSCmdlet.ThrowTerminatingError($ErrorRecord) + + } + + } + + elseif ($InputObject.category -eq $ResourceCategoryEnum.ServerProfile) + { + + # Check to see if the server profile is assigned to a server resource by evaluating the serverHardwareUri property. + # If null, get the server hardware type of the profile and get it instead of the server hardware + if ([String]::IsNullOrEmpty($InputObject.serverHardwareUri)) + { + + "[{0}] Server profile is not assigned to a server hardware resource. Getting associated server hardware type resource." -f $MyInvocation.InvocationName.ToString().ToUpper() | Write-Verbose + + $_Uri = $InputObject.serverHardwareTypeUri + + } + + else + { + + "[{0}] Server profile is assigned to a server hardware resource." -f $MyInvocation.InvocationName.ToString().ToUpper() | Write-Verbose + + $_Uri = $InputObject.serverHardwareUri + + } + + # Get the associated server hardware resource from the serverHardwareUri property, then perform validation of the server hardware resource generation + Try + { + + $_ServerHardware = Send-OVRequest -Uri $_Uri -Hostname $ApplianceConnection + + } + + Catch + { + + $PSCmdlet.ThrowTerminatingError($_) + + } + + if (-not [enum]::IsDefined([FirmwarePolicyGenerationSupportEnum], $_ServerHardware.generation.Replace(" ", $null))) + { + + $ExceptionMessage = "Firmware installation without server profile is only available with Gen10 and newer platforms. It is not supported with '{0}' server generation." -f $_ServerHardware.generation + $ErrorRecord = New-ErrorRecord HPEOneView.ServerHardwareResourceException InvalidFirmwareInstallPolicy InvalidArgument 'FirmwareInstallationPolicy' -Message $ExceptionMessage + $PSCmdlet.ThrowTerminatingError($ErrorRecord) + + } } @@ -50664,6 +50729,8 @@ function Update-OVServerFirmware "[{0}] InputObject is a server hardware resource." -f $MyInvocation.InvocationName.ToString().ToUpper() | Write-Verbose + $_ServerFirmwareBundleCompliance.serverUUID = $InputObject.uuid + # Check if the server hardware resource contains an iLO Advanced license or HPE OneView Advanced, generate terminating error if not if (('OneViewNoiLO', 'OneView' -Contains $InputObject.licensingIntent) -or ($InputObject.licensingIntent -eq "OneViewStandard" -and $InputObject.mpLicenseType -eq "iLO Advanced")) { @@ -50701,13 +50768,32 @@ function Update-OVServerFirmware $_PatchLevel = "{0:0000}.{1:00}.{2:00}.{3:00}" -f $PatchLevel.Major, $PatchLevel.Minor, $PatchLevel.Build, $PatchLevel.Revision $_ServerFirmwareInstallOp | Add-Member -NotePropertyName patchLevel -NotePropertyValue $_PatchLevel + # Add patchLevel property for compliance preview + $_ServerFirmwareBundleCompliance | Add-Member -NotePropertyName patchLevel -NotePropertyValue $_PatchLevel + } # We are expecting the SPP or Update object that contains the URI. if ($ResourceCategoryEnum.Baseline, $ResourceCategoryEnum.Updates -contains $Baseline.category) { - $_ServerFirmwareInstallOp.baselineUri = $baseline.uri + $_ServerFirmwareInstallOp.baselineUri = $Baseline.uri + + # If the baseline is an update object, extract GUID from URI + if ($Baseline.category -eq $ResourceCategoryEnum.Updates) + { + + $_ServerFirmwareBundleCompliance.firmwareBaselineId = $Baseline.uri.Split("/")[-1] + + } + + else + { + + # If the baseline is a baseline object, use ResourceID property value + $_ServerFirmwareBundleCompliance.firmwareBaselineId = $Baseline.ResourceId + + } } @@ -50750,6 +50836,26 @@ function Update-OVServerFirmware "[{0}] server profile uri: {1}" -f $MyInvocation.InvocationName.ToString().ToUpper(), $Inputobject.uri | Write-Verbose $_PatchOp = $InputObject.PSObject.Copy() + $_ServerFirmwareBundleCompliance.serverUUID = $_ServerHardware.uuid + + + # Check to see if firmware is managed in the server profile resource by looking at the .firmware.manageFirmware boolean property. + # If it is not, change manageFirmware to True + # Check to see if a property named forceApplyFirmware exists, if not create it and set the value to $PSBoundParameters['ReinstallFirmware'] + if (-not $_PatchOp.firmware.manageFirmware) + { + + $_PatchOp.firmware.manageFirmware = $True + + } + + # Create the forceApplyFirmware property if it does not exist + if (-not $_PatchOp.firmware.PSObject.Properties.Where({$_.Name -eq 'forceApplyFirmware'})) + { + + $_PatchOp.firmware | Add-Member -NotePropertyName forceApplyFirmware -NotePropertyValue $null + + } $_PatchOp.firmware.forceApplyFirmware = $PSBoundParameters['ReinstallFirmware'] $_PatchOp.firmware.firmwareInstallType = $ServerProfileFirmwareControlModeEnum[$FirmwareInstallMode] @@ -50759,7 +50865,15 @@ function Update-OVServerFirmware { $_PatchLevel = "{0:0000}.{1:00}.{2:00}.{3:00}" -f $PatchLevel.Major, $PatchLevel.Minor, $PatchLevel.Build, $PatchLevel.Revision - $_PatchOp.firmware | Add-Member -NotePropertyName patchLevel -NotePropertyValue $_PatchLevel + + if (-not $_PatchOp.firmware.PSObject.Properties.Where({$_.Name -eq 'patchLevel'})) + { + + $_PatchOp.firmware | Add-Member -NotePropertyName patchLevel -NotePropertyValue $null + + } + + $_PatchOp.firmware.patchLevel = $_PatchLevel } @@ -50767,8 +50881,33 @@ function Update-OVServerFirmware if ($ResourceCategoryEnum.Baseline, $ResourceCategoryEnum.Updates -contains $Baseline.category) { + if (-not $_PatchOp.firmware.PSObject.Properties.Where({$_.Name -eq 'baselineUri'})) + { + + $_PatchOp.firmware | Add-Member -NotePropertyName baselineUri -NotePropertyValue $null + + } + $_PatchOp.firmware.baselineUri = $baseline.uri + # If the baseline is an update object, extract GUID from URI + if ($Baseline.category -eq $ResourceCategoryEnum.Updates) + { + + $_BaselineToAssign = $Baseline.uri.Split("/")[-1] + + } + + else + { + + # If the baseline is a baseline object, use ResourceID property value + $_BaselineToAssign = $Baseline.ResourceId + + } + + $_ServerFirmwareBundleCompliance.firmwareBaselineId = $_BaselineToAssign + } else @@ -50787,10 +50926,16 @@ function Update-OVServerFirmware } + # Generate comliance preview + "[{0}] Generating firmware bundle compliance report." -f $MyInvocation.InvocationName.ToString().ToUpper() | Write-Verbose + + $_ServerFirmwareBundleCompliance.installationPolicy = $FirmwareInstallationPolicy + + # Get the server firmware bundle compliance report Try { - $Task = Send-OVRequest -Uri $_uri -Method $_Method -Body $_PatchOp -ApplianceConnection $InputObject.ApplianceConnection + $_ServerFirmwareBundleComplianceResults = Send-OVRequest -Uri $ServerHardwareFirmwareComplianceUri -Method POST -Body $_ServerFirmwareBundleCompliance -ApplianceConnection $InputObject.ApplianceConnection } @@ -50801,17 +50946,141 @@ function Update-OVServerFirmware } - if ($PSBoundParameters['Async']) + # Process report results, returning back to the callers pipeline + ForEach ($_Component in (($_ServerFirmwareBundleComplianceResults.componentMappingList | Where-Object { $_.componentType -eq [HPEOneView.Servers.FirmwareBundleType]::Firmware -and $_.hpsumManaged }) | Sort componentName)) { - $Task + "[{0}] Processing component: {1}" -f $MyInvocation.InvocationName.ToString().ToUpper(), $_Component.componentName | Write-Verbose + "[{0}] Installed: {1}" -f $MyInvocation.InvocationName.ToString().ToUpper(), $_Component.installedVersion | Write-Verbose + + # Look up the baseline version data from the FwComponents property of the baseline. + "[{0}] Available: {1}" -f $MyInvocation.InvocationName.ToString().ToUpper(), $_Component.baselineVersion | Write-Verbose + + # Default operation + $_Operation = [HPEOneView.Servers.FirmwareBundleUpdateOperation]::NoUpdate.ToString() + + if ($_Component.baselineVersion -ne "Unknown") + { + + if ($_Component.componentName -eq 'System ROM') + { + + "[{0}] Component is System ROM, using workaround method for baseline version: {1}" -f $MyInvocation.InvocationName.ToString().ToUpper(), $_Component.baselineVersion | Write-Verbose + + $_ServerBaseID = $InputObject.romVersion.Split(" ")[0] + + $_ComponentBaselineVersionWorkaround = $Baseline.FwComponents | Where { $_.Name -match $_ServerBaseID -and $_.Version.PatchVersion -eq $_Component.baselineVersion.Replace("/", "")} | Select -First 1 + + "[{0}] Update baseline version: {1}" -f $MyInvocation.InvocationName.ToString().ToUpper(), $_ComponentBaselineVersionWorkaround.Version | Write-Verbose + + $_Component.baselineVersion = $_ComponentBaselineVersionWorkaround.Version + + } + + # Installed version is less than what's available + if ([SemanticVersion]$_Component.installedVersion -lt [SemanticVersion]$_Component.baselineVersion) + { + + "[{0}] Installed is older than available." -f $MyInvocation.InvocationName.ToString().ToUpper() | Write-Verbose + $_Operation = [HPEOneView.Servers.FirmwareBundleUpdateOperation]::Update.ToString() + + } + + # What's installed is newer + elseif ([SemanticVersion]$_Component.installedVersion -gt [SemanticVersion]$_Component.baselineVersion) + { + + # Downgrade firmware by invoking update operation + if ($PSBoundParameters['FirmwareInstallationPolicy'] -eq 'NotEqualToBaseline') + { + + "[{0}] Installed is newer than available. Downgrading." -f $MyInvocation.InvocationName.ToString().ToUpper() | Write-Verbose + $_Operation = [HPEOneView.Servers.FirmwareBundleUpdateOperation]::Downgrade.ToString() + + } + + # Installed is newer, installation policy is set to default and Reinstall hasn't been called + elseif ($PSBoundParameters['FirmwareInstallationPolicy'] -eq 'LowerThanBaseline' -and -not $PSBoundParameters['ReinstallFirmware']) + { + + "[{0}] Installed is newer than available. Policy is LowerThanBaseline. No Update." -f $MyInvocation.InvocationName.ToString().ToUpper() | Write-Verbose + $_Operation = [HPEOneView.Servers.FirmwareBundleUpdateOperation]::NoUpdate.ToString() + + } + + elseif ($PSBoundParameters['FirmwareInstallationPolicy'] -eq 'NotEqualToBaseline' -and $PSBoundParameters['ReinstallFirmware']) + { + + "[{0}] Installed is newer than available. ReinstallFirmware chosen. Downgrading." -f $MyInvocation.InvocationName.ToString().ToUpper() | Write-Verbose + $_Operation = [HPEOneView.Servers.FirmwareBundleUpdateOperation]::Downgrade.ToString() + + } + + } + + elseif ([SemanticVersion]$_Component.installedVersion -eq [SemanticVersion]$_Component.baselineVersion -and $PSBoundParameters['ReinstallFirmware']) + { + + "[{0}] Installed is same as available. ReinstallFirmware chosen. Reinstalling." -f $MyInvocation.InvocationName.ToString().ToUpper() | Write-Verbose + $_Operation = [HPEOneView.Servers.FirmwareBundleUpdateOperation]::Reinstall.ToString() + + } + + } + + "[{0}] Operation: {1}" -f $MyInvocation.InvocationName.ToString().ToUpper(), $_Operation | Write-Verbose + + [void]$_CompliancePreview.Add([HPEOneView.Servers.ServerHardware+FirmwareCompliancePreview]::new($_Component.componentName, + $_Component.componentLocation, + $_Component.componentType, + $_Component.installedVersion, + $_Component.baselineVersion, + $_Operation, + $_Component.componentFirmwareUpdateRequired)) + + } + + # Continue with installation if -PreviewOnly was not passed as a parameter + if (-not $PSBoundParameters['PreviewOnly']) + { + + # Display compliance preview without putting into pipeline + $_CompliancePreview | Sort ComponentName | Out-Host + + Try + { + + $Task = Send-OVRequest -Uri $_uri -Method $_Method -Body $_PatchOp -ApplianceConnection $InputObject.ApplianceConnection + + } + + Catch + { + + $PSCmdlet.ThrowTerminatingError($_) + + } + + if ($PSBoundParameters['Async']) + { + + $Task + + } + + else + { + + $Task | Wait-OVTaskComplete + + } } else { - $Task | Wait-OVTaskComplete + $_CompliancePreview | Sort ComponentName } @@ -113831,8 +114100,8 @@ function Remove-OVServerProfile [Parameter (Mandatory, ValueFromPipeline, ParameterSetName = "default")] [ValidateNotNullOrEmpty()] - [Alias ('uri','name','profile')] - [Object]$ServerProfile, + [Alias ('uri','name','profile', 'ServerProfile')] + [Object]$InputObject, [Parameter (Mandatory = $false, ValueFromPipeline, ParameterSetName = "default")] [Switch]$RetainStorageConfig, @@ -113856,7 +114125,7 @@ function Remove-OVServerProfile "[{0}] Called from: {1}" -f $MyInvocation.InvocationName.ToString().ToUpper(), $Caller | Write-Verbose - if (-not($PSBoundParameters['ServerProfile'])) + if (-not($PSBoundParameters['InputObject'])) { $PipelineINput = $true @@ -113941,15 +114210,15 @@ function Remove-OVServerProfile { # Check for appliance specific URI Parameters and error if more than one appliance connection supplied - if (($ServerProfile -is [String]) -and ($ServerProfile.StartsWith($ServerProfilesUri))) + if (($InputObject -is [String]) -and ($InputObject.StartsWith($ServerProfilesUri))) { - "[{0}] SourceName is a Server Profile URI: $($ServerProfile)" -f $MyInvocation.InvocationName.ToString().ToUpper() | Write-Verbose + "[{0}] SourceName is a Server Profile URI: $($InputObject)" -f $MyInvocation.InvocationName.ToString().ToUpper() | Write-Verbose $ErrorRecord = New-ErrorRecord ArgumentNullException ParametersNotSpecified InvalidArgument 'Remove-OVServerProfile' -Message "The input Parameter 'profile' is a resource URI. For multiple appliance connections this is not supported." $PSCmdlet.ThrowTerminatingError($ErrorRecord) } - if (($ServerProfile -is [array]) -and ($ServerProfile.getvalue(0).gettype() -is [String]) -and [RegEx]::Match($ServerProfile, '/rest/', $RegExInsensitiveFlag).Success) + if (($InputObject -is [array]) -and ($InputObject.getvalue(0).gettype() -is [String]) -and [RegEx]::Match($InputObject, '/rest/', $RegExInsensitiveFlag).Success) { "[{0}] Assign is a Server Profile URI: $($SourceName)" -f $MyInvocation.InvocationName.ToString().ToUpper() | Write-Verbose @@ -113965,9 +114234,9 @@ function Remove-OVServerProfile Process { - "[{0}] Profile input type: {1}" -f $MyInvocation.InvocationName.ToString().ToUpper(), $ServerProfile.gettype() | Write-Verbose + "[{0}] Profile input type: {1}" -f $MyInvocation.InvocationName.ToString().ToUpper(), $InputObject.gettype() | Write-Verbose - foreach ($_profile in $ServerProfile) + foreach ($_profile in $InputObject) { if ($_profile -is [String] -and (-not($_profile.StartsWith.($ServerProfilesUri)))) diff --git a/HPEOneView.910_a8cda14c-b45d-406f-b59a-c0115ab75781_HelpInfo.xml b/HPEOneView.910_a8cda14c-b45d-406f-b59a-c0115ab75781_HelpInfo.xml index 15f163f..a385b93 100644 --- a/HPEOneView.910_a8cda14c-b45d-406f-b59a-c0115ab75781_HelpInfo.xml +++ b/HPEOneView.910_a8cda14c-b45d-406f-b59a-c0115ab75781_HelpInfo.xml @@ -4,7 +4,7 @@ en-US - 9.10.4006.1750 + 9.10.4012.2257 \ No newline at end of file diff --git a/HPEOneView.910_a8cda14c-b45d-406f-b59a-c0115ab75781_ModuleInfo.xml b/HPEOneView.910_a8cda14c-b45d-406f-b59a-c0115ab75781_ModuleInfo.xml index 7a33d28..b34c600 100644 --- a/HPEOneView.910_a8cda14c-b45d-406f-b59a-c0115ab75781_ModuleInfo.xml +++ b/HPEOneView.910_a8cda14c-b45d-406f-b59a-c0115ab75781_ModuleInfo.xml @@ -1,5 +1,5 @@  http://hewlettpackard.github.io/POSH-HPEOneView/UpdateHelp - 9.10.4006.1748 + 9.10.4012.2256 \ No newline at end of file diff --git a/en-US/HPEOneView.910.psm1-help.xml b/en-US/HPEOneView.910.psm1-help.xml index a459284..427e8dc 100644 --- a/en-US/HPEOneView.910.psm1-help.xml +++ b/en-US/HPEOneView.910.psm1-help.xml @@ -325,7 +325,7 @@ Minimum required privileges: Online: - + https://hpe-docs.gitbook.io/posh-hponeview/cmdlets/v9.10/appliance/add-ovappliancetrustedcertificate @@ -586,7 +586,7 @@ Add-OVBaseline -File $HotFixFile -CompSigFile $CompSigFiles Online: - + https://hpe-docs.gitbook.io/posh-hponeview/cmdlets/v9.10/appliance/add-ovbaseline @@ -825,7 +825,7 @@ Minimum required privileges: Infrastructure administrator Online: - + https://hpe-docs.gitbook.io/posh-hponeview/cmdlets/v9.10/cluster/add-ovclustermanager @@ -999,7 +999,7 @@ Minimum required privileges: Infrastructure administrator, Server administrator, Online: - + https://hpe-docs.gitbook.io/posh-hponeview/cmdlets/v9.10/cluster/add-ovclusternode @@ -1635,7 +1635,7 @@ THIS IS A DESTRUCTIVE PROCESS IF AN EXISTING VC DOMAIN EXISTS. Online: - + https://hpe-docs.gitbook.io/posh-hponeview/cmdlets/v9.10/servers/add-ovenclosure @@ -1928,7 +1928,7 @@ Use this parameter to enable automatic remediation. If you wish to explicitly d Online: - + https://hpe-docs.gitbook.io/posh-hponeview/cmdlets/v9.10/networking/add-ovfabricmanager @@ -2246,7 +2246,7 @@ Minimum required privileges: Infrastructure administrator. Online: - + https://hpe-docs.gitbook.io/posh-hponeview/cmdlets/v9.10/security/add-ovldapserver @@ -2538,7 +2538,7 @@ Administrator account of the target iPDU. Online: - + https://hpe-docs.gitbook.io/posh-hponeview/cmdlets/v9.10/facilities/add-ovpowerdevice @@ -2742,7 +2742,7 @@ Minimum required privileges: Infrastructure administrator or Server administrato Online: - + https://hpe-docs.gitbook.io/posh-hponeview/cmdlets/v9.10/servers/add-ovrackmanager @@ -2972,7 +2972,7 @@ Get-OVRack -Name MyRack -ErrorAction Stop | Add-OVRackToDataCenter -DataCenter $ Online: - + https://hpe-docs.gitbook.io/posh-hponeview/cmdlets/v9.10/facilities/add-ovracktodatacenter @@ -3107,7 +3107,7 @@ Minimum required privileges: Infrastructure administrator or Hardware setup. Online: - + https://hpe-docs.gitbook.io/posh-hponeview/cmdlets/v9.10/servers/add-ovremoteframe @@ -3246,7 +3246,7 @@ Add-OVResourceToLabel -Name Finance -InputObject $Resources Online: - + https://hpe-docs.gitbook.io/posh-hponeview/cmdlets/v9.10/facilities/add-ovresourcetolabel @@ -3457,7 +3457,7 @@ ForEach ($Enclosure in $Enclosures) { Online: - + https://hpe-docs.gitbook.io/posh-hponeview/cmdlets/v9.10/facilities/add-ovresourcetorack @@ -3649,7 +3649,7 @@ Get-OVScope -Name MyScope | Add-OVResourceToScope -InputObject $Resources Online: - + https://hpe-docs.gitbook.io/posh-hponeview/cmdlets/v9.10/appliance/add-ovresourcetoscope @@ -4168,7 +4168,7 @@ $Params | % { Add-OVSanManager @_ | Wait-OVTaskComplete } Online: - + https://hpe-docs.gitbook.io/posh-hponeview/cmdlets/v9.10/storage/add-ovsanmanager @@ -4697,7 +4697,7 @@ Administrator account of the target iLO. Online: - + https://hpe-docs.gitbook.io/posh-hponeview/cmdlets/v9.10/servers/add-ovserver @@ -5039,7 +5039,7 @@ Example: CPU status:"warning" or status:"critical" Online: - + https://hpe-docs.gitbook.io/posh-hponeview/cmdlets/v9.10/appliance/add-ovsmtpalertemailfilter @@ -5218,7 +5218,7 @@ Add-OVStoragePool -StorageSystem (Get-OVStorageSystem -Name HP3PAR_1) -Pool $myP Online: - + https://hpe-docs.gitbook.io/posh-hponeview/cmdlets/v9.10/storage/add-ovstoragepool @@ -5670,7 +5670,7 @@ Add-OVStorageSystem -Family Nimble -Hostname $NimbleAddress -Credential $Storage Online: - + https://hpe-docs.gitbook.io/posh-hponeview/cmdlets/v9.10/storage/add-ovstoragesystem @@ -6003,7 +6003,7 @@ The 128bit WWN FC address of the volume to be imported. Address must be in the Online: - + https://hpe-docs.gitbook.io/posh-hponeview/cmdlets/v9.10/storage/add-ovstoragevolume @@ -6072,7 +6072,7 @@ The 128bit WWN FC address of the volume to be imported. Address must be in the Online: - + https://hpe-docs.gitbook.io/posh-hponeview/cmdlets/v9.10/appliance/clear-ovalert @@ -6192,7 +6192,7 @@ Default Value: ${Global:ConnectedSessions} | ? Default Online: - + https://hpe-docs.gitbook.io/posh-hpeoneview/cmdlets/v9.10/appliance/connect-ovcomputeopsmanagement @@ -6523,15 +6523,15 @@ Connect-OVMgmt -appliance myappliance.domain.com -Certificate $MySmartCard about_Appliance_Connection_Permissions - + https://hpe-docs.gitbook.io/posh-hponeview/cmdlets/v9.10/library/connect-ovmgmt [${Global:ConnectedSessions}] - + https://hpe-docs.gitbook.io/posh-hponeview/cmdlets/v9.10/library/connect-ovmgmt Online: - + https://hpe-docs.gitbook.io/posh-hponeview/cmdlets/v9.10/library/connect-ovmgmt @@ -6870,7 +6870,7 @@ Convert-OVServerProfile -InputObject $ServerProfile -EnclosureGroup $NewEnclosur Online: - + https://hpe-docs.gitbook.io/posh-hponeview/cmdlets/v9.10/servers/convert-ovserverprofile @@ -7141,7 +7141,7 @@ Convert-OVServerProfileTemplate -InputObject $SPT -EnclosureGroup $NewEnclosureG Online: - + https://hpe-docs.gitbook.io/posh-hponeview/cmdlets/v9.10/servers/convert-ovserverprofiletemplate @@ -7361,7 +7361,7 @@ ConvertTo-OVImageStreamerConfiguration -InputObject $le -UplinkSetName $UplinkSe Online: - + https://hpe-docs.gitbook.io/posh-hponeview/cmdlets/v9.10/servers/convertto-ovimagestreamerconfiguration @@ -7515,7 +7515,7 @@ The following resources are supported by this Cmdlet: Online: - + https://hpe-docs.gitbook.io/posh-hponeview/cmdlets/v9.10/library/convertto-ovpowershellscript @@ -7719,7 +7719,7 @@ Minimum required privileges: Infrastructure administrator or Server administrato Online: - + https://hpe-docs.gitbook.io/posh-hponeview/cmdlets/v9.10/servers/convertto-ovserverprofiletemplate @@ -8002,7 +8002,7 @@ $Snapshots | ? { ((Get-Date $_.created -Format d) -eq (Get-Date 02/23/2016 -form Online: - + https://hpe-docs.gitbook.io/posh-hponeview/cmdlets/v9.10/storage/convertto-ovstoragevolume @@ -8328,7 +8328,7 @@ Copy-OVServerProfile -InputObject $ServerProfile -DestinationName "Profile 2" -a Online: - + https://hpe-docs.gitbook.io/posh-hponeview/cmdlets/v9.10/servers/copy-ovserverprofile @@ -8461,7 +8461,7 @@ Minimum required privileges: Infrastructure administrator Online: - + https://hpe-docs.gitbook.io/posh-hponeview/cmdlets/v9.10/appliance/disable-ovappliancecomplexpasswords @@ -8621,7 +8621,7 @@ Minimum required privileges: Infrastructure administrator. Online: - + https://hpe-docs.gitbook.io/posh-hponeview/cmdlets/v9.10/security/disable-ovappliancedataatrestencryption @@ -8760,7 +8760,7 @@ Minimum required privileges: Infrastructure administrator Online: - + https://hpe-docs.gitbook.io/posh-hponeview/cmdlets/v9.10/appliance/disable-ovapplianceserviceconsoleaccess @@ -8917,7 +8917,7 @@ Minimum required privileges: Infrastructure administrator Online: - + https://hpe-docs.gitbook.io/posh-hponeview/cmdlets/v9.10/appliance/disable-ovappliancesshaccess @@ -9061,7 +9061,7 @@ Default Value: ${Global:ConnectedSessions} | ? Default Online: - + https://hpe-docs.gitbook.io/posh-hpeoneview/cmdlets/v9.10/appliance/disable-ovappliancestrictsecurityciphersuite @@ -9202,7 +9202,7 @@ Required: Infrastructure administrator Online: - + https://hpe-docs.gitbook.io/posh-hponeview/cmdlets/v9.10/appliance/disable-ovappliancetwofactorauthentication @@ -9333,7 +9333,7 @@ Default Value: ${Global:ConnectedSessions} | ? Default Online: - + https://hpe-docs.gitbook.io/posh-hponeview/cmdlets/v9.10/library/disable-ovcertificaterevocationchecking @@ -9492,7 +9492,7 @@ Minimum required privileges: Infrastructure administrator Online: - + https://hpe-docs.gitbook.io/posh-hponeview/cmdlets/v9.10/appliance/disable-ovcertificatevalidation @@ -9811,7 +9811,7 @@ Disable-OVComposerIlo -DisableIPv6Address Online: - + https://hpe-docs.gitbook.io/posh-hponeview/cmdlets/v9.10/appliance/disable-ovcomposerilo @@ -9981,7 +9981,7 @@ Default Value: ${Global:ConnectedSessions} | ? Default Online: - + https://hpe-docs.gitbook.io/posh-hpeoneview/cmdlets/v9.10/appliance/disable-ovcomputeopsmanagement @@ -10096,7 +10096,7 @@ Default Value: ${Global:ConnectedSessions} | ? Default Online: - + https://hpe-docs.gitbook.io/posh-hponeview/cmdlets/v9.10/library/disable-ovdebug @@ -10235,7 +10235,7 @@ NOTE: HPE BladeSystem C7000 enclosures and interconnects are not supported, but Online: - + https://hpe-docs.gitbook.io/posh-hponeview/cmdlets/v9.10/servers/disable-ovdeviceuid @@ -10431,7 +10431,7 @@ Minimum required privileges: Infrastructure administrator. Online: - + https://hpe-docs.gitbook.io/posh-hponeview/cmdlets/v9.10/security/disable-ovldaplocallogin @@ -10557,7 +10557,7 @@ Minimum required privileges: Network administrator Online: - + https://hpe-docs.gitbook.io/posh-hponeview/cmdlets/v9.10/networking/disable-ovlogicalinterconnectportmonitoring @@ -10788,7 +10788,7 @@ Disable-OVMaintenanceMode -InputObject $ServerProfile Online: - + https://hpe-docs.gitbook.io/posh-hponeview/cmdlets/v9.10/servers/disable-ovmaintenancemode @@ -10867,7 +10867,7 @@ Use Enable-OVMsDSC to enable support. Online: - + https://hpe-docs.gitbook.io/posh-hponeview/cmdlets/v9.10/library/disable-ovmsdsc @@ -11139,7 +11139,7 @@ Disable-OVRemoteSupport -InputObject $Enclosure Online: - + https://hpe-docs.gitbook.io/posh-hponeview/cmdlets/v9.10/appliance/disable-ovremotesupport @@ -11287,7 +11287,7 @@ Minimum required privileges: Infrastructure administrator, Server administrator< Online: - + https://hpe-docs.gitbook.io/posh-hponeview/cmdlets/v9.10/appliance/disable-ovremotesyslog @@ -11415,7 +11415,7 @@ Disconnect-OVMgmt -Hostname $Connection1 Online: - + https://hpe-docs.gitbook.io/posh-hponeview/cmdlets/v9.10/library/disconnect-ovmgmt @@ -11521,7 +11521,7 @@ Minimum required privileges: Infrastructure administrator Online: - + https://hpe-docs.gitbook.io/posh-hponeview/cmdlets/v9.10/appliance/enable-ovappliancecomplexpasswords @@ -11700,7 +11700,7 @@ Minimum required privileges: Infrastructure administrator Online: - + https://hpe-docs.gitbook.io/posh-hponeview/cmdlets/v9.10/security/enable-ovappliancedataatrestencryption @@ -11803,7 +11803,7 @@ Minimum required privileges: Infrastructure administrator Online: - + https://hpe-docs.gitbook.io/posh-hponeview/cmdlets/v9.10/appliance/enable-ovapplianceserviceconsoleaccess @@ -11924,7 +11924,7 @@ Minimum required privileges: Infrastructure administrator Online: - + https://hpe-docs.gitbook.io/posh-hponeview/cmdlets/v9.10/appliance/enable-ovappliancesshaccess @@ -12093,7 +12093,7 @@ Default Value: ${Global:ConnectedSessions} | ? Default Online: - + https://hpe-docs.gitbook.io/posh-hpeoneview/cmdlets/v9.10/appliance/enable-ovappliancestrictsecurityciphersuite @@ -12308,7 +12308,7 @@ Default Value: ${Global:ConnectedSessions} | ? Default Online: - + https://hpe-docs.gitbook.io/posh-hponeview/cmdlets/v9.10/library/enable-ovcertificaterevocationchecking @@ -12480,7 +12480,7 @@ Minimum required privileges: Infrastructure administrator Online: - + https://hpe-docs.gitbook.io/posh-hponeview/cmdlets/v9.10/appliance/enable-ovcertificatevalidation @@ -12631,7 +12631,7 @@ Minimum required privileges: Infrastructure administrator or Software administra Online: - + https://hpe-docs.gitbook.io/posh-hponeview/cmdlets/v9.10/appliance/enable-ovcomposerhanode @@ -13141,7 +13141,7 @@ Enable-OVComposerIlo -InputObject $ComposerAppliance -Hostname Myilohost.domian. Online: - + https://hpe-docs.gitbook.io/posh-hponeview/cmdlets/v9.10/appliance/enable-ovcomposerilo @@ -13327,7 +13327,7 @@ Enable-OVComputeOpsManagement -ActivationKey $ActivationKey Online: - + https://hpe-docs.gitbook.io/posh-hpeoneview/cmdlets/v9.10/appliance/enable-ovcomputeopsmanagement @@ -13470,7 +13470,7 @@ Enable-OVComputeOpsManagement -ActivationKey $ActivationKey Online: - + https://hpe-docs.gitbook.io/posh-hponeview/cmdlets/v9.10/library/enable-ovdebug @@ -13600,7 +13600,7 @@ Minimum required privileges: Infrastructure administrator, Server administrator Online: - + https://hpe-docs.gitbook.io/posh-hponeview/cmdlets/v9.10/servers/enable-ovdeviceuid @@ -13740,7 +13740,7 @@ Minimum required privileges: Infrastructure administrator. Online: - + https://hpe-docs.gitbook.io/posh-hponeview/cmdlets/v9.10/security/enable-ovldaplocallogin @@ -14099,7 +14099,7 @@ Enable-OVLogicalInterconnectPortMonitoring -InputObject $LogicalInterconnect -Up Online: - + https://hpe-docs.gitbook.io/posh-hponeview/cmdlets/v9.10/networking/enable-ovlogicalinterconnectportmonitoring @@ -14314,7 +14314,7 @@ Enable-OVMaintenanceMode -InputObject $ServerProfile Online: - + https://hpe-docs.gitbook.io/posh-hponeview/cmdlets/v9.10/servers/enable-ovmaintenancemode @@ -14393,7 +14393,7 @@ Use Disable-OVMsDSC to disable support. Online: - + https://hpe-docs.gitbook.io/posh-hponeview/cmdlets/v9.10/library/enable-ovmsdsc @@ -14629,7 +14629,7 @@ Enable-OVRemoteSupport -InputObject $Enclusre Online: - + https://hpe-docs.gitbook.io/posh-hponeview/cmdlets/v9.10/appliance/enable-ovremotesupport @@ -14777,7 +14777,7 @@ Minimum required privileges: Infrastructure administrator, Server administrator< Online: - + https://hpe-docs.gitbook.io/posh-hponeview/cmdlets/v9.10/appliance/enable-ovremotesyslog @@ -14948,7 +14948,7 @@ Minimum required privileges: Infrastructure administrator, Server administrator, Online: - + https://hpe-docs.gitbook.io/posh-hponeview/cmdlets/v9.10/cluster/enter-ovclusternodemaintenancemode @@ -15119,7 +15119,7 @@ Minimum required privileges: Infrastructure administrator, Server administrator, Online: - + https://hpe-docs.gitbook.io/posh-hponeview/cmdlets/v9.10/cluster/exit-ovclusternodemaintenancemode @@ -15293,7 +15293,7 @@ Minimum required privileges: Network administrator (virtual MAC addresses and vi Online: - + https://hpe-docs.gitbook.io/posh-hponeview/cmdlets/v9.10/appliance/get-ovaddresspool @@ -15512,7 +15512,7 @@ VMAC True Generated 1048576 0 1048576 0 F6:38:E6:90:00:00 F6 Online: - + https://hpe-docs.gitbook.io/posh-hponeview/cmdlets/v9.10/appliance/get-ovaddresspoolrange @@ -15666,7 +15666,7 @@ Minimum required privileges: Network administrator, Infrastructure administrator Online: - + https://hpe-docs.gitbook.io/posh-hponeview/cmdlets/v9.10/appliance/get-ovaddresspoolsubnet @@ -16125,7 +16125,7 @@ Minimum required privileges: Network administrator, Server administrator, Infras Online: - + https://hpe-docs.gitbook.io/posh-hponeview/cmdlets/v9.10/appliance/get-ovalert @@ -16234,7 +16234,7 @@ Minimum required privileges: Infrastructure administrator. Online: - + https://hpe-docs.gitbook.io/posh-hponeview/cmdlets/v9.10/appliance/get-ovapplianceauditlogforwarding @@ -16425,7 +16425,7 @@ Default: Return all available security modes. Online: - + https://hpe-docs.gitbook.io/posh-hponeview/cmdlets/v9.10/appliance/get-ovapplianceavailablesecuritymode @@ -16530,7 +16530,7 @@ Minimum required privileges: No minimum required Online: - + https://hpe-docs.gitbook.io/posh-hponeview/cmdlets/v9.10/appliance/get-ovappliancecertificatestatus @@ -16675,7 +16675,7 @@ Minimum required privileges: Infrastructure administrator Online: - + https://hpe-docs.gitbook.io/posh-hponeview/cmdlets/v9.10/appliance/get-ovappliancecurrentsecuritymode @@ -16796,7 +16796,7 @@ Minimum required privileges: Infrastructure administrator. Online: - + https://hpe-docs.gitbook.io/posh-hponeview/cmdlets/v9.10/security/get-ovappliancedataatrestencryption @@ -16905,7 +16905,7 @@ hpov2.domain.com 2/11/2016 2:12:45 PM UTC {} Online: - + https://hpe-docs.gitbook.io/posh-hponeview/cmdlets/v9.10/appliance/get-ovappliancedatetime @@ -17024,7 +17024,7 @@ Default Value: ${Global:ConnectSessions} Online: - + https://hpe-docs.gitbook.io/posh-hponeview/cmdlets/v9.10/appliance/get-ovapplianceglobalsetting @@ -17147,7 +17147,7 @@ Default Value: ${Global:ConnectedSessions} | ? Default Online: - + https://hpe-docs.gitbook.io/posh-hponeview/cmdlets/v9.10/appliance/get-ovapplianceipaddress @@ -17347,7 +17347,7 @@ IPv6DNS : {} Online: - + https://hpe-docs.gitbook.io/posh-hponeview/cmdlets/v9.10/appliance/get-ovappliancenetworkconfig @@ -17450,7 +17450,7 @@ Minimum required privileges: Read only Online: - + https://hpe-docs.gitbook.io/posh-hponeview/cmdlets/v9.10/appliance/get-ovapplianceproxy @@ -17615,7 +17615,7 @@ Minimum required privileges: Read only Online: - + https://hpe-docs.gitbook.io/posh-hponeview/cmdlets/v9.10/appliance/get-ovappliancesecurityprotocol @@ -17718,7 +17718,7 @@ Minimum required privileges: Read only Online: - + https://hpe-docs.gitbook.io/posh-hponeview/cmdlets/v9.10/appliance/get-ovapplianceserviceconsoleaccess @@ -17817,7 +17817,7 @@ Minimum required privileges: Read only Online: - + https://hpe-docs.gitbook.io/posh-hponeview/cmdlets/v9.10/appliance/get-ovappliancesnmpv3engineid @@ -17920,7 +17920,7 @@ Minimum required privileges: Read only Online: - + https://hpe-docs.gitbook.io/posh-hponeview/cmdlets/v9.10/appliance/get-ovappliancesshaccess @@ -18088,7 +18088,7 @@ Example: 10.55.74.0/24 Online: - + https://hpe-docs.gitbook.io/posh-hponeview/cmdlets/v9.10/appliance/get-ovappliancestaticroute @@ -18194,7 +18194,7 @@ Default Value: ${Global:ConnectedSessions} | ? Default Online: - + https://hpe-docs.gitbook.io/posh-hpeoneview/cmdlets/v9.10/appliance/get-ovappliancestatus @@ -18364,7 +18364,7 @@ Minimum required privileges: Read only Online: - + https://hpe-docs.gitbook.io/posh-hponeview/cmdlets/v9.10/appliance/get-ovappliancetrapdestination @@ -18574,7 +18574,7 @@ Minimum required privileges: Read only Online: - + https://hpe-docs.gitbook.io/posh-hponeview/cmdlets/v9.10/appliance/get-ovappliancetrustedcertificate @@ -18679,7 +18679,7 @@ Minimum required privileges: Read only Online: - + https://hpe-docs.gitbook.io/posh-hponeview/cmdlets/v9.10/appliance/get-ovappliancetwofactorauthentication @@ -18955,7 +18955,7 @@ Details : Add firmware bundle /rest/firmware-drivers/CP026527 Online: - + https://hpe-docs.gitbook.io/posh-hponeview/cmdlets/v9.10/appliance/get-ovauditlog @@ -19123,7 +19123,7 @@ Minimum required privileges: Infrastructure administrator Online: - + https://hpe-docs.gitbook.io/posh-hponeview/cmdlets/v9.10/appliance/get-ovauditlogarchive @@ -19237,7 +19237,7 @@ Appliance True scphost.domain.com SCP WEEKLY {MO, WE, FR} 18 Online: - + https://hpe-docs.gitbook.io/posh-hponeview/cmdlets/v9.10/appliance/get-ovautomaticbackupconfig @@ -19388,7 +19388,7 @@ Minimum required privileges: Read only Online: - + https://hpe-docs.gitbook.io/posh-hponeview/cmdlets/v9.10/storage/get-ovavailabledrivetype @@ -19545,7 +19545,7 @@ Minimum required privileges: Read only Online: - + https://hpe-docs.gitbook.io/posh-hponeview/cmdlets/v9.10/appliance/get-ovbackup @@ -19847,7 +19847,7 @@ Minimum required privileges: Read only Online: - + https://hpe-docs.gitbook.io/posh-hponeview/cmdlets/v9.10/appliance/get-ovbaseline @@ -20006,7 +20006,7 @@ Minimum required privileges: Read only Online: - + https://hpe-docs.gitbook.io/posh-hponeview/cmdlets/v9.10/appliance/get-ovbaselinerepository @@ -20215,7 +20215,7 @@ Minimum required privileges: Read only Online: - + https://hpe-docs.gitbook.io/posh-hponeview/cmdlets/v9.10/cluster/get-ovclustermanager @@ -20373,7 +20373,7 @@ Minimum required privileges: Read only Online: - + https://hpe-docs.gitbook.io/posh-hponeview/cmdlets/v9.10/cluster/get-ovclusternode @@ -20542,7 +20542,7 @@ Minimum required privileges: Read only Online: - + https://hpe-docs.gitbook.io/posh-hponeview/cmdlets/v9.10/cluster/get-ovclusterprofile @@ -20681,7 +20681,7 @@ Default Value: (PWD).Path Online: - + https://hpe-docs.gitbook.io/posh-hponeview/cmdlets/v9.10/library/get-ovcommandtrace @@ -20831,7 +20831,7 @@ Default Value: ${Global:ConnectedSessions} | ? Default Online: - + https://hpe-docs.gitbook.io/posh-hponeview/cmdlets/v9.10/appliance/get-ovcomposerilostatus @@ -20939,7 +20939,7 @@ zpo-s18r18s3-ov.vse.rdlabs.hpecorp.net CN75140CPW appliance bay 1 OK OK S Online: - + https://hpe-docs.gitbook.io/posh-hponeview/cmdlets/v9.10/servers/get-ovcomposernode @@ -21058,7 +21058,7 @@ Default Value: ${Global:ConnectedSessions} | ? Default Online: - + https://hpe-docs.gitbook.io/posh-hpeoneview/cmdlets/v9.10/appliance/get-ovcomputeopsmanagement @@ -21219,7 +21219,7 @@ Minimum required privileges: Read only Online: - + https://hpe-docs.gitbook.io/posh-hponeview/cmdlets/v9.10/facilities/get-ovdatacenter @@ -21355,7 +21355,7 @@ appliance 0000A66103, bay 1 On Monitored SN123102 40/40 2 Online: - + https://hpe-docs.gitbook.io/posh-hponeview/cmdlets/v9.10/storage/get-ovdriveenclosure @@ -21659,7 +21659,7 @@ Get-OVDriveEnclosureInventory -SasLogicalInterconnect $SasLogicalInterconnect -A Online: - + https://hpe-docs.gitbook.io/posh-hponeview/cmdlets/v9.10/storage/get-ovdriveenclosureinventory @@ -22070,7 +22070,7 @@ Encl1, interconnect 2 HP VC FlexFabric 10Gb/24-Port Module WECFSED101 4.10 Online: - + https://hpe-docs.gitbook.io/posh-hponeview/cmdlets/v9.10/servers/get-ovenclosure @@ -22253,7 +22253,7 @@ Minimum required privileges: Read only Online: - + https://hpe-docs.gitbook.io/posh-hponeview/cmdlets/v9.10/servers/get-ovenclosuregroup @@ -22377,7 +22377,7 @@ myappliance.domain.com False Online: - + https://hpe-docs.gitbook.io/posh-hponeview/cmdlets/v9.10/appliance/get-oveulastatus @@ -22525,7 +22525,7 @@ Minimum required privileges: Read-only Online: - + https://hpe-docs.gitbook.io/posh-hponeview/cmdlets/v9.10/networking/get-ovfabricmanager @@ -22652,7 +22652,7 @@ Default Value: ${Global:ConnectedSessions} | ? Default Online: - + https://hpe-docs.gitbook.io/posh-hpeoneview/cmdlets/v9.10/appliance/get-ovfirmwarebundleupdate @@ -22759,7 +22759,7 @@ Default Value: ${Global:ConnectedSessions} | ? Default Online: - + https://hpe-docs.gitbook.io/posh-hpeoneview/cmdlets/v9.10/appliance/get-ovfirmwarebundleupdateschedule @@ -22870,7 +22870,7 @@ Minimum required privileges: Infrastructure Administrator Online: - + https://hpe-docs.gitbook.io/posh-hponeview/cmdlets/v9.10/appliance/get-ovfixmeinstallationlog @@ -22963,7 +22963,7 @@ Minimum required privileges: Read-only Online: - + https://hpe-docs.gitbook.io/posh-hponeview/cmdlets/v9.10/appliance/get-ovhealthstatus @@ -23242,7 +23242,7 @@ Minimum required privileges: Read-only. Know that your user account role within Online: - + https://hpe-docs.gitbook.io/posh-hponeview/cmdlets/v9.10/servers/get-ovilosso @@ -23380,7 +23380,7 @@ Minimum required privileges: Read-only. Online: - + https://hpe-docs.gitbook.io/posh-hponeview/cmdlets/v9.10/servers/get-ovimagestreamerappliance @@ -23622,7 +23622,7 @@ Minimum required privileges: Read-only Online: - + https://hpe-docs.gitbook.io/posh-hponeview/cmdlets/v9.10/networking/get-ovinterconnect @@ -23726,7 +23726,7 @@ Default Value: ${Global:ConnectedSessions} | ? Default Online: - + https://hpe-docs.gitbook.io/posh-hponeview/cmdlets/v9.10/appliance/get-ovinterconnectntpconfiguration @@ -23917,7 +23917,7 @@ Minimum required privileges: Read-only Online: - + https://hpe-docs.gitbook.io/posh-hponeview/cmdlets/v9.10/networking/get-ovinterconnecttype @@ -24028,7 +24028,7 @@ This Cmdlet will return all of the created labels on the specifed appliance. Online: - + https://hpe-docs.gitbook.io/posh-hponeview/cmdlets/v9.10/appliance/get-ovlabel @@ -24250,7 +24250,7 @@ True domain2 {domain1, domain2} Online: - + https://hpe-docs.gitbook.io/posh-hponeview/cmdlets/v9.10/security/get-ovldap @@ -24442,7 +24442,7 @@ MyAppliance2 domain2 AD dc=domain2,dc=com ou=Admins,ou=domain2.. {dc1.domain2. Online: - + https://hpe-docs.gitbook.io/posh-hponeview/cmdlets/v9.10/security/get-ovldapdirectory @@ -24654,7 +24654,7 @@ My Directory Group1 domain1 {Stora Online: - + https://hpe-docs.gitbook.io/posh-hponeview/cmdlets/v9.10/security/get-ovldapgroup @@ -24871,7 +24871,7 @@ Nodes : {Encl2, bay 7, Encl2, bay 4, Encl2, bay 13, Encl1, bay 8..} Online: - + https://hpe-docs.gitbook.io/posh-hponeview/cmdlets/v9.10/appliance/get-ovlicense @@ -25098,7 +25098,7 @@ Get-OVLogicalEnclosure -EnclosureGroup $EnclosureGroup Online: - + https://hpe-docs.gitbook.io/posh-hponeview/cmdlets/v9.10/servers/get-ovlogicalenclosure @@ -25408,7 +25408,7 @@ Minimum required privileges: Read-only Online: - + https://hpe-docs.gitbook.io/posh-hponeview/cmdlets/v9.10/networking/get-ovlogicalinterconnect @@ -25700,7 +25700,7 @@ VC FF Virt Prod Online: - + https://hpe-docs.gitbook.io/posh-hponeview/cmdlets/v9.10/networking/get-ovlogicalinterconnectgroup @@ -25828,7 +25828,7 @@ Minimum required privileges: Network administrator Online: - + https://hpe-docs.gitbook.io/posh-hponeview/cmdlets/v9.10/networking/get-ovlogicalinterconnectportmonitoring @@ -26003,7 +26003,7 @@ Using this Cmdlet will return defined logical JBOD resources from the connected Online: - + https://hpe-docs.gitbook.io/posh-hponeview/cmdlets/v9.10/storage/get-ovlogicaljbod @@ -26277,7 +26277,7 @@ Minimum required privileges: Read-only Online: - + https://hpe-docs.gitbook.io/posh-hponeview/cmdlets/v9.10/networking/get-ovlogicalswitch @@ -26550,7 +26550,7 @@ Minimum required privileges: Read-only Online: - + https://hpe-docs.gitbook.io/posh-hponeview/cmdlets/v9.10/networking/get-ovlogicalswitchgroup @@ -26661,7 +26661,7 @@ Acknowledge : False Online: - + https://hpe-docs.gitbook.io/posh-hponeview/cmdlets/v9.10/appliance/get-ovloginmessage @@ -26851,7 +26851,7 @@ Fabric A Ready OK BNA Managed Fabric A Zoned True Online: - + https://hpe-docs.gitbook.io/posh-hponeview/cmdlets/v9.10/storage/get-ovmanagedsan @@ -27012,7 +27012,7 @@ Server-39.domain.com ProLiant DL560 Gen10 OK NoProfile Online: - + https://hpe-docs.gitbook.io/posh-hpeoneview/cmdlets/v9.10/servers/get-ovmigratableserver @@ -27477,7 +27477,7 @@ FCOE12 OK 12 2500 10000 Online: - + https://hpe-docs.gitbook.io/posh-hponeview/cmdlets/v9.10/networking/get-ovnetwork @@ -27780,7 +27780,7 @@ Minimum required privileges: Read-only Online: - + https://hpe-docs.gitbook.io/posh-hponeview/cmdlets/v9.10/networking/get-ovnetworkset @@ -27950,7 +27950,7 @@ Minimum required privileges: Read-only Online: - + https://hpe-docs.gitbook.io/posh-hponeview/cmdlets/v9.10/servers/get-ovosdeploymentplan @@ -28092,7 +28092,7 @@ $OSDeploymentAttributes = $OSDeploymentAttributes | Where-Object name -NotMatch Online: - + https://hpe-docs.gitbook.io/posh-hponeview/cmdlets/v9.10/servers/get-ovosdeploymentplanattribute @@ -28244,7 +28244,7 @@ Minimum required privileges: Read-only Online: - + https://hpe-docs.gitbook.io/posh-hponeview/cmdlets/v9.10/servers/get-ovosdeploymentserver @@ -28359,7 +28359,7 @@ Minimum required privileges: Infrastructure administrator or Software administra Online: - + https://hpe-docs.gitbook.io/posh-hponeview/cmdlets/v9.10/appliance/get-ovpendingupdate @@ -28556,7 +28556,7 @@ Minimum required privileges: Read-only Online: - + https://hpe-docs.gitbook.io/posh-hponeview/cmdlets/v9.10/facilities/get-ovpowerdevice @@ -28685,7 +28685,7 @@ Minimum required privileges: Read-only Online: - + https://hpe-docs.gitbook.io/posh-hponeview/cmdlets/v9.10/facilities/get-ovpowerpotentialdeviceconnection @@ -28864,7 +28864,7 @@ Minimum required privileges: Read only Online: - + https://hpe-docs.gitbook.io/posh-hponeview/cmdlets/v9.10/facilities/get-ovrack @@ -29067,7 +29067,7 @@ Minimum required privileges: Read-only Online: - + https://hpe-docs.gitbook.io/posh-hponeview/cmdlets/v9.10/servers/get-ovrackmanager @@ -29231,7 +29231,7 @@ Get-OVRackMember -InputObject $Rack -Name ProdDL380* Online: - + https://hpe-docs.gitbook.io/posh-hponeview/cmdlets/v9.10/facilities/get-ovrackmember @@ -29418,7 +29418,7 @@ myappliance.domain.com True MyCompany False False False< Online: - + https://hpe-docs.gitbook.io/posh-hponeview/cmdlets/v9.10/appliance/get-ovremotesupport @@ -29581,7 +29581,7 @@ Minimum required privileges: Read-only Online: - + https://hpe-docs.gitbook.io/posh-hponeview/cmdlets/v9.10/appliance/get-ovremotesupportcontact @@ -29726,7 +29726,7 @@ If no value is provided, both schedules will be returned. Online: - + https://hpe-docs.gitbook.io/posh-hponeview/cmdlets/v9.10/appliance/get-ovremotesupportdatacollectionschedule @@ -29833,7 +29833,7 @@ Minimum required privileges: Read-only Online: - + https://hpe-docs.gitbook.io/posh-hponeview/cmdlets/v9.10/appliance/get-ovremotesupportdefaultsite @@ -30001,7 +30001,7 @@ Get-OVRemoteSupportEntitlementStatus -InputObject $Enclusre Online: - + https://hpe-docs.gitbook.io/posh-hponeview/cmdlets/v9.10/appliance/get-ovremotesupportentitlementstatus @@ -30134,7 +30134,7 @@ Minimum required privileges: Read-only Online: - + https://hpe-docs.gitbook.io/posh-hponeview/cmdlets/v9.10/appliance/get-ovremotesupportpartner @@ -30284,7 +30284,7 @@ Default Value: ${Global:ConnectedSessions} | ? Default Online: - + https://hpe-docs.gitbook.io/posh-hpeoneview/cmdlets/v9.10//get-ovremotesupportportalconnectionstatus @@ -30457,7 +30457,7 @@ MyAppliance.domain.com Encl1 Hewlett Packard Enterprise Hewlett Packard E Online: - + https://hpe-docs.gitbook.io/posh-hponeview/cmdlets/v9.10/appliance/get-ovremotesupportsetting @@ -30596,7 +30596,7 @@ appliance1.domain.com False Online: - + https://hpe-docs.gitbook.io/posh-hponeview/cmdlets/v9.10/appliance/get-ovremotesyslog @@ -30705,7 +30705,7 @@ Minimum required privileges: Read-only Online: - + https://hpe-docs.gitbook.io/posh-hponeview/cmdlets/v9.10/networking/get-ovreservedvlanrange @@ -30762,7 +30762,7 @@ Minimum required privileges: Read-only Online: - + https://hpe-docs.gitbook.io/posh-hponeview/cmdlets/v9.10/security/get-ovrole @@ -30887,7 +30887,7 @@ Default Value: ${Global:ConnectedSessions} | ? Default Online: - + https://hpe-docs.gitbook.io/posh-hpeoneview/cmdlets/v9.10/appliance/get-ovrotatemppasswordpolicy @@ -31029,7 +31029,7 @@ Default Value: ${Global:ConnectedSessions} | ? Default Online: - + https://hpe-docs.gitbook.io/posh-hpeoneview/cmdlets/v9.10/appliance/get-ovrotatemppasswordpolicyreport @@ -31178,7 +31178,7 @@ bna2.domain.com OK Managed Brocade Network Advisor 12.3.4.5 {Fabric_C, Fabri Online: - + https://hpe-docs.gitbook.io/posh-hponeview/cmdlets/v9.10/storage/get-ovsanmanager @@ -31357,7 +31357,7 @@ Target_ThreePAR72004506_1_2_1 {20:00:00:02:AC:00:08:E2} Online: - + https://hpe-docs.gitbook.io/posh-hponeview/cmdlets/v9.10/storage/get-ovsanzone @@ -31536,7 +31536,7 @@ Minimum required privileges: Read-only Online: - + https://hpe-docs.gitbook.io/posh-hponeview/cmdlets/v9.10/networking/get-ovsasinterconnecttype @@ -31723,7 +31723,7 @@ Minimum required privileges: Read-only Online: - + https://hpe-docs.gitbook.io/posh-hponeview/cmdlets/v9.10/networking/get-ovsaslogicalinterconnect Install-OVLogicalInterconnectFirmware @@ -31949,7 +31949,7 @@ Convert rabbitmq_readonly client certificate to PFX format for .Net consumption. Online: - + https://hpe-docs.gitbook.io/posh-hponeview/cmdlets/v9.10/appliance/get-ovscmbcertificates @@ -32143,7 +32143,7 @@ Minimum Minimum required privileges: Read-Only Online: - + https://hpe-docs.gitbook.io/posh-hponeview/cmdlets/v9.10/appliance/get-ovscope @@ -32788,7 +32788,7 @@ Get-OVServer -Query "macAddrs:'02:23:13:25:23:96'" Online: - + https://hpe-docs.gitbook.io/posh-hponeview/cmdlets/v9.10/servers/get-ovserver @@ -33031,7 +33031,7 @@ ApplianceConnection : MyAppliance Online: - + https://hpe-docs.gitbook.io/posh-hpeoneview/cmdlets/v9.10/servers/get-ovserverhardwareavailablecontroller @@ -33209,7 +33209,7 @@ Default Value: ${Global:ConnectSessions} Online: - + https://hpe-docs.gitbook.io/posh-hponeview/cmdlets/v9.10/servers/get-ovserverhardwaretype @@ -33313,7 +33313,7 @@ Default Value: ${Global:ConnectedSessions} | ? Default Online: - + https://hpe-docs.gitbook.io/posh-hponeview/cmdlets/v9.10/appliance/get-ovserverntpconfiguration @@ -33471,7 +33471,7 @@ Minimum required privileges: Server administrator Online: - + https://hpe-docs.gitbook.io/posh-hponeview/cmdlets/v9.10/servers/get-ovserveronetimeboot @@ -34042,7 +34042,7 @@ test 3 False False Unassigned Normal Online: - + https://hpe-docs.gitbook.io/posh-hponeview/cmdlets/v9.10/servers/get-ovserverprofile @@ -34155,7 +34155,7 @@ test Flb 1:1-b 2 Ethernet 36:37:6B:90:00:06 1000378079e0000d Sec Online: - + https://hpe-docs.gitbook.io/posh-hponeview/cmdlets/v9.10/servers/get-ovserverprofileconnectionlist @@ -34273,7 +34273,7 @@ test Flb 1:1-b 2 Ethernet 36:37:6B:90:00:06 1000378079e0000d Sec Online: - + https://hpe-docs.gitbook.io/posh-hponeview/cmdlets/v9.10/servers/get-ovserverprofilemessage @@ -34717,7 +34717,7 @@ Test 1 False False Unassigned Normal Online: - + https://hpe-docs.gitbook.io/posh-hponeview/cmdlets/v9.10/servers/get-ovserverprofiletemplate @@ -35011,7 +35011,7 @@ Get-OVServiceAlert -Count 10 -TimeSpan $TimeSpan Online: - + https://hpe-docs.gitbook.io/posh-hponeview/cmdlets/v9.10/appliance/get-ovservicealert @@ -35173,7 +35173,7 @@ Minimum required privileges: Infrastructure administrator. Online: - + https://hpe-docs.gitbook.io/posh-hponeview/cmdlets/v9.10/appliance/get-ovsmtpalertemailfilter @@ -35284,7 +35284,7 @@ Minimum required privileges: Infrastructure administrator. Online: - + https://hpe-docs.gitbook.io/posh-hponeview/cmdlets/v9.10/appliance/get-ovsmtpconfig @@ -35379,7 +35379,7 @@ Minimum required privileges: Infrastructure administrator. Online: - + https://hpe-docs.gitbook.io/posh-hponeview/cmdlets/v9.10/appliance/get-ovsnmpreadcommunity @@ -35504,7 +35504,7 @@ Minimum required privileges: Infrastructure administrator Online: - + https://hpe-docs.gitbook.io/posh-hponeview/cmdlets/v9.10/appliance/get-ovsnmpv3user @@ -35854,7 +35854,7 @@ Volume Templates : 0 Online: - + https://hpe-docs.gitbook.io/posh-hponeview/cmdlets/v9.10/storage/get-ovstoragepool @@ -36147,7 +36147,7 @@ Ok HP3Par_1 TXQ1020307 HP_3PAR 7200 NoDomain 28:11:00:02:AC:00:08 Online: - + https://hpe-docs.gitbook.io/posh-hponeview/cmdlets/v9.10/storage/get-ovstoragesystem @@ -36435,7 +36435,7 @@ Ok HP3Par_1 TXQ1020307 HP_3PAR 7200 NoDomain 28:11:00:02:AC:00:08 Online: - + https://hpe-docs.gitbook.io/posh-hponeview/cmdlets/v9.10/storage/get-ovstoragevolume @@ -36606,7 +36606,7 @@ This Cmdlet will return the available volume sets from the available storage sys Online: - + https://hpe-docs.gitbook.io/posh-hponeview/cmdlets/v9.10/storage/get-ovstoragevolumeset @@ -36764,7 +36764,7 @@ hpov.domain.com Shared 1 Snapshot Converted_20160225214317 Shared 1 Snapshot Con Online: - + https://hpe-docs.gitbook.io/posh-hponeview/cmdlets/v9.10/storage/get-ovstoragevolumesnapshot @@ -36977,7 +36977,7 @@ Default Value: ${Global:ConnectSessions} Online: - + https://hpe-docs.gitbook.io/posh-hponeview/cmdlets/v9.10/storage/get-ovstoragevolumetemplate @@ -37076,7 +37076,7 @@ MyAppliance2.domain.com StorageVolumeTemplateRequired false Online: - + https://hpe-docs.gitbook.io/posh-hponeview/cmdlets/v9.10/storage/get-ovstoragevolumetemplatepolicy @@ -37277,7 +37277,7 @@ MyAppliance2.domain.com StorageVolumeTemplateRequired false Online: - + https://hpe-docs.gitbook.io/posh-hponeview/cmdlets/v9.10/networking/get-ovswitch @@ -37446,7 +37446,7 @@ MyAppliance2.domain.com StorageVolumeTemplateRequired false Online: - + https://hpe-docs.gitbook.io/posh-hponeview/cmdlets/v9.10/networking/get-ovswitchtype @@ -37784,7 +37784,7 @@ All states will match if omitted. All tasks will be returned if both names and Online: - + https://hpe-docs.gitbook.io/posh-hponeview/cmdlets/v9.10/appliance/get-ovtask @@ -37946,7 +37946,7 @@ All states will match if omitted. All tasks will be returned if both names and Online: - + https://hpe-docs.gitbook.io/posh-hponeview/cmdlets/v9.10/facilities/get-ovunmanageddevice @@ -38234,7 +38234,7 @@ All states will match if omitted. All tasks will be returned if both names and Online: - + https://hpe-docs.gitbook.io/posh-hponeview/cmdlets/v9.10/networking/get-ovuplinkset @@ -38401,7 +38401,7 @@ All states will match if omitted. All tasks will be returned if both names and Online: - + https://hpe-docs.gitbook.io/posh-hponeview/cmdlets/v9.10/appliance/get-ovuser @@ -38585,7 +38585,7 @@ download)? Online: - + https://hpe-docs.gitbook.io/posh-hponeview/cmdlets/v9.10/library/get-ovversion @@ -38692,7 +38692,7 @@ download)? Online: - + https://hpe-docs.gitbook.io/posh-hponeview/cmdlets/v9.10/library/get-ovxapiversion @@ -38804,7 +38804,7 @@ $ConnectedSessions | Import-OVSslCertificate Online: - + https://hpe-docs.gitbook.io/posh-hponeview/cmdlets/v9.10/appliance/import-ovsslcertificate @@ -38988,7 +38988,7 @@ Install-OVApplianceCertificate -Path $Cert -Passphrase (Read-Host -Prompt Passph Online: - + https://hpe-docs.gitbook.io/posh-hponeview/cmdlets/v9.10/appliance/install-ovappliancecertificate @@ -39654,7 +39654,7 @@ $Alerts | ForEach { Online: - + https://hpe-docs.gitbook.io/posh-hponeview/cmdlets/v9.10/networking/install-ovlogicalinterconnectfirmware Get-OVLogicalInterconnect @@ -40055,7 +40055,7 @@ Install-OVUpdate -EULA Accept -InstallNow Online: - + https://hpe-docs.gitbook.io/posh-hponeview/cmdlets/v9.10/appliance/install-ovupdate @@ -40265,7 +40265,7 @@ $tasks = Invoke-OVMigrateServer -InputObject $MigratableServers -Credential $Cre Online: - + https://hpe-docs.gitbook.io/posh-hpeoneview/cmdlets/v9.10/servers/invoke-ovmigrateserver @@ -40997,7 +40997,7 @@ Username for the administrator account for Virtual Connect Manager. Online: - + https://hpe-docs.gitbook.io/posh-hponeview/cmdlets/v9.10/networking/invoke-ovvcmmigration @@ -41141,7 +41141,7 @@ Invoke-OVWebBrowser Online: - + https://hpe-docs.gitbook.io/posh-hponeview/cmdlets/v9.10/library/invoke-ovwebbrowser @@ -41294,7 +41294,7 @@ Get-OVServerProfileTemplate "myTemplate" | Join-OVServerProfileToTemplate -profi Online: - + https://hpe-docs.gitbook.io/posh-hponeview/cmdlets/v9.10/servers/join-ovserverprofiletotemplate @@ -41634,7 +41634,7 @@ The IPv4 Subnet that the new IPv4 Range will be assigned to. Start and End valu Online: - + https://hpe-docs.gitbook.io/posh-hponeview/cmdlets/v9.10/appliance/new-ovaddresspoolrange @@ -41829,7 +41829,7 @@ To add IPv4 Address Ranges to a Subnet after creating it, please use the New-OVA Online: - + https://hpe-docs.gitbook.io/posh-hponeview/cmdlets/v9.10/appliance/new-ovaddresspoolsubnet @@ -42226,7 +42226,7 @@ Set-Content -path C:\dir\hpov.csr -value $request.base64Data -Force Online: - + https://hpe-docs.gitbook.io/posh-hponeview/cmdlets/v9.10/appliance/new-ovappliancecsr @@ -42379,7 +42379,7 @@ This Cmdlet will generate a new encryption key, if the existing encryption key i Online: - + https://hpe-docs.gitbook.io/posh-hponeview/cmdlets/v9.10/security/new-ovappliancedataatrestencryptionkey @@ -42757,7 +42757,7 @@ New-OVApplianceSelfSignedCertificate @CSR -ApplianceConnection Appliance.domain. Online: - + https://hpe-docs.gitbook.io/posh-hponeview/cmdlets/v9.10/appliance/new-ovapplianceselfsignedcertificate @@ -42956,7 +42956,7 @@ Default Value: ${Global:ConnectedSessions} | ? Default Online: - + https://hpe-docs.gitbook.io/posh-hpeoneview/cmdlets/v9.10/appliance/new-ovappliancestaticroute @@ -43218,7 +43218,7 @@ New-OVApplianceTrapDestination -Type SnmpV3 -SnmpV3User $CreatedSnmpSnmpv3UserV3 Online: - + https://hpe-docs.gitbook.io/posh-hponeview/cmdlets/v9.10/appliance/new-ovappliancetrapdestination @@ -43424,7 +43424,7 @@ If an automatic backup policy is configured on the appliance, the Cmdlet is inst Online: - + https://hpe-docs.gitbook.io/posh-hponeview/cmdlets/v9.10/appliance/new-ovbackup @@ -44440,7 +44440,7 @@ New-OVClusterProfile -Name ProdCluster1 -ClusterPrefix ProdClusterNode- -Cluster Online: - + https://hpe-docs.gitbook.io/posh-hponeview/cmdlets/v9.10/cluster/new-ovclusterprofile @@ -44607,7 +44607,7 @@ New-OVClusterProfileMember -InputObject $Server -IPAddress 192.168.10.1 -OSDeplo Online: - + https://hpe-docs.gitbook.io/posh-hponeview/cmdlets/v9.10/cluster/new-ovclusterprofilemember @@ -44801,7 +44801,7 @@ Get-OVBaseline -BaselineName "MyBaseline" | New-OVCustomBaseline -Hotfixes cp111 Online: - + https://hpe-docs.gitbook.io/posh-hponeview/cmdlets/v9.10/appliance/new-ovcustombaseline @@ -45444,7 +45444,7 @@ New-OVDataCenter @NewDC2Params Online: - + https://hpe-docs.gitbook.io/posh-hponeview/cmdlets/v9.10/facilities/new-ovdatacenter @@ -46016,7 +46016,7 @@ New-OVEnclosureGroup -name "My Synergy Enclosure Group 1" -LogicalInterconnectGr Online: - + https://hpe-docs.gitbook.io/posh-hponeview/cmdlets/v9.10/servers/new-ovenclosuregroup @@ -46399,7 +46399,7 @@ New-OVExternalRepository @Params Online: - + https://hpe-docs.gitbook.io/posh-hponeview/cmdlets/v9.10/appliance/new-ovexternalrepository @@ -46622,7 +46622,7 @@ This Cmdlet will create and grant access to specific directory groups for the iL Online: - + https://hpe-docs.gitbook.io/posh-hponeview/cmdlets/v9.10/library/new-ovilodirectorygroup @@ -47023,7 +47023,7 @@ This Cmdlet will allow you to create a new local account that can then be passed Online: - + https://hpe-docs.gitbook.io/posh-hponeview/cmdlets/v9.10/servers/new-ovilolocaluseraccount @@ -47422,7 +47422,7 @@ New-OVLdapDirectory -name Domain1 -AD -basedn "dc=domain,dc=com" -servers $Serve Online: - + https://hpe-docs.gitbook.io/posh-hponeview/cmdlets/v9.10/security/new-ovldapdirectory @@ -47752,7 +47752,7 @@ Directory Username to authenticate with Online: - + https://hpe-docs.gitbook.io/posh-hponeview/cmdlets/v9.10/security/new-ovldapgroup @@ -47945,7 +47945,7 @@ Directory Username to authenticate with Online: - + https://hpe-docs.gitbook.io/posh-hponeview/cmdlets/v9.10/security/new-ovldapserver @@ -48142,7 +48142,7 @@ New-OVlicense -LicenseKey $license Online: - + https://hpe-docs.gitbook.io/posh-hponeview/cmdlets/v9.10/appliance/new-ovlicense @@ -48664,7 +48664,7 @@ Get-OVEnclosure -Name 0000A66101 | New-OVLogicalEnclosure "My Synergy LE 1" -Enc Online: - + https://hpe-docs.gitbook.io/posh-hponeview/cmdlets/v9.10/servers/new-ovlogicalenclosure @@ -50132,7 +50132,7 @@ New-OVLogicalInterconnectGroup -Name "Synergy VC Prod" -FrameCount 3 -Interconne Online: - + https://hpe-docs.gitbook.io/posh-hponeview/cmdlets/v9.10/networking/new-ovlogicalinterconnectgroup @@ -50636,7 +50636,7 @@ $CreatedLogicalJbod = New-OVLogicalJbod -Name "MyLogicalJBOD2" ` Online: - + https://hpe-docs.gitbook.io/posh-hponeview/cmdlets/v9.10/storage/new-ovlogicaljbod @@ -51425,7 +51425,7 @@ $Results = New-OVLogicalSwitch -Name "My Logical Switch 2" -LogicalSwitchGroup $ Online: - + https://hpe-docs.gitbook.io/posh-hponeview/cmdlets/v9.10/networking/new-ovlogicalswitch @@ -51605,7 +51605,7 @@ $Results = New-OVLogicalSwitch -Name "My Logical Switch 2" -LogicalSwitchGroup $ Online: - + https://hpe-docs.gitbook.io/posh-hponeview/cmdlets/v9.10/networking/new-ovlogicalswitchgroup @@ -52520,7 +52520,7 @@ New-OVNetwork -name "VLAN B Side" -VlanRange "10,20,30,40,50,60" Online: - + https://hpe-docs.gitbook.io/posh-hponeview/cmdlets/v9.10/networking/new-ovnetwork @@ -52785,7 +52785,7 @@ New-OVNetworkSet -name "Production Networks" -Networks $networks -UntaggedNetwor Online: - + https://hpe-docs.gitbook.io/posh-hponeview/cmdlets/v9.10/networking/new-ovnetworkset @@ -52978,7 +52978,7 @@ Get-OVImageStreamerAppliance | Select -First 1 | New-OVOSDeploymentServer -Name Online: - + https://hpe-docs.gitbook.io/posh-hponeview/cmdlets/v9.10/servers/new-ovosdeploymentserver @@ -53162,7 +53162,7 @@ New-OVLogicalInterconnectGroup -LIGName "Flex10/10D and FlexFabric Production 1" Online: - + https://hpe-docs.gitbook.io/posh-hponeview/cmdlets/v9.10/networking/new-ovqosconfig @@ -53455,7 +53455,7 @@ $TrafficClasses = $Class1,$Class2 Online: - + https://hpe-docs.gitbook.io/posh-hponeview/cmdlets/v9.10/networking/new-ovqostrafficclass @@ -53786,7 +53786,7 @@ New-OVRack @Params Online: - + https://hpe-docs.gitbook.io/posh-hponeview/cmdlets/v9.10/facilities/new-ovrack @@ -54047,7 +54047,7 @@ New-OVRack @Params Online: - + https://hpe-docs.gitbook.io/posh-hponeview/cmdlets/v9.10/appliance/new-ovremotesupportcontact @@ -54234,7 +54234,7 @@ New-OVRack @Params Online: - + https://hpe-docs.gitbook.io/posh-hponeview/cmdlets/v9.10/appliance/new-ovremotesupportpartner @@ -54389,7 +54389,7 @@ New-OVRack @Params Online: - + https://hpe-docs.gitbook.io/posh-hponeview/cmdlets/v9.10/library/new-ovresource @@ -54610,7 +54610,7 @@ Minimum required privileges: Infrastructure administrator, Software administrato Online: - + https://hpe-docs.gitbook.io/posh-hponeview/cmdlets/v9.10/appliance/new-ovrestore @@ -54803,7 +54803,7 @@ Minimum required privileges: Infrastructure administrator Online: - + https://hpe-docs.gitbook.io/posh-hponeview/cmdlets/v9.10/appliance/new-ovscope @@ -57267,7 +57267,7 @@ $jsonProfiles | foreach-object { New-OVServerProfile -import -file $_.fullname } Online: - + https://hpe-docs.gitbook.io/posh-hponeview/cmdlets/v9.10/servers/new-ovserverprofile @@ -57545,7 +57545,7 @@ $jsonProfiles | foreach-object { New-OVServerProfile -import -file $_.fullname } Online: - + https://hpe-docs.gitbook.io/posh-hponeview/cmdlets/v9.10/servers/new-ovserverprofileassign @@ -58526,7 +58526,7 @@ $StorageVolumeObject = New-OVServerProfileAttachVolume -Name "Template 3 Private Online: - + https://hpe-docs.gitbook.io/posh-hponeview/cmdlets/v9.10/servers/new-ovserverprofileattachvolume @@ -59775,7 +59775,7 @@ $ImageStreamerBootConnection1 = New-OVServerProfileConnection @IscsiParams Online: - + https://hpe-docs.gitbook.io/posh-hponeview/cmdlets/v9.10/servers/new-ovserverprofileconnection @@ -60628,7 +60628,7 @@ New-OVServerProfileIloPolicy -ManageLocalAdministratorAccount ` Online: - + https://hpe-docs.gitbook.io/posh-hponeview/cmdlets/v9.10/servers/new-ovserverprofileilopolicy @@ -61358,7 +61358,7 @@ $LogicalDrive = New-OVServerProfileLogicalDisk -Name RAID5+Spare-DATA -Drives $D Online: - + https://hpe-docs.gitbook.io/posh-hponeview/cmdlets/v9.10/servers/new-ovserverprofilelogicaldisk @@ -62043,7 +62043,7 @@ $LogicalDrive = New-OVServerProfileLogicalDisk -Name RAID5+Spare-DATA -Drives $D Online: - + https://hpe-docs.gitbook.io/posh-hponeview/cmdlets/v9.10/servers/new-ovserverprofilelogicaldiskcontroller @@ -64001,7 +64001,7 @@ New-OVServerProfileTemplate @params | Wait-OVTaskComplete Online: - + https://hpe-docs.gitbook.io/posh-hponeview/cmdlets/v9.10/servers/new-ovserverprofiletemplate @@ -64245,7 +64245,7 @@ New-OVServerProfileTemplate @params | Wait-OVTaskComplete Online: - + https://hpe-docs.gitbook.io/posh-hponeview/cmdlets/v9.10/library/new-ovsnmpconfiguration @@ -64653,7 +64653,7 @@ New-OVServerProfileTemplate @params | Wait-OVTaskComplete Online: - + https://hpe-docs.gitbook.io/posh-hponeview/cmdlets/v9.10/library/new-ovsnmptrapdestination @@ -64995,7 +64995,7 @@ New-OVSnmpV3User -ApplianceSnmpUser -Username MySNMPv3us3r -SecurityLevel AuthAn Online: - + https://hpe-docs.gitbook.io/posh-hponeview/cmdlets/v9.10/library/new-ovsnmpv3user @@ -65843,7 +65843,7 @@ $New-OVStorageVolume testvol3 -volumetemplate $svt -capacity 90 | Wait-OVTaskCom Online: - + https://hpe-docs.gitbook.io/posh-hponeview/cmdlets/v9.10/storage/new-ovstoragevolume @@ -66009,7 +66009,7 @@ Default Value: ${Global:ConnectSessions} | ? Default Online: - + https://hpe-docs.gitbook.io/posh-hponeview/cmdlets/v9.10/storage/new-ovstoragevolumesnapshot @@ -66932,7 +66932,7 @@ $storageVolTemplate = New-OVStorageVolumeTemplate -templateName vmware-shared-sv Online: - + https://hpe-docs.gitbook.io/posh-hponeview/cmdlets/v9.10/storage/new-ovstoragevolumetemplate @@ -67435,7 +67435,7 @@ New-OVSupportDump -Path C:\Temp -Type LogicalEnclosure -InputObject $MyLogicalEn Online: - + https://hpe-docs.gitbook.io/posh-hponeview/cmdlets/v9.10/appliance/new-ovsupportdump @@ -67676,7 +67676,7 @@ New-OVSupportDump -Path C:\Temp -Type LogicalEnclosure -InputObject $MyLogicalEn Online: - + https://hpe-docs.gitbook.io/posh-hponeview/cmdlets/v9.10/facilities/new-ovunmanageddevice @@ -68823,7 +68823,7 @@ New-OVUplinkSet @UplinkSetParams Online: - + https://hpe-docs.gitbook.io/posh-hponeview/cmdlets/v9.10/networking/new-ovuplinkset @@ -69114,7 +69114,7 @@ Example: -ScopePermissions @{Role = "Network administrator"; Scope = (Get-OVScop Online: - + https://hpe-docs.gitbook.io/posh-hponeview/cmdlets/v9.10/security/new-ovuser @@ -69301,7 +69301,7 @@ PING host.domain.com (192.168.1.100) 56(84) bytes of data. Online: - + https://hpe-docs.gitbook.io/posh-hponeview/cmdlets/v9.10/appliance/ping-ovaddress @@ -69396,15 +69396,15 @@ PING host.domain.com (192.168.1.100) 56(84) bytes of data. about_Appliance_Connection_Permissions - + https://hpe-docs.gitbook.io/posh-hponeview/cmdlets/v9.10/library/pop-ovappliancepermission [${Global:ConnectedSessions}] - + https://hpe-docs.gitbook.io/posh-hponeview/cmdlets/v9.10/library/pop-ovappliancepermission Online: - + https://hpe-docs.gitbook.io/posh-hponeview/cmdlets/v9.10/library/pop-ovappliancepermission @@ -69550,15 +69550,15 @@ Push-OVAppliancePermission -SetActivePermissions $NewPermissions about_Appliance_Connection_Permissions - + https://hpe-docs.gitbook.io/posh-hponeview/cmdlets/v9.10/library/push-ovappliancepermission [${Global:ConnectedSessions}] - + https://hpe-docs.gitbook.io/posh-hponeview/cmdlets/v9.10/library/push-ovappliancepermission Online: - + https://hpe-docs.gitbook.io/posh-hponeview/cmdlets/v9.10/library/push-ovappliancepermission @@ -69759,7 +69759,7 @@ Default Value: ${Global:ConnectedSessions} | ? Default Online: - + https://hpe-docs.gitbook.io/posh-hpeoneview/cmdlets/v9.10/appliance/register-ovremotesupportportalconnection @@ -69928,7 +69928,7 @@ Default Value: ${Global:ConnectedSessions} | ? Default Online: - + https://hpe-docs.gitbook.io/posh-hponeview/cmdlets/v9.10/appliance/remove-ovaddresspoolrange @@ -70103,7 +70103,7 @@ The IPv4 Subnet Pool resource Object. Can be accepted via pipeline input. Online: - + https://hpe-docs.gitbook.io/posh-hponeview/cmdlets/v9.10/appliance/remove-ovaddresspoolsubnet @@ -70280,7 +70280,7 @@ In order for an administrator to remove an Alert, the administrator must be assi Online: - + https://hpe-docs.gitbook.io/posh-hponeview/cmdlets/v9.10/appliance/remove-ovalert @@ -70417,7 +70417,7 @@ Minimum required privileges: Infrastructure administrator Online: - + https://hpe-docs.gitbook.io/posh-hponeview/cmdlets/v9.10/appliance/remove-ovapplianceproxy @@ -70598,7 +70598,7 @@ Default Value: ${Global:ConnectedSessions} | ? Default Online: - + https://hpe-docs.gitbook.io/posh-hpeoneview/cmdlets/v9.10/appliance/remove-ovappliancestaticroute @@ -70777,7 +70777,7 @@ Minimum required privileges: Infrastructure administrator Online: - + https://hpe-docs.gitbook.io/posh-hponeview/cmdlets/v9.10/appliance/remove-ovappliancetrapdestination @@ -70952,7 +70952,7 @@ The Alias Name of the certificate. Please know that wildcard is not supported.< Online: - + https://hpe-docs.gitbook.io/posh-hponeview/cmdlets/v9.10/appliance/remove-ovappliancetrustedcertificate @@ -71147,7 +71147,7 @@ The Alias Name of the certificate. Please know that wildcard is not supported.< Online: - + https://hpe-docs.gitbook.io/posh-hponeview/cmdlets/v9.10/appliance/remove-ovbaseline @@ -71326,7 +71326,7 @@ The user must have an infrastructure administrator privilege to register or upda Online: - + https://hpe-docs.gitbook.io/posh-hponeview/cmdlets/v9.10/cluster/remove-ovclustermanager @@ -71519,7 +71519,7 @@ Minimum required privileges: Infrastructure administrator, Server administrator, Online: - + https://hpe-docs.gitbook.io/posh-hponeview/cmdlets/v9.10/cluster/remove-ovclusterprofile @@ -71701,7 +71701,7 @@ This Cmdlet will remove 1 or more datacenter resources from an appliance. Remov Online: - + https://hpe-docs.gitbook.io/posh-hponeview/cmdlets/v9.10/facilities/remove-ovdatacenter @@ -71942,7 +71942,7 @@ Remove-OVEnclosure $enclosure -confirm:$false Online: - + https://hpe-docs.gitbook.io/posh-hponeview/cmdlets/v9.10/servers/remove-ovenclosure @@ -72159,7 +72159,7 @@ Remove-OVEnclosureGroup $enclosureGroup -confirm:$false Online: - + https://hpe-docs.gitbook.io/posh-hponeview/cmdlets/v9.10/servers/remove-ovenclosuregroup @@ -72370,7 +72370,7 @@ This Cmdlet supports removing an existing external repository. Removing an exte Online: - + https://hpe-docs.gitbook.io/posh-hponeview/cmdlets/v9.10/appliance/remove-ovexternalrepository @@ -72541,7 +72541,7 @@ This Cmdlet supports removing an existing external repository. Removing an exte Online: - + https://hpe-docs.gitbook.io/posh-hponeview/cmdlets/v9.10/networking/remove-ovfabricmanager @@ -72736,7 +72736,7 @@ This Cmdlet supports removing an existing external repository. Removing an exte Online: - + https://hpe-docs.gitbook.io/posh-hponeview/cmdlets/v9.10/security/remove-ovldapdirectory @@ -72921,7 +72921,7 @@ This Cmdlet supports removing an existing external repository. Removing an exte Online: - + https://hpe-docs.gitbook.io/posh-hponeview/cmdlets/v9.10/security/remove-ovldapgroup @@ -73184,7 +73184,7 @@ This Cmdlet supports removing an existing external repository. Removing an exte Online: - + https://hpe-docs.gitbook.io/posh-hponeview/cmdlets/v9.10/security/remove-ovldapserver @@ -73363,7 +73363,7 @@ Remove-OVLicense -InputObject $LicenseKeys[0] Online: - + https://hpe-docs.gitbook.io/posh-hponeview/cmdlets/v9.10/appliance/remove-ovlicense @@ -73554,7 +73554,7 @@ Remove-OVLicense -InputObject $LicenseKeys[0] Online: - + https://hpe-docs.gitbook.io/posh-hponeview/cmdlets/v9.10/servers/remove-ovlogicalenclosure @@ -73750,7 +73750,7 @@ Remove-OVLogicalInterconnectGroup $lig -confirm:$false Online: - + https://hpe-docs.gitbook.io/posh-hponeview/cmdlets/v9.10/networking/remove-ovlogicalinterconnectgroup @@ -73987,7 +73987,7 @@ Remove-OVLogicalJBOD -InputObject $LogicalJBOD Online: - + https://hpe-docs.gitbook.io/posh-hponeview/cmdlets/v9.10/storage/remove-ovlogicaljbod @@ -74217,7 +74217,7 @@ Remove-OVLogicalJBOD -InputObject $LogicalJBOD Online: - + https://hpe-docs.gitbook.io/posh-hponeview/cmdlets/v9.10/networking/remove-ovlogicalswitch @@ -74413,7 +74413,7 @@ Remove-OVLogicalJBOD -InputObject $LogicalJBOD Online: - + https://hpe-docs.gitbook.io/posh-hponeview/cmdlets/v9.10/networking/remove-ovlogicalswitchgroup @@ -74646,7 +74646,7 @@ Remove-OVNetwork -network $net -confirm:$false Online: - + https://hpe-docs.gitbook.io/posh-hponeview/cmdlets/v9.10/networking/remove-ovnetwork @@ -74836,7 +74836,7 @@ Wait-OVTaskComplete $task Online: - + https://hpe-docs.gitbook.io/posh-hponeview/cmdlets/v9.10/networking/remove-ovnetworkset @@ -75027,7 +75027,7 @@ In order to successfully remove an OS Deployment Server, all associated Logical Online: - + https://hpe-docs.gitbook.io/posh-hponeview/cmdlets/v9.10/servers/remove-ovosdeploymentserver @@ -75174,7 +75174,7 @@ In order to successfully remove an OS Deployment Server, all associated Logical Online: - + https://hpe-docs.gitbook.io/posh-hponeview/cmdlets/v9.10/appliance/remove-ovpendingupdate @@ -75417,7 +75417,7 @@ Remove-OVPowerDevice -PowerDevice $ipdu -force -confirm:$false Online: - + https://hpe-docs.gitbook.io/posh-hponeview/cmdlets/v9.10/facilities/remove-ovpowerdevice @@ -75625,7 +75625,7 @@ This Cmdlet will remove an existing Rack resource. Removing a rack resource wil Online: - + https://hpe-docs.gitbook.io/posh-hponeview/cmdlets/v9.10/facilities/remove-ovrack @@ -75800,7 +75800,7 @@ This Cmdlet will remove an existing Rack resource. Removing a rack resource wil Online: - + https://hpe-docs.gitbook.io/posh-hponeview/cmdlets/v9.10/servers/remove-ovrackmanager @@ -75954,7 +75954,7 @@ Remove-OVRackMember -InputObject $Rack1Member Online: - + https://hpe-docs.gitbook.io/posh-hponeview/cmdlets/v9.10/facilities/remove-ovrackmember @@ -76107,7 +76107,7 @@ Remove-OVRackMember -InputObject $Rack1Member Online: - + https://hpe-docs.gitbook.io/posh-hponeview/cmdlets/v9.10/appliance/remove-ovremotesupportcontact @@ -76260,7 +76260,7 @@ Remove-OVRackMember -InputObject $Rack1Member Online: - + https://hpe-docs.gitbook.io/posh-hponeview/cmdlets/v9.10/appliance/remove-ovremotesupportpartner @@ -76450,7 +76450,7 @@ Remove-OVResource -Resource $MyResourceObject Online: - + https://hpe-docs.gitbook.io/posh-hponeview/cmdlets/v9.10/library/remove-ovresource @@ -76680,7 +76680,7 @@ This Cmdlet will remove the specified resource from the requested label. To rem Online: - + https://hpe-docs.gitbook.io/posh-hponeview/cmdlets/v9.10/appliance/remove-ovresourcefromlabel @@ -76842,7 +76842,7 @@ Get-OVScope -Name MyScope | Add-OVResourceToScope -InputObject $Resources Online: - + https://hpe-docs.gitbook.io/posh-hponeview/cmdlets/v9.10/appliance/remove-ovresourcefromscope @@ -77019,7 +77019,7 @@ Get-OVScope -Name MyScope | Add-OVResourceToScope -InputObject $Resources Online: - + https://hpe-docs.gitbook.io/posh-hponeview/cmdlets/v9.10/storage/remove-ovsanmanager @@ -77167,7 +77167,7 @@ Get-OVScope -Name MyScope | Add-OVResourceToScope -InputObject $Resources Online: - + https://hpe-docs.gitbook.io/posh-hponeview/cmdlets/v9.10/appliance/remove-ovscmbcertificate @@ -77322,7 +77322,7 @@ Minimum required privileges: Infrastructure administrator Online: - + https://hpe-docs.gitbook.io/posh-hponeview/cmdlets/v9.10/appliance/remove-ovscope @@ -77690,7 +77690,7 @@ Remove-OVServer $server -confirm:$false -force Online: - + https://hpe-docs.gitbook.io/posh-hponeview/cmdlets/v9.10/servers/remove-ovserver @@ -77713,9 +77713,9 @@ Remove-OVServer $server -confirm:$false -force Remove-OVServerProfile - ServerProfile + InputObject - The server profile object(s), name(s) or URI(s) to be removed. + The server profile object to be removed. Object @@ -77802,6 +77802,17 @@ If the -RetainStorageConfig parameter is used while deleting a server profile, t False + + InputObject + + The server profile object to be removed. + + Object + + Object + + + RetainStorageConfig @@ -77824,17 +77835,6 @@ If the -RetainStorageConfig parameter is used while deleting a server profile, t - - ServerProfile - - The server profile object(s), name(s) or URI(s) to be removed. - - Object - - Object - - - WhatIf @@ -77894,26 +77894,8 @@ If the -RetainStorageConfig parameter is used while deleting a server profile, t - $task = Remove-OVServerProfile -profile "Profile6" -Wait-OVTaskComplete $task.uri - - - Remove the profile specifed by name. Wait for remove to complete. - - - - - - - - - - -------------------------- EXAMPLE 2 -------------------------- - - - $profile = Get-OVServerProfile -name "Profile2" -Remove-OVServerProfile $profile -confirm:$false +Remove-OVServerProfile -InputObject $profile -Confirm:$false Remove the profile specifed by $profile. Disable confirmation prompt. @@ -77925,7 +77907,7 @@ Remove-OVServerProfile $profile -confirm:$false - -------------------------- EXAMPLE 3 -------------------------- + -------------------------- EXAMPLE 2 -------------------------- @@ -78033,7 +78015,7 @@ Remove-OVServerProfile $profile -confirm:$false Online: - + https://hpe-docs.gitbook.io/posh-hponeview/cmdlets/v9.10/servers/remove-ovserverprofile @@ -78058,7 +78040,7 @@ Remove-OVServerProfile $profile -confirm:$false InputObject - The server profile template object(s) or name(s) to be removed. + The server profile template object to be removed. Object @@ -78130,7 +78112,7 @@ Remove-OVServerProfile $profile -confirm:$false InputObject - The server profile template object(s) or name(s) to be removed. + The server profile template object to be removed. Object @@ -78197,26 +78179,8 @@ Remove-OVServerProfile $profile -confirm:$false - $task = Remove-OVServerProfileTemplate -ServerProfileTemplate "My Template Profile" -Wait-OVTaskComplete -InputObject $task - - - Remove the profile template specifed by name. Wait for remove to complete. - - - - - - - - - - -------------------------- EXAMPLE 2 -------------------------- - - - $spt = Get-OVServerProfileTemplate -name "My Template Profile" -ErrorAction Stop -Remove-OVServerProfileTemplate $spt -Confirm:$false +Remove-OVServerProfileTemplate -InputObject $spt -Confirm:$false Remove the profile template specifed by $spt. Disable confirmation prompt. @@ -78228,7 +78192,7 @@ Remove-OVServerProfileTemplate $spt -Confirm:$false - -------------------------- EXAMPLE 3 -------------------------- + -------------------------- EXAMPLE 2 -------------------------- @@ -78272,7 +78236,7 @@ Remove-OVServerProfileTemplate $spt -Confirm:$false Online: - + https://hpe-docs.gitbook.io/posh-hponeview/cmdlets/v9.10/servers/remove-ovserverprofiletemplate @@ -78454,7 +78418,7 @@ Minimum required privileges: Infrastructure administrator. Online: - + https://hpe-docs.gitbook.io/posh-hponeview/cmdlets/v9.10/appliance/remove-ovsmtpalertemailfilter @@ -78615,7 +78579,7 @@ Minimum required privileges: Infrastructure administrator Online: - + https://hpe-docs.gitbook.io/posh-hponeview/cmdlets/v9.10/library/remove-ovsnmpv3user @@ -78769,7 +78733,7 @@ Minimum required privileges: Infrastructure administrator Online: - + https://hpe-docs.gitbook.io/posh-hponeview/cmdlets/v9.10/appliance/remove-ovstandbycomposernode @@ -79037,7 +79001,7 @@ Remove-OVStoragePool -storagePool $pool -confirm:$false Online: - + https://hpe-docs.gitbook.io/posh-hponeview/cmdlets/v9.10/storage/remove-ovstoragepool @@ -79224,7 +79188,7 @@ Remove-OVStoragePool -storagePool $pool -confirm:$false Online: - + https://hpe-docs.gitbook.io/posh-hponeview/cmdlets/v9.10/storage/remove-ovstoragesystem @@ -79484,7 +79448,7 @@ Remove-OVStorageVolume -InputObject $VolumeToRemove Online: - + https://hpe-docs.gitbook.io/posh-hponeview/cmdlets/v9.10/storage/remove-ovstoragevolume @@ -79685,7 +79649,7 @@ $Snapshots | ? { ((get-date) - (Get-Date $_.created)).days -ge 5 } | Remove-OVSt Online: - + https://hpe-docs.gitbook.io/posh-hponeview/cmdlets/v9.10/storage/remove-ovstoragevolumesnapshot @@ -79928,7 +79892,7 @@ Remove-OVStorageVolumeTemplate -name $svt -confirm:$false Online: - + https://hpe-docs.gitbook.io/posh-hponeview/cmdlets/v9.10/storage/remove-ovstoragevolumetemplate @@ -80139,7 +80103,7 @@ When the request is accepted by the appliance, it does not return an Async Task Online: - + https://hpe-docs.gitbook.io/posh-hponeview/cmdlets/v9.10/facilities/remove-ovunmanageddevice @@ -80308,7 +80272,7 @@ When the request is accepted by the appliance, it does not return an Async Task Online: - + https://hpe-docs.gitbook.io/posh-hponeview/cmdlets/v9.10/security/remove-ovuser @@ -80677,7 +80641,7 @@ Reset-OVEnclosureDevice -Enclosure $Enclosure -Component ICM -DeviceID 3 -EFuse< Online: - + https://hpe-docs.gitbook.io/posh-hponeview/cmdlets/v9.10/servers/reset-ovenclosuredevice Get-OVEnclosure @@ -80840,7 +80804,7 @@ Reset-OVInterconnectNetOpPassword -InputObject $InterconnectObject -Password $Ne Online: - + https://hpe-docs.gitbook.io/posh-hponeview/cmdlets/v9.10/networking/reset-ovinterconnectnetoppassword @@ -81191,7 +81155,7 @@ Restart-OVAppliance Online: - + https://hpe-docs.gitbook.io/posh-hponeview/cmdlets/v9.10/appliance/restart-ovappliance @@ -81595,7 +81559,7 @@ Restart-OVAppliance Online: - + https://hpe-docs.gitbook.io/posh-hponeview/cmdlets/v9.10/servers/restart-ovserver @@ -81692,7 +81656,7 @@ The source baseline and associated hotfixes must be present within the Baseline Online: - + https://hpe-docs.gitbook.io/posh-hponeview/cmdlets/v9.10/appliance/restore-ovcustombaseline @@ -81829,7 +81793,7 @@ This Cmdlet will generate a new encryption key, if the existing encryption key i Online: - + https://hpe-docs.gitbook.io/posh-hponeview/cmdlets/v9.10/security/save-ovappliancedataatrestencryptionkey @@ -82003,7 +81967,7 @@ Use this Cmdlet to save the created appliance backup files. Use the -SaveRemote Online: - + https://hpe-docs.gitbook.io/posh-hponeview/cmdlets/v9.10/appliance/save-ovbackup @@ -82220,7 +82184,7 @@ Save-OVServerProfile -InputObject $MyProfile Online: - + https://hpe-docs.gitbook.io/posh-hponeview/cmdlets/v9.10/servers/save-ovserverprofile @@ -82373,7 +82337,7 @@ Save-OVServerProfileTemplate -InputObject $MyProfileTemplate Online: - + https://hpe-docs.gitbook.io/posh-hponeview/cmdlets/v9.10/servers/save-ovserverprofiletemplate @@ -82597,7 +82561,7 @@ Save-OVServerProfileTemplate -InputObject $MyProfileTemplate Online: - + https://hpe-docs.gitbook.io/posh-hponeview/cmdlets/v9.10/appliance/search-ovassociations @@ -82814,7 +82778,7 @@ Save-OVServerProfileTemplate -InputObject $MyProfileTemplate Online: - + https://hpe-docs.gitbook.io/posh-hponeview/cmdlets/v9.10/appliance/search-ovindex @@ -83123,7 +83087,7 @@ Send-OVRequest $e.uri "PUT" $e -Appliance MyAppliance.domain.com Online: - + https://hpe-docs.gitbook.io/posh-hponeview/cmdlets/v9.10/library/send-ovrequest @@ -83320,7 +83284,7 @@ The IPv4 Subnet resource object to update. Online: - + https://hpe-docs.gitbook.io/posh-hponeview/cmdlets/v9.10/appliance/set-ovaddresspoolsubnet @@ -83599,7 +83563,7 @@ In order for an Administrator to change the status of an Alert, the Administrato Online: - + https://hpe-docs.gitbook.io/posh-hponeview/cmdlets/v9.10/appliance/set-ovalert @@ -83848,7 +83812,7 @@ Minimum required privileges: Infrastructure administrator Online: - + https://hpe-docs.gitbook.io/posh-hponeview/cmdlets/v9.10/appliance/set-ovapplianceauditlogforwarding @@ -84005,7 +83969,7 @@ Minimum required privileges: Infrastructure administrator Online: - + https://hpe-docs.gitbook.io/posh-hponeview/cmdlets/v9.10/appliance/set-ovappliancecurrentsecuritymode @@ -84227,7 +84191,7 @@ Default Value: ${Global:ConnectSessions} | ? Default Online: - + https://hpe-docs.gitbook.io/posh-hponeview/cmdlets/v9.10/appliance/set-ovappliancedatetime @@ -84368,15 +84332,15 @@ ConnectionID Name UserName AuthLoginDomain Default Conne about_Appliance_Connection_Permissions - + https://hpe-docs.gitbook.io/posh-hponeview/cmdlets/v9.10/library/set-ovappliancedefaultconnection [${Global:ConnectedSessions}] - + https://hpe-docs.gitbook.io/posh-hponeview/cmdlets/v9.10/library/set-ovappliancedefaultconnection Online: - + https://hpe-docs.gitbook.io/posh-hponeview/cmdlets/v9.10/library/set-ovappliancedefaultconnection @@ -84546,7 +84510,7 @@ The Appliance Global Setting object from Get-OVApplianceGlobalSetting. Online: - + https://hpe-docs.gitbook.io/posh-hponeview/cmdlets/v9.10/appliance/set-ovapplianceglobalsetting @@ -85160,7 +85124,7 @@ The Appliance Global Setting object from Get-OVApplianceGlobalSetting. Online: - + https://hpe-docs.gitbook.io/posh-hponeview/cmdlets/v9.10/appliance/set-ovappliancenetworkconfig @@ -85421,7 +85385,7 @@ The Appliance Global Setting object from Get-OVApplianceGlobalSetting. Online: - + https://hpe-docs.gitbook.io/posh-hponeview/cmdlets/v9.10/appliance/set-ovapplianceproxy @@ -85607,7 +85571,7 @@ Minimum required privileges: Infrastructure administrator Online: - + https://hpe-docs.gitbook.io/posh-hponeview/cmdlets/v9.10/appliance/set-ovappliancesecurityprotocol @@ -85722,7 +85686,7 @@ Minimum required privileges: Infrastructure administrator Online: - + https://hpe-docs.gitbook.io/posh-hponeview/cmdlets/v9.10/appliance/set-ovappliancesnmpv3engineid @@ -85958,7 +85922,7 @@ Default Value: ${Global:ConnectedSessions} | ? Default Online: - + https://hpe-docs.gitbook.io/posh-hpeoneview/cmdlets/v9.10/appliance/set-ovappliancestaticroute @@ -86403,7 +86367,7 @@ NOTE: If you specify multiple OID combinations and one is a super-set of another Online: - + https://hpe-docs.gitbook.io/posh-hponeview/cmdlets/v9.10/appliance/set-ovappliancetwofactorauthentication @@ -86865,7 +86829,7 @@ New-OVBackup Online: - + https://hpe-docs.gitbook.io/posh-hponeview/cmdlets/v9.10/appliance/set-ovautomaticbackupconfig @@ -87006,7 +86970,7 @@ Default Value: ${Global:ConnectedSessions} | ? Default Online: - + https://hpe-docs.gitbook.io/posh-hponeview/cmdlets/v9.10/library/set-ovcertificaterevocationinterval @@ -87341,7 +87305,7 @@ The user must have an infrastructure administrator privilege to register or upda Online: - + https://hpe-docs.gitbook.io/posh-hponeview/cmdlets/v9.10/cluster/set-ovclustermanager @@ -87798,7 +87762,7 @@ Set-OVComposerIlo -InputObject $ComposerAppliance -IPv4Address 10.16.1.103 -IPv4 Online: - + https://hpe-docs.gitbook.io/posh-hponeview/cmdlets/v9.10/appliance/set-ovcomposerilo @@ -88000,7 +87964,7 @@ Set-OVComputeOpsManagement -ActivationKey $ActivationKey Online: - + https://hpe-docs.gitbook.io/posh-hpeoneview/cmdlets/v9.10/appliance/set-ovcomputeopsmanagement @@ -88400,7 +88364,7 @@ New-OVDataCenter @NewDC2Params Online: - + https://hpe-docs.gitbook.io/posh-hponeview/cmdlets/v9.10/facilities/set-ovdatacenter @@ -88695,7 +88659,7 @@ Get-OVDataCenter -Name "LA DC 12" -ErrorAction Stop | Set-OVDataCenterRemoteSupp Online: - + https://hpe-docs.gitbook.io/posh-hponeview/cmdlets/v9.10/appliance/set-ovdatacenterremotesupport @@ -88905,7 +88869,7 @@ Get-OVDataCenter -Name "LA DC 12" -ErrorAction Stop | Set-OVDataCenterRemoteSupp Online: - + https://hpe-docs.gitbook.io/posh-hponeview/cmdlets/v9.10/servers/set-ovenclosure @@ -89109,7 +89073,7 @@ Get-OVDataCenter -Name "LA DC 12" -ErrorAction Stop | Set-OVDataCenterRemoteSupp Online: - + https://hpe-docs.gitbook.io/posh-hponeview/cmdlets/v9.10/servers/set-ovenclosureactiveflm @@ -89532,7 +89496,7 @@ end_marker' Get-OVEnclosureGroup -Name EG1 -ErrorAction Stop | Set-OVEnclosureGr Online: - + https://hpe-docs.gitbook.io/posh-hponeview/cmdlets/v9.10/servers/set-ovenclosuregroup @@ -89645,7 +89609,7 @@ end_marker' Get-OVEnclosureGroup -Name EG1 -ErrorAction Stop | Set-OVEnclosureGr Online: - + https://hpe-docs.gitbook.io/posh-hponeview/cmdlets/v9.10/appliance/set-oveulastatus @@ -90048,7 +90012,7 @@ Get-OVBaselineRepository -Name MyRepoName -ErrorAction Stop | Set-OVExternalRepo Online: - + https://hpe-docs.gitbook.io/posh-hponeview/cmdlets/v9.10/appliance/set-ovexternalrepository @@ -90446,7 +90410,7 @@ Get-OVApplianceUpdate -GetLatestUpdates Online: - + https://hpe-docs.gitbook.io/posh-hpeoneview/cmdlets/v9.10/appliance/set-ovfirmwarebundleupdateschedule @@ -90573,7 +90537,7 @@ Get-OVApplianceUpdate -GetLatestUpdates Online: - + https://hpe-docs.gitbook.io/posh-hponeview/cmdlets/v9.10/appliance/set-ovinitialpassword @@ -90827,7 +90791,7 @@ Default Value: ${Global:ConnectedSessions} | ? Default Online: - + https://hpe-docs.gitbook.io/posh-hpeoneview/cmdlets/v9.10/networking/set-ovinterconnectname @@ -90979,7 +90943,7 @@ Default Value: ${Global:ConnectedSessions} | ? Default Online: - + https://hpe-docs.gitbook.io/posh-hponeview/cmdlets/v9.10/appliance/set-ovinterconnectntpconfiguration @@ -91253,7 +91217,7 @@ Provide the Directory Name, URI or Object. If you want to set the Authenticatio Online: - + https://hpe-docs.gitbook.io/posh-hponeview/cmdlets/v9.10/security/set-ovldapdefaultdirectory @@ -91641,7 +91605,7 @@ Get-OVLdapGroup -Name $scopename | Set-OVLdapGroupRole -ScopePermissions $ScopeP Online: - + https://hpe-docs.gitbook.io/posh-hponeview/cmdlets/v9.10/security/set-ovldapgrouprole @@ -91953,7 +91917,7 @@ Allowed values: Online: - + https://hpe-docs.gitbook.io/posh-hponeview/cmdlets/v9.10/servers/set-ovlogicalenclosure @@ -92140,7 +92104,7 @@ Minimum required privileges: Infrastructure administrator, server administrator, Online: - + https://hpe-docs.gitbook.io/posh-hponeview/cmdlets/v9.10/storage/set-ovlogicaljbod @@ -92316,7 +92280,7 @@ Set-OVLoginMessage -Message $Message -Acknowledgment $true Online: - + https://hpe-docs.gitbook.io/posh-hponeview/cmdlets/v9.10/security/set-ovloginmessage @@ -92837,7 +92801,7 @@ Example: "{initiatorWwn}_{initiatorName}" Online: - + https://hpe-docs.gitbook.io/posh-hponeview/cmdlets/v9.10/storage/set-ovmanagedsan @@ -93332,7 +93296,7 @@ Get-OVNetwork -type Ethernet | Set-OVNetwork -Suffix $NewSuffix Online: - + https://hpe-docs.gitbook.io/posh-hponeview/cmdlets/v9.10/networking/set-ovnetwork @@ -93662,7 +93626,7 @@ Get-OVNetworkSet -Name NetSet-2 | Set-OVNetworkSet -RemoveNetwork $NetworksToRem Online: - + https://hpe-docs.gitbook.io/posh-hponeview/cmdlets/v9.10/networking/set-ovnetworkset @@ -93992,7 +93956,7 @@ Default Value: ${Global:ConnectedSessions} | ? Default Online: - + https://hpe-docs.gitbook.io/posh-hpeoneview/cmdlets/v9.10/facilities/set-ovrack @@ -94127,7 +94091,7 @@ Set-OVRackMemberLocation -InputObject $RackMember -ULocation ($RackMember.ULocat Online: - + https://hpe-docs.gitbook.io/posh-hponeview/cmdlets/v9.10/facilities/set-ovrackmemberlocation @@ -94548,7 +94512,7 @@ NOTE: Servers must be at iLO 2.1 firmware level or above to be enabled for remot Online: - + https://hpe-docs.gitbook.io/posh-hponeview/cmdlets/v9.10/appliance/set-ovremotesupport @@ -94721,7 +94685,7 @@ If no value is provided, both schedules will be modified. Online: - + https://hpe-docs.gitbook.io/posh-hponeview/cmdlets/v9.10/appliance/set-ovremotesupportdatacollectionschedule @@ -94948,7 +94912,7 @@ State or Provence. Online: - + https://hpe-docs.gitbook.io/posh-hponeview/cmdlets/v9.10/appliance/set-ovremotesupportdefaultsite @@ -95098,7 +95062,7 @@ Set-OVRemoteSupportPrimaryContact -InputObject $PrimaryContact Online: - + https://hpe-docs.gitbook.io/posh-hponeview/cmdlets/v9.10/appliance/set-ovremotesupportprimarycontact Set-OVRemoteSupportSecondaryContact @@ -95256,7 +95220,7 @@ Set-OVRemoteSupportSecondaryContact -InputObject $SecondaryContact Online: - + https://hpe-docs.gitbook.io/posh-hponeview/cmdlets/v9.10/appliance/set-ovremotesupportsecondarycontact Set-OVRemoteSupportPrimaryContact @@ -95644,7 +95608,7 @@ Get-OVEnclosure -Name Prod* | Set-OVRemoteSupportSetting -PrimaryContact $Primar Online: - + https://hpe-docs.gitbook.io/posh-hponeview/cmdlets/v9.10/appliance/set-ovremotesupportsetting @@ -95832,7 +95796,7 @@ Default value: 514 Online: - + https://hpe-docs.gitbook.io/posh-hponeview/cmdlets/v9.10/appliance/set-ovremotesyslog @@ -95983,7 +95947,7 @@ Minimum required privileges: Infrastructure administrator, Network administrato Online: - + https://hpe-docs.gitbook.io/posh-hponeview/cmdlets/v9.10/appliance/set-ovreservedvlanrange @@ -96140,7 +96104,7 @@ Set-OVResource $profile Online: - + https://hpe-docs.gitbook.io/posh-hponeview/cmdlets/v9.10/library/set-ovresource @@ -96398,7 +96362,7 @@ Default Value: ${Global:ConnectedSessions} | ? Default Online: - + https://hpe-docs.gitbook.io/posh-hpeoneview/cmdlets/v9.10/appliance/set-ovrotatemppasswordpolicy @@ -96867,7 +96831,7 @@ Default Value: ${Global:ConnectSessions} | ? Default Online: - + https://hpe-docs.gitbook.io/posh-hponeview/cmdlets/v9.10/storage/set-ovsanmanager @@ -97018,7 +96982,7 @@ Minimum required privileges: Server administrator Online: - + https://hpe-docs.gitbook.io/posh-hponeview/cmdlets/v9.10/servers/set-ovserverhardwaretype @@ -97170,7 +97134,7 @@ Default Value: ${Global:ConnectedSessions} | ? Default Online: - + https://hpe-docs.gitbook.io/posh-hponeview/cmdlets/v9.10/appliance/set-ovserverntpconfiguration @@ -97429,7 +97393,7 @@ Get-OVServer -Name MyServer* | Set-OVServerOneTimeBoot -Setting PXE -PowerOn Online: - + https://hpe-docs.gitbook.io/posh-hponeview/cmdlets/v9.10/servers/set-ovserveronetimeboot @@ -97594,7 +97558,7 @@ Get-OVServer -Name MyServer* | Set-OVServerOneTimeBoot -Setting PXE -PowerOn Online: - + https://hpe-docs.gitbook.io/posh-hponeview/cmdlets/v9.10/servers/set-ovserverpower @@ -97956,7 +97920,7 @@ Example: CPU status:"warning" or status:"critical" Online: - + https://hpe-docs.gitbook.io/posh-hponeview/cmdlets/v9.10/appliance/set-ovsmtpalertemailfilter @@ -98288,7 +98252,7 @@ Currently, HPE OneView does not support Secure SMTP, even though the TCP Port ca Online: - + https://hpe-docs.gitbook.io/posh-hponeview/cmdlets/v9.10/appliance/set-ovsmtpconfig @@ -98401,7 +98365,7 @@ Currently, HPE OneView does not support Secure SMTP, even though the TCP Port ca Online: - + https://hpe-docs.gitbook.io/posh-hponeview/cmdlets/v9.10/appliance/set-ovsnmpreadcommunity @@ -98580,7 +98544,7 @@ Minimum required privileges: Infrastructure administrator, Network administrato Online: - + https://hpe-docs.gitbook.io/posh-hponeview/cmdlets/v9.10/storage/set-ovstoragepool @@ -98869,7 +98833,7 @@ Default: Private Online: - + https://hpe-docs.gitbook.io/posh-hponeview/cmdlets/v9.10/storage/set-ovstoragevolume @@ -99641,7 +99605,7 @@ Include to change the provisioned type to Thin. Online: - + https://hpe-docs.gitbook.io/posh-hponeview/cmdlets/v9.10/storage/set-ovstoragevolumetemplate @@ -99798,7 +99762,7 @@ MyAppliance2.domain.com StorageVolumeTemplateRequired false Online: - + https://hpe-docs.gitbook.io/posh-hponeview/cmdlets/v9.10/storage/set-ovstoragevolumetemplatepolicy @@ -100385,7 +100349,7 @@ Get-OVLogicalInterconnectGroup -Name "My Production LIG" -ErrorAction Stop | Set Online: - + https://hpe-docs.gitbook.io/posh-hponeview/cmdlets/v9.10/networking/set-ovuplinkset @@ -100841,7 +100805,7 @@ Get-OVUser -Username Sally | Set-OVUser -Roles "Server administrator" -ScopePerm Online: - + https://hpe-docs.gitbook.io/posh-hponeview/cmdlets/v9.10/security/set-ovuser @@ -100957,7 +100921,7 @@ Default Value: ${Global:ConnectedSessions} | ? Default Online: - + https://hpe-docs.gitbook.io/posh-hponeview/cmdlets/v9.10/security/set-ovuserpassword @@ -101088,7 +101052,7 @@ Example: $roles = "Server administrator","Network administrator" Online: - + https://hpe-docs.gitbook.io/posh-hponeview/cmdlets/v9.10/security/set-ovuserrole @@ -101179,7 +101143,7 @@ Example: $roles = "Server administrator","Network administrator" Online: - + https://hpe-docs.gitbook.io/posh-hponeview/cmdlets/v9.10/security/show-ovactiveuser @@ -101327,7 +101291,7 @@ Show-OVApplianceSecurityModeCompatibilityReport -TargetSecurityMode $TargetSecur Online: - + https://hpe-docs.gitbook.io/posh-hponeview/cmdlets/v9.10/appliance/show-ovappliancesecuritymodecompatibilityreport @@ -101557,7 +101521,7 @@ Get-OVEnclosureGroup "Production EG" | Show-OVFirmwareReport -Baseline $Baseline Online: - + https://hpe-docs.gitbook.io/posh-hponeview/cmdlets/v9.10/servers/show-ovfirmwarereport @@ -101649,7 +101613,7 @@ Get-OVEnclosureGroup "Production EG" | Show-OVFirmwareReport -Baseline $Baseline Online: - + https://hpe-docs.gitbook.io/posh-hponeview/cmdlets/v9.10/cluster/show-ovhypervisorcluster @@ -101899,7 +101863,7 @@ Show-OVLdapGroups -u "Sarah Peterson" -p $password -d $Directory -GroupName "Adm Online: - + https://hpe-docs.gitbook.io/posh-hponeview/cmdlets/v9.10/security/show-ovldapgroups @@ -102135,7 +102099,7 @@ Encl1 interconnect 1 LAG 26 78:AC:C0:72:E5:D9 Learned VLAN100 30 Online: - + https://hpe-docs.gitbook.io/posh-hponeview/cmdlets/v9.10/networking/show-ovlogicalinterconnectmactable @@ -102416,7 +102380,7 @@ Show-OVPortStatistics $Interconnect Online: - + https://hpe-docs.gitbook.io/posh-hponeview/cmdlets/v9.10/networking/show-ovportstatistics @@ -102614,7 +102578,7 @@ hpov-tot2 10:00:F6:9F:5F:70:00:02 N_Port False SAN1_1 Node_1_8 Online: - + https://hpe-docs.gitbook.io/posh-hponeview/cmdlets/v9.10/storage/show-ovsanendpoint @@ -102723,7 +102687,7 @@ hpov-tot2 10:00:F6:9F:5F:70:00:02 N_Port False SAN1_1 Node_1_8 Online: - + https://hpe-docs.gitbook.io/posh-hponeview/cmdlets/v9.10/storage/show-ovstoragesystemperformancepolicy @@ -102780,7 +102744,7 @@ hpov-tot2 10:00:F6:9F:5F:70:00:02 N_Port False SAN1_1 Node_1_8 Online: - + https://hpe-docs.gitbook.io/posh-hponeview/cmdlets/v9.10/appliance/show-ovusersession @@ -102965,7 +102929,7 @@ NOTE: The temperature properties are displayed in degrees Celsius or Fahrenheit Online: - + https://hpe-docs.gitbook.io/posh-hponeview/cmdlets/v9.10/servers/show-ovutilization @@ -103116,7 +103080,7 @@ Default Value: ${Global:ConnectedSessions} | ? Default Online: - + https://hpe-docs.gitbook.io/posh-hponeview/cmdlets/v9.10/servers/start-ovenclosureappliance Get-OVEnclosure @@ -103223,7 +103187,7 @@ Default Value: ${Global:ConnectedSessions} | ? Default Online: - + https://hpe-docs.gitbook.io/posh-hponeview/cmdlets/v9.10/library/start-ovlibrarytrace @@ -103398,7 +103362,7 @@ Default Value: ${Global:ConnectedSessions} | ? Default Online: - + https://hpe-docs.gitbook.io/posh-hponeview/cmdlets/v9.10/appliance/start-ovremotesupportcollection @@ -103714,7 +103678,7 @@ Default Value: ${Global:ConnectedSessions} | ? Default Online: - + https://hpe-docs.gitbook.io/posh-hponeview/cmdlets/v9.10/servers/start-ovserver @@ -104073,7 +104037,7 @@ Stop-OVAppliance Online: - + https://hpe-docs.gitbook.io/posh-hponeview/cmdlets/v9.10/appliance/stop-ovappliance @@ -104150,7 +104114,7 @@ Stop-OVAppliance Online: - + https://hpe-docs.gitbook.io/posh-hponeview/cmdlets/v9.10/library/stop-ovlibrarytrace @@ -104558,7 +104522,7 @@ Stop-OVAppliance Online: - + https://hpe-docs.gitbook.io/posh-hponeview/cmdlets/v9.10/servers/stop-ovserver @@ -104650,7 +104614,7 @@ Minimum required privileges: Infrastructure administrator Online: - + https://hpe-docs.gitbook.io/posh-hponeview/cmdlets/v9.10/appliance/test-ovapplianceauditlogforwarding @@ -104815,7 +104779,7 @@ Minimum required privileges: Infrastructure administrator Online: - + https://hpe-docs.gitbook.io/posh-hponeview/cmdlets/v9.10/appliance/test-ovemailalert @@ -104972,7 +104936,7 @@ Default Value: ${Global:ConnectedSessions} | ? Default Online: - + https://hpe-docs.gitbook.io/posh-hponeview/cmdlets/v9.10/appliance/test-ovremotesupportevent @@ -105121,7 +105085,7 @@ Default Value: ${Global:ConnectedSessions} | ? Default Online: - + https://hpe-docs.gitbook.io/posh-hpeoneview/cmdlets/v9.10/appliance/unregister-ovremotesupportportalconnection @@ -105313,7 +105277,7 @@ Get-OVApplianceTrustedCertificate -CertificateAuthoritiesOnly -Name "DigiCert Gl Online: - + https://hpe-docs.gitbook.io/posh-hponeview/cmdlets/v9.10/appliance/update-ovappliancetrustedauthoritycrl @@ -105479,7 +105443,7 @@ Get-OVApplianceTrustedCertificate -CertificateAuthoritiesOnly -Name "DigiCert Gl Online: - + https://hpe-docs.gitbook.io/posh-hponeview/cmdlets/v9.10/cluster/update-ovclusternode @@ -105641,7 +105605,7 @@ Get-OVApplianceTrustedCertificate -CertificateAuthoritiesOnly -Name "DigiCert Gl Online: - + https://hpe-docs.gitbook.io/posh-hponeview/cmdlets/v9.10/cluster/update-ovclusterprofile @@ -106035,7 +105999,7 @@ Provide the Enclosure name or Object, or [System.Collections.ArrayList] of names Online: - + https://hpe-docs.gitbook.io/posh-hponeview/cmdlets/v9.10/servers/update-ovenclosure @@ -106245,7 +106209,7 @@ This Cmdlet supports refreshing an existing external repository. Use this Cmdle Online: - + https://hpe-docs.gitbook.io/posh-hponeview/cmdlets/v9.10/appliance/update-ovexternalrepository @@ -106598,7 +106562,7 @@ InternalNetworks <= Dev VLAN 103-A Default Online: - + https://hpe-docs.gitbook.io/posh-hponeview/cmdlets/v9.10/servers/update-ovlogicalenclosure @@ -106851,7 +106815,7 @@ InternalNetworks <= Dev VLAN 103-A Default Online: - + https://hpe-docs.gitbook.io/posh-hponeview/cmdlets/v9.10/networking/update-ovlogicalenclosurefirmware @@ -107236,7 +107200,7 @@ InternalNetworks <= Dev VLAN 103-A Default Online: - + https://hpe-docs.gitbook.io/posh-hponeview/cmdlets/v9.10/networking/update-ovlogicalinterconnect @@ -107448,7 +107412,7 @@ InternalNetworks <= Dev VLAN 103-A Default Online: - + https://hpe-docs.gitbook.io/posh-hponeview/cmdlets/v9.10/networking/update-ovlogicalswitch @@ -107702,7 +107666,7 @@ Force update the resource. Online: - + https://hpe-docs.gitbook.io/posh-hponeview/cmdlets/v9.10/servers/update-ovrackmanager @@ -107840,7 +107804,7 @@ Update-OVRemoteSupportEntitlement -InputObject $Enclusre Online: - + https://hpe-docs.gitbook.io/posh-hponeview/cmdlets/v9.10/appliance/update-ovremotesupportentitlement @@ -107998,7 +107962,7 @@ Update-OVRemoteSupportEntitlement -InputObject $Enclusre Online: - + https://hpe-docs.gitbook.io/posh-hponeview/cmdlets/v9.10/storage/update-ovsanmanager @@ -108375,7 +108339,7 @@ Update-OVRemoteSupportEntitlement -InputObject $Enclusre Online: - + https://hpe-docs.gitbook.io/posh-hponeview/cmdlets/v9.10/servers/update-ovserver @@ -108461,6 +108425,13 @@ $Name = "HPE Service Pack For ProLiant OneView 2014 11 13" SwitchParameter + + PreviewOnly + + + + SwitchParameter + Async @@ -108572,6 +108543,17 @@ $Name = "HPE Service Pack For ProLiant OneView 2014 11 13" + + PreviewOnly + + + + SwitchParameter + + SwitchParameter + + + ReinstallFirmware @@ -108697,7 +108679,7 @@ if ($Baseline.Supplements.Count -gt 0) { Online: - + https://hpe-docs.gitbook.io/posh-hpeoneview/cmdlets/v9.10/servers/update-ovserverfirmware @@ -108851,7 +108833,7 @@ $Tasks = $Servers | Update-OVServerHardwareLicenseIntent -async Online: - + https://hpe-docs.gitbook.io/posh-hponeview/cmdlets/v9.10/servers/update-ovserverhardwarelicenseintent @@ -109407,7 +109389,7 @@ Minimum required permissions: (Update from Template) Infrastructure administrato Online: - + https://hpe-docs.gitbook.io/posh-hponeview/cmdlets/v9.10/servers/update-ovserverprofile @@ -109532,7 +109514,7 @@ Minimum required permissions: (Update from Template) Infrastructure administrato Online: - + https://hpe-docs.gitbook.io/posh-hponeview/cmdlets/v9.10/storage/update-ovstoragepool @@ -109690,7 +109672,7 @@ Minimum required permissions: (Update from Template) Infrastructure administrato Online: - + https://hpe-docs.gitbook.io/posh-hponeview/cmdlets/v9.10/storage/update-ovstoragesystem @@ -109820,7 +109802,7 @@ This script will process a user created script to find references to the origina Online: - + https://hpe-docs.gitbook.io/posh-hponeview/cmdlets/v9.10/library/update-ovuserscript @@ -109918,7 +109900,7 @@ When the appliance successfully starts, this function will return. Online: - + https://hpe-docs.gitbook.io/posh-hponeview/cmdlets/v9.10/library/wait-ovappliancestart @@ -110101,7 +110083,7 @@ $taskResults = New-OVServerProfile -name "Profile 1" -server $svr | Wait-OVTaskC Online: - + https://hpe-docs.gitbook.io/posh-hponeview/cmdlets/v9.10/appliance/wait-ovtaskcomplete @@ -110258,9 +110240,9 @@ Once the task enters the running state, the Cmdlet will return the task resource Online: - + https://hpe-docs.gitbook.io/posh-hponeview/cmdlets/v9.10/appliance/wait-ovtaskstart - + \ No newline at end of file diff --git a/en-US/about_HPEOneView.910.help.txt b/en-US/about_HPEOneView.910.help.txt index 89aad3e..fd42d05 100644 --- a/en-US/about_HPEOneView.910.help.txt +++ b/en-US/about_HPEOneView.910.help.txt @@ -32,6 +32,13 @@ SHORT DESCRIPTION WHAT'S NEW + Release 9.10.4012.2256 + + -- Added Compliance Preview back to Update-OVServerFirmware with -PreviewOnly + switch parameter. + -- Fixed incorrect handling of server profile resource (assigned and unassigned) + with Update-OVServerFirmware. + Release 9.10.4006.1748 -- Initial HPE OneView 9.10 library release. diff --git a/lib/HPEOneView_Classes.dll b/lib/HPEOneView_Classes.dll index bb0e42c..5692f95 100644 Binary files a/lib/HPEOneView_Classes.dll and b/lib/HPEOneView_Classes.dll differ