<?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>[Sh]IT Happens! - Iain Gibson&#039;s Blog</title>
	<atom:link href="http://blog.iaingibson.co.uk/feed/" rel="self" type="application/rss+xml" />
	<link>http://blog.iaingibson.co.uk</link>
	<description>Up to your ankles? Read on</description>
	<lastBuildDate>Mon, 06 Feb 2012 11:43:58 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.1</generator>
		<item>
		<title>Logrotate &#8211; mysql error &#8211; Ubuntu</title>
		<link>http://blog.iaingibson.co.uk/2012/02/logrotate-mysql-error-ubuntu/</link>
		<comments>http://blog.iaingibson.co.uk/2012/02/logrotate-mysql-error-ubuntu/#comments</comments>
		<pubDate>Fri, 03 Feb 2012 12:49:02 +0000</pubDate>
		<dc:creator>iain</dc:creator>
				<category><![CDATA[Geek Central]]></category>
		<category><![CDATA[Ubuntu]]></category>
		<category><![CDATA[logrotate]]></category>
		<category><![CDATA[mysql]]></category>
		<category><![CDATA[ubuntu]]></category>

		<guid isPermaLink="false">http://blog.iaingibson.co.uk/?p=107</guid>
		<description><![CDATA[I have been setting up some new server recently and ran accross this error happening in the daily cron jobs: /etc/cron.daily/logrotate: error: error running shared postrotate script for '/var/log/mysql.log /var/log/mysql/mysql.log /var/log/mysql/mysql-slow.log ' run-parts: /etc/cron.daily/logrotate exited with return code 1 Using &#8230; <a href="http://blog.iaingibson.co.uk/2012/02/logrotate-mysql-error-ubuntu/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>I have been setting up some new server recently and ran accross this error happening in the daily cron jobs:</p>
<pre>/etc/cron.daily/logrotate:
error: error running shared postrotate script for '/var/log/mysql.log
/var/log/mysql/mysql.log /var/log/mysql/mysql-slow.log '
run-parts: /etc/cron.daily/logrotate exited with return code 1</pre>
<p>Using phpmyadmin on the server shows that the debian-sys-maint user is correct and has all permissions, so I can only assume the password has some how got mangled in all the upgrading process.</p>
<p>You should find you have a file:</p>
<p>/etc/mysql/debian.cnf</p>
<pre> # Automatically generated for Debian scripts. DO NOT TOUCH!
[client]
host     = localhost
user     = debian-sys-maint
password = XXXXXXXXXXXXXXXX
socket   = /var/run/mysqld/mysqld.sock
[mysql_upgrade]
host     = localhost
user     = debian-sys-maint
password = XXXXXXXXXXXXXXXX
socket   = /var/run/mysqld/mysqld.sock
basedir  = /usr</pre>
<p>If you have deleted or have lost the debian-sys-maint user then you need to recreate it with:</p>
<div>
<div>
<pre>GRANT RELOAD, SHUTDOWN, PROCESS, SHOW DATABASES, SUPER, LOCK TABLES ON *.* TO 'debian-sys-maint'@'localhost' IDENTIFIED BY PASSWORD 'xxxxxxxxxxxxxxxx'</pre>
</div>
</div>
<p>Else simply update the password</p>
<pre> UPDATE user SET Password=PASSWORD("xxxxxxxxxxxxxxx") WHERE User='debian-sys-maint';</pre>
<p>And with any luck that should be you back on the road to logrotate!</p>
]]></content:encoded>
			<wfw:commentRss>http://blog.iaingibson.co.uk/2012/02/logrotate-mysql-error-ubuntu/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Startup scripts &#8211; add windows features</title>
		<link>http://blog.iaingibson.co.uk/2012/01/startup-scripts-add-windows-features/</link>
		<comments>http://blog.iaingibson.co.uk/2012/01/startup-scripts-add-windows-features/#comments</comments>
		<pubDate>Sat, 07 Jan 2012 11:38:43 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Client]]></category>
		<category><![CDATA[Geek Central]]></category>
		<category><![CDATA[Scripting]]></category>

		<guid isPermaLink="false">http://blog.iaingibson.co.uk/?p=125</guid>
		<description><![CDATA[Quick update for January! It is easy to control Windows 7 features by turning them on and off by startup scripts. Pop along to your group policy and add the following script to add the Games features back into Windows &#8230; <a href="http://blog.iaingibson.co.uk/2012/01/startup-scripts-add-windows-features/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>Quick update for January!</p>
<p>It is easy to control Windows 7 features by turning them on and off by startup scripts. Pop along to your group policy and add the following script to add the Games features back into Windows 7 Enterprise (default is not to install games &#8211; how boring!)</p>
<pre>REM Install Games
dism /online /enable-feature /featurename:"InboxGames" /norestart /quiet</pre>
<p>You can control any features with this simply look up the featurename of the component you want to use.</p>
<p>View your currently installed features with:</p>
<pre>dism /online /get-features</pre>
<p>You may want to pipe that to something as it can be a long list!</p>
]]></content:encoded>
			<wfw:commentRss>http://blog.iaingibson.co.uk/2012/01/startup-scripts-add-windows-features/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Remote Desktop Connection</title>
		<link>http://blog.iaingibson.co.uk/2011/12/remote-desktop-connection/</link>
		<comments>http://blog.iaingibson.co.uk/2011/12/remote-desktop-connection/#comments</comments>
		<pubDate>Sat, 03 Dec 2011 10:56:06 +0000</pubDate>
		<dc:creator>iain</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://blog.iaingibson.co.uk/?p=109</guid>
		<description><![CDATA[A cheeky little command I found out about. Pressing CTRL + ALT + PAUSE/BREAK This causes Remote Desktop connection to change from window mode to full screen. I found out the hard way that using my laptop to connect to &#8230; <a href="http://blog.iaingibson.co.uk/2011/12/remote-desktop-connection/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>A cheeky little command I found out about.</p>
<p>Pressing CTRL + ALT + PAUSE/BREAK</p>
<p>This causes Remote Desktop connection to change from window mode to full screen. I found out the hard way that using my laptop to connect to server screens was causing the screen refresh and to resize.</p>
<p>One point to note is that on some laptops you may also need to press Fn, as BREAK is a secondary keyboard option (usually in blue).</p>
]]></content:encoded>
			<wfw:commentRss>http://blog.iaingibson.co.uk/2011/12/remote-desktop-connection/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Manage Windows Printers from command line script</title>
		<link>http://blog.iaingibson.co.uk/2011/11/manage-windows-printers-from-command-line-script/</link>
		<comments>http://blog.iaingibson.co.uk/2011/11/manage-windows-printers-from-command-line-script/#comments</comments>
		<pubDate>Sun, 06 Nov 2011 10:52:42 +0000</pubDate>
		<dc:creator>iain</dc:creator>
				<category><![CDATA[Client]]></category>
		<category><![CDATA[Geek Central]]></category>
		<category><![CDATA[Scripting]]></category>
		<category><![CDATA[Windows]]></category>

		<guid isPermaLink="false">http://blog.iaingibson.co.uk/?p=113</guid>
		<description><![CDATA[Every now and again you come across the issue of printers&#8230;.. Most people in larger environment will use Group Policy to manage your printer deployment, certainly in Windows Vista/7 this was made a lot easier with the enhancement of group &#8230; <a href="http://blog.iaingibson.co.uk/2011/11/manage-windows-printers-from-command-line-script/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>Every now and again you come across the issue of printers&#8230;..</p>
<p>Most people in larger environment will use Group Policy to manage your printer deployment, certainly in Windows Vista/7 this was made a lot easier with the enhancement of group policy.</p>
<p>This script was included with Windows XP and has appeared in subsequent versions of Windows.</p>
<pre>C:\&gt;cscript %windir%\System32\Printing_Admin_Scripts\en-US\prnmngr.vbs /?
Microsoft (R) Windows Script Host Version 5.8
Copyright (C) Microsoft Corporation. All rights reserved.
Usage: prnmngr [-adxgtl?][c] [-s server][-p printer][-m driver model]
               [-r port][-u user name][-w password]
 Arguments:
 -a     - add local printer
 -ac    - add printer connection
 -d     - delete printer
 -g     - get the default printer
 -l     - list printers
 -m     - driver model
 -p     - printer name
 -r     - port name
 -s     - server name
 -t     - set the default printer
 -u     - user name
 -w     - password
 -x     - delete all printers
 -xc    - delete all printer connections
 -xo    - delete all local printers
 -?     - display command usage
Examples:
 prnmngr -a -p "printer" -m "driver" -r "lpt1:"
 prnmngr -d -p "printer" -s server
 prnmngr -ac -p "\\server\printer"
 prnmngr -d -p "\\server\printer"
 prnmngr -x -s server
 prnmngr -xo
 prnmngr -l -s server
 prnmngr -g
 prnmngr -t -p "\\server\printer"</pre>
<p>A couple of handy commands to get you started</p>
<p>Remove all network connected printers:</p>
<pre>cscript %windir%\System32\Printing_Admin_Scripts\en-US\prnmngr.vbs -xc</pre>
<p>If you prefer your approach to be a little more precise, then below is the script I use for removing particular printers and their drivers from machine. Also a very handy way for dealing with 64 bit and 32 bit Windows printers&#8230;.</p>
<pre>rem Remove all Kyocera Drivers
 rem Check Environment
 IF NOT "%ProgramFiles(x86)%"=="" (goto ARP64) else (goto ARP86)
 REM 64 Bit
 :ARP64
 cscript %windir%\System32\Printing_Admin_Scripts\en-US\prndrvr.vbs -d -m "Kyocera FS-2020D KX" -v 3 -e "Windows x64"
 cscript %windir%\System32\Printing_Admin_Scripts\en-US\prndrvr.vbs -d -m "Kyocera TASKalfa 500ci KX" -v 3 -e "Windows x64"
 goto End
 REM 32 Bit
 :ARP86
 cscript %windir%\System32\Printing_Admin_Scripts\en-US\prndrvr.vbs -d -m "Kyocera FS-2020D KX" -v 3 -e "Windows NT x86"
 cscript %windir%\System32\Printing_Admin_Scripts\en-US\prndrvr.vbs -d -m "Kyocera TASKalfa 500ci KX" -v 3 -e "Windows NT x86"
 goto End
 :End</pre>
]]></content:encoded>
			<wfw:commentRss>http://blog.iaingibson.co.uk/2011/11/manage-windows-printers-from-command-line-script/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Outlook profile moving</title>
		<link>http://blog.iaingibson.co.uk/2011/10/outlook-profile-moving/</link>
		<comments>http://blog.iaingibson.co.uk/2011/10/outlook-profile-moving/#comments</comments>
		<pubDate>Sat, 08 Oct 2011 09:15:09 +0000</pubDate>
		<dc:creator>iain</dc:creator>
				<category><![CDATA[Client]]></category>
		<category><![CDATA[Windows]]></category>
		<category><![CDATA[Outlook]]></category>

		<guid isPermaLink="false">http://blog.iaingibson.co.uk/?p=118</guid>
		<description><![CDATA[Have you ever noticed that some users complain? Outlook seems to be the most popular email client in the business world, however if you have users on one machine they usually want to have there settings on all machines. Roaming &#8230; <a href="http://blog.iaingibson.co.uk/2011/10/outlook-profile-moving/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>Have you ever noticed that some users complain?</p>
<p>Outlook seems to be the most popular email client in the business world, however if you have users on one machine they usually want to have there settings on all machines. Roaming profiles is ideal for this however there are always times when you have to do it manually.</p>
<p>The most common bug bear from users is when you move ore re-create their profiles on another machine, outlook has &#8220;forgotton&#8221; then email contacts. ie Quick list that drops down when you start to enter an email address.</p>
<p>The reason for this is that this information is held in a file within the users folders, not in the PST file (if you are using PST), or Exchange.</p>
<p>To find this file you are looking for a file with the extension .nk2 the full name will be the Outlook profile name with the extension .nk2.</p>
<p>This file can usaually be found in:</p>
<pre>Windows XP
Drive:\Documents and Settings\Username\Application Data\Microsoft\Outlook
Windows Vista and later versions
Drive:\Users\Username\AppData\Roaming\Microsoft\Outlook</pre>
<p>If you have changed the profile name in Outlook when you set up the new account simply change the name of the .nk2 file to match.</p>
<p>NOTE that Outlook 2010 now stores this information inside the PST or Exchange mailbox. If you want to import these see the following link:<br />
<a href="http://support.microsoft.com/kb/980542">http://support.microsoft.com/kb/980542</a></p>
<p>&nbsp;</p>
]]></content:encoded>
			<wfw:commentRss>http://blog.iaingibson.co.uk/2011/10/outlook-profile-moving/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Microsoft DPM RPC connection issues</title>
		<link>http://blog.iaingibson.co.uk/2011/09/microsoft-dpm-rpc-connection-issues/</link>
		<comments>http://blog.iaingibson.co.uk/2011/09/microsoft-dpm-rpc-connection-issues/#comments</comments>
		<pubDate>Fri, 16 Sep 2011 13:29:26 +0000</pubDate>
		<dc:creator>iain</dc:creator>
				<category><![CDATA[Server]]></category>

		<guid isPermaLink="false">http://blog.iaingibson.co.uk/?p=121</guid>
		<description><![CDATA[I have be using Microsoft Data Protection Manager for a while now and really like it. One tiny little problem that came up which kept us from replicating all of our data to a remote DPM server was the rpc &#8230; <a href="http://blog.iaingibson.co.uk/2011/09/microsoft-dpm-rpc-connection-issues/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>I have be using Microsoft Data Protection Manager for a while now and really like it.</p>
<p>One tiny little problem that came up which kept us from replicating all of our data to a remote DPM server was the rpc errors that kept appearing.</p>
<p>We use Forefront Threat Managment Gateway, formerly ISA server, and were having this problem until the solution was successfully found!</p>
<p>The problem lies with Strict RPC compliance in the FTMG (ISA). You need to remove the check box from enforce strict RPC compliance. See the following blog from Microsoft for a complete run down:</p>
<p><a href="http://blogs.technet.com/b/isablog/archive/2007/05/16/rpc-filter-and-enable-strict-rpc-compliance.aspx">http://blogs.technet.com/b/isablog/archive/2007/05/16/rpc-filter-and-enable-strict-rpc-compliance.aspx</a></p>
]]></content:encoded>
			<wfw:commentRss>http://blog.iaingibson.co.uk/2011/09/microsoft-dpm-rpc-connection-issues/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Error 0x800f0818</title>
		<link>http://blog.iaingibson.co.uk/2011/08/error-0x800f0818/</link>
		<comments>http://blog.iaingibson.co.uk/2011/08/error-0x800f0818/#comments</comments>
		<pubDate>Wed, 31 Aug 2011 11:01:21 +0000</pubDate>
		<dc:creator>iain</dc:creator>
				<category><![CDATA[Client]]></category>
		<category><![CDATA[Server]]></category>
		<category><![CDATA[Windows]]></category>

		<guid isPermaLink="false">http://blog.iaingibson.co.uk/?p=76</guid>
		<description><![CDATA[Recently when trying to update a Windows Server 2008 R2 machine with service pack 1, I came across this error  0x800f0818 which made the update fail. Also the error seems to be relevant on Windows 7 and Server 2008. Corrupted &#8230; <a href="http://blog.iaingibson.co.uk/2011/08/error-0x800f0818/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>Recently when trying to update a Windows Server 2008 R2 machine with service pack 1, I came across this error  0x800f0818 which made the update fail.</p>
<p>Also the error seems to be relevant on Windows 7 and Server 2008. Corrupted update files seem to be the order of the day. Server Manager will also show the error and refuse to refresh often with 0x800f0818 and 0x800b0100.</p>
<p>The fix to this is the Microsoft Update Readiness Tool, which can be downloaded from: <a href="http://support.microsoft.com/kb/947821">http://support.microsoft.com/kb/947821</a></p>
<p>See this technet blog article for moer information about running the tool:</p>
<p><a href="http://blogs.technet.com/b/roplatforms/archive/2010/05/12/how-to-fix-server-manager-errors-after-installing-updates-hresult-0x800f0818-hresult-0x800b0100.aspx">http://blogs.technet.com/b/roplatforms/archive/2010/05/12/how-to-fix-server-manager-errors-after-installing-updates-hresult-0x800f0818-hresult-0x800b0100.aspx</a></p>
]]></content:encoded>
			<wfw:commentRss>http://blog.iaingibson.co.uk/2011/08/error-0x800f0818/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>And then there was silence&#8230;</title>
		<link>http://blog.iaingibson.co.uk/2010/10/and-then-there-was-silence/</link>
		<comments>http://blog.iaingibson.co.uk/2010/10/and-then-there-was-silence/#comments</comments>
		<pubDate>Tue, 26 Oct 2010 09:40:16 +0000</pubDate>
		<dc:creator>iain</dc:creator>
				<category><![CDATA[Off Topic]]></category>

		<guid isPermaLink="false">http://blog.iaingibson.co.uk/?p=71</guid>
		<description><![CDATA[It appears I have fallen into the regular trap of not keeping this place up to date&#8230; Well I plan to change that. Over the coming months, I will have more time to update with some of the interesting things &#8230; <a href="http://blog.iaingibson.co.uk/2010/10/and-then-there-was-silence/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>It appears I have fallen into the regular trap of not keeping this place up to date&#8230;</p>
<p>Well I plan to change that. Over the coming months, I will have more time to update with some of the interesting things I have stumbled across recently.</p>
<p>ps Hope you like the new theme&#8230;</p>
]]></content:encoded>
			<wfw:commentRss>http://blog.iaingibson.co.uk/2010/10/and-then-there-was-silence/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Update Group Policy Templates</title>
		<link>http://blog.iaingibson.co.uk/2010/04/update-group-policy-templates/</link>
		<comments>http://blog.iaingibson.co.uk/2010/04/update-group-policy-templates/#comments</comments>
		<pubDate>Mon, 19 Apr 2010 14:53:16 +0000</pubDate>
		<dc:creator>iain</dc:creator>
				<category><![CDATA[Geek Central]]></category>
		<category><![CDATA[Server]]></category>
		<category><![CDATA[Windows]]></category>
		<category><![CDATA[Group Policy]]></category>

		<guid isPermaLink="false">http://blog.iaingibson.co.uk/?p=66</guid>
		<description><![CDATA[If you are using Windows 7 clients on your network and wish to manage them fully via group policy you may have noticed that some of the new GP items are missing from your Group Policy Managament Console. This happens &#8230; <a href="http://blog.iaingibson.co.uk/2010/04/update-group-policy-templates/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>If you are using Windows 7 clients on your network and wish to manage them fully via group policy you may have noticed that some of the new GP items are missing from your Group Policy Managament Console. This happens when you are running a Domain Controller that is not Windows 2008 R2.</p>
<p>Don&#8217;t worry its really easy to copy the newer group policy templates over to your DC, whether it be Windows 2003 or 2008.</p>
<p>Execute the following 2 commands on a Windows 7 workstation:</p>
<blockquote><p>xcopy %systemroot%\PolicyDefinitions\* %logonserver%\sysvol\%userdnsdomain%\policies\PolicyDefinitions</p>
<p>xcopy %systemroot%\PolicyDefinitions\EN-US\* %logonserver%\sysvol\%userdnsdomain%\policies\PolicyDefinitions\EN-US\</p></blockquote>
<p>This will copy all the updated ADMX and ADML files to your DC.</p>
<p>This should take but seconds, now when you access GPMC you will have a full set of Group Policy objects to look at.<br />
 </p>
<p>You may also like to install the Remote Server Administration Tools (RSAT) on your Windows 7 workstation, visit the link below to download:</p>
<p><a href="http://www.microsoft.com/downloads/details.aspx?FamilyID=7D2F6AD7-656B-4313-A005-4E344E43997D&amp;displaylang=en">http://www.microsoft.com/downloads/details.aspx?FamilyID=7D2F6AD7-656B-4313-A005-4E344E43997D&amp;displaylang=en</a></p>
]]></content:encoded>
			<wfw:commentRss>http://blog.iaingibson.co.uk/2010/04/update-group-policy-templates/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Adding Printers via Group Policy &#8211; Windows 7</title>
		<link>http://blog.iaingibson.co.uk/2010/04/adding-printers-via-group-policy-windows-7/</link>
		<comments>http://blog.iaingibson.co.uk/2010/04/adding-printers-via-group-policy-windows-7/#comments</comments>
		<pubDate>Mon, 19 Apr 2010 14:43:22 +0000</pubDate>
		<dc:creator>iain</dc:creator>
				<category><![CDATA[Client]]></category>
		<category><![CDATA[Server]]></category>
		<category><![CDATA[Windows]]></category>
		<category><![CDATA[Group Policy]]></category>
		<category><![CDATA[Printers]]></category>

		<guid isPermaLink="false">http://blog.iaingibson.co.uk/?p=63</guid>
		<description><![CDATA[I ran into a rather interesting problem the other day&#8230;. Trying to set up a new printer (MFD) on our network we wanted to roll out the drivers via group policy to all clients. As we completely skipped over Vista &#8230; <a href="http://blog.iaingibson.co.uk/2010/04/adding-printers-via-group-policy-windows-7/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>I ran into a rather interesting problem the other day&#8230;.</p>
<p>Trying to set up a new printer (MFD) on our network we wanted to roll out the drivers via group policy to all clients. As we completely skipped over Vista to Windows 7, I had never come across this problem before.</p>
<p>When I looked into the event log for inspiration I found the following error:</p>
<blockquote><p>0x80070bcb The specified printer driver was not found on the system and needs to be downloaded.</p></blockquote>
<p>This problem occured everytime group policy was applied. To fix this problem you could manually install the driver onto the workstation and it would obviously connect the printer. This however is not much of a solution as we want to roll this out to all workstations automactically.</p>
<p>Incidentally, if you try and manually add the printer you get this warning message:</p>
<div id="attachment_64" class="wp-caption aligncenter" style="width: 310px"><img class="size-medium wp-image-64" title="Printer Driver Warning" src="http://blog.iaingibson.co.uk/blog/wp-uploads/2010/04/printer-error-300x277.png" alt="Printer Driver Warning" width="300" height="277" /><p class="wp-caption-text">Printer Driver Warning</p></div>
<p>The easy solution to this problem is in two group policy settings. This will reduce the security on your system if you set the policy to disable, or you can configure the policy settings to your environment for added security.</p>
<p>Under Windows 7, group policy you need to look at:</p>
<blockquote><p>Computer Configuration | Policies | Administrative Templates | Printers | Point and Print Restrictions : Disable</p>
<p>User Configuration | Policies | Administrative Templates | Control Panel | Printers | Point and Print Restrictions : Disable</p></blockquote>
<p>Once applied, Group Policy processing should now compelete succesfully, and your printers should be added.</p>
]]></content:encoded>
			<wfw:commentRss>http://blog.iaingibson.co.uk/2010/04/adding-printers-via-group-policy-windows-7/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
	</channel>
</rss>

