New-SCApplicationProfile

Creates an application profile.

Description

The New-SCApplicationProfile cmdlet creates an application profile. Application profiles define the applications that will be installed during virtual machine deployment and servicing.

For more information about New-SCApplicationProfile, type: "Get-Help New-SCApplicationProfile -online".

Parameters

Name

Required? true
Accept Pipeline Input? false
Position? 0
Specifies the name of a VMM object.

ApplicationProfile

Required? false
Accept Pipeline Input? false
Position? named
Specifies an application profile object.

CompatibilityType

Required? false
Accept Pipeline Input? false
Position? named
Specifies the deployment types with which an application profile is compatible. Valid values are: General, SQLApplicationHost.

Description

Required? false
Accept Pipeline Input? false
Position? named
States a description for the specified object.

EnforceCompatibilityType

Required? false
Accept Pipeline Input? false
Position? named
Indicates that artifacts from an application profile which is not compatible with the value provided for the CompatibilityType parameter are removed.

JobVariable

Required? false
Accept Pipeline Input? false
Position? named
Specifies that job progress is tracked and stored in the variable named by this parameter. 

Owner

Required? false
Accept Pipeline Input? false
Position? named
Specifies the owner of a VMM object in the form of a valid domain user account.

Example format: -Owner "Contoso\ReneeLo"
Example format: -Owner "ReneeLo@Contoso"

PROTipID

Required? false
Accept Pipeline Input? false
Position? named
Specifies the ID of the PRO tip that triggered this action. This allows for auditing of PRO tips.

RunAsynchronously

Required? false
Accept Pipeline Input? false
Position? named
Indicates that the job runs asynchronously so that control returns to the command shell immediately. 

Tag

Required? false
Accept Pipeline Input? false
Position? named
Specifies a word or phrase to associate with an object so that you can search for all objects with the specified set of tags. You can search for a subset of tags, or you can search for the full set of tags.

UserRole

Required? false
Accept Pipeline Input? false
Position? named
Specifies a user role object.

VMMServer

Required? false
Accept Pipeline Input? true (ByValue)
Position? named
Specifies a VMM server object.

Examples

1: Create an application profile.
PS C:\> $AppProfile = New-SCApplicationProfile -Name "SvcWebAppProfile01" -Owner "Contoso\Katarina"
PS C:\> $AppProfile
The first command creates an application profile object named SvcWebAppProfile01 and stores the object in the $AppProfile variable.

The second displays information about the application profile stored in $AppProfile to the user.
2: Create an application profile by cloning an existing profile.
PS C:\> $AppProfile = Get-SCApplicationProfile -Name "SvcWebAppProfile01"
PS C:\> $AppProfile02 = New-SCApplicationProfile -Name "SvcWebAppProfile02" -ApplicationProfile $AppProfile
The first command gets the application profile object named SvcWebAppProfile01 and stores the object in the $AppProfile variable.

The second command creates an application profile named SvcWebAppProfile02 by cloning the application profile stored in $AppProfile (SvcWebAppProfile01).

See Also