<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>www.kevincornwell.com &#187; microsoft</title>
	<atom:link href="http://www.kevincornwell.com/blog/index.php/category/microsoft/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.kevincornwell.com/blog</link>
	<description></description>
	<lastBuildDate>Thu, 02 Dec 2010 16:31:08 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.0.2</generator>
		<item>
		<title>ASP.NET Add Sub Header Row (Group) To GridView Control</title>
		<link>http://www.kevincornwell.com/blog/index.php/asp-net-add-subheader-row-group-to-gridview-control/</link>
		<comments>http://www.kevincornwell.com/blog/index.php/asp-net-add-subheader-row-group-to-gridview-control/#comments</comments>
		<pubDate>Thu, 02 Dec 2010 15:16:14 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[.NET]]></category>
		<category><![CDATA[ASP]]></category>
		<category><![CDATA[microsoft]]></category>

		<guid isPermaLink="false">http://www.kevincornwell.com/blog/?p=275</guid>
		<description><![CDATA[''' &#60;summary&#62; ''' Insert a sub header in a grid view. ''' &#60;/summary&#62; ''' &#60;param name=&#34;gv&#34;&#62;The GridView to insert the sub header row into.&#60;/param&#62; ''' &#60;param name=&#34;gvrBeforeRow&#34;&#62;The GridViewRow to insert the sub header before.&#60;/param&#62; ''' &#60;param name=&#34;sSubHeaderText&#34;&#62;The text to render in the sub header.&#60;/param&#62; ''' &#60;remarks&#62;&#60;/remarks&#62; Protected Sub insertGroupHeaderToGridView&#40;ByRef gv As GridView, ByVal gvrBeforeRow As [...]]]></description>
			<content:encoded><![CDATA[<p><a href="http://www.kevincornwell.com/blog/wp-content/uploads/2010/12/sub_group_headers_gridview.jpg"><img src="http://www.kevincornwell.com/blog/wp-content/uploads/2010/12/sub_group_headers_gridview-300x200.jpg" alt="" title="sub_group_headers_gridview" width="300" height="200" class="alignnone size-medium wp-image-288" /></a></p>

<div class="wp_syntax"><div class="code"><pre class="vbnet">    <span style="color: #008080; font-style: italic;">''' &lt;summary&gt;</span>
    <span style="color: #008080; font-style: italic;">''' Insert a sub header in a grid view.</span>
    <span style="color: #008080; font-style: italic;">''' &lt;/summary&gt;</span>
    <span style="color: #008080; font-style: italic;">''' &lt;param name=&quot;gv&quot;&gt;The GridView to insert the sub header row into.&lt;/param&gt;</span>
    <span style="color: #008080; font-style: italic;">''' &lt;param name=&quot;gvrBeforeRow&quot;&gt;The GridViewRow to insert the sub header before.&lt;/param&gt;</span>
    <span style="color: #008080; font-style: italic;">''' &lt;param name=&quot;sSubHeaderText&quot;&gt;The text to render in the sub header.&lt;/param&gt;</span>
    <span style="color: #008080; font-style: italic;">''' &lt;remarks&gt;&lt;/remarks&gt;</span>
    Protected <span style="color: #0600FF;">Sub</span> insertGroupHeaderToGridView<span style="color: #000000;">&#40;</span><span style="color: #FF8000;">ByRef</span> gv <span style="color: #FF8000;">As</span> GridView, <span style="color: #FF8000;">ByVal</span> gvrBeforeRow <span style="color: #FF8000;">As</span> GridViewRow, <span style="color: #FF8000;">ByVal</span> sSubHeaderText <span style="color: #FF8000;">As</span> <span style="color: #FF8000;">String</span><span style="color: #000000;">&#41;</span>
&nbsp;
        <span style="color: #0600FF;">Dim</span> visibleColumns <span style="color: #FF8000;">As</span> <span style="color: #FF0000;">Integer</span> = gv.<span style="color: #0000FF;">Columns</span>.<span style="color: #0000FF;">Count</span>
&nbsp;
        <span style="color: #0600FF;">Dim</span> tbl <span style="color: #FF8000;">As</span> Table = gv.<span style="color: #0000FF;">Controls</span><span style="color: #000000;">&#40;</span><span style="color: #FF0000;">0</span><span style="color: #000000;">&#41;</span>
        <span style="color: #0600FF;">Dim</span> newRowIndex <span style="color: #FF8000;">As</span> <span style="color: #FF0000;">Integer</span> = tbl.<span style="color: #0000FF;">Rows</span>.<span style="color: #0000FF;">GetRowIndex</span><span style="color: #000000;">&#40;</span>gvrBeforeRow<span style="color: #000000;">&#41;</span>
        <span style="color: #0600FF;">Dim</span> newRow <span style="color: #FF8000;">As</span> GridViewRow = <span style="color: #FF8000;">New</span> GridViewRow<span style="color: #000000;">&#40;</span>newRowIndex, newRowIndex, DataControlRowType.<span style="color: #0000FF;">DataRow</span>, DataControlRowState.<span style="color: #0600FF;">Normal</span><span style="color: #000000;">&#41;</span>
&nbsp;
        newRow.<span style="color: #0000FF;">Cells</span>.<span style="color: #0000FF;">Add</span><span style="color: #000000;">&#40;</span><span style="color: #FF8000;">New</span> TableCell<span style="color: #000000;">&#40;</span><span style="color: #000000;">&#41;</span><span style="color: #000000;">&#41;</span>
&nbsp;
        <span style="color: #0600FF;">If</span> <span style="color: #000000;">&#40;</span>visibleColumns &gt; <span style="color: #FF0000;">1</span><span style="color: #000000;">&#41;</span> <span style="color: #FF8000;">Then</span>
            newRow.<span style="color: #0000FF;">Cells</span><span style="color: #000000;">&#40;</span><span style="color: #FF0000;">0</span><span style="color: #000000;">&#41;</span>.<span style="color: #0000FF;">ColumnSpan</span> = visibleColumns
            newRow.<span style="color: #0000FF;">Cells</span><span style="color: #000000;">&#40;</span><span style="color: #FF0000;">0</span><span style="color: #000000;">&#41;</span>.<span style="color: #0000FF;">Text</span> = sSubHeaderText
        <span style="color: #0600FF;">End</span> <span style="color: #0600FF;">If</span>
&nbsp;
        tbl.<span style="color: #0000FF;">Controls</span>.<span style="color: #0000FF;">AddAt</span><span style="color: #000000;">&#40;</span>newRowIndex, newRow<span style="color: #000000;">&#41;</span>
&nbsp;
    <span style="color: #0600FF;">End</span> <span style="color: #0600FF;">Sub</span></pre></div></div>

]]></content:encoded>
			<wfw:commentRss>http://www.kevincornwell.com/blog/index.php/asp-net-add-subheader-row-group-to-gridview-control/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Windows Media Player 11: How to share media files that are located on other computers on your home network (to share to your xbox 360 or other pc&#8217;s).</title>
		<link>http://www.kevincornwell.com/blog/index.php/windows-media-player-11-how-to-share-media-files-that-are-located-on-other-computers-on-your-home-network-to-share-to-your-xbox-360-or-other-pcs/</link>
		<comments>http://www.kevincornwell.com/blog/index.php/windows-media-player-11-how-to-share-media-files-that-are-located-on-other-computers-on-your-home-network-to-share-to-your-xbox-360-or-other-pcs/#comments</comments>
		<pubDate>Thu, 02 Apr 2009 15:44:40 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Vista]]></category>
		<category><![CDATA[Windows]]></category>
		<category><![CDATA[XP]]></category>
		<category><![CDATA[microsoft]]></category>
		<category><![CDATA[windows media player xbox 360 music video sharing]]></category>

		<guid isPermaLink="false">http://www.kevincornwell.com/blog/?p=228</guid>
		<description><![CDATA[To enable remote content sharing Perform the following steps on the computer that contains the library you are sharing. 1. Click Start, click Run, type regedit, and then click OK. 2. In the registry tree (on the left), expand HKEY_LOCAL_MACHINE, SOFTWARE, Microsoft, MediaPlayer, and Preferences. 3. Right-click HME, point to New, and then click DWORD [...]]]></description>
			<content:encoded><![CDATA[<p><strong>To enable remote content sharing</strong></p>
<p>Perform the following steps on the computer that contains the library you are sharing.<br />
1. Click Start, click Run, type regedit, and then click OK.<br />
2. In the registry tree (on the left), expand HKEY_LOCAL_MACHINE, SOFTWARE, Microsoft, MediaPlayer, and Preferences.<br />
3. Right-click HME, point to New, and then click DWORD Value.<br />
4. Type EnableRemoteContentSharing, and then press ENTER.<br />
5. Right-click EnableRemoteContentSharing, and then click Modify.<br />
6. In the Value data text box, type 1, and then click OK. If you later decide to disable remote content sharing, you can repeat this procedure and change the value to 0.<br />
Caution: Incorrectly editing the registry may severely damage your system. Before making changes to the registry, you should back up any valued data on your computer.</p>
<p><strong>To grant one user account permission to access folders on other computers</strong></p>
<p>1. Click Start, click Control Panel, click Performance and Maintenance or System and Maintenance, click Administrative Tools, and then double-click Services.<br />
2. Scroll down the list of services, right-click Windows Media Player Network Sharing Service, and then click Properties.<br />
3. On the Log On tab, click This account, and specify a user account that has Read permission for the remote folders containing media that you want to share. This account should have a password that never expires.<br />
4. On the General tab, click Stop, click Start, and then click OK.<br />
5. On the computer containing the library you are sharing, click Start, click Run, type regedit, and then click OK.<br />
6. In the registry tree (on the left), expand HKEY_LOCAL_MACHINE, SOFTWARE, Microsoft, and Windows Media Player NSS.<br />
7. Right-click 3.0, and then click Permissions.<br />
8. Click Add.<br />
9. In the Enter the object names to select box, type the name of the account you specified in step 3 of the preceding procedure.<br />
10. Click OK.<br />
11. In the Group or user names box, click the name of the account you specified in step 3 of the preceding procedure.<br />
12. In the Permissions box, on the Full Control row, select the Allow check box.<br />
13. Click OK, and then close Registry Editor.<br />
Caution: Incorrectly editing the registry may severely damage your system. Before making changes to the registry, you should back up any valued data on your computer.</p>
<p><strong>To enable sharing in Windows Media Player</strong></p>
<p>1. Click the arrow below the Library tab, and then click Media Sharing.<br />
2. In the Media Sharing dialog box, select the Share my media to check box.<br />
3. In the list of devices below the Share my media to check box, select a device.<br />
4. Do one of the following:<br />
&#8211;If you want to share your media with the computer or device you have selected, click Allow.<br />
&#8211;If you don&#8217;t want to share your media with the computer or device you have selected, click Deny.</p>
<p>More info here&#8230;</p>
<p><a href="http://www.microsoft.com/windows/windowsmedia/player/faq/sharing.mspx">http://www.microsoft.com/windows/windowsmedia/player/faq/sharing.mspx</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.kevincornwell.com/blog/index.php/windows-media-player-11-how-to-share-media-files-that-are-located-on-other-computers-on-your-home-network-to-share-to-your-xbox-360-or-other-pcs/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>IIS 6.0 Registry Tweaks</title>
		<link>http://www.kevincornwell.com/blog/index.php/iis-60-registry-tweaks/</link>
		<comments>http://www.kevincornwell.com/blog/index.php/iis-60-registry-tweaks/#comments</comments>
		<pubDate>Wed, 14 Feb 2007 04:58:49 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[IIS]]></category>
		<category><![CDATA[microsoft]]></category>
		<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://www.kevincornwell.com/blog/index.php/iis-60-registry-tweaks/</guid>
		<description><![CDATA[Microsoft TechNet Article on Global Registry Entries My main point of interest is the IIS logging. I would like to flush the log to disk before I run a script that gathers up all the logs and build useage reports every hour. Although interesting, the following registry entry is no help. If you set the [...]]]></description>
			<content:encoded><![CDATA[<p><a href="http://www.microsoft.com/technet/prodtechnol/WindowsServer2003/Library/IIS/60a90c91-a8d0-43b6-89db-a431d0ea0cb4.mspx?mfr=true">Microsoft TechNet Article on Global Registry Entries</a></p>
<p>My main point of interest is the IIS logging.  I would like to flush the log to disk before I run a script that gathers up all the logs and build useage reports every hour.  </p>
<p>Although interesting, the following registry entry is no help.  If you set the value to small the server performance will degrade quickly.</p>
<p><strong>LogBufferSize</strong><br />
Registry Path:</p>
<blockquote><p>
HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Services\Http\Parameters\LogBufferSize<br />
Data Type: REG_DWORD<br />
Default Value: N/A<br />
Range: 12,288 &#8211; 65,536 (12K &#8211; 64K)
</p></blockquote>
<p>Overrides the default logging buffer (per site) of 64K. Using this key, administrators can prevent excessive memory usage when running many thousands of sites on a server. This registry key does not exist by default and must be added to the registry.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.kevincornwell.com/blog/index.php/iis-60-registry-tweaks/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Create and populate a simple calendar table in MS SQL</title>
		<link>http://www.kevincornwell.com/blog/index.php/create-and-populate-a-simple-calendar-table-in-ms-sql/</link>
		<comments>http://www.kevincornwell.com/blog/index.php/create-and-populate-a-simple-calendar-table-in-ms-sql/#comments</comments>
		<pubDate>Mon, 18 Dec 2006 03:36:57 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[SQL]]></category>
		<category><![CDATA[Visual Studio]]></category>
		<category><![CDATA[microsoft]]></category>
		<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://www.kevincornwell.com/blog/index.php/create-and-populate-a-simple-calendar-table-in-ms-sql/</guid>
		<description><![CDATA[Edit as required&#8230; USE master go &#160; IF EXISTS &#40;SELECT * FROM INFORMATION_SCHEMA.TABLES WHERE TABLE_NAME = 'tCalendar'&#41; BEGIN DROP TABLE tCalendar END go &#160; CREATE TABLE tCalendar &#40; DateID INT IDENTITY&#40;1,1&#41; CONSTRAINT tCalendar_PK PRIMARY KEY CLUSTERED, DATE DATETIME, Holiday BIT DEFAULT 0, Workday BIT DEFAULT 0&#41; go CREATE UNIQUE NONCLUSTERED INDEX tCalendar_date_N_Idx ON tCalendar&#40;DATE&#41; go [...]]]></description>
			<content:encoded><![CDATA[<p>Edit as required&#8230;</p>

<div class="wp_syntax"><div class="code"><pre class="tsql"><span style="color: #0000FF;">USE</span> master
go
&nbsp;
<span style="color: #0000FF;">IF</span>  EXISTS <span style="color: #808080;">&#40;</span><span style="color: #0000FF;">SELECT</span> * <span style="color: #0000FF;">FROM</span> INFORMATION_SCHEMA.<span style="color: #202020;">TABLES</span> <span style="color: #0000FF;">WHERE</span> TABLE_NAME = <span style="color: #FF0000;">'tCalendar'</span><span style="color: #808080;">&#41;</span>
<span style="color: #0000FF;">BEGIN</span>
<span style="color: #0000FF;">DROP</span> <span style="color: #0000FF;">TABLE</span> tCalendar
<span style="color: #0000FF;">END</span>
go
&nbsp;
<span style="color: #0000FF;">CREATE</span> <span style="color: #0000FF;">TABLE</span> tCalendar <span style="color: #808080;">&#40;</span>
DateID <span style="color: #0000FF;">INT</span> <span style="color: #0000FF;">IDENTITY</span><span style="color: #808080;">&#40;</span><span style="color: #000;">1</span>,<span style="color: #000;">1</span><span style="color: #808080;">&#41;</span> <span style="color: #0000FF;">CONSTRAINT</span> tCalendar_PK <span style="color: #0000FF;">PRIMARY</span> <span style="color: #0000FF;">KEY</span> <span style="color: #0000FF;">CLUSTERED</span>,
<span style="color: #0000FF;">DATE</span> <span style="color: #0000FF;">DATETIME</span>,
Holiday <span style="color: #0000FF;">BIT</span> <span style="color: #0000FF;">DEFAULT</span> <span style="color: #000;">0</span>,
Workday <span style="color: #0000FF;">BIT</span> <span style="color: #0000FF;">DEFAULT</span> <span style="color: #000;">0</span><span style="color: #808080;">&#41;</span>
go
<span style="color: #0000FF;">CREATE</span> <span style="color: #0000FF;">UNIQUE</span> <span style="color: #0000FF;">NONCLUSTERED</span> <span style="color: #0000FF;">INDEX</span>
tCalendar_date_N_Idx <span style="color: #0000FF;">ON</span> tCalendar<span style="color: #808080;">&#40;</span><span style="color: #0000FF;">DATE</span><span style="color: #808080;">&#41;</span>
go
&nbsp;
<span style="color: #008080;">--Populate all days</span>
&nbsp;
<span style="color: #0000FF;">DECLARE</span> @n <span style="color: #0000FF;">INT</span>
<span style="color: #0000FF;">DECLARE</span> @maxn <span style="color: #0000FF;">INT</span>
<span style="color: #0000FF;">DECLARE</span> @begindate <span style="color: #0000FF;">DATETIME</span>
<span style="color: #0000FF;">SET</span> @n =<span style="color: #000;">1</span>
<span style="color: #0000FF;">SET</span> @maxn=<span style="color: #000;">36500</span>    <span style="color: #008080;">-- Number of days added to the calendar</span>
<span style="color: #0000FF;">SET</span> @begindate =<span style="color: #0000FF;">CONVERT</span><span style="color: #808080;">&#40;</span><span style="color: #0000FF;">DATETIME</span>,<span style="color: #FF0000;">'01/01/1995'</span><span style="color: #808080;">&#41;</span>
<span style="color: #008080;">-- Initial date for the first run is todays date</span>
<span style="color: #008080;">-- or Jan 1st</span>
<span style="color: #0000FF;">SET</span> @begindate =@begindate <span style="color: #000;">-1</span>
&nbsp;
<span style="color: #0000FF;">WHILE</span> @n &lt;= @maxn
<span style="color: #0000FF;">BEGIN</span>
<span style="color: #0000FF;">INSERT</span> <span style="color: #0000FF;">INTO</span> tCalendar<span style="color: #808080;">&#40;</span><span style="color: #0000FF;">DATE</span><span style="color: #808080;">&#41;</span> <span style="color: #0000FF;">SELECT</span> @begindate+@n
<span style="color: #0000FF;">SET</span> @n=@n<span style="color: #000;">+1</span>
<span style="color: #0000FF;">END</span>
&nbsp;
<span style="color: #008080;">--update the holiday and workday flags</span>
&nbsp;
go
<span style="color: #0000FF;">UPDATE</span> tCalendar
<span style="color: #0000FF;">SET</span> holiday=<span style="color: #000;">1</span> <span style="color: #0000FF;">WHERE</span> <span style="color: #FF00FF;">DATENAME</span><span style="color: #808080;">&#40;</span>dw,<span style="color: #0000FF;">DATE</span><span style="color: #808080;">&#41;</span> in <span style="color: #808080;">&#40;</span><span style="color: #FF0000;">'Saturday'</span>,<span style="color: #FF0000;">'Sunday'</span><span style="color: #808080;">&#41;</span>
go
<span style="color: #0000FF;">UPDATE</span> tCalendar
<span style="color: #0000FF;">SET</span> workday=<span style="color: #000;">1</span> <span style="color: #0000FF;">WHERE</span> holiday=<span style="color: #000;">0</span>
go
&nbsp;
<span style="color: #0000FF;">SELECT</span> * <span style="color: #0000FF;">FROM</span> tCalendar</pre></div></div>

]]></content:encoded>
			<wfw:commentRss>http://www.kevincornwell.com/blog/index.php/create-and-populate-a-simple-calendar-table-in-ms-sql/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Add an indentity feild to an existing MS SQL table.</title>
		<link>http://www.kevincornwell.com/blog/index.php/add-an-indentity-feild-to-an-existing-sql-table/</link>
		<comments>http://www.kevincornwell.com/blog/index.php/add-an-indentity-feild-to-an-existing-sql-table/#comments</comments>
		<pubDate>Wed, 25 Oct 2006 15:17:08 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[SQL]]></category>
		<category><![CDATA[microsoft]]></category>
		<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://kevincornwell.com/wordpress/?p=23</guid>
		<description><![CDATA[There is no easy way that I am aware of (in MS SQL 2000). You basically have to create a table with an additional identity field and import the data. Here is how you do it: -From *Enterprise Manager, backup the original table by renaming it. -From Query Analyzer, create new table&#8230; -Right click the [...]]]></description>
			<content:encoded><![CDATA[<p>There is no easy way that I am aware of (in MS SQL 2000).  You basically have to create a table with an additional identity field and import the data.  Here is how you do it:</p>
<p>-From *Enterprise Manager, backup the original table by renaming it.<br />
-From Query Analyzer, create new table&#8230;<br />
-Right click the old table &#8220;Script Object to new window as &#8221; -> &#8220;create&#8221;.<br />
-Edit the ALL table names in the query to the original.  (this makes a copy of the table structure)<br />
-Execute.<br />
-In Enterprise manager create new ID (identity column) and set the identity property to &#8220;yes, not for replication&#8221; in the newly created table (you may also want to set this column as the primary key).<br />
-Import the data&#8230;<br />
-Run this query in Query Analyzer, replacing the appropriate table names and column names.  NOTE: the column names must be in the same order for both tables!<br />
INSERT INTO [new_table] (list_all_the_column_names_to_import) SELECT list_all_the_column_names_to_import FROM [old_table]</p>
<p>* If you know your SQL query lingo well enough you can do everything from Query Analyzer.</p>
<p>:)</p>
]]></content:encoded>
			<wfw:commentRss>http://www.kevincornwell.com/blog/index.php/add-an-indentity-feild-to-an-existing-sql-table/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>How to add &#8220;Control Panel&#8221;, &#8220;Device Manager&#8221;, &#8220;Command Prompt&#8221; and &#8220;RegEdit&#8221; to right click context menu of My Computer</title>
		<link>http://www.kevincornwell.com/blog/index.php/how-to-add-control-panel-device-manager-and-regedit-to-right-click-context-menu-of-my-computer/</link>
		<comments>http://www.kevincornwell.com/blog/index.php/how-to-add-control-panel-device-manager-and-regedit-to-right-click-context-menu-of-my-computer/#comments</comments>
		<pubDate>Mon, 18 Sep 2006 15:31:38 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Windows]]></category>
		<category><![CDATA[microsoft]]></category>
		<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://kevincornwell.com/wordpress/?p=21</guid>
		<description><![CDATA[Open notepad and paste the following text (you can get to notepad easily by going to Start -> Run -> type &#8216;notepad&#8217; -> Ok)&#8230; Windows Registry Editor Version 5.00 [HKEY_LOCAL_MACHINE\SOFTWARE\Classes\CLSID\{20D04FE0-3AEA-1069-A2D8-08002B30309D}\shell\Control Panel\command] @=&#8221;rundll32.exe shell32.dll,Control_RunDLL&#8221; [HKEY_LOCAL_MACHINE\SOFTWARE\Classes\CLSID\{20D04FE0-3AEA-1069-A2D8-08002B30309D}\shell\DevMgr] @=&#8221;Device Manager&#8221; [HKEY_LOCAL_MACHINE\SOFTWARE\Classes\CLSID\{20D04FE0-3AEA-1069-A2D8-08002B30309D}\shell\DevMgr\command] @=&#8221;mmc.exe %%SYSTEMDRIVE%%\\WINDOWS\\SYSTEM32\\devmgmt.msc&#8221; [HKEY_CLASSES_ROOT\CLSID\{20D04FE0-3AEA-1069-A2D8-08002B30309D}\shell\Regedit] [HKEY_CLASSES_ROOT\CLSID\{20D04FE0-3AEA-1069-A2D8-08002B30309D}\shell\Regedit\command] @=&#8221;regedit.exe&#8221; [HKEY_CLASSES_ROOT\CLSID\{20D04FE0-3AEA-1069-A2D8-08002B30309D}\shell\Command Prompt] [HKEY_CLASSES_ROOT\CLSID\{20D04FE0-3AEA-1069-A2D8-08002B30309D}\shell\Command Prompt\command] Save the file as my_computer_context_menu.reg to the desktop. Double [...]]]></description>
			<content:encoded><![CDATA[<p>Open notepad and paste the following text (you can get to notepad easily by going to <em><strong>Start -> Run -> type &#8216;notepad&#8217; -> Ok</strong></em>)&#8230;</p>
<blockquote>
<p><strong>Windows Registry Editor Version 5.00</strong></p>
<p>[HKEY_LOCAL_MACHINE\SOFTWARE\Classes\CLSID\{20D04FE0-3AEA-1069-A2D8-08002B30309D}\shell\Control Panel\command]<br />
@=&#8221;rundll32.exe shell32.dll,Control_RunDLL&#8221;</p>
<p>[HKEY_LOCAL_MACHINE\SOFTWARE\Classes\CLSID\{20D04FE0-3AEA-1069-A2D8-08002B30309D}\shell\DevMgr]<br />
@=&#8221;Device Manager&#8221;</p>
<p>[HKEY_LOCAL_MACHINE\SOFTWARE\Classes\CLSID\{20D04FE0-3AEA-1069-A2D8-08002B30309D}\shell\DevMgr\command]<br />
@=&#8221;mmc.exe %%SYSTEMDRIVE%%\\WINDOWS\\SYSTEM32\\devmgmt.msc&#8221;</p>
<p>[HKEY_CLASSES_ROOT\CLSID\{20D04FE0-3AEA-1069-A2D8-08002B30309D}\shell\Regedit]</p>
<p>[HKEY_CLASSES_ROOT\CLSID\{20D04FE0-3AEA-1069-A2D8-08002B30309D}\shell\Regedit\command]<br />
@=&#8221;regedit.exe&#8221;</p>
<p>[HKEY_CLASSES_ROOT\CLSID\{20D04FE0-3AEA-1069-A2D8-08002B30309D}\shell\Command Prompt]</p>
<p>[HKEY_CLASSES_ROOT\CLSID\{20D04FE0-3AEA-1069-A2D8-08002B30309D}\shell\Command Prompt\command]
</p></blockquote>
<p>Save the file as <strong>my_computer_context_menu.reg</strong> to the desktop.  Double click <strong>my_computer_context_menu.reg</strong> it to intall this your registry.  You are done.  Test to see if the new items appear in the context menu by right clicking <strong>My Computer</strong>.  If so, you have done it correctly and may delete my_computer_context_menu.reg from your desktop.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.kevincornwell.com/blog/index.php/how-to-add-control-panel-device-manager-and-regedit-to-right-click-context-menu-of-my-computer/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

