Monday, February 14, 2011

Boot order with WMI in C#

This segment of code lets you enumerate the boot.ini file.  It'll tell you the OS's and the loading order for a remote operating system using WMI (Windows Instrumentation). The fist segment is the WMI class initialization and root classes, and the second part is the enumeration part.



namespace ROOT.WMI
{
    using System;
    using System.ComponentModel;
    using System.Management;
    using System.Collections;
    using System.Globalization;


    public class BcdObject : System.ComponentModel.Component
    {


        private static string CreatedWmiNamespace = "root\\WMI";


        private static string CreatedClassName = "BcdObject";


        private static System.Management.ManagementScope statMgmtScope = null;


        private ManagementSystemProperties PrivateSystemProperties;


        private System.Management.ManagementObject PrivateLateBoundObject;


        private bool AutoCommitProp;


        private System.Management.ManagementBaseObject embeddedObj;


        private System.Management.ManagementBaseObject curObj;


        private bool isEmbedded;


        public BcdObject()
        {
            this.InitializeObject(null, null, null);
        }


        public BcdObject(string keyId, string keyStoreFilePath)
        {
            this.InitializeObject(null, new System.Management.ManagementPath(BcdObject.ConstructPath(keyId, keyStoreFilePath)), null);
        }


        public BcdObject(System.Management.ManagementScope mgmtScope, string keyId, string keyStoreFilePath)
        {
            this.InitializeObject(((System.Management.ManagementScope)(mgmtScope)), new System.Management.ManagementPath(BcdObject.ConstructPath(keyId, keyStoreFilePath)), null);
        }


        public BcdObject(System.Management.ManagementPath path, System.Management.ObjectGetOptions getOptions)
        {
            this.InitializeObject(null, path, getOptions);
        }


        public BcdObject(System.Management.ManagementScope mgmtScope, System.Management.ManagementPath path)
        {
            this.InitializeObject(mgmtScope, path, null);
        }


        public BcdObject(System.Management.ManagementPath path)
        {
            this.InitializeObject(null, path, null);
        }


        public BcdObject(System.Management.ManagementScope mgmtScope, System.Management.ManagementPath path, System.Management.ObjectGetOptions getOptions)
        {
            this.InitializeObject(mgmtScope, path, getOptions);
        }


        public BcdObject(System.Management.ManagementObject theObject)
        {
            Initialize();
            if ((CheckIfProperClass(theObject) == true))
            {
                PrivateLateBoundObject = theObject;
                PrivateSystemProperties = new ManagementSystemProperties(PrivateLateBoundObject);
                curObj = PrivateLateBoundObject;
            }
            else
            {
                throw new System.ArgumentException("Class name does not match.");
            }
        }


        public BcdObject(System.Management.ManagementBaseObject theObject)
        {
            Initialize();
            if ((CheckIfProperClass(theObject) == true))
            {
                embeddedObj = theObject;
                PrivateSystemProperties = new ManagementSystemProperties(theObject);
                curObj = embeddedObj;
                isEmbedded = true;
            }
            else
            {
                throw new System.ArgumentException("Class name does not match.");
            }
        }


        [Browsable(true)]
        [DesignerSerializationVisibility(DesignerSerializationVisibility.Hidden)]
        public string OriginatingNamespace
        {
            get
            {
                return "root\\WMI";
            }
        }


        [Browsable(true)]
        [DesignerSerializationVisibility(DesignerSerializationVisibility.Hidden)]
        public string ManagementClassName
        {
            get
            {
                string strRet = CreatedClassName;
                if ((curObj != null))
                {
                    if ((curObj.ClassPath != null))
                    {
                        strRet = ((string)(curObj["__CLASS"]));
                        if (((strRet == null)
                                    || (strRet == string.Empty)))
                        {
                            strRet = CreatedClassName;
                        }
                    }
                }
                return strRet;
            }
        }


        [Browsable(true)]
        [DesignerSerializationVisibility(DesignerSerializationVisibility.Hidden)]
        public ManagementSystemProperties SystemProperties
        {
            get
            {
                return PrivateSystemProperties;
            }
        }


        [Browsable(false)]
        [DesignerSerializationVisibility(DesignerSerializationVisibility.Hidden)]
        public System.Management.ManagementBaseObject LateBoundObject
        {
            get
            {
                return curObj;
            }
        }


