共用方式為


Get-SCScriptCommand

取得應用程式配置檔、應用程式部署或主機配置檔的所有腳本命令。

語法

Get-SCScriptCommand
   -ApplicationProfile <ApplicationProfile>
   [-VMMServer <ServerConnection>]
   [<CommonParameters>]
Get-SCScriptCommand
   -ApplicationDeployment <ApplicationDeployment>
   [-VMMServer <ServerConnection>]
   [<CommonParameters>]
Get-SCScriptCommand
   -PhysicalComputerProfile <PhysicalComputerProfile>
   [-VMMServer <ServerConnection>]
   [<CommonParameters>]

Description

Get-SCScriptCommand Cmdlet 會取得應用程式設定檔、應用程式部署或主機配置檔的所有腳本命令。

範例

範例 1:取得與應用程式配置檔相關聯的所有腳本命令

PS C:\> $AppProfile = Get-SCApplicationProfile -Name "SvcWebAppProfile01"
PS C:\> $ScriptCommand = Get-SCScriptCommand -ApplicationProfile $AppProfile
PS C:\> $ScriptCommand

第一個命令會取得名為 SvcWebAppProfile01 的應用程式配置檔物件,並將物件儲存在$AppProfile變數中。

第二個命令會取得儲存在 $AppProfile 之應用程式配置檔物件的所有腳本命令,並將物件儲存在$ScriptCommand陣列中。

最後一個命令會顯示儲存在$ScriptCommand陣列中之所有腳本命令對象的相關信息給使用者。

範例 2:取得與應用程式部署相關聯的所有腳本命令

PS C:\> $AppProfile = Get-SCApplicationProfile -Name "SvcWebAppProfile01"
PS C:\> $AppDeployment = Get-SCApplicationDeployment -ApplicationProfile $AppProfile
PS C:\> $ScriptCommand = Get-SCScriptCommand -ApplicationDeployment $AppDeployment

第一個命令會取得名為 SvcWebAppProfile01 的應用程式配置檔物件,並將物件儲存在$AppProfile變數中。

第二個命令會取得儲存在 $AppProfile 之應用程式配置檔的應用程式部署物件,並將物件儲存在$AppDeployment變數中。

最後一個命令會取得與儲存在 $AppDeployment 的應用程式部署對象相關聯的所有腳本命令,並將腳本命令儲存在$ScriptCommand中。

參數

-ApplicationDeployment

指定應用程式部署物件。

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

-ApplicationProfile

指定應用程式設定檔物件。

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

-PhysicalComputerProfile

指定用來將作業系統部署至計算機的配置檔。

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

-VMMServer

指定 VMM 伺服器物件。

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

輸出

ScriptCommand

此 Cmdlet 會傳回 ScriptCommand 物件。