This is one of the many posts to follow on my experiments with the new Application Model introduced in Configuration Manager 2012. In this post will use PowerShell to create a new application, deployment type (from a MSI) and then finally deploy it to a machine. So without further delay..... Let's get to it Create the Application using New-CMApplication cmdlet: New-CMApplication -Name "Quest Active Roles Managment Shell for AD" -Description "Quest Snapin for AD Admins (64-bit only)" -SoftwareVersion "1.51" -AutoInstall $true The above will create a Application Object in ConfigMgr which can be used in Task Sequences as well (-AutoInstall $true ). Now let's open the Console and have a peek at the properties of the Application created. The Set-CMApplication Cmdlet can also be used to set property on the Application Object later. Let's create a new App Category and then add the above application to it. New-CMCatego
Infra + Dev's ramblings