<?xml version="1.0"?><?xml-stylesheet type="text/xsl" href="/rss.xsl"?><rss version="2.0"><channel><title>linq2wmi Work Item Rss Feed</title><link>http://www.codeplex.com/linq2wmi/WorkItem/List.aspx</link><description>linq2wmi Work Item Rss Description</description><item><title>Created Issue: I am trying to consume wmi.core (.net 3.5) in my project(.net 4.0), getting error related to Linq "LogicalBinaryExpression" [22729]</title><link>http://linq2wmi.codeplex.com/workitem/22729</link><description>while querying visitors doesnt have LogicalBinaryExpression implemented in 4.0. since it is giving error. it is workin fine in 3.5 .net framework. but if i upgrade to 4.0 its not working. please provide me solution.&lt;br /&gt;find the attachemnet.&lt;br /&gt;consoleapplication is running becuase it is in 3.5 framwork.&lt;br /&gt;but test project is not running becuase it is in 4.0 framwork&lt;br /&gt;for both the projects wmi.core is 3.5 framwork only. how can i use wmi.core for my 4.0 project.&lt;br /&gt;</description><author>venkatbommina</author><pubDate>Thu, 10 May 2012 13:04:29 GMT</pubDate><guid isPermaLink="false">Created Issue: I am trying to consume wmi.core (.net 3.5) in my project(.net 4.0), getting error related to Linq "LogicalBinaryExpression" [22729] 20120510010429P</guid></item><item><title>Created Feature: Non-default namespace classes [19618]</title><link>http://linq2wmi.codeplex.com/workitem/19618</link><description>Hi, first - thanks for this nice project.&lt;br /&gt;&lt;br /&gt;I have a need to access non standard &amp;#40;aka not root&amp;#92;cimv2&amp;#41; wmi namespaces. I modified a copy of the code to be able to handle this. For reference the only changes I had to make are&amp;#58;&lt;br /&gt;&lt;br /&gt;Arguments.cs &amp;#40;adding&amp;#41;&lt;br /&gt;&lt;br /&gt; &lt;br /&gt;&lt;br /&gt;&lt;br /&gt;private string _wmiNs &amp;#61; &amp;#34;root&amp;#92;&amp;#92;cimv2&amp;#34;&amp;#59;&lt;br /&gt;&lt;br /&gt;&amp;#91;Argument&amp;#40;&amp;#34;wmins&amp;#34;, HelpText &amp;#61; &amp;#34;WMI namespace for class for&amp;#33;&amp;#34;&amp;#41;&amp;#93;&lt;br /&gt;        public string WmiNs&lt;br /&gt;        &amp;#123;&lt;br /&gt;            get &amp;#123; return _wmiNs&amp;#59; &amp;#125;&lt;br /&gt;            set &amp;#123; _wmiNs &amp;#61; value&amp;#59; &amp;#125;&lt;br /&gt;        &amp;#125;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt; &lt;br /&gt;&lt;br /&gt;WmiObjectQuery.cs &amp;#40;changes&amp;#41;&lt;br /&gt;&lt;br /&gt;public ManagementObject GetMetaInformation&amp;#40;string name, string nameSpace&amp;#41;&lt;br /&gt;        &amp;#123;&lt;br /&gt;            ManagementObject value &amp;#61; null&amp;#59;&lt;br /&gt;            ManagementScope scope &amp;#61; new ManagementScope&amp;#40;&amp;#64;&amp;#34;&amp;#92;&amp;#92;localhost&amp;#92;&amp;#34; &amp;#43; nameSpace&amp;#41;&amp;#59;&lt;br /&gt;&lt;br /&gt;            ManagementPath path &amp;#61; new ManagementPath&amp;#40;name&amp;#41;&amp;#59;&lt;br /&gt;            ManagementClass management &amp;#61; new ManagementClass&amp;#40;scope, path, null&amp;#41;&amp;#59;&lt;br /&gt;   &lt;br /&gt;            foreach &amp;#40;ManagementObject child in management.GetInstances&amp;#40;&amp;#41;&amp;#41;&lt;br /&gt;            &amp;#123;            &lt;br /&gt;                value &amp;#61; child&amp;#59;&lt;br /&gt;                break&amp;#59;&lt;br /&gt;            &amp;#125;&lt;br /&gt;            management.Dispose&amp;#40;&amp;#41;&amp;#59;&lt;br /&gt;            return value&amp;#59;&lt;br /&gt;        &amp;#125;&amp;#91;Update&amp;#58;&amp;#93; forgot to add an example. Querying the WMI objects for BizTalk would look like this&amp;#58;  LinqToWmi.ClassGenerator.exe &amp;#47;wmi&amp;#58;MSBTS_HostInstance &amp;#47;wmins&amp;#58;root&amp;#92;MicrosoftBizTalkServer&lt;br /&gt;</description><author>hype8912</author><pubDate>Sat, 08 Jan 2011 00:23:59 GMT</pubDate><guid isPermaLink="false">Created Feature: Non-default namespace classes [19618] 20110108122359A</guid></item><item><title>Created Feature: How to update linq to wmi for SubmitChange()? [19617]</title><link>http://linq2wmi.codeplex.com/workitem/19617</link><description>I want to change my ipaddress with linq to wmi,but I do not know how to update linq to wmi for SubmitChange.&lt;br /&gt;WmiContext context &amp;#61; new WmiContext&amp;#40;&amp;#64;&amp;#34;&amp;#92;&amp;#92;.&amp;#34;&amp;#41;&amp;#59;&lt;br /&gt;&amp;#160;&amp;#160;&amp;#160; var ipaddress &amp;#61; from ip in context.Source&amp;#60;Win32_NetworkAdapterConfiguration&amp;#62;&amp;#40;&amp;#41; select ip&amp;#59;&lt;br /&gt;&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160; foreach &amp;#40;Win32_NetworkAdapterConfiguration ip in ipaddress&amp;#41;&lt;br /&gt;&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160; &amp;#123;&lt;br /&gt;&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160; if &amp;#40;ip.IPAddress &amp;#33;&amp;#61; null&amp;#41;&lt;br /&gt;&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160; &amp;#123;&lt;br /&gt;&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160; ip.IPAddress.SetValue&amp;#40;&amp;#34;192.168.8.20&amp;#34;, 0&amp;#41;&amp;#59;&lt;br /&gt;&lt;br /&gt;&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160; &amp;#47;&amp;#47;how to SubmitChange&amp;#63;&lt;br /&gt;&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160; &amp;#125;&lt;br /&gt;&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160; &amp;#125;&lt;br /&gt;&lt;br /&gt;&amp;#160;&amp;#160;&amp;#160; My email&amp;#58;niphone&amp;#64;live.cn&lt;br /&gt;</description><author>hype8912</author><pubDate>Sat, 08 Jan 2011 00:23:09 GMT</pubDate><guid isPermaLink="false">Created Feature: How to update linq to wmi for SubmitChange()? [19617] 20110108122309A</guid></item><item><title>Closed Feature: Default constructor for WmiContext [12271]</title><link>http://linq2wmi.codeplex.com/workitem/12271</link><description>Would be nice if that one had a default constructor for the local machine. Added one myself locally like this&amp;#58;&lt;br /&gt;&amp;#91;code&amp;#93;&lt;br /&gt;public WmiContext&amp;#40;&amp;#41;&lt;br /&gt; &amp;#58; this&amp;#40;&amp;#64;&amp;#34;&amp;#92;&amp;#92;.&amp;#34;&amp;#41; &amp;#123; &amp;#125;&lt;br /&gt;&amp;#91;&amp;#47;code&amp;#93;&lt;br /&gt;Comments: Resolved with changeset 56972.</description><author>hype8912</author><pubDate>Fri, 07 Jan 2011 22:24:18 GMT</pubDate><guid isPermaLink="false">Closed Feature: Default constructor for WmiContext [12271] 20110107102418P</guid></item><item><title>Created Issue: Default constructor for WmiContext</title><link>http://www.codeplex.com/linq2wmi/WorkItem/View.aspx?WorkItemId=12271</link><description>Would be nice if that one had a default constructor for the local machine. Added one myself locally like this&amp;#58;&lt;br /&gt;&amp;#91;code&amp;#93;&lt;br /&gt;public WmiContext&amp;#40;&amp;#41;&lt;br /&gt; &amp;#58; this&amp;#40;&amp;#64;&amp;#34;&amp;#92;&amp;#92;.&amp;#34;&amp;#41; &amp;#123; &amp;#125;&lt;br /&gt;&amp;#91;&amp;#47;code&amp;#93;&lt;br /&gt;</description><author>Svish</author><pubDate>Fri, 02 Jan 2009 00:29:32 GMT</pubDate><guid isPermaLink="false">Created Issue: Default constructor for WmiContext 20090102122932A</guid></item><item><title>Closed Issue: LinqToWMI.Core appears to have problems on 64-bit systems</title><link>http://www.codeplex.com/linq2wmi/WorkItem/View.aspx?WorkItemId=10880</link><description>In testing LinqToWMI we&amp;#39;ve found it&amp;#39;s working on Windows Server 2003 - Windows Vista, but only on 32-bit systems. I think it has something to do with pointer sizes in 64-bit systems. We&amp;#39;re getting IndexOutOfRangeExceptions from WmiObjectEnumerator.Current. I&amp;#39;m investigating.&lt;br /&gt;</description><author>Atrophius</author><pubDate>Tue, 05 Aug 2008 01:38:19 GMT</pubDate><guid isPermaLink="false">Closed Issue: LinqToWMI.Core appears to have problems on 64-bit systems 20080805013819A</guid></item><item><title>Closed Issue: Handle Exceptions for WMI Classes generated on newer versions of Windows being used on older versions</title><link>http://www.codeplex.com/linq2wmi/WorkItem/View.aspx?WorkItemId=10879</link><description>Generating a WMI Class on Vista and trying to use that generated class on pre-Vista versions of Windows results in&amp;#160;fatal Exceptions.&lt;br /&gt;</description><author>Atrophius</author><pubDate>Sun, 03 Aug 2008 06:11:21 GMT</pubDate><guid isPermaLink="false">Closed Issue: Handle Exceptions for WMI Classes generated on newer versions of Windows being used on older versions 20080803061121A</guid></item><item><title>Created Issue: LinqToWMI.Core appears to have problems on 64-bit systems</title><link>http://www.codeplex.com/linq2wmi/WorkItem/View.aspx?WorkItemId=10880</link><description>In testing LinqToWMI we&amp;#39;ve found it&amp;#39;s working on Windows Server 2003 - Windows Vista, but only on 32-bit systems. I think it has something to do with pointer sizes in 64-bit systems. We&amp;#39;re getting IndexOutOfRangeExceptions from WmiObjectEnumerator.Current. I&amp;#39;m investigating.&lt;br /&gt;</description><author>Atrophius</author><pubDate>Sun, 03 Aug 2008 06:06:46 GMT</pubDate><guid isPermaLink="false">Created Issue: LinqToWMI.Core appears to have problems on 64-bit systems 20080803060646A</guid></item><item><title>Created Issue: Handle Exceptions for WMI Classes generated on newer versions of Windows being used on older versions</title><link>http://www.codeplex.com/linq2wmi/WorkItem/View.aspx?WorkItemId=10879</link><description>Generating a WMI Class on Vista and trying to use that generated class on pre-Vista versions of Windows results in&amp;#160;fatal Exceptions.&lt;br /&gt;</description><author>Atrophius</author><pubDate>Sun, 03 Aug 2008 04:41:42 GMT</pubDate><guid isPermaLink="false">Created Issue: Handle Exceptions for WMI Classes generated on newer versions of Windows being used on older versions 20080803044142A</guid></item><item><title>Closed Task: Add Method to Code Generator for Generating "Commonly Used" Classes</title><link>http://www.codeplex.com/linq2wmi/WorkItem/View.aspx?WorkItemId=10856</link><description>I&amp;#39;m adding a method to the code generator program that will generate a collection of &amp;#34;Commonly Used&amp;#34; classes.&lt;br /&gt;&lt;br /&gt;Non-exhaustive list of &amp;#34;Common&amp;#34; classes&amp;#58;&lt;br /&gt;&lt;br /&gt;Win32_ComputerSystem&lt;br /&gt;Win32_Keyboard&lt;br /&gt;Win32_LogicalDisk&lt;br /&gt;Win32_NetworkAdapter&lt;br /&gt;Win32_NetworkConnection&lt;br /&gt;Win32_PointingDevice&lt;br /&gt;Win32_Printer&lt;br /&gt;Win32_Process&lt;br /&gt;Win32_Processor&lt;br /&gt;Win32_Product&lt;br /&gt;Win32_UserAccount&lt;br /&gt;</description><author>Atrophius</author><pubDate>Fri, 01 Aug 2008 16:35:56 GMT</pubDate><guid isPermaLink="false">Closed Task: Add Method to Code Generator for Generating "Commonly Used" Classes 20080801043556P</guid></item><item><title>Closed Issue: NullReferenceException when attempting to Generate a Code File for a WMI Class that has no Instances</title><link>http://www.codeplex.com/linq2wmi/WorkItem/View.aspx?WorkItemId=10873</link><description>Trying to generate a code class for a WMI Class that contains no instances on the machine results in a NullReferenceException and the ClassGenerator crashes.&lt;br /&gt;</description><author>Atrophius</author><pubDate>Fri, 01 Aug 2008 16:35:55 GMT</pubDate><guid isPermaLink="false">Closed Issue: NullReferenceException when attempting to Generate a Code File for a WMI Class that has no Instances 20080801043555P</guid></item><item><title>Created Issue: NullReferenceException when attempting to Generate a Code File for a WMI Class that has no Instances</title><link>http://www.codeplex.com/linq2wmi/WorkItem/View.aspx?WorkItemId=10873</link><description>Trying to generate a code class for a WMI Class that contains no instances on the machine results in a NullReferenceException and the ClassGenerator crashes.&lt;br /&gt;</description><author>Atrophius</author><pubDate>Fri, 01 Aug 2008 16:24:57 GMT</pubDate><guid isPermaLink="false">Created Issue: NullReferenceException when attempting to Generate a Code File for a WMI Class that has no Instances 20080801042457P</guid></item><item><title>Created Task: Add Method to Code Generator for Generating "Commonly Used" Classes</title><link>http://www.codeplex.com/linq2wmi/WorkItem/View.aspx?WorkItemId=10856</link><description>I&amp;#39;m adding a method to the code generator program that will generate a collection of &amp;#34;Commonly Used&amp;#34; classes.&lt;br /&gt;&lt;br /&gt;Non-exhaustive list of &amp;#34;Common&amp;#34; classes&amp;#58;&lt;br /&gt;&lt;br /&gt;Win32_ComputerSystem&lt;br /&gt;Win32_Keyboard&lt;br /&gt;Win32_LogicalDisk&lt;br /&gt;Win32_NetworkAdapter&lt;br /&gt;Win32_NetworkConnection&lt;br /&gt;Win32_PointingDevice&lt;br /&gt;Win32_Printer&lt;br /&gt;Win32_Process&lt;br /&gt;Win32_Processor&lt;br /&gt;Win32_Product&lt;br /&gt;Win32_UserAccount&lt;br /&gt;</description><author>Atrophius</author><pubDate>Thu, 31 Jul 2008 10:48:12 GMT</pubDate><guid isPermaLink="false">Created Task: Add Method to Code Generator for Generating "Commonly Used" Classes 20080731104812A</guid></item><item><title>Closed Task: Fix Class Generator to use Standard Line Endings (Win32)</title><link>http://www.codeplex.com/linq2wmi/WorkItem/View.aspx?WorkItemId=10852</link><description>Code generator is currently using non-standard line endings &amp;#40;mix of Windows and &amp;#42;nix&amp;#41;. This causes warnings when inspecting the class in Visual Studio. It&amp;#39;s semantics and the warnings can be ignored, but it&amp;#39;s a quick find and replace to fix.&lt;br /&gt;</description><author>Atrophius</author><pubDate>Thu, 31 Jul 2008 10:20:33 GMT</pubDate><guid isPermaLink="false">Closed Task: Fix Class Generator to use Standard Line Endings (Win32) 20080731102033A</guid></item><item><title>Created Task: Fix Class Generator to use Standard Line Endings (Win32)</title><link>http://www.codeplex.com/linq2wmi/WorkItem/View.aspx?WorkItemId=10852</link><description>Code generator is currently using non-standard line endings &amp;#40;mix of Windows and &amp;#42;nix&amp;#41;. This causes warnings when inspecting the class in Visual Studio. It&amp;#39;s semantics and the warnings can be ignored, but it&amp;#39;s a quick find and replace to fix.&lt;br /&gt;</description><author>Atrophius</author><pubDate>Thu, 31 Jul 2008 10:18:54 GMT</pubDate><guid isPermaLink="false">Created Task: Fix Class Generator to use Standard Line Endings (Win32) 20080731101854A</guid></item></channel></rss>