Skip to content

Instantly share code, notes, and snippets.

@Robert-LTH
Created December 6, 2019 22:31
Show Gist options
  • Save Robert-LTH/46a9de8edaeddf3d9f8c06952ed272d5 to your computer and use it in GitHub Desktop.
Save Robert-LTH/46a9de8edaeddf3d9f8c06952ed272d5 to your computer and use it in GitHub Desktop.
In the file "C:\Program Files (x86)\Microsoft Configuration Manager\AdminConsole\XmlStorage\ConsoleRoot\ManagementClassDescriptions.xml", locate the line where the declaration of SMS_DeploymentType starts (in SCCM 1906 its at line 7771). Should look like:
<ManagementClassDescription Name="SMS_DeploymentType" SuperclassName="SMS_ConfigurationItemBaseClass">
Once you find it look for '<Properties>' and below that line you add:
<ManagementClassPropertyDescription Name="CIVersion" Type="Integer" />
In my file i added it a little bit further down and now my file looks like this:
<ManagementClassPropertyDescription Name="PriorityInLatestApp" Type="Integer" />
<ManagementClassPropertyDescription Name="CIVersion" Type="Integer" />
<ManagementClassPropertyDescription Name="Technology" ColumnWidth="120" Type="External">
After the file has been saved and the admin console has been restarted you will see the CIVersion of the deployment type when looking at the "Deployment Types"-tab of an application in the admin console.
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment