共用方式為


Get-SCApplicationProfile

取得應用程式配置檔。

語法

Get-SCApplicationProfile
   [-VMMServer <ServerConnection>]
   [-All]
   [<CommonParameters>]
Get-SCApplicationProfile
   [-VMMServer <ServerConnection>]
   -Name <String>
   [<CommonParameters>]
Get-SCApplicationProfile
   [-VMMServer <ServerConnection>]
   -VMTemplate <Template>
   [<CommonParameters>]
Get-SCApplicationProfile
   [-VMMServer <ServerConnection>]
   -ApplicationHostTemplate <ApplicationHostTemplate>
   [<CommonParameters>]
Get-SCApplicationProfile
   [-VMMServer <ServerConnection>]
   [-ID <Guid>]
   [<CommonParameters>]

Description

Get-SCApplicationProfile Cmdlet 會取得應用程式配置檔。 您可以使用 NameID等參數取得個別設定檔,或使用 All 參數取得 Virtual Machine Manager (VMM) 中的所有應用程式配置檔。

範例

範例 1:依其名稱取得應用程式配置檔

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

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

第二個命令會顯示儲存在使用者$AppProfile的應用程式配置檔相關信息。

範例 2:取得所有應用程式配置檔

PS C:\> $AppProfiles = Get-SCApplicationProfile -All
PS C:\> $AppProfiles[0]

第一個命令會取得所有應用程式配置檔物件,並將其儲存在$AppProfiles陣列中。

第二個命令只會向用戶顯示$AppProfiles陣列中第一個對象的相關信息。

參數

-All

指出這個 Cmdlet 會取得與父對象無關的所有次級物件。 例如,命令 Get-SCVirtualDiskDrive -All 會取得所有虛擬磁碟驅動器物件,而不論每個虛擬磁碟驅動器對象相關聯的虛擬機物件或範本對象為何。

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

-ApplicationHostTemplate

指定應用程式主機範本物件。

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

-ID

將數值識別子指定為特定物件的全域唯一標識碼或 GUID。

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

-Name

指定 VMM 物件的名稱。

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

-VMMServer

指定 VMM 伺服器物件。

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

-VMTemplate

指定用來建立虛擬機的 VMM 範本物件。

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

輸出

ApplicationProfile

此 Cmdlet 會傳回 ApplicationProfile 物件。