<?xml version="1.0" encoding="utf-8"?>
<rss xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:pingback="http://madskills.com/public/xml/rss/module/pingback/" xmlns:trackback="http://madskills.com/public/xml/rss/module/trackback/" xmlns:wfw="http://wellformedweb.org/CommentAPI/" xmlns:slash="http://purl.org/rss/1.0/modules/slash/" xmlns:dc="http://purl.org/dc/elements/1.1/" version="2.0">
  <channel>
    <title>john kelly - win</title>
    <link>http://blog.johnkelly.co.uk/</link>
    <description>blackrock consultants</description>
    <language>en-us</language>
    <copyright>john kelly</copyright>
    <lastBuildDate>Mon, 27 Oct 2008 18:20:09 GMT</lastBuildDate>
    <generator>newtelligence dasBlog 2.2.8279.16125</generator>
    <managingEditor>mail@johnkelly.co.uk</managingEditor>
    <webMaster>mail@johnkelly.co.uk</webMaster>
    <item>
      <trackback:ping>http://blog.johnkelly.co.uk/Trackback.aspx?guid=e2dc4150-0fad-4381-9a27-9a29c51638c0</trackback:ping>
      <pingback:server>http://blog.johnkelly.co.uk/pingback.aspx</pingback:server>
      <pingback:target>http://blog.johnkelly.co.uk/PermaLink,guid,e2dc4150-0fad-4381-9a27-9a29c51638c0.aspx</pingback:target>
      <dc:creator>Your DisplayName here!</dc:creator>
      <wfw:comment>http://blog.johnkelly.co.uk/CommentView,guid,e2dc4150-0fad-4381-9a27-9a29c51638c0.aspx</wfw:comment>
      <wfw:commentRss>http://blog.johnkelly.co.uk/SyndicationService.asmx/GetEntryCommentsRss?guid=e2dc4150-0fad-4381-9a27-9a29c51638c0</wfw:commentRss>
      <body xmlns="http://www.w3.org/1999/xhtml">
        <p>
Operating systems older than Vista:
</p>
        <pre>SELECT Version FROM Win32_OperatingSystem WHERE Version &lt; "6" </pre>
        <p>
Vista and 2008 only:
</p>
        <pre>SELECT Version FROM Win32_OperatingSystem WHERE Version LIKE "6.0%" </pre>
        <p>
Only Win XP SP2:
</p>
        <pre>SELECT Version FROM Win32_OperatingSystem WHERE Version = "5.1.2600"</pre>
        <p>
W2K8, regardless of SP. (ie Not equal to workstation (1))
</p>
        <pre>SELECT * FROM Win32_OperatingSystem WHERE Version LIKE “6.0.%” AND ProductType &lt;&gt; “1”</pre>
        <p>
Only on Windows Server 2008 Core servers.  Here is a sample query (wrapped for
readability, this should be done as a single line in the filter dialog):
</p>
        <pre>SELECT OperatingSystemSKU FROM Win32_OperatingSystem WHERE OperatingSystemSKU = 12 OR OperatingSystemSKU = 39 OR OperatingSystemSKU= 14 OR OperatingSystemSKU = 41 OR OperatingSystemSKU = 13 OR OperatingSystemSKU = 40 OR OperatingSystemSKU = 29</pre>
        <p>
These values map back to HEX values, which map back to:
</p>
        <p>
PRODUCT_DATACENTER_SERVER_CORE 
<br />
0x0000000C
</p>
        <p>
PRODUCT_DATACENTER_SERVER_CORE_V 
<br />
0x00000027
</p>
        <p>
PRODUCT_ENTERPRISE_SERVER_CORE 
<br />
0x0000000E
</p>
        <p>
PRODUCT_ENTERPRISE_SERVER_CORE_V 
<br />
0x00000029 
</p>
        <p>
PRODUCT_STANDARD_SERVER_CORE 
<br />
0x0000000D 
</p>
        <p>
PRODUCT_STANDARD_SERVER_CORE_V 
<br />
0x00000028 
</p>
        <p>
PRODUCT_WEB_SERVER_CORE 
<br />
0x0000001D 
</p>
        <p>
Only on a certain day of the week:
</p>
        <p>
To do this, your WQL queries (one filter per GPO that you wanted to set, remember)
would be:
</p>
        <pre>Select DayOfWeek from Win32_LocalTime where DayOfWeek = 1</pre>
        <pre>Select DayOfWeek from Win32_LocalTime where DayOfWeek = 2</pre>
        <pre>Select DayOfWeek from Win32_LocalTime where DayOfWeek = 3</pre>
        <p>
One is Monday, two is Tuesday, etc.
</p>
        <p>
