Get-SCApplicationDeployment

Get-SCApplicationDeployment

Gets the applications that have been added to an application profile.

構文

Parameter Set: AP
Get-SCApplicationDeployment -ApplicationProfile <ApplicationProfile> [-Name <String> ] [-VMMServer <ServerConnection> ] [ <CommonParameters>]

Parameter Set: ID
Get-SCApplicationDeployment -ID <Guid]> [-VMMServer <ServerConnection> ] [ <CommonParameters>]

詳細説明

The Get-SCApplicationDeployment cmdlet gets the applications that have been added to an application profile.

パラメーター

-ApplicationProfile<ApplicationProfile>

Specifies an application profile object.

エイリアス

none

必須?

true

位置は?

named

既定値

none

パイプライン入力を許可する

True (ByValue)

ワイルドカード文字を許可する

false

-ID<Guid]>

Specifies the numerical identifier as a globally unique identifier (GUID) for a specific object.

エイリアス

none

必須?

true

位置は?

named

既定値

none

パイプライン入力を許可する

false

ワイルドカード文字を許可する

false

-Name<String>

Specifies the name of a VMM object.

エイリアス

none

必須?

false

位置は?

named

既定値

none

パイプライン入力を許可する

false

ワイルドカード文字を許可する

false

-VMMServer<ServerConnection>

Specifies a VMM server object.

エイリアス

none

必須?

false

位置は?

named

既定値

none

パイプライン入力を許可する

True (ByValue)

ワイルドカード文字を許可する

false

<CommonParameters>

このコマンドレットは次の共通パラメーターをサポートします。-Verbose、-Debug、-ErrorAction、-ErrorVariable、-OutBuffer、-OutVariable.詳細については、以下を参照してください。 about_CommonParameters (https://go.microsoft.com/fwlink/p/?LinkID=113216)。

入力

入力型は、コマンドレットにパイプできるオブジェクトの型です。

出力

出力型は、コマンドレットによって生成されるオブジェクトの型です。

  • ApplicationDeployment

Example Example 1: Get all application deployments associated with a specific application profile.

The first command gets the application profile object named SvcWebAppProfile01, and then stores the object in the $AppProfile variable.

The second command gets all of the application deployment objects for the application profile stored in $AppProfile, and then stores the objects in the $AppDeployment array.

The last command displays the application deployment objects stored in $AppDeployment to the user.

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

関連トピック

Add-SCApplicationDeployment

Remove-SCApplicationDeployment

Set-SCApplicationDeployment