        [Browsable(true)]
        [DesignerSerializationVisibility(DesignerSerializationVisibility.Hidden)]
        public System.Management.ManagementScope Scope
        {
            get
            {
                if ((isEmbedded == false))
                {
                    return PrivateLateBoundObject.Scope;
                }
                else
                {
                    return null;
                }
            }
            set
            {
                if ((isEmbedded == false))
                {
                    PrivateLateBoundObject.Scope = value;
                }
            }
        }


        [Browsable(false)]
        [DesignerSerializationVisibility(DesignerSerializationVisibility.Hidden)]
        public bool AutoCommit
        {
            get
            {
                return AutoCommitProp;
            }
            set
            {
                AutoCommitProp = value;
            }
        }


        [Browsable(true)]
        public System.Management.ManagementPath Path
        {
            get
            {
                if ((isEmbedded == false))
                {
                    return PrivateLateBoundObject.Path;
                }
                else
                {
                    return null;
                }
            }
            set
            {
                if ((isEmbedded == false))
                {
                    if ((CheckIfProperClass(null, value, null) != true))
                    {
                        throw new System.ArgumentException("Class name does not match.");
                    }
                    PrivateLateBoundObject.Path = value;
                }
            }
        }


        [Browsable(true)]
        [DesignerSerializationVisibility(DesignerSerializationVisibility.Hidden)]
        public static System.Management.ManagementScope StaticScope
        {
            get
            {
                return statMgmtScope;
            }
            set
            {
                statMgmtScope = value;
            }
        }


        [Browsable(true)]
        [DesignerSerializationVisibility(DesignerSerializationVisibility.Hidden)]
        [Description("This is the guid id of this object, unique to this store.")]
        public string Id
        {
            get
            {
                return ((string)(curObj["Id"]));
            }
        }


        [Browsable(true)]
        [DesignerSerializationVisibility(DesignerSerializationVisibility.Hidden)]
        [Description("This is the file path of the store that this object belongs to.")]
        public string StoreFilePath
        {
            get
            {
                return ((string)(curObj["StoreFilePath"]));
            }
        }


        [Browsable(false)]
        [DesignerSerializationVisibility(DesignerSerializationVisibility.Hidden)]
        public bool IsTypeNull
        {
            get
            {
                if ((curObj["Type"] == null))
                {
                    return true;
                }
                else
                {
                    return false;
                }
            }
        }


        [Browsable(true)]
        [DesignerSerializationVisibility(DesignerSerializationVisibility.Hidden)]
        [Description("The upper 4 bits (28-31) represent the object type. The meaning of the lower 28 b" +
            "its (0-27) is dependent on the object type.")]
        [TypeConverter(typeof(WMIValueTypeConverter))]
        public uint Type
        {
            get
            {
                if ((curObj["Type"] == null))
                {
                    return System.Convert.ToUInt32(0);
                }
                return ((uint)(curObj["Type"]));
            }
        }


        private bool CheckIfProperClass(System.Management.ManagementScope mgmtScope, System.Management.ManagementPath path, System.Management.ObjectGetOptions OptionsParam)
        {
            if (((path != null)
                        && (string.Compare(path.ClassName, this.ManagementClassName, true, System.Globalization.CultureInfo.InvariantCulture) == 0)))
            {
                return true;
            }
            else
            {
                return CheckIfProperClass(new System.Management.ManagementObject(mgmtScope, path, OptionsParam));
            }
        }


        private bool CheckIfProperClass(System.Management.ManagementBaseObject theObj)
        {
            if (((theObj != null)
                        && (string.Compare(((string)(theObj["__CLASS"])), this.ManagementClassName, true, System.Globalization.CultureInfo.InvariantCulture) == 0)))
            {
                return true;
            }
            else
            {
                System.Array parentClasses = ((System.Array)(theObj["__DERIVATION"]));
                if ((parentClasses != null))
                {
                    int count = 0;
                    for (count = 0; (count < parentClasses.Length); count = (count + 1))
                    {
                        if ((string.Compare(((string)(parentClasses.GetValue(count))), this.ManagementClassName, true, System.Globalization.CultureInfo.InvariantCulture) == 0))
                        {
                            return true;
                        }
                    }
                }
            }
            return false;
        }


