<?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>Windows Administration &#8211; Tomas&#039; log of stuff</title>
	<atom:link href="https://blog.fjetland.com/category/technology/windows-administration-technology/feed/" rel="self" type="application/rss+xml" />
	<link>https://blog.fjetland.com</link>
	<description>Notes from the sysadmin trenches, on hobby photography, and anything else that comes to mind</description>
	<lastBuildDate>Mon, 27 Oct 2014 22:02:49 +0000</lastBuildDate>
	<language>en-US</language>
	<sy:updatePeriod>
	hourly	</sy:updatePeriod>
	<sy:updateFrequency>
	1	</sy:updateFrequency>
	
	<item>
		<title>Printer sharing problem under Windows 2008 R2 / Windows 7 (error 0x000006d9)</title>
		<link>https://blog.fjetland.com/2014/10/printer-sharing-problem-under-windows-2008-r2-windows-7-error-0x000006d9/?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=printer-sharing-problem-under-windows-2008-r2-windows-7-error-0x000006d9</link>
					<comments>https://blog.fjetland.com/2014/10/printer-sharing-problem-under-windows-2008-r2-windows-7-error-0x000006d9/#respond</comments>
		
		<dc:creator><![CDATA[tomasf]]></dc:creator>
		<pubDate>Mon, 27 Oct 2014 22:00:28 +0000</pubDate>
				<category><![CDATA[Technology]]></category>
		<category><![CDATA[Windows Administration]]></category>
		<category><![CDATA[server]]></category>
		<category><![CDATA[system administration]]></category>
		<category><![CDATA[Windows]]></category>
		<guid isPermaLink="false">http://blog.fjetland.com/?p=6</guid>

					<description><![CDATA[OK, new blog and all. Let&#8217;s test this baby out by reposting the only post that really got any traffic on my old blog, from back in March 2010: I ran across this issue&#46;&#46;&#46;]]></description>
										<content:encoded><![CDATA[<p>OK, new blog and all. Let&#8217;s test this baby out by reposting the only post that really got any traffic on my old blog, from back in March 2010:</p>
<p>I ran across this issue at work a while ago while setting up a new print server. The server is running Windows 2008 R2 (same codebase as Windows 7 so the same problem and solution applies). After the server was all set up and ready to go, all we needed to do was share the print queue in question. Except all we got was <em>&#8220;Operation could not be completed&#8221;</em> (<strong>error 0x000006d9</strong>).</p>
<p>The reason for this is that, like many other organizations, we&#8217;ve traditionally run a GPO that disables the Windows Firewall service (Officially named <strong>Windows Firewall with Advanced Security</strong>) on Windows Servers, instead relying on rigidly configured, dedicated firewalls between network segments, etc. Simply put, Windows 2008 R2 really, really doesn&#8217;t like having its firewall service stopped. One of the issues you&#8217;ll run in to is not being able to share the printer.</p>
<p><strong>The simple solution is start the Windows Firewall service, share the printer &#8211; and if you have to &#8211; stop the service again.</strong></p>
<p>A better solution than disabling the service is to turn off the firewall part of <em>Windows Firewall with Advanced Security</em> as described <a title="I Need to Disable Windows Firewall" href="http://technet.microsoft.com/en-us/library/cc766337(WS.10).aspx" target="_blank" rel="noopener">in this Technet article</a>.</p>
<p>The basic steps are as follows:</p>
<p><strong><em>To disable the firewall portion of Windows Firewall with Advanced Security from a command prompt</em></strong></p>
<div class="subSection">
<ol class="ordered">
<li>Open an <strong>Administrator: Command Prompt</strong>. To do so, click <strong>Start</strong>, click <strong>All Programs</strong>, click <strong>Accessories</strong>, right-click <strong>Command Prompt</strong>, and then click<strong>Run as administrator</strong>.</li>
<li>If the <strong>User Account Control</strong> dialog box appears, confirm that the action it displays is what you want, and then click <strong>Continue</strong>.</li>
<li>At the command prompt, type the following command:<strong>netsh advfirewall set </strong><em>profiles</em> <strong>state off </strong>where <em>profiles</em> is <strong>AllProfiles</strong>, <strong>CurrentProfile</strong>, <strong>DomainProfile</strong>,<strong>PrivateProfile</strong>, or <strong>PublicProfile</strong>.</li>
</ol>
</div>
<p><strong><em>To disable the firewall portion of Windows Firewall with Advanced Security by using the Windows Firewall Control Panel program</em></strong></p>
<div class="subSection">
<ol class="ordered">
<li>Click <strong>Start</strong>, click <strong>Control Panel</strong>, click <strong>Network and Internet</strong>, and then under <strong>Windows Firewall</strong>, click <strong>Turn Windows Firewall on or off</strong>.</li>
<li>On the <strong>General</strong> tab of the <strong>Windows Firewall Settings</strong> dialog box, select<strong>Off (not recommended)</strong>, and then click <strong>OK</strong>.</li>
</ol>
</div>
<p><em><strong>To disable the firewall portion of Windows Firewall with Advanced Security by using the Windows Firewall with Advanced Security MMC snap-in</strong></em></p>
<div class="subSection">
<ol class="ordered">
<li>Click <strong>Start</strong>, click <strong>All Programs</strong>, click <strong>Administrative Tools</strong>, and then click<strong>Windows Firewall with Advanced Security</strong>.</li>
<li>In the navigation pane, right-click <strong>Windows Firewall with Advanced Security on Local Computer</strong>, and then click <strong>Properties</strong>.</li>
<li>On each of the <strong>Domain Profile</strong>, <strong>Private Profile</strong>, and <strong>Public Profile</strong> tabs, change the <strong>Firewall state</strong> option to <strong>Off (not recommended)</strong>.</li>
<li>Click <strong>OK</strong> to save your changes.</li>
</ol>
<p>So, that&#8217;s about it <img src="https://s.w.org/images/core/emoji/14.0.0/72x72/1f642.png" alt="🙂" class="wp-smiley" style="height: 1em; max-height: 1em;" /></p>
</div>
]]></content:encoded>
					
					<wfw:commentRss>https://blog.fjetland.com/2014/10/printer-sharing-problem-under-windows-2008-r2-windows-7-error-0x000006d9/feed/</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		
			</item>
	</channel>
</rss>
