/Configuration Manager/SCCM2012IntegrationPack/Objects/ModifyTaskSequencePackage.cs

# · C# · 97 lines · 83 code · 12 blank · 2 comment · 4 complexity · 66fcbf8945179aa9f490bd491c5a89be MD5 · raw file

  1. using System;
  2. using System.Collections.Generic;
  3. using System.Text;
  4. using Microsoft.SystemCenter.Orchestrator.Integration;
  5. using System.Management;
  6. using System.Management.Instrumentation;
  7. using SCCM2012Interop;
  8. using Microsoft.ConfigurationManagement;
  9. using Microsoft.ConfigurationManagement.ManagementProvider;
  10. using Microsoft.ConfigurationManagement.ManagementProvider.WqlQueryEngine;
  11. namespace SCCM2012IntegrationPack
  12. {
  13. [Activity("Modify SCCM Task Sequence Package")]
  14. public class ModifyTaskSequencePackage : IActivity
  15. {
  16. private ConnectionCredentials settings;
  17. private String userName = String.Empty;
  18. private String password = String.Empty;
  19. private String SCCMServer = String.Empty;
  20. private int ObjCount = 0;
  21. [ActivityConfiguration]
  22. public ConnectionCredentials Settings
  23. {
  24. get { return settings; }
  25. set { settings = value; }
  26. }
  27. public void Design(IActivityDesigner designer)
  28. {
  29. designer.AddInput("Package ID").WithDefaultValue("ABC00000");
  30. //Setup WQL Connection and WMI Management Scope
  31. WqlConnectionManager connection = CM2012Interop.connectSCCMServer(settings.SCCMSERVER, settings.UserName, settings.Password);
  32. using(connection)
  33. {
  34. String[] propertyNameChoices = CM2012Interop.getSCCMObjectPropertyNames(connection, "SMS_TaskSequencePackage");
  35. String[] propertyTypeChoices = new String[] { "StringValue", "DateTimeValue", "IntegerValue", "BooleanValue" };
  36. foreach (String propertyName in propertyNameChoices)
  37. {
  38. designer.AddInput(propertyName + " : Property Type").WithListBrowser(propertyTypeChoices).WithDefaultValue("StringValue").NotRequired();
  39. designer.AddInput(propertyName + " : Property Value").NotRequired();
  40. }
  41. designer.AddCorellatedData(typeof(taskSequencePackage));
  42. designer.AddOutput("Number of Task Sequence Packages");
  43. }
  44. }
  45. public void Execute(IActivityRequest request, IActivityResponse response)
  46. {
  47. SCCMServer = settings.SCCMSERVER;
  48. userName = settings.UserName;
  49. password = settings.Password;
  50. String objID = request.Inputs["Package ID"].AsString();
  51. //Setup WQL Connection and WMI Management Scope
  52. WqlConnectionManager connection = CM2012Interop.connectSCCMServer(SCCMServer, userName, password);
  53. try
  54. {
  55. String[] propertyNameChoices = CM2012Interop.getSCCMObjectPropertyNames(connection, "SMS_TaskSequencePackage");
  56. foreach (String propertyName in propertyNameChoices)
  57. {
  58. if ((request.Inputs.Contains(propertyName + " : Property Type")) && (request.Inputs.Contains(propertyName + " : Property Value")))
  59. {
  60. CM2012Interop.modifySCCMTaskSequencePackage(connection, objID, request.Inputs[(propertyName + " : Property Type")].AsString(), propertyName, request.Inputs[(propertyName + " : Property Value")].AsString());
  61. }
  62. }
  63. IResultObject col = CM2012Interop.getSCCMTaskSequencePackage(connection, "PackageID LIKE '" + objID + "'");
  64. if (col != null)
  65. {
  66. response.WithFiltering().PublishRange(getObjects(col));
  67. }
  68. response.Publish("Number of Task Sequence Packages", ObjCount);
  69. }
  70. finally
  71. {
  72. connection.Close();
  73. connection.Dispose();
  74. }
  75. }
  76. private IEnumerable<taskSequencePackage> getObjects(IResultObject objList)
  77. {
  78. foreach (IResultObject obj in objList)
  79. {
  80. ObjCount++;
  81. yield return new taskSequencePackage(obj);
  82. }
  83. }
  84. }
  85. }