        private bool ShouldSerializeType()
        {
            if ((this.IsTypeNull == false))
            {
                return true;
            }
            return false;
        }


        [Browsable(true)]
        public void CommitObject()
        {
            if ((isEmbedded == false))
            {
                PrivateLateBoundObject.Put();
            }
        }


        [Browsable(true)]
        public void CommitObject(System.Management.PutOptions putOptions)
        {
            if ((isEmbedded == false))
            {
                PrivateLateBoundObject.Put(putOptions);
            }
        }


        private void Initialize()
        {
            AutoCommitProp = true;
            isEmbedded = false;
        }


        private static string ConstructPath(string keyId, string keyStoreFilePath)
        {
            string strPath = "root\\WMI:BcdObject";
            strPath = string.Concat(strPath, string.Concat(".Id=", string.Concat("\"", string.Concat(keyId, "\""))));
            strPath = string.Concat(strPath, string.Concat(",StoreFilePath=", string.Concat("\"", string.Concat(keyStoreFilePath, "\""))));
            return strPath;
        }


        private void InitializeObject(System.Management.ManagementScope mgmtScope, System.Management.ManagementPath path, System.Management.ObjectGetOptions getOptions)
        {
            Initialize();
            if ((path != null))
            {
                if ((CheckIfProperClass(mgmtScope, path, getOptions) != true))
                {
                    throw new System.ArgumentException("Class name does not match.");
                }
            }
            PrivateLateBoundObject = new System.Management.ManagementObject(mgmtScope, path, getOptions);
            PrivateSystemProperties = new ManagementSystemProperties(PrivateLateBoundObject);
            curObj = PrivateLateBoundObject;
        }


        public static BcdObjectCollection GetInstances()
        {
            return GetInstances(null, null, null);
        }


        public static BcdObjectCollection GetInstances(string condition)
        {
            return GetInstances(null, condition, null);
        }


        public static BcdObjectCollection GetInstances(System.String[] selectedProperties)
        {
            return GetInstances(null, null, selectedProperties);
        }


        public static BcdObjectCollection GetInstances(string condition, System.String[] selectedProperties)
        {
            return GetInstances(null, condition, selectedProperties);
        }


        public static BcdObjectCollection GetInstances(System.Management.ManagementScope mgmtScope, System.Management.EnumerationOptions enumOptions)
        {
            if ((mgmtScope == null))
            {
                if ((statMgmtScope == null))
                {
                    mgmtScope = new System.Management.ManagementScope();
                    mgmtScope.Path.NamespacePath = "root\\WMI";
                }
                else
                {
                    mgmtScope = statMgmtScope;
                }
            }
            System.Management.ManagementPath pathObj = new System.Management.ManagementPath();
            pathObj.ClassName = "BcdObject";
            pathObj.NamespacePath = "root\\WMI";
            System.Management.ManagementClass clsObject = new System.Management.ManagementClass(mgmtScope, pathObj, null);
            if ((enumOptions == null))
            {
                enumOptions = new System.Management.EnumerationOptions();
                enumOptions.EnsureLocatable = true;
            }
            return new BcdObjectCollection(clsObject.GetInstances(enumOptions));
        }


        public static BcdObjectCollection GetInstances(System.Management.ManagementScope mgmtScope, string condition)
        {
            return GetInstances(mgmtScope, condition, null);
        }


        public static BcdObjectCollection GetInstances(System.Management.ManagementScope mgmtScope, System.String[] selectedProperties)
        {
            return GetInstances(mgmtScope, null, selectedProperties);
        }


        public static BcdObjectCollection GetInstances(System.Management.ManagementScope mgmtScope, string condition, System.String[] selectedProperties)
        {
            if ((mgmtScope == null))
            {
                if ((statMgmtScope == null))
                {
                    mgmtScope = new System.Management.ManagementScope();
                    mgmtScope.Path.NamespacePath = "root\\WMI";
                }
                else
                {
                    mgmtScope = statMgmtScope;
                }
            }
            System.Management.ManagementObjectSearcher ObjectSearcher = new System.Management.ManagementObjectSearcher(mgmtScope, new SelectQuery("BcdObject", condition, selectedProperties));
            System.Management.EnumerationOptions enumOptions = new System.Management.EnumerationOptions();
            enumOptions.EnsureLocatable = true;
            ObjectSearcher.Options = enumOptions;
            return new BcdObjectCollection(ObjectSearcher.Get());
        }


        [Browsable(true)]
        public static BcdObject CreateInstance()
        {
            System.Management.ManagementScope mgmtScope = null;
            if ((statMgmtScope == null))
            {
                mgmtScope = new System.Management.ManagementScope();
                mgmtScope.Path.NamespacePath = CreatedWmiNamespace;
            }
            else
            {
                mgmtScope = statMgmtScope;
            }
            System.Management.ManagementPath mgmtPath = new System.Management.ManagementPath(CreatedClassName);
            System.Management.ManagementClass tmpMgmtClass = new System.Management.ManagementClass(mgmtScope, mgmtPath, null);
            return new BcdObject(tmpMgmtClass.CreateInstance());
        }


        [Browsable(true)]
        public void Delete()
        {
            PrivateLateBoundObject.Delete();
        }


        public bool DeleteElement(uint Type)
        {
            if ((isEmbedded == false))
            {
                System.Management.ManagementBaseObject inParams = null;
                inParams = PrivateLateBoundObject.GetMethodParameters("DeleteElement");
                inParams["Type"] = ((System.UInt32)(Type));
                System.Management.ManagementBaseObject outParams = PrivateLateBoundObject.InvokeMethod("DeleteElement", inParams, null);
                return System.Convert.ToBoolean(outParams.Properties["ReturnValue"].Value);
            }
            else
            {
                return System.Convert.ToBoolean(0);
            }
        }


        public bool EnumerateElements(out System.Management.ManagementBaseObject[] Elements)
        {
            if ((isEmbedded == false))
            {
                System.Management.ManagementBaseObject inParams = null;
                System.Management.ManagementBaseObject outParams = PrivateLateBoundObject.InvokeMethod("EnumerateElements", inParams, null);
                Elements = ((System.Management.ManagementBaseObject[])(outParams.Properties["Elements"].Value));
                return System.Convert.ToBoolean(outParams.Properties["ReturnValue"].Value);
            }
            else
            {
                Elements = null;
                return System.Convert.ToBoolean(0);
            }
        }


        public bool EnumerateElementTypes(out uint[] Types)
        {
            if ((isEmbedded == false))
            {
                System.Management.ManagementBaseObject inParams = null;
                System.Management.ManagementBaseObject outParams = PrivateLateBoundObject.InvokeMethod("EnumerateElementTypes", inParams, null);
                Types = ((uint[])(outParams.Properties["Types"].Value));
                return System.Convert.ToBoolean(outParams.Properties["ReturnValue"].Value);
            }
            else
            {
                Types = null;
                return System.Convert.ToBoolean(0);
            }
        }


        public bool GetElement(uint Type, out System.Management.ManagementBaseObject Element)
        {
            if ((isEmbedded == false))
            {
                System.Management.ManagementBaseObject inParams = null;
                inParams = PrivateLateBoundObject.GetMethodParameters("GetElement");
                inParams["Type"] = ((System.UInt32)(Type));
                System.Management.ManagementBaseObject outParams = PrivateLateBoundObject.InvokeMethod("GetElement", inParams, null);
                Element = ((System.Management.ManagementBaseObject)(outParams.Properties["Element"].Value));
                return System.Convert.ToBoolean(outParams.Properties["ReturnValue"].Value);
            }
            else
            {
                Element = null;
                return System.Convert.ToBoolean(0);
            }
        }


        public bool SetBooleanElement(bool Boolean, uint Type)
        {
            if ((isEmbedded == false))
            {
                System.Management.ManagementBaseObject inParams = null;
                inParams = PrivateLateBoundObject.GetMethodParameters("SetBooleanElement");
                inParams["Boolean"] = ((System.Boolean)(Boolean));
                inParams["Type"] = ((System.UInt32)(Type));
                System.Management.ManagementBaseObject outParams = PrivateLateBoundObject.InvokeMethod("SetBooleanElement", inParams, null);
                return System.Convert.ToBoolean(outParams.Properties["ReturnValue"].Value);
            }
            else
            {
                return System.Convert.ToBoolean(0);
            }
        }


        public bool SetDeviceElement(string AdditionalOptions, uint DeviceType, uint Type)
        {
            if ((isEmbedded == false))
            {
                System.Management.ManagementBaseObject inParams = null;
                inParams = PrivateLateBoundObject.GetMethodParameters("SetDeviceElement");
                inParams["AdditionalOptions"] = ((System.String)(AdditionalOptions));
                inParams["DeviceType"] = ((System.UInt32)(DeviceType));
                inParams["Type"] = ((System.UInt32)(Type));
                System.Management.ManagementBaseObject outParams = PrivateLateBoundObject.InvokeMethod("SetDeviceElement", inParams, null);
                return System.Convert.ToBoolean(outParams.Properties["ReturnValue"].Value);
            }
            else
            {
                return System.Convert.ToBoolean(0);
            }
        }


        public bool SetFileDeviceElement(string AdditionalOptions, uint DeviceType, string ParentAdditionalOptions, uint ParentDeviceType, string ParentPath, string Path, uint Type)
        {
            if ((isEmbedded == false))
            {
                System.Management.ManagementBaseObject inParams = null;
                inParams = PrivateLateBoundObject.GetMethodParameters("SetFileDeviceElement");
                inParams["AdditionalOptions"] = ((System.String)(AdditionalOptions));
                inParams["DeviceType"] = ((System.UInt32)(DeviceType));
                inParams["ParentAdditionalOptions"] = ((System.String)(ParentAdditionalOptions));
                inParams["ParentDeviceType"] = ((System.UInt32)(ParentDeviceType));
                inParams["ParentPath"] = ((System.String)(ParentPath));
                inParams["Path"] = ((System.String)(Path));
                inParams["Type"] = ((System.UInt32)(Type));
                System.Management.ManagementBaseObject outParams = PrivateLateBoundObject.InvokeMethod("SetFileDeviceElement", inParams, null);
                return System.Convert.ToBoolean(outParams.Properties["ReturnValue"].Value);
            }
            else
            {
                return System.Convert.ToBoolean(0);
            }
        }


        public bool SetIntegerElement(ulong Integer, uint Type)
        {
            if ((isEmbedded == false))
            {
                System.Management.ManagementBaseObject inParams = null;
                inParams = PrivateLateBoundObject.GetMethodParameters("SetIntegerElement");
                inParams["Integer"] = ((System.UInt64)(Integer));
                inParams["Type"] = ((System.UInt32)(Type));
                System.Management.ManagementBaseObject outParams = PrivateLateBoundObject.InvokeMethod("SetIntegerElement", inParams, null);
                return System.Convert.ToBoolean(outParams.Properties["ReturnValue"].Value);
            }
            else
            {
                return System.Convert.ToBoolean(0);
            }
        }


        public bool SetIntegerListElement(ulong[] Integers, uint Type)
        {
            if ((isEmbedded == false))
            {
                System.Management.ManagementBaseObject inParams = null;
                inParams = PrivateLateBoundObject.GetMethodParameters("SetIntegerListElement");
                inParams["Integers"] = ((ulong[])(Integers));
                inParams["Type"] = ((System.UInt32)(Type));
                System.Management.ManagementBaseObject outParams = PrivateLateBoundObject.InvokeMethod("SetIntegerListElement", inParams, null);
                return System.Convert.ToBoolean(outParams.Properties["ReturnValue"].Value);
            }
            else
            {
                return System.Convert.ToBoolean(0);
            }
        }


        public bool SetObjectElement(string Id, uint Type)
        {
            if ((isEmbedded == false))
            {
                System.Management.ManagementBaseObject inParams = null;
                inParams = PrivateLateBoundObject.GetMethodParameters("SetObjectElement");
                inParams["Id"] = ((System.String)(Id));
                inParams["Type"] = ((System.UInt32)(Type));
                System.Management.ManagementBaseObject outParams = PrivateLateBoundObject.InvokeMethod("SetObjectElement", inParams, null);
                return System.Convert.ToBoolean(outParams.Properties["ReturnValue"].Value);
            }
            else
            {
                return System.Convert.ToBoolean(0);
            }
        }


