共用方式為


Set-SmaRunbookConfiguration

修改 Runbook 的組態。

語法

Set-SmaRunbookConfiguration
   [-LogDebug <Boolean>]
   [-LogVerbose <Boolean>]
   [-LogProgress <Boolean>]
   [-Description <String>]
   [-RunbookWorker <String>]
   -WebServiceEndpoint <String>
   [-Port <Int32>]
   [-AuthenticationType <String>]
   [-Credential <PSCredential>]
   [<CommonParameters>]
Set-SmaRunbookConfiguration
   -Id <String>
   [-LogDebug <Boolean>]
   [-LogVerbose <Boolean>]
   [-LogProgress <Boolean>]
   [-Description <String>]
   [-RunbookWorker <String>]
   -WebServiceEndpoint <String>
   [-Port <Int32>]
   [-AuthenticationType <String>]
   [-Credential <PSCredential>]
   [<CommonParameters>]
Set-SmaRunbookConfiguration
   -Name <String>
   [-LogDebug <Boolean>]
   [-LogVerbose <Boolean>]
   [-LogProgress <Boolean>]
   [-Description <String>]
   [-RunbookWorker <String>]
   -WebServiceEndpoint <String>
   [-Port <Int32>]
   [-AuthenticationType <String>]
   [-Credential <PSCredential>]
   [<CommonParameters>]

Description

Set-SmaRunbookConfiguration Cmdlet 會修改 Runbook 的組態。

範例

範例 1:更新 Runbook 組態

PS C:\>Set-SmaRunbookConfiguration -Name "Runbook01" -WebServiceEndpoint "https://localhost" -Description "First runbook" -LogDebug $True -LogProgress $True -LogVerbose $True

此命令會將描述新增至名為 Runbook01 的 Runbook,並啟用所有記錄選項。

參數

-AuthenticationType

指定驗證類型。 有效值為:

  • 基本
  • 窗戶

此參數的預設值為 Windows。 如果您使用基本身份驗證,則必須使用 Credential 參數來提供認證。

類型:String
接受的值:Basic, Windows
Position:Named
預設值:None
必要:False
接受管線輸入:False
接受萬用字元:False

-Credential

指定與服務管理自動化 (SMA) Web 服務的連線 PSCredential 物件。 若要取得認證物件,請使用 Get-Credential Cmdlet。 如需詳細資訊,請輸入 Get-Help Get-Credential

類型:PSCredential
Position:Named
預設值:None
必要:False
接受管線輸入:False
接受萬用字元:False

-Description

提供 Runbook 的描述。

類型:String
Position:Named
預設值:None
必要:False
接受管線輸入:False
接受萬用字元:False

-Id

指定 Runbook 的識別碼。

類型:String
別名:RunbookId
Position:Named
預設值:None
必要:True
接受管線輸入:True
接受萬用字元:False

-LogDebug

指出此 Cmdlet 是否記錄偵錯輸出。

類型:Boolean
Position:Named
預設值:None
必要:False
接受管線輸入:False
接受萬用字元:False

-LogProgress

指出此 Cmdlet 是否記錄進度輸出。

類型:Boolean
Position:Named
預設值:None
必要:False
接受管線輸入:False
接受萬用字元:False

-LogVerbose

指出此 Cmdlet 是否記錄詳細信息輸出。

類型:Boolean
Position:Named
預設值:None
必要:False
接受管線輸入:False
接受萬用字元:False

-Name

指定 Runbook 的名稱。

類型:String
別名:RunbookName
Position:Named
預設值:None
必要:True
接受管線輸入:False
接受萬用字元:False

-Port

指定 SMA Web 服務的埠號碼。

類型:Int32
Position:Named
預設值:None
必要:False
接受管線輸入:False
接受萬用字元:False

-RunbookWorker

指定 Runbook 的指定 Runbook 背景工作角色。 您可以在目前的 SMA 部署中指定現有的 Runbook 背景工作角色。 使用 Get-SmaRunbookWorkerDeployment Cmdlet 取得目前 SMA 部署中的 Runbook 背景工作角色清單。

類型:String
Position:Named
預設值:None
必要:False
接受管線輸入:False
接受萬用字元:False

-WebServiceEndpoint

將端點指定為 SMA Web 服務的 URL。 您必須包含通訊協定,例如 http:// 或 https://。

類型:String
Position:Named
預設值:None
必要:True
接受管線輸入:False
接受萬用字元:False