<?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>Jephens Tech. &#187; xp</title>
	<atom:link href="http://www.jephens.com/tag/xp/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.jephens.com</link>
	<description>Keeping Computers Happy Since 1997</description>
	<lastBuildDate>Tue, 22 Nov 2011 04:33:16 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=</generator>
		<item>
		<title>Fixing Logon Failure errors in XP Home</title>
		<link>http://www.jephens.com/2008/09/24/fixing-logon-failure-errors-in-xp-home/</link>
		<comments>http://www.jephens.com/2008/09/24/fixing-logon-failure-errors-in-xp-home/#comments</comments>
		<pubDate>Wed, 24 Sep 2008 19:46:42 +0000</pubDate>
		<dc:creator>Jeff Knapp</dc:creator>
				<category><![CDATA[Management]]></category>
		<category><![CDATA[Security]]></category>
		<category><![CDATA[file sharing]]></category>
		<category><![CDATA[logon failure]]></category>
		<category><![CDATA[xp]]></category>

		<guid isPermaLink="false">http://www.jephens.com/?p=53</guid>
		<description><![CDATA[A client running XP Home today had an issue with a machine running slowly, and in the (ab)normal course of troubleshooting, we came across some errors in the event viewer that caused us to reset the security descriptors back to their defaults... and in doing so, we broke his printer sharing. (Oops!) For those of [...]]]></description>
			<content:encoded><![CDATA[<p>A client running XP Home today had an issue with a machine running slowly, and in the (ab)normal course of troubleshooting, we came across some errors in the event viewer that caused us to reset the security descriptors back to their defaults... and in doing so, we broke his printer sharing. (Oops!)</p>
<p>For those of you at home, we <a href="http://support.microsoft.com/kb/313222" target="_blank">reset the security back to baseline</a> via the secedit utility -- something we carry with us on our USB keys since it doesn't ship with XP Home:</p>
<p style="padding-left: 30px;"><span class="userInput">secedit /configure /cfg 				%windir%\repair\secsetup.inf /db secsetup.sdb /verbose</span></p>
<p>So, since it's XP Home, we didn't have a lot of tools available to us, so we replied upon the Win2k3 Resource Kit tools to help us reset the Guest account, so it had access to the local printer:</p>
<p>The remote user was getting the message "Logon failure: the user has not been granted the requested logon type at this computer"</p>
<p>So we confirmed the guest account was turned on via:</p>
<p style="padding-left: 30px;">net user guest /active:yes</p>
<p>And then we allowed it to logon from the network. (Case sensitivity rules in effect):</p>
<p style="padding-left: 30px;">ntrights +r SeNetworkLogonRight -u Guest</p>
<p>And we had to remove the DENY right, since it takes precedence in all transactions:</p>
<p style="padding-left: 30px;">ntrights -r SeDenyNetworkLogonRight -u Guest</p>
<p>Once we did that, the other computer was able to print again.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.jephens.com/2008/09/24/fixing-logon-failure-errors-in-xp-home/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Stop the Beeping!</title>
		<link>http://www.jephens.com/2008/06/19/stop-the-beeping/</link>
		<comments>http://www.jephens.com/2008/06/19/stop-the-beeping/#comments</comments>
		<pubDate>Thu, 19 Jun 2008 20:03:34 +0000</pubDate>
		<dc:creator>Jeff Knapp</dc:creator>
				<category><![CDATA[Productivity]]></category>
		<category><![CDATA[beep]]></category>
		<category><![CDATA[service]]></category>
		<category><![CDATA[vista]]></category>
		<category><![CDATA[win2k]]></category>
		<category><![CDATA[xp]]></category>

		<guid isPermaLink="false">http://www.jephens.com/?p=23</guid>
		<description><![CDATA[On my laptop, every time I connect to a wireless network, the Intel software pops up a notification window telling me that I've connected, but it is accompanied by a loud BEEP -- even though my speaker is muted and I run the "No Sounds" sound scheme. Turns out that BEEP is a service; but [...]]]></description>
			<content:encoded><![CDATA[<p>On my laptop, every time I connect to a wireless network, the Intel software pops up a notification window telling me that I've connected, but it is accompanied by a loud BEEP -- even though my speaker is muted and I run the "No Sounds" sound scheme.</p>
<p>Turns out that BEEP is a service; but a service that's hidden from almost all user interfaces.</p>
<p>The easiest way to stop it (temporarily) is to open a command prompt (Click Start, Run and then type CMD and click OK or hit enter) and then type the following:</p>
<p style="padding-left: 30px;"><strong>net stop beep</strong></p>
<p>Easy enough. However, after a reboot, you'll need to do it again... which is a drag, so let's use a lesser known command, <strong><em>SC</em></strong>, to handle this for us.</p>
<p>From its help text:</p>
<p>DESCRIPTION:<br />
 SC is a command line program used for communicating with the<br />
 NT Service Controller and services.</p>
<p>In the command window, type</p>
<p style="padding-left: 30px;"><strong>sc config beep start= disabled</strong></p>
<p>There needs to be a space after the equals sign.</p>
<p>Once you do that, your computer should respond with:</p>
<p style="padding-left: 30px;"><strong>[SC] ChangeServiceConfig SUCCESS</strong></p>
<p>You can also do this using the GUI, but I don't know why you would want to... it's a chore.</p>
<p>For an XP system (Win2K and Vista are similarly done). Instructions gacked from <a href="http://windowsitpro.com/article/articleid/15508/how-do-i-stop-windows-2000-from-beeping.html" target="_blank">Windows IT Magazine</a>:</p>
<ol>
<li>Right-click My Computer and select Manage.</li>
<li>Expand System Tools and select Device Manager.</li>
<li>From the View menu, select Show hidden devices.</li>
<li>Expand Non-Plug and Play Drivers.</li>
<li>Right-click Beep, and select Properties.</li>
<li>Select the Drivers tab.</li>
<li>Click Stop. You can also change the start-up type to Disabled so the beep service never starts.</li>
</ol>
<p>Enjoyyour new, quieter, life. <img src='http://www.jephens.com/wp-includes/images/smilies/icon_smile.gif' alt=':-)' class='wp-smiley' /> </p>
<p>If you need to turn it back on, use this:</p>
<p style="padding-left: 30px;"><strong>net start beep</strong></p>
<p>On the off-chance you want to turn this back on forever, use the command:</p>
<p style="padding-left: 30px;"><strong>sc config beep start= boot </strong></p>
<p>Or using the GUI instructions, change step 7 to:</p>
<p style="padding-left: 30px;">7. Click START</p>
<p>To have it restart forever:</p>
<p style="padding-left: 30px;">7. Change the start-up type to Boot so the beep service starts at boot time.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.jephens.com/2008/06/19/stop-the-beeping/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
	</channel>
</rss>