        public bool SetObjectListElement(string[] Ids, uint Type)
        {
            if ((isEmbedded == false))
            {
                System.Management.ManagementBaseObject inParams = null;
                inParams = PrivateLateBoundObject.GetMethodParameters("SetObjectListElement");
                inParams["Ids"] = ((string[])(Ids));
                inParams["Type"] = ((System.UInt32)(Type));
                System.Management.ManagementBaseObject outParams = PrivateLateBoundObject.InvokeMethod("SetObjectListElement", inParams, null);
                return System.Convert.ToBoolean(outParams.Properties["ReturnValue"].Value);
            }
            else
            {
                return System.Convert.ToBoolean(0);
            }
        }


        public bool SetPartitionDeviceElement(string AdditionalOptions, uint DeviceType, string Path, uint Type)
        {
            if ((isEmbedded == false))
            {
                System.Management.ManagementBaseObject inParams = null;
                inParams = PrivateLateBoundObject.GetMethodParameters("SetPartitionDeviceElement");
                inParams["AdditionalOptions"] = ((System.String)(AdditionalOptions));
                inParams["DeviceType"] = ((System.UInt32)(DeviceType));
                inParams["Path"] = ((System.String)(Path));
                inParams["Type"] = ((System.UInt32)(Type));
                System.Management.ManagementBaseObject outParams = PrivateLateBoundObject.InvokeMethod("SetPartitionDeviceElement", inParams, null);
                return System.Convert.ToBoolean(outParams.Properties["ReturnValue"].Value);
            }
            else
            {
                return System.Convert.ToBoolean(0);
            }
        }


        public bool SetStringElement(string String, uint Type)
        {
            if ((isEmbedded == false))
            {
                System.Management.ManagementBaseObject inParams = null;
                inParams = PrivateLateBoundObject.GetMethodParameters("SetStringElement");
                inParams["String"] = ((System.String)(String));
                inParams["Type"] = ((System.UInt32)(Type));
                System.Management.ManagementBaseObject outParams = PrivateLateBoundObject.InvokeMethod("SetStringElement", inParams, null);
                return System.Convert.ToBoolean(outParams.Properties["ReturnValue"].Value);
            }
            else
            {
                return System.Convert.ToBoolean(0);
            }
        }


        public class BcdObjectCollection : object, ICollection
        {


            private ManagementObjectCollection privColObj;


            public BcdObjectCollection(ManagementObjectCollection objCollection)
            {
                privColObj = objCollection;
            }


            public virtual int Count
            {
                get
                {
                    return privColObj.Count;
                }
            }


            public virtual bool IsSynchronized
            {
                get
                {
                    return privColObj.IsSynchronized;
                }
            }


            public virtual object SyncRoot
            {
                get
                {
                    return this;
                }
            }


            public virtual void CopyTo(System.Array array, int index)
            {
                privColObj.CopyTo(array, index);
                int nCtr;
                for (nCtr = 0; (nCtr < array.Length); nCtr = (nCtr + 1))
                {
                    array.SetValue(new BcdObject(((System.Management.ManagementObject)(array.GetValue(nCtr)))), nCtr);
                }
            }


            public virtual System.Collections.IEnumerator GetEnumerator()
            {
                return new BcdObjectEnumerator(privColObj.GetEnumerator());
            }


            public class BcdObjectEnumerator : object, System.Collections.IEnumerator
            {


                private ManagementObjectCollection.ManagementObjectEnumerator privObjEnum;


                public BcdObjectEnumerator(ManagementObjectCollection.ManagementObjectEnumerator objEnum)
                {
                    privObjEnum = objEnum;
                }


                public virtual object Current
                {
                    get
                    {
                        return new BcdObject(((System.Management.ManagementObject)(privObjEnum.Current)));
                    }
                }


                public virtual bool MoveNext()
                {
                    return privObjEnum.MoveNext();
                }


                public virtual void Reset()
                {
                    privObjEnum.Reset();
                }
            }
        }


        // TypeConverter to handle null values for ValueType properties
        public class WMIValueTypeConverter : TypeConverter
        {


            private TypeConverter baseConverter;


            private System.Type baseType;


