Please ensure Javascript is enabled for purposes of website accessibility
Powered by Zoomin Software. For more details please contactZoomin

PI Powershell

GetPITuningParameter Class

  • Last UpdatedDec 15, 2025
  • 3 minute read
GetPITuningParameter Class

Get PI Data Archive tuning parameters for a PI Data Archive

The Get-PITuningParameter cmdlet gets tuning parameters from a specified PI Data Archive.

The connection parameter specifies which connection to a PI Data Archive to use.

Inheritance Hierarchy

SystemObject
  InternalCommand
    Cmdlet
      PSCmdlet
        OSIsoft.PowerShellOSICmdletBase
          OSIsoft.PowerShellGetPITuningParameter

Namespace:  OSIsoft.PowerShell
Assembly:  OSIsoft.PowerShell (in OSIsoft.PowerShell.dll) Version: 2.2.3.0 (2.2.3.952)

Syntax

[CmdletAttribute("Get", "PITuningParameter", SupportsShouldProcess = true)]
public class GetPITuningParameter : OSICmdletBase
<CmdletAttribute("Get", "PITuningParameter", SupportsShouldProcess := true)>
Public Class GetPITuningParameter
	Inherits OSICmdletBase

Dim instance As GetPITuningParameter
[CmdletAttribute(L"Get", L"PITuningParameter", SupportsShouldProcess = true)]
public ref class GetPITuningParameter : public OSICmdletBase
[<CmdletAttribute("Get", "PITuningParameter", SupportsShouldProcess = true)>]
type GetPITuningParameter =  
    class
        inherit OSICmdletBase
    end

The GetPITuningParameter type exposes the following members.

Constructors

  NameDescription
Public method
GetPITuningParameter

Properties

  NameDescription
Public property
Connection

Connection to a PI Data Archive from which to get the tuning parameter(s)

Public property
Name

Name of the PI Data Archive tuning parameter to get

Examples

Get-PITuningParameter Server_AuthenticationPolicy -Connection $con

Where:

$con = Connect-PIDataArchive -PIDataArchiveMachineName "PISRV1"

Gets the Server_AuthenticationPolicy tuning parameter from the "PISRV1" PI Data Archive server.

Examples

Get-PITuningParameter -Name * -Connection $con

Where:

$con = Connect-PIDataArchive -PIDataArchiveMachineName "PISRV1"

Gets all tuning parameters from the "PISRV1" PI Data Archive server.

Examples

Get-PITuningParameter -Name * -Connection $con | Select-Object -Property name,takeseffect,description

Where:

$con = Connect-PIDataArchive -PIDataArchiveMachineName "PISRV1"

Creates a list of all tuning parameters and their associated description, as well as when the parameter takes effect. This can be helpful for reference or for help when looking for settings or configuration information for a parameter.

See Also

TitleResults for “How to create a CRG?”Also Available in