Select only laptops (ie computers without sodimm memory:
</p>
        <pre>Select * from Win32_PhysicalMemory where FormFactor != 12</pre>
        <p>
Not a server:
</p>
        <pre>SELECT ProductType FROM Win32_OperatingSystem WHERE ProductType = “1”</pre>
        <p>
See: <a href="http://blogs.technet.com/askds/archive/2008/09/11/fun-with-wmi-filters-in-group-policy.aspx">http://blogs.technet.com/askds/archive/2008/09/11/fun-with-wmi-filters-in-group-policy.aspx</a></p>
        <p>
 
</p>
        <img width="0" height="0" src="http://blog.johnkelly.co.uk/aggbug.ashx?id=e2dc4150-0fad-4381-9a27-9a29c51638c0" />
      </body>
      <title>Useful WMI Filters</title>
      <guid isPermaLink="false">http://blog.johnkelly.co.uk/PermaLink,guid,e2dc4150-0fad-4381-9a27-9a29c51638c0.aspx</guid>
      <link>http://blog.johnkelly.co.uk/2008/10/27/UsefulWMIFilters.aspx</link>
      <pubDate>Mon, 27 Oct 2008 18:20:09 GMT</pubDate>
      <description>&lt;p&gt;
Operating systems older than Vista:
&lt;/p&gt;
&lt;pre&gt;SELECT Version FROM Win32_OperatingSystem WHERE Version &amp;lt; "6" &lt;/pre&gt;
&lt;p&gt;
Vista and 2008 only:
&lt;/p&gt;
&lt;pre&gt;SELECT Version FROM Win32_OperatingSystem WHERE Version LIKE "6.0%" &lt;/pre&gt;
&lt;p&gt;
Only Win XP SP2:
&lt;/p&gt;
&lt;pre&gt;SELECT Version FROM Win32_OperatingSystem WHERE Version = "5.1.2600"&lt;/pre&gt;
&lt;p&gt;
W2K8, regardless of SP. (ie Not equal to workstation (1))
&lt;/p&gt;
&lt;pre&gt;SELECT * FROM Win32_OperatingSystem WHERE Version LIKE “6.0.%” AND ProductType &amp;lt;&amp;gt; “1”&lt;/pre&gt;
&lt;p&gt;
Only on Windows Server 2008 Core servers. &amp;nbsp;Here is a sample query (wrapped for
readability, this should be done as a single line in the filter dialog):
&lt;/p&gt;
&lt;pre&gt;SELECT OperatingSystemSKU FROM Win32_OperatingSystem WHERE OperatingSystemSKU = 12 OR OperatingSystemSKU = 39 OR OperatingSystemSKU= 14 OR OperatingSystemSKU = 41 OR OperatingSystemSKU = 13 OR OperatingSystemSKU = 40 OR OperatingSystemSKU = 29&lt;/pre&gt;
&lt;p&gt;
These values map back to HEX values, which map back to:
&lt;/p&gt;
&lt;p&gt;
PRODUCT_DATACENTER_SERVER_CORE 
&lt;br&gt;
0x0000000C
&lt;/p&gt;
&lt;p&gt;
PRODUCT_DATACENTER_SERVER_CORE_V 
&lt;br&gt;
0x00000027
&lt;/p&gt;
&lt;p&gt;
PRODUCT_ENTERPRISE_SERVER_CORE 
&lt;br&gt;
0x0000000E
&lt;/p&gt;
&lt;p&gt;
PRODUCT_ENTERPRISE_SERVER_CORE_V 
&lt;br&gt;
0x00000029 
&lt;/p&gt;
&lt;p&gt;
PRODUCT_STANDARD_SERVER_CORE 
&lt;br&gt;
0x0000000D 
&lt;/p&gt;
&lt;p&gt;
PRODUCT_STANDARD_SERVER_CORE_V 
&lt;br&gt;
0x00000028 
&lt;/p&gt;
&lt;p&gt;
PRODUCT_WEB_SERVER_CORE 
&lt;br&gt;
0x0000001D 
&lt;/p&gt;
&lt;p&gt;
Only on a certain day of the week:
&lt;/p&gt;
&lt;p&gt;
To do this, your WQL queries (one filter per GPO that you wanted to set, remember)
would be:
&lt;/p&gt;
&lt;pre&gt;Select DayOfWeek from Win32_LocalTime where DayOfWeek = 1&lt;/pre&gt;&lt;pre&gt;Select DayOfWeek from Win32_LocalTime where DayOfWeek = 2&lt;/pre&gt;&lt;pre&gt;Select DayOfWeek from Win32_LocalTime where DayOfWeek = 3&lt;/pre&gt;
&lt;p&gt;
One is Monday, two is Tuesday, etc.
&lt;/p&gt;
&lt;p&gt;
Select only laptops (ie computers without sodimm memory:
&lt;/p&gt;
&lt;pre&gt;Select * from Win32_PhysicalMemory where FormFactor != 12&lt;/pre&gt;
&lt;p&gt;
Not a server:
&lt;/p&gt;
&lt;pre&gt;SELECT ProductType FROM Win32_OperatingSystem WHERE ProductType = “1”&lt;/pre&gt;
&lt;p&gt;
See: &lt;a href="http://blogs.technet.com/askds/archive/2008/09/11/fun-with-wmi-filters-in-group-policy.aspx"&gt;http://blogs.technet.com/askds/archive/2008/09/11/fun-with-wmi-filters-in-group-policy.aspx&lt;/a&gt;
&lt;/p&gt;
&lt;p&gt;
&amp;nbsp;
&lt;/p&gt;
&lt;img width="0" height="0" src="http://blog.johnkelly.co.uk/aggbug.ashx?id=e2dc4150-0fad-4381-9a27-9a29c51638c0" /&gt;</description>
      <comments>http://blog.johnkelly.co.uk/CommentView,guid,e2dc4150-0fad-4381-9a27-9a29c51638c0.aspx</comments>
      <category>win</category>
    </item>
    <item>
      <trackback:ping>http://blog.johnkelly.co.uk/Trackback.aspx?guid=6d69ee88-2d03-4032-a798-341ac804b802</trackback:ping>
      <pingback:server>http://blog.johnkelly.co.uk/pingback.aspx</pingback:server>
      <pingback:target>http://blog.johnkelly.co.uk/PermaLink,guid,6d69ee88-2d03-4032-a798-341ac804b802.aspx</pingback:target>
      <dc:creator>Your DisplayName here!</dc:creator>
      <wfw:comment>http://blog.johnkelly.co.uk/CommentView,guid,6d69ee88-2d03-4032-a798-341ac804b802.aspx</wfw:comment>
      <wfw:commentRss>http://blog.johnkelly.co.uk/SyndicationService.asmx/GetEntryCommentsRss?guid=6d69ee88-2d03-4032-a798-341ac804b802</wfw:commentRss>
      <body xmlns="http://www.w3.org/1999/xhtml">
        <p>
Delete removed credentials when accessing resources over a vpn:
</p>
        <p>
cmdkey.exe /delete /ras
</p>
        <img width="0" height="0" src="http://blog.johnkelly.co.uk/aggbug.ashx?id=6d69ee88-2d03-4032-a798-341ac804b802" />
      </body>
      <title>Notes</title>
      <guid isPermaLink="false">http://blog.johnkelly.co.uk/PermaLink,guid,6d69ee88-2d03-4032-a798-341ac804b802.aspx</guid>
      <link>http://blog.johnkelly.co.uk/2007/06/24/Notes.aspx</link>
      <pubDate>Sun, 24 Jun 2007 06:42:13 GMT</pubDate>
      <description>&lt;p&gt;
Delete removed credentials when accessing resources over a vpn:
&lt;/p&gt;
&lt;p&gt;
cmdkey.exe /delete /ras
&lt;/p&gt;
&lt;img width="0" height="0" src="http://blog.johnkelly.co.uk/aggbug.ashx?id=6d69ee88-2d03-4032-a798-341ac804b802" /&gt;</description>
      <comments>http://blog.johnkelly.co.uk/CommentView,guid,6d69ee88-2d03-4032-a798-341ac804b802.aspx</comments>
      <category>vista</category>
      <category>win</category>
    </item>
    <item>
      <trackback:ping>http://blog.johnkelly.co.uk/Trackback.aspx?guid=fb8b4420-f60e-423a-9102-abcb5c91a04a</trackback:ping>
      <pingback:server>http://blog.johnkelly.co.uk/pingback.aspx</pingback:server>
      <pingback:target>http://blog.johnkelly.co.uk/PermaLink,guid,fb8b4420-f60e-423a-9102-abcb5c91a04a.aspx</pingback:target>
      <dc:creator>Your DisplayName here!</dc:creator>
      <wfw:comment>http://blog.johnkelly.co.uk/CommentView,guid,fb8b4420-f60e-423a-9102-abcb5c91a04a.aspx</wfw:comment>
      <wfw:commentRss>http://blog.johnkelly.co.uk/SyndicationService.asmx/GetEntryCommentsRss?guid=fb8b4420-f60e-423a-9102-abcb5c91a04a</wfw:commentRss>
      <body xmlns="http://www.w3.org/1999/xhtml">
        <p>
Can't install Service Pack (or some/all other updates) directly, from Windows Update
or by WSUS.  See <a href="http://support.microsoft.com/default.aspx?scid=kb;en-us;822798">http://support.microsoft.com/default.aspx?scid=kb;en-us;822798</a> for
solutions.
</p>
        <p>
This worked for me:
</p>
        <p>
create batch file (catroot2.cmd)
</p>
        <p>
net stop cryptsvc 
<br />
ren %systemroot%\System32\Catroot2 oldcatroot2 
<br />
net start cryptsvc 
<br />
cd %systemroot%\system32\CatRoot\{F750E6C3-38EE-11D1-85E5-00C04FC295EE}<br />
del /Q tmp*.cat<br />
exit
</p>
        <p>
Then delete all tmp*.cat files from %systemroot%\system32\CatRoot\{F750E6C3-38EE-11D1-85E5-00C04FC295EE}
(or add to batch file, as above)
</p>
        <img width="0" height="0" src="http://blog.johnkelly.co.uk/aggbug.ashx?id=fb8b4420-f60e-423a-9102-abcb5c91a04a" />
      </body>
      <title>Cannot Install Windows 2003 SP2</title>
      <guid isPermaLink="false">http://blog.johnkelly.co.uk/PermaLink,guid,fb8b4420-f60e-423a-9102-abcb5c91a04a.aspx</guid>
      <link>http://blog.johnkelly.co.uk/2007/05/17/CannotInstallWindows2003SP2.aspx</link>
      <pubDate>Thu, 17 May 2007 14:32:34 GMT</pubDate>
      <description>&lt;p&gt;
Can't install Service Pack (or some/all other updates) directly, from Windows Update
or by WSUS.&amp;nbsp; See &lt;a href="http://support.microsoft.com/default.aspx?scid=kb;en-us;822798"&gt;http://support.microsoft.com/default.aspx?scid=kb;en-us;822798&lt;/a&gt;&amp;nbsp;for
solutions.
&lt;/p&gt;
&lt;p&gt;
This worked for me:
&lt;/p&gt;
&lt;p&gt;
create batch file (catroot2.cmd)
&lt;/p&gt;
&lt;p&gt;
net stop cryptsvc 
&lt;br&gt;
ren %systemroot%\System32\Catroot2 oldcatroot2 
&lt;br&gt;
net start cryptsvc 
&lt;br&gt;
cd %systemroot%\system32\CatRoot\{F750E6C3-38EE-11D1-85E5-00C04FC295EE}&lt;br&gt;
del /Q tmp*.cat&lt;br&gt;
exit
&lt;/p&gt;
&lt;p&gt;
Then delete all tmp*.cat files from %systemroot%\system32\CatRoot\{F750E6C3-38EE-11D1-85E5-00C04FC295EE}
(or add to batch file, as above)
&lt;/p&gt;
&lt;img width="0" height="0" src="http://blog.johnkelly.co.uk/aggbug.ashx?id=fb8b4420-f60e-423a-9102-abcb5c91a04a" /&gt;</description>
      <comments>http://blog.johnkelly.co.uk/CommentView,guid,fb8b4420-f60e-423a-9102-abcb5c91a04a.aspx</comments>
      <category>win</category>
      <category>Win/2003</category>
      <category>win/sbs</category>
      <category>win/xp</category>
      <category>wsus</category>
    </item>
    <item>
      <trackback:ping>http://blog.johnkelly.co.uk/Trackback.aspx?guid=ead9d773-3db2-4c91-80bb-986abb614795</trackback:ping>
      <pingback:server>http://blog.johnkelly.co.uk/pingback.aspx</pingback:server>
      <pingback:target>http://blog.johnkelly.co.uk/PermaLink,guid,ead9d773-3db2-4c91-80bb-986abb614795.aspx</pingback:target>
      <dc:creator>Your DisplayName here!</dc:creator>
      <wfw:comment>http://blog.johnkelly.co.uk/CommentView,guid,ead9d773-3db2-4c91-80bb-986abb614795.aspx</wfw:comment>
      <wfw:commentRss>http://blog.johnkelly.co.uk/SyndicationService.asmx/GetEntryCommentsRss?guid=ead9d773-3db2-4c91-80bb-986abb614795</wfw:commentRss>
      <body xmlns="http://www.w3.org/1999/xhtml">
        <p>
ASP
</p>
        <p>
V216-030-B-010
</p>
        <p>
Jumper Settings:
</p>
        <p>
 
</p>
        <p>
PT-9
</p>
        <p>
Jumper Setting for EPP Printer Card LPT 1.2&amp;3
</p>
        <p>
. 27B 37B 3BC<br />
JP 1 CL OP OP<br />
JP 2 OP CL OP<br />
JP 3 OP OP CL<br />
JP 5 1-2 1-2 2-3
</p>
        <p>
1-2 2-3<br />
JP 4 IRQ 7 IRQ 5<br />
JP 6 EPP SPP<br /></p>
        <p>
or
</p>
        <p>
1-2 2-3<br />
JP1 IRQ7 IRQ3<br />
JP2 LPT2 LPT1<br />
JP3 EPP SPP 
</p>
        <img width="0" height="0" src="http://blog.johnkelly.co.uk/aggbug.ashx?id=ead9d773-3db2-4c91-80bb-986abb614795" />
      </body>
      <title>Parallel Port PCI Card - AP138B</title>
      <guid isPermaLink="false">http://blog.johnkelly.co.uk/PermaLink,guid,ead9d773-3db2-4c91-80bb-986abb614795.aspx</guid>
      <link>http://blog.johnkelly.co.uk/2007/04/24/ParallelPortPCICardAP138B.aspx</link>
      <pubDate>Tue, 24 Apr 2007 17:25:25 GMT</pubDate>
      <description>&lt;p&gt;
ASP
&lt;/p&gt;
&lt;p&gt;
V216-030-B-010
&lt;/p&gt;
&lt;p&gt;
Jumper Settings:
&lt;/p&gt;
&lt;p&gt;
&amp;nbsp;
&lt;/p&gt;
&lt;p&gt;
PT-9
&lt;/p&gt;
&lt;p&gt;
Jumper Setting for EPP Printer Card LPT 1.2&amp;amp;3
&lt;/p&gt;
&lt;p&gt;
. 27B 37B 3BC&lt;br&gt;
JP 1 CL OP OP&lt;br&gt;
JP 2 OP CL OP&lt;br&gt;
JP 3 OP OP CL&lt;br&gt;
JP 5 1-2 1-2 2-3
&lt;/p&gt;
&lt;p&gt;
1-2 2-3&lt;br&gt;
JP 4 IRQ 7 IRQ 5&lt;br&gt;
JP 6 EPP SPP&lt;br&gt;
&lt;/p&gt;
&lt;p&gt;
or
&lt;/p&gt;
&lt;p&gt;
1-2 2-3&lt;br&gt;
JP1 IRQ7 IRQ3&lt;br&gt;
JP2 LPT2 LPT1&lt;br&gt;
JP3 EPP SPP 
&lt;/p&gt;
&lt;img width="0" height="0" src="http://blog.johnkelly.co.uk/aggbug.ashx?id=ead9d773-3db2-4c91-80bb-986abb614795" /&gt;</description>
      <comments>http://blog.johnkelly.co.uk/CommentView,guid,ead9d773-3db2-4c91-80bb-986abb614795.aspx</comments>
      <category>win</category>
    </item>
    <item>
      <trackback:ping>http://blog.johnkelly.co.uk/Trackback.aspx?guid=569c4bf9-1cac-442d-a8f4-7abbd59817a7</trackback:ping>
      <pingback:server>http://blog.johnkelly.co.uk/pingback.aspx</pingback:server>
      <pingback:target>http://blog.johnkelly.co.uk/PermaLink,guid,569c4bf9-1cac-442d-a8f4-7abbd59817a7.aspx</pingback:target>
      <dc:creator>Your DisplayName here!</dc:creator>
      <wfw:comment>http://blog.johnkelly.co.uk/CommentView,guid,569c4bf9-1cac-442d-a8f4-7abbd59817a7.aspx</wfw:comment>
      <wfw:commentRss>http://blog.johnkelly.co.uk/SyndicationService.asmx/GetEntryCommentsRss?guid=569c4bf9-1cac-442d-a8f4-7abbd59817a7</wfw:commentRss>
      <body xmlns="http://www.w3.org/1999/xhtml">
        <p>
Firstly, the default password, if prompted, when removing SAV Corporate Edition is
probably <em>symantec</em> unless it has been defined a something else. 
This can be changed on all clients from the Symantec control console.
</p>
        <p>
Any difficulties (and there often are) can be sorted by running their uninstallation
tool: <a href="http://blog.johnkelly.co.uk/content/binary/NONAV.zip">nonav.zip</a></p>
        <img width="0" height="0" src="http://blog.johnkelly.co.uk/aggbug.ashx?id=569c4bf9-1cac-442d-a8f4-7abbd59817a7" />
      </body>
      <title>Removing Symantec Anti Virus</title>
      <guid isPermaLink="false">http://blog.johnkelly.co.uk/PermaLink,guid,569c4bf9-1cac-442d-a8f4-7abbd59817a7.aspx</guid>
      <link>http://blog.johnkelly.co.uk/2006/12/19/RemovingSymantecAntiVirus.aspx</link>
      <pubDate>Tue, 19 Dec 2006 08:01:35 GMT</pubDate>
      <description>&lt;p&gt;
Firstly, the default password, if prompted, when removing SAV Corporate Edition is
probably&amp;nbsp;&lt;em&gt;symantec&lt;/em&gt; unless it has been defined a something else.&amp;nbsp;
This can be changed on all clients from the Symantec control console.
&lt;/p&gt;
&lt;p&gt;
Any difficulties (and there often are) can be sorted by running their uninstallation
tool: &lt;a href="http://blog.johnkelly.co.uk/content/binary/NONAV.zip"&gt;nonav.zip&lt;/a&gt;
&lt;/p&gt;
&lt;img width="0" height="0" src="http://blog.johnkelly.co.uk/aggbug.ashx?id=569c4bf9-1cac-442d-a8f4-7abbd59817a7" /&gt;</description>
      <comments>http://blog.johnkelly.co.uk/CommentView,guid,569c4bf9-1cac-442d-a8f4-7abbd59817a7.aspx</comments>
      <category>win</category>
    </item>
    <item>
      <trackback:ping>http://blog.johnkelly.co.uk/Trackback.aspx?guid=051b9062-4c25-44ca-bdbc-b05028eeff11</trackback:ping>
      <pingback:server>http://blog.johnkelly.co.uk/pingback.aspx</pingback:server>
      <pingback:target>http://blog.johnkelly.co.uk/PermaLink,guid,051b9062-4c25-44ca-bdbc-b05028eeff11.aspx</pingback:target>
      <dc:creator>Your DisplayName here!</dc:creator>
      <wfw:comment>http://blog.johnkelly.co.uk/CommentView,guid,051b9062-4c25-44ca-bdbc-b05028eeff11.aspx</wfw:comment>
      <wfw:commentRss>http://blog.johnkelly.co.uk/SyndicationService.asmx/GetEntryCommentsRss?guid=051b9062-4c25-44ca-bdbc-b05028eeff11</wfw:commentRss>
      <body xmlns="http://www.w3.org/1999/xhtml">
        <p>
From <a href="http://support.microsoft.com/kb/239924">kb239924</a>:
</p>
        <p>
SUMMARY
</p>
        <p>
          <br />
On a Windows-based computer that uses TCP/IP, you can use the Media Sensing feature
to detect whether the network media are in a link state. Ethernet network adapters
and hubs typically have a "link" light that indicates the connection status. This
status is the same condition that Windows interprets as a link state. Whenever Windows
detects a "down" state, it removes the bound protocols from that adapter until it
is detected as "up" again. Sometimes, you may not want the network adapter to detect
this state. You can set this configuration by modifying the registry.
</p>
        <p>
Note 10B2 coaxial (RG-58) Ethernet cable is not a connection-based medium. Therefore,
Windows does not try to detect a link state when this kind of cabling is used.<br />
MORE INFORMATION<br />
Warning Serious problems might occur if you modify the registry incorrectly by using
Registry Editor or by using another method. These problems might require that you
reinstall your operating system. Microsoft cannot guarantee that these problems can
be solved. Modify the registry at your own risk.
</p>
        <p>
To prevent the network adapter from detecting a link state, follow these steps.
</p>
        <p>
Note The NetBEUI protocol and the IPX protocol do not support Media Sensing.
</p>
        <p>
   1. Start Registry Editor.
</p>
        <p>
          <br />
   2. Locate the following registry subkey:<br />
   HKEY_LOCAL_MACHINE\System\CurrentControlSet\Services\Tcpip\Parameters
</p>
        <p>
          <br />
   3. Add the following registry entry to the Parameters subkey: <br />
   Name: DisableDHCPMediaSense<br />
   Data type: REG_DWORD (Boolean)<br />
   Value: 1
</p>
        <p>
          <br />
Note This entry controls the behavior of Media Sensing. By default, Media Sensing
events trigger a DHCP client to take an action. For example, when a connect event
occurs, the client tries to obtain a lease. When a disconnect event occurs, the client
may invalidate the interface and routes. If you set this value data to 1, DHCP clients
and non-DHCP clients ignore Media Sensing events.
</p>
        <p>
          <br />
   4. Restart the computer. 
</p>
        <p>
          <br />
Note Microsoft Windows Server 2003 supports Media Sensing when it is used in a server
cluster environment. By default, however, Media Sensing is disabled in a Windows Server
2003-based server cluster, and the DisableDHCPMediaSense registry entry has no effect.
In Windows Server 2003 Service Pack 1 (SP1), the DisableClusSvcMediaSense registry
entry was introduced. You can use this registry entry to enable Media Sensing on the
Windows Server 2003-based nodes of a server cluster.
</p>
        <p>
The details of the DisableClusSvcMediaSense registry entry are as follows:
</p>
        <p>
          <br />
Key: HKEY_LOCAL_MACHINE\Cluster\Parameters<br />
Name: DisableClusSvcMediaSense<br />
Data type: REG_DWORD (Boolean)<br />
Default value: 0
</p>
        <p>
          <br />
By default, the DisableClusSvcMediaSense entry is set to 0. When this entry is set
to 0, Media Sensing is disabled. If you set the DisableClusSvcMediaSense entry to
1, you can use the DisableDHCPMediaSense entry to enable Media Sensing. This behavior
matches the behavior of a Microsoft Windows 2000 Server cluster environment.<br /></p>
        <p>
 
</p>
        <img width="0" height="0" src="http://blog.johnkelly.co.uk/aggbug.ashx?id=051b9062-4c25-44ca-bdbc-b05028eeff11" />
      </body>
      <title>Disable Mediasense</title>
      <guid isPermaLink="false">http://blog.johnkelly.co.uk/PermaLink,guid,051b9062-4c25-44ca-bdbc-b05028eeff11.aspx</guid>
      <link>http://blog.johnkelly.co.uk/2006/12/05/DisableMediasense.aspx</link>
      <pubDate>Tue, 05 Dec 2006 12:21:09 GMT</pubDate>
      <description>&lt;p&gt;
From &lt;a href="http://support.microsoft.com/kb/239924"&gt;kb239924&lt;/a&gt;:
&lt;/p&gt;
&lt;p&gt;
SUMMARY
&lt;/p&gt;
&lt;p&gt;
&lt;br&gt;
On a Windows-based computer that uses TCP/IP, you can use the Media Sensing feature
to detect whether the network media are in a link state. Ethernet network adapters
and hubs typically have a "link" light that indicates the connection status. This
status is the same condition that Windows interprets as a link state. Whenever Windows
detects a "down" state, it removes the bound protocols from that adapter until it
is detected as "up" again. Sometimes, you may not want the network adapter to detect
this state. You can set this configuration by modifying the registry.
&lt;/p&gt;
&lt;p&gt;
Note 10B2 coaxial (RG-58) Ethernet cable is not a connection-based medium. Therefore,
Windows does not try to detect a link state when this kind of cabling is used.&lt;br&gt;
MORE INFORMATION&lt;br&gt;
Warning Serious problems might occur if you modify the registry incorrectly by using
Registry Editor or by using another method. These problems might require that you
reinstall your operating system. Microsoft cannot guarantee that these problems can
be solved. Modify the registry at your own risk.
&lt;/p&gt;
&lt;p&gt;
To prevent the network adapter from detecting a link state, follow these steps.
&lt;/p&gt;
&lt;p&gt;
Note The NetBEUI protocol and the IPX protocol do not support Media Sensing.
&lt;/p&gt;
&lt;p&gt;
&amp;nbsp;&amp;nbsp;&amp;nbsp;1. Start Registry Editor.
&lt;/p&gt;
&lt;p&gt;
&lt;br&gt;
&amp;nbsp;&amp;nbsp;&amp;nbsp;2. Locate the following registry subkey:&lt;br&gt;
&amp;nbsp;&amp;nbsp;&amp;nbsp;HKEY_LOCAL_MACHINE\System\CurrentControlSet\Services\Tcpip\Parameters
&lt;/p&gt;
&lt;p&gt;
&lt;br&gt;
&amp;nbsp;&amp;nbsp;&amp;nbsp;3. Add the following registry entry to the Parameters subkey:&amp;nbsp;&lt;br&gt;
&amp;nbsp;&amp;nbsp;&amp;nbsp;Name: DisableDHCPMediaSense&lt;br&gt;
&amp;nbsp;&amp;nbsp;&amp;nbsp;Data type: REG_DWORD (Boolean)&lt;br&gt;
&amp;nbsp;&amp;nbsp;&amp;nbsp;Value: 1
&lt;/p&gt;
&lt;p&gt;
&lt;br&gt;
Note This entry controls the behavior of Media Sensing. By default, Media Sensing
events trigger a DHCP client to take an action. For example, when a connect event
occurs, the client tries to obtain a lease. When a disconnect event occurs, the client
may invalidate the interface and routes. If you set this value data to 1, DHCP clients
and non-DHCP clients ignore Media Sensing events.
&lt;/p&gt;
&lt;p&gt;
&lt;br&gt;
&amp;nbsp;&amp;nbsp;&amp;nbsp;4. Restart the computer. 
&lt;/p&gt;
&lt;p&gt;
&lt;br&gt;
Note Microsoft Windows Server 2003 supports Media Sensing when it is used in a server
cluster environment. By default, however, Media Sensing is disabled in a Windows Server
2003-based server cluster, and the DisableDHCPMediaSense registry entry has no effect.
In Windows Server 2003 Service Pack 1 (SP1), the DisableClusSvcMediaSense registry
entry was introduced. You can use this registry entry to enable Media Sensing on the
Windows Server 2003-based nodes of a server cluster.
&lt;/p&gt;
&lt;p&gt;
The details of the DisableClusSvcMediaSense registry entry are as follows:
&lt;/p&gt;
&lt;p&gt;
&lt;br&gt;
Key: HKEY_LOCAL_MACHINE\Cluster\Parameters&lt;br&gt;
Name: DisableClusSvcMediaSense&lt;br&gt;
Data type: REG_DWORD (Boolean)&lt;br&gt;
Default value: 0
&lt;/p&gt;
&lt;p&gt;
&lt;br&gt;
By default, the DisableClusSvcMediaSense entry is set to 0. When this entry is set
to 0, Media Sensing is disabled. If you set the DisableClusSvcMediaSense entry to
1, you can use the DisableDHCPMediaSense entry to enable Media Sensing. This behavior
matches the behavior of a Microsoft Windows 2000 Server cluster environment.&lt;br&gt;
&lt;/p&gt;
&lt;p&gt;
&amp;nbsp;
&lt;/p&gt;
&lt;img width="0" height="0" src="http://blog.johnkelly.co.uk/aggbug.ashx?id=051b9062-4c25-44ca-bdbc-b05028eeff11" /&gt;</description>
      <comments>http://blog.johnkelly.co.uk/CommentView,guid,051b9062-4c25-44ca-bdbc-b05028eeff11.aspx</comments>
      <category>win</category>
      <category>networking</category>
    </item>
    <item>
      <trackback:ping>http://blog.johnkelly.co.uk/Trackback.aspx?guid=06db6912-a299-45ee-9bdd-a0ffb3abf067</trackback:ping>
      <pingback:server>http://blog.johnkelly.co.uk/pingback.aspx</pingback:server>
      <pingback:target>http://blog.johnkelly.co.uk/PermaLink,guid,06db6912-a299-45ee-9bdd-a0ffb3abf067.aspx</pingback:target>
      <dc:creator>Your DisplayName here!</dc:creator>
      <wfw:comment>http://blog.johnkelly.co.uk/CommentView,guid,06db6912-a299-45ee-9bdd-a0ffb3abf067.aspx</wfw:comment>
      <wfw:commentRss>http://blog.johnkelly.co.uk/SyndicationService.asmx/GetEntryCommentsRss?guid=06db6912-a299-45ee-9bdd-a0ffb3abf067</wfw:commentRss>
      <body xmlns="http://www.w3.org/1999/xhtml">
        <p>
set allowallpaths = trus
</p>
        <p>
set allowremovablemedia = true
</p>
        <p>
set allowwildcards = true
</p>
        <p>
bootcfg /default, /add, /rebuild, /scan, /list
</p>
        <p>
map
</p>
        <p>
expand
</p>
        <p>
fixboot
</p>
        <p>
fixmbr
</p>
        <p>
listsvc
</p>
        <p>
          <b>net use</b> [<b>\\</b><i>ComputerName</i><b>\</b><i>ShareName</i> [<b>/user:</b>[<i>DomainName</i><b>\</b>]<i>UserName</i>] <i>password</i>]
| [<i>drive letter:</i>] [<b>/d</b>]
</p>
        <p>
 
</p>
        <img width="0" height="0" src="http://blog.johnkelly.co.uk/aggbug.ashx?id=06db6912-a299-45ee-9bdd-a0ffb3abf067" />
      </body>
      <title>Useful Recovery Console Commands</title>
      <guid isPermaLink="false">http://blog.johnkelly.co.uk/PermaLink,guid,06db6912-a299-45ee-9bdd-a0ffb3abf067.aspx</guid>
      <link>http://blog.johnkelly.co.uk/2006/11/27/UsefulRecoveryConsoleCommands.aspx</link>
      <pubDate>Mon, 27 Nov 2006 22:50:56 GMT</pubDate>
      <description>&lt;p&gt;
set allowallpaths = trus
&lt;/p&gt;
&lt;p&gt;
set allowremovablemedia = true
&lt;/p&gt;
&lt;p&gt;
set allowwildcards = true
&lt;/p&gt;
&lt;p&gt;
bootcfg /default, /add, /rebuild, /scan, /list
&lt;/p&gt;
&lt;p&gt;
map
&lt;/p&gt;
&lt;p&gt;
expand
&lt;/p&gt;
&lt;p&gt;
fixboot
&lt;/p&gt;
&lt;p&gt;
fixmbr
&lt;/p&gt;
&lt;p&gt;
listsvc
&lt;/p&gt;
&lt;p&gt;
&lt;b&gt;net use&lt;/b&gt;&amp;nbsp;[&lt;b&gt;\\&lt;/b&gt;&lt;i&gt;ComputerName&lt;/i&gt;&lt;b&gt;\&lt;/b&gt;&lt;i&gt;ShareName&lt;/i&gt;&amp;nbsp;[&lt;b&gt;/user:&lt;/b&gt;[&lt;i&gt;DomainName&lt;/i&gt;&lt;b&gt;\&lt;/b&gt;]&lt;i&gt;UserName&lt;/i&gt;] &lt;i&gt;password&lt;/i&gt;]
| [&lt;i&gt;drive letter:&lt;/i&gt;] [&lt;b&gt;/d&lt;/b&gt;]
&lt;/p&gt;
&lt;p&gt;
&amp;nbsp;
&lt;/p&gt;
&lt;img width="0" height="0" src="http://blog.johnkelly.co.uk/aggbug.ashx?id=06db6912-a299-45ee-9bdd-a0ffb3abf067" /&gt;</description>
      <comments>http://blog.johnkelly.co.uk/CommentView,guid,06db6912-a299-45ee-9bdd-a0ffb3abf067.aspx</comments>
      <category>sbs</category>
      <category>win</category>
      <category>win/xp</category>
    </item>
    <item>
      <trackback:ping>http://blog.johnkelly.co.uk/Trackback.aspx?guid=62d9263a-f619-48bc-bca1-a23425a0a645</trackback:ping>
      <pingback:server>http://blog.johnkelly.co.uk/pingback.aspx</pingback:server>
      <pingback:target>http://blog.johnkelly.co.uk/PermaLink,guid,62d9263a-f619-48bc-bca1-a23425a0a645.aspx</pingback:target>
      <dc:creator>Your DisplayName here!</dc:creator>
      <wfw:comment>http://blog.johnkelly.co.uk/CommentView,guid,62d9263a-f619-48bc-bca1-a23425a0a645.aspx</wfw:comment>
      <wfw:commentRss>http://blog.johnkelly.co.uk/SyndicationService.asmx/GetEntryCommentsRss?guid=62d9263a-f619-48bc-bca1-a23425a0a645</wfw:commentRss>
      <body xmlns="http://www.w3.org/1999/xhtml">
        <p>
Go to Regedit:
</p>
        <p>
Registry Key: <b>HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows NT\CurrentVersion</b><br /><br />
Data Type: <b>String Value</b> // Value Name: <b>RegisteredOrganization</b><br />
Data Type: <b>String Value</b> // Value Name: <strong>RegisteredOwner</strong></p>
        <p>
SFC Source change is at same location "SourcePath"<br /><br />
See MSKB 222473
</p>
        <img width="0" height="0" src="http://blog.johnkelly.co.uk/aggbug.ashx?id=62d9263a-f619-48bc-bca1-a23425a0a645" />
      </body>
      <title>XP Change Owner/Registered Company &amp; SFC Source</title>
      <guid isPermaLink="false">http://blog.johnkelly.co.uk/PermaLink,guid,62d9263a-f619-48bc-bca1-a23425a0a645.aspx</guid>
      <link>http://blog.johnkelly.co.uk/2006/11/12/XPChangeOwnerRegisteredCompanySFCSource.aspx</link>
      <pubDate>Sun, 12 Nov 2006 15:29:35 GMT</pubDate>
      <description>&lt;p&gt;
Go to Regedit:
&lt;/p&gt;
&lt;p&gt;
Registry Key: &lt;b&gt;HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows NT\CurrentVersion&lt;/b&gt;
&lt;br&gt;
&lt;br&gt;
Data Type: &lt;b&gt;String Value&lt;/b&gt; // Value Name: &lt;b&gt;RegisteredOrganization&lt;/b&gt;
&lt;br&gt;
Data Type: &lt;b&gt;String Value&lt;/b&gt; // Value Name: &lt;strong&gt;RegisteredOwner&lt;/strong&gt;
&lt;/p&gt;
&lt;p&gt;
SFC Source change is at same location "SourcePath"&lt;br&gt;
&lt;br&gt;
See MSKB 222473
&lt;/p&gt;
&lt;img width="0" height="0" src="http://blog.johnkelly.co.uk/aggbug.ashx?id=62d9263a-f619-48bc-bca1-a23425a0a645" /&gt;</description>
      <comments>http://blog.johnkelly.co.uk/CommentView,guid,62d9263a-f619-48bc-bca1-a23425a0a645.aspx</comments>
      <category>win</category>
      <category>win/xp</category>
    </item>
    <item>
      <trackback:ping>http://blog.johnkelly.co.uk/Trackback.aspx?guid=a064d368-1cb5-4664-9930-bffeb6ecec4d</trackback:ping>
      <pingback:server>http://blog.johnkelly.co.uk/pingback.aspx</pingback:server>
      <pingback:target>http://blog.johnkelly.co.uk/PermaLink,guid,a064d368-1cb5-4664-9930-bffeb6ecec4d.aspx</pingback:target>
      <dc:creator>Your DisplayName here!</dc:creator>
      <wfw:comment>http://blog.johnkelly.co.uk/CommentView,guid,a064d368-1cb5-4664-9930-bffeb6ecec4d.aspx</wfw:comment>
      <wfw:commentRss>http://blog.johnkelly.co.uk/SyndicationService.asmx/GetEntryCommentsRss?guid=a064d368-1cb5-4664-9930-bffeb6ecec4d</wfw:commentRss>
      <body xmlns="http://www.w3.org/1999/xhtml">
        <p>
 
</p>
        <p>
Dell lists this (and other Event IDs) as normal and to be ignored! See <a href="http://blog.johnkelly.co.uk/content/binary/ImpInf0.pdf">ImpInf0.pdf
(4.88 MB)</a>.
</p>
        <img width="0" height="0" src="http://blog.johnkelly.co.uk/aggbug.ashx?id=a064d368-1cb5-4664-9930-bffeb6ecec4d" />
      </body>
      <title>SBS 2003 EventID 2000 MTA Connections</title>
      <guid isPermaLink="false">http://blog.johnkelly.co.uk/PermaLink,guid,a064d368-1cb5-4664-9930-bffeb6ecec4d.aspx</guid>
      <link>http://blog.johnkelly.co.uk/2006/04/02/SBS2003EventID2000MTAConnections.aspx</link>
      <pubDate>Sun, 02 Apr 2006 13:32:49 GMT</pubDate>
      <description>&lt;p&gt;
&amp;nbsp;
&lt;/p&gt;
&lt;p&gt;
Dell lists this (and other Event IDs) as normal and to be ignored! See &lt;a href="http://blog.johnkelly.co.uk/content/binary/ImpInf0.pdf"&gt;ImpInf0.pdf
(4.88 MB)&lt;/a&gt;.
&lt;/p&gt;
&lt;img width="0" height="0" src="http://blog.johnkelly.co.uk/aggbug.ashx?id=a064d368-1cb5-4664-9930-bffeb6ecec4d" /&gt;</description>
      <comments>http://blog.johnkelly.co.uk/CommentView,guid,a064d368-1cb5-4664-9930-bffeb6ecec4d.aspx</comments>
      <category>sbs</category>
      <category>win</category>
    </item>
    <item>
      <trackback:ping>http://blog.johnkelly.co.uk/Trackback.aspx?guid=4de47c1e-259d-4581-9b74-a0eeba65aed8</trackback:ping>
      <pingback:server>http://blog.johnkelly.co.uk/pingback.aspx</pingback:server>
      <pingback:target>http://blog.johnkelly.co.uk/PermaLink,guid,4de47c1e-259d-4581-9b74-a0eeba65aed8.aspx</pingback:target>
      <dc:creator>Your DisplayName here!</dc:creator>
      <wfw:comment>http://blog.johnkelly.co.uk/CommentView,guid,4de47c1e-259d-4581-9b74-a0eeba65aed8.aspx</wfw:comment>
      <wfw:commentRss>http://blog.johnkelly.co.uk/SyndicationService.asmx/GetEntryCommentsRss?guid=4de47c1e-259d-4581-9b74-a0eeba65aed8</wfw:commentRss>
      <body xmlns="http://www.w3.org/1999/xhtml">
        <p align="left">
To remotely enable RDP connections open network registry in Regedit and ensure
that<br />
HKLM\SYSTEM\CurrentControlSet\Control\Terminal Server\fDenyTSConnection is set to
0.
</p>
        <p align="left">
To speed up the logon process over slow links delete any value in<br />
HKEY_USERS\.DEFAULT\Control Panel\Desktop\Wallpaper.
</p>
        <p align="left">
connect to console:i:1<br />
server port:i:3389 (or in full address)<br />
full address:s:[IP address|host:(port)]
</p>
        <p align="left">
(see: <a href="http://support.microsoft.com/default.aspx?scid=kb;en-us;885187" rel="external">http://support.microsoft.com/default.aspx?scid=kb;en-us;885187</a>)
</p>
        <img width="0" height="0" src="http://blog.johnkelly.co.uk/aggbug.ashx?id=4de47c1e-259d-4581-9b74-a0eeba65aed8" />
      </body>
      <title>Remote Desktop</title>
      <guid isPermaLink="false">http://blog.johnkelly.co.uk/PermaLink,guid,4de47c1e-259d-4581-9b74-a0eeba65aed8.aspx</guid>
      <link>http://blog.johnkelly.co.uk/2006/02/12/RemoteDesktop.aspx</link>
      <pubDate>Sun, 12 Feb 2006 12:06:35 GMT</pubDate>
      <description>&lt;p align="left"&gt;
To remotely enable RDP connections open network registry in Regedit and&amp;nbsp;ensure
that&lt;br&gt;
HKLM\SYSTEM\CurrentControlSet\Control\Terminal Server\fDenyTSConnection is set to
0.
&lt;/p&gt;
&lt;p align="left"&gt;
To speed up the logon process over slow links delete any value in&lt;br&gt;
HKEY_USERS\.DEFAULT\Control Panel\Desktop\Wallpaper.
&lt;/p&gt;
&lt;p align="left"&gt;
connect to console:i:1&lt;br&gt;
server port:i:3389 (or in full address)&lt;br&gt;
full address:s:[IP address|host:(port)]
&lt;/p&gt;
&lt;p align="left"&gt;
(see: &lt;a href="http://support.microsoft.com/default.aspx?scid=kb;en-us;885187" rel="external"&gt;http://support.microsoft.com/default.aspx?scid=kb;en-us;885187&lt;/a&gt;)
&lt;/p&gt;
&lt;img width="0" height="0" src="http://blog.johnkelly.co.uk/aggbug.ashx?id=4de47c1e-259d-4581-9b74-a0eeba65aed8" /&gt;</description>
      <comments>http://blog.johnkelly.co.uk/CommentView,guid,4de47c1e-259d-4581-9b74-a0eeba65aed8.aspx</comments>
      <category>win</category>
    </item>
  </channel>
</rss>