            public WMIValueTypeConverter(System.Type inBaseType)
            {
                baseConverter = TypeDescriptor.GetConverter(inBaseType);
                baseType = inBaseType;
            }


            public override bool CanConvertFrom(System.ComponentModel.ITypeDescriptorContext context, System.Type srcType)
            {
                return baseConverter.CanConvertFrom(context, srcType);
            }


            public override bool CanConvertTo(System.ComponentModel.ITypeDescriptorContext context, System.Type destinationType)
            {
                return baseConverter.CanConvertTo(context, destinationType);
            }


            public override object ConvertFrom(System.ComponentModel.ITypeDescriptorContext context, System.Globalization.CultureInfo culture, object value)
            {
                return baseConverter.ConvertFrom(context, culture, value);
            }


            public override object CreateInstance(System.ComponentModel.ITypeDescriptorContext context, System.Collections.IDictionary dictionary)
            {
                return baseConverter.CreateInstance(context, dictionary);
            }


            public override bool GetCreateInstanceSupported(System.ComponentModel.ITypeDescriptorContext context)
            {
                return baseConverter.GetCreateInstanceSupported(context);
            }


            public override PropertyDescriptorCollection GetProperties(System.ComponentModel.ITypeDescriptorContext context, object value, System.Attribute[] attributeVar)
            {
                return baseConverter.GetProperties(context, value, attributeVar);
            }


            public override bool GetPropertiesSupported(System.ComponentModel.ITypeDescriptorContext context)
            {
                return baseConverter.GetPropertiesSupported(context);
            }


            public override System.ComponentModel.TypeConverter.StandardValuesCollection GetStandardValues(System.ComponentModel.ITypeDescriptorContext context)
            {
                return baseConverter.GetStandardValues(context);
            }


            public override bool GetStandardValuesExclusive(System.ComponentModel.ITypeDescriptorContext context)
            {
                return baseConverter.GetStandardValuesExclusive(context);
            }


            public override bool GetStandardValuesSupported(System.ComponentModel.ITypeDescriptorContext context)
            {
                return baseConverter.GetStandardValuesSupported(context);
            }


            public override object ConvertTo(System.ComponentModel.ITypeDescriptorContext context, System.Globalization.CultureInfo culture, object value, System.Type destinationType)
            {
                if ((baseType.BaseType == typeof(System.Enum)))
                {
                    if ((value.GetType() == destinationType))
                    {
                        return value;
                    }
                    if ((((value == null)
                                && (context != null))
                                && (context.PropertyDescriptor.ShouldSerializeValue(context.Instance) == false)))
                    {
                        return "NULL_ENUM_VALUE";
                    }
                    return baseConverter.ConvertTo(context, culture, value, destinationType);
                }
                if (((baseType == typeof(bool))
                            && (baseType.BaseType == typeof(System.ValueType))))
                {
                    if ((((value == null)
                                && (context != null))
                                && (context.PropertyDescriptor.ShouldSerializeValue(context.Instance) == false)))
                    {
                        return "";
                    }
                    return baseConverter.ConvertTo(context, culture, value, destinationType);
                }
                if (((context != null)
                            && (context.PropertyDescriptor.ShouldSerializeValue(context.Instance) == false)))
                {
                    return "";
                }
                return baseConverter.ConvertTo(context, culture, value, destinationType);
            }
        }


        // Embedded class to represent WMI system Properties.
        [TypeConverter(typeof(System.ComponentModel.ExpandableObjectConverter))]
        public class ManagementSystemProperties
        {


            private System.Management.ManagementBaseObject PrivateLateBoundObject;


            public ManagementSystemProperties(System.Management.ManagementBaseObject ManagedObject)
            {
                PrivateLateBoundObject = ManagedObject;
            }


            [Browsable(true)]
            public int GENUS
            {
                get
                {
                    return ((int)(PrivateLateBoundObject["__GENUS"]));
                }
            }


            [Browsable(true)]
            public string CLASS
            {
                get
                {
                    return ((string)(PrivateLateBoundObject["__CLASS"]));
                }
            }


            [Browsable(true)]
            public string SUPERCLASS
            {
                get
                {
                    return ((string)(PrivateLateBoundObject["__SUPERCLASS"]));
                }
            }


            [Browsable(true)]
            public string DYNASTY
            {
                get
                {
                    return ((string)(PrivateLateBoundObject["__DYNASTY"]));
                }
            }


            [Browsable(true)]
            public string RELPATH
            {
                get
                {
                    return ((string)(PrivateLateBoundObject["__RELPATH"]));
                }
            }


            [Browsable(true)]
            public int PROPERTY_COUNT
            {
                get
                {
                    return ((int)(PrivateLateBoundObject["__PROPERTY_COUNT"]));
                }
            }


            [Browsable(true)]
            public string[] DERIVATION
            {
                get
                {
                    return ((string[])(PrivateLateBoundObject["__DERIVATION"]));
                }
            }


            [Browsable(true)]
            public string SERVER
            {
                get
                {
                    return ((string)(PrivateLateBoundObject["__SERVER"]));
                }
            }


            [Browsable(true)]
            public string NAMESPACE
            {
                get
                {
                    return ((string)(PrivateLateBoundObject["__NAMESPACE"]));
                }
            }


            [Browsable(true)]
            public string PATH
            {
                get
                {
                    return ((string)(PrivateLateBoundObject["__PATH"]));
                }
            }
        }
    }
}

Label1.Text = "";
                    if (txtPassword.Text.Length < 2 || txtUsername.Text.Length < 2)
                    {
                        this.Label1.Style["text-align"] = "left";
                        Label1.ForeColor = Color.Maroon;
                        Label1.Text = "Please enter username and/or password. ";
                    }
                    else
                    {
                        string remoteMachine = txtServer.Text;

                        ConnectionOptions co = new ConnectionOptions();
                        co.Username = txtUsername.Text;
                        co.Password = txtPassword.Text;
                        System.Net.IPHostEntry h =
                    System.Net.Dns.GetHostEntry(System.Net.Dns.GetHostName());
                        string IPAddress = h.AddressList.GetValue(0).ToString();
                        string lm = System.Net.Dns.GetHostName().ToString();

                        Label1.ForeColor = Color.Black;
                        co.Impersonation = ImpersonationLevel.Impersonate;
                        co.EnablePrivileges = true;
                        co.Authentication = AuthenticationLevel.PacketPrivacy;
                        Label1.ForeColor = Color.Black;

                        ConnectionOptions connOptions = new ConnectionOptions();
                        connOptions.Impersonation = ImpersonationLevel.Impersonate;
                        connOptions.EnablePrivileges = true;

                        try
                        {
                            ManagementScope oMs = new ManagementScope("\\\\" + remoteMachine + "\\root\\wmi", co);

                            ROOT.WMI.BcdObject systemObject = new ROOT.WMI.BcdObject(oMs,
                            "{9dea862c-5cdd-4e70-acc1-f32b344d4795}", "");
                            ManagementBaseObject mboOut;
                            bool success = systemObject.GetElement((uint)
                                BCDConstants.BcdBootMgrElementTypes.BcdBootMgrObjectList_DisplayOrder,
                                 out mboOut);

                            if (success)
                            {
                                string[] osIdList = (string[])mboOut.GetPropertyValue("Ids");
                                // LOOP FOR ALL OS Ids (GUID)
                                Label1.Text = "<b>Operating System Boot Order:</b><br />";
                                Label1.Text += "_________________________________<br />";
                               
                                foreach (string osGuid in osIdList)
                                {
                                    ROOT.WMI.BcdObject osObj = new ROOT.WMI.BcdObject(oMs, osGuid, "");
                                    // GET DESCRIPTION STRING
                                      success = osObj.GetElement((uint)
                               BCDConstants.BcdLibraryElementTypes.BcdLibraryString_Description,
                               out mboOut);

                                    if (success)
                                    {
                                        Label1.Text += mboOut.GetPropertyValue("String").ToString() + "<br />";
                                    }
                                    this.Label1.Style["text-align"] = "left";
                        
                                }
                            }    
                        }
                        catch
                        { }
                    }

No comments:

Post a Comment

Generating "Always On Top" NSWindow in macOS across all detected displays

Also: Using UIKit & Cocoa Frameworks using Objective-C In m acOS or OS X , written in either Objective-C or Swift  Langues, you m...