<?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>Calazan.com &#187; SysAdmin</title>
	<atom:link href="http://www.calazan.com/category/sysadmin/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.calazan.com</link>
	<description>Share the Knowledge</description>
	<lastBuildDate>Sun, 05 Sep 2010 00:59:26 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.9.2</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>Opportunistic TLS</title>
		<link>http://www.calazan.com/opportunistic-tls/</link>
		<comments>http://www.calazan.com/opportunistic-tls/#comments</comments>
		<pubDate>Sat, 21 Mar 2009 19:42:15 +0000</pubDate>
		<dc:creator>webmaster</dc:creator>
				<category><![CDATA[Networking]]></category>
		<category><![CDATA[Security]]></category>
		<category><![CDATA[SysAdmin]]></category>
		<category><![CDATA[email]]></category>
		<category><![CDATA[encryption]]></category>
		<category><![CDATA[Exchange 2007]]></category>

		<guid isPermaLink="false">http://www.calazan.com/?p=412</guid>
		<description><![CDATA[We had to upgrade our mail gateway/anti-spam software on Sunday because one of our vendors requires us to use encryption when exchanging emails with them.  The easiest solution is to use opportunistic TLS, where the server will always try to connect to the other server using the TLS protocol.  If the other server supports TLS, [...]]]></description>
			<content:encoded><![CDATA[<p><a href="http://www.calazan.com/wp-content/uploads/2009/03/secure_email.jpg"><img class="alignleft size-medium wp-image-422" title="secure_email" src="http://www.calazan.com/wp-content/uploads/2009/03/secure_email.jpg" alt="" width="136" height="140" /></a>We had to upgrade our mail gateway/anti-spam software on Sunday because one of our vendors requires us to use encryption when exchanging emails with them.  The easiest solution is to use opportunistic TLS, where the server will always try to connect to the other server using the TLS protocol.  If the other server supports TLS, then traffic is encrypted.  If not, then the email is sent using just regular SMTP without encryption.</p>
<p>This is actually the first time I&#8217;ve even heard of opportunistic TLS, I&#8217;m used to seeing S/MIME and PGP when reading about email encryption.  What I like about this is encryption/decryption is done on the server side so the users don&#8217;t have to do anything different when sending emails and we don&#8217;t have to issue a certificate to each user and manage the keys.</p>
<p>If you&#8217;re using Exchange Server 2007, opportunistic TLS is already enabled by default.  You can check this by entering <em>Get-SendConnector &#8220;Send Connector Name&#8221; | Format-List</em> in the Exchange Management Shell.  Look for the <strong>IgnoreStartTLS</strong> parameter, if it&#8217;s set to <strong>false</strong> then opportunistic TLS is enabled.</p>
<p>To check whether a server supports TLS, telnet to the server on port 25 and check if the server supports the <strong>STARTTLS</strong> command, for example:</p>
<p><em>telnet mail.global.frontbridge.com 25</em></p>
<div id="attachment_419" class="wp-caption aligncenter" style="width: 310px"><a href="http://www.calazan.com/wp-content/uploads/2009/03/smtp_tls.png"><img class="size-medium wp-image-419" title="smtp_tls" src="http://www.calazan.com/wp-content/uploads/2009/03/smtp_tls-300x150.png" alt="" width="300" height="150" /></a><p class="wp-caption-text">This server supports TLS</p></div>
<p>Here&#8217;s an example of the header of an email that was delivered with TLS enabled (I modified the IP addresses and names for privacy reasons):</p>
<p><em>Received: from mailgateway01 (1.2.3.4) by mailserver01.domain.com (1.2.3.5)<br />
with <strong>Microsoft SMTP Server (TLS)</strong> id 8.1.263.0; Mon, 16 Mar 2009 18:05:18<br />
-0400<br />
Received: from mail.global.frontbridge.com ([65.55.88.22]) by mail.somedomain.com<br />
([1.2.3.4]) with ESMTP (TREND IMSS SMTP Service 7.0; <strong>TLS:<br />
TLSv1/SSLv3,128bits,AES128-SHA</strong>) id 06456c96000057da for &lt;jdoe@microsoft.com&gt;;<br />
Mon, 16 Mar 2009 18:05:16 -0500</em></p>
]]></content:encoded>
			<wfw:commentRss>http://www.calazan.com/opportunistic-tls/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
		<item>
		<title>How to automate Microsoft Office 2007 installation</title>
		<link>http://www.calazan.com/how-to-automate-microsoft-office-2007-installation/</link>
		<comments>http://www.calazan.com/how-to-automate-microsoft-office-2007-installation/#comments</comments>
		<pubDate>Thu, 12 Mar 2009 00:53:25 +0000</pubDate>
		<dc:creator>webmaster</dc:creator>
				<category><![CDATA[How-To]]></category>
		<category><![CDATA[SysAdmin]]></category>
		<category><![CDATA[PowerShell]]></category>
		<category><![CDATA[scripting]]></category>
		<category><![CDATA[Windows admin]]></category>

		<guid isPermaLink="false">http://www.calazan.com/?p=337</guid>
		<description><![CDATA[I was just updating some documentation on our wiki and found some old notes on automating Office 2007 installation.  We upgraded our Microsoft Office software early last year from Office 2003 (and a few Office XP) to Office 2007 and this simple installation script saved us a lot of time. Here are the steps:
Step 1.  [...]]]></description>
			<content:encoded><![CDATA[<p>I was just updating some documentation on our wiki and found some old notes on automating Office 2007 installation.  We upgraded our Microsoft Office software early last year from Office 2003 (and a few Office XP) to Office 2007 and this simple installation script saved us a lot of time. Here are the steps:</p>
<p><strong>Step 1.  Copy the contents of the Office 2007 installation CD (or package) to a network share </strong>(eg. \\server\Office12)<strong>.</strong></p>
<p><strong>Step 2.  Run the Office Customization Tool and create a setup customization file </strong>(I got these instructions from a BDD 2007 document on Microsoft&#8217;s website)<strong>.</strong></p>
<p><span id="more-337"></span></p>
<ol>
<li><strong>Run the Office Customization Tool</strong>
<ol>
<li>Go to <strong>Start</strong>-&gt;<strong>Run</strong></li>
<li>Type the following command:  <strong>\\server\Office12\setup.exe /admin</strong></li>
</ol>
</li>
<li><strong>Create a setup customization file</strong>
<ol>
<li>In Office Customization Tool, Click OK to create a new setup file.</li>
<li>Specify the Installation Path, Organization Name</li>
<li>Add the network share location of the Office 2007 Installation Files Shared Folder. <strong>\\server\Office12 </strong></li>
<li>Specify the Product Key and Accept the License Agreement. And Modify the Display Options.</li>
<li>Configure other options</li>
<li>Finally, Click File, Save As, and save the Setup Customization File to Office12\Updates Folder</li>
<li>Close the Office Customization Tool</li>
</ol>
</li>
</ol>
<p><strong>Step 3.</strong> Download and install <a title="Download PowerShell" href="http://www.microsoft.com/windowsserver2003/technologies/management/powershell/download.mspx" target="_blank">PowerShell</a>.</p>
<p><strong>Step 4. </strong>Download and install <a title="PsExec" href="http://technet.microsoft.com/en-us/sysinternals/bb897553.aspx" target="_blank">PsExec</a>.</p>
<p><strong>Step 5. </strong>Open a text editor (WordPad or Notepad is fine) and use the sample script below.  Save the file as <em>office_2007_install.ps1</em>.</p>
<p style="padding-left: 30px;"><em>$hostname = &#8220;comp1&#8243;,&#8221;comp2&#8243;,&#8221;comp3&#8243; </em></p>
<p style="padding-left: 30px;"><em>foreach ($i in $hostname)<br />
</em><em>{<br />
&amp;&#8221;c:\psexec\psexec.exe&#8221; -s \\$i \\server\office12\setup.exe /adminfile cust_file.msp<br />
}</em></p>
<p>Replace comp1&#8230;comp3 with the computer&#8217;s hostname or IP addresss.</p>
<p><strong>Note:</strong> You can also pull the list of computers/IP addresses from a text file (one entry per line) by doing something like <em>$hostname = Get-Content c:\computers.txt</em>.</p>
<p><strong>Step 6. </strong>Schedule the script in Task Scheduler</p>
<p style="padding-left: 30px;"><em>c:\windows\system32\WindowsPowerShell\v1.0\powershell.exe -noexit &#8220;c:\office_2007_install.ps1</em>&#8220;</p>
<p><strong><br />
Some suggestions:</strong></p>
<ul>
<li>Let your users know ahead of time when you are planning on upgrading their Office software.  They may be working on a project and can&#8217;t afford to lose any time adjusting to the new version.</li>
<li>Send these links (Interactive 2003 to 2007 Command Reference Guide) to your users before you upgrade their Office applications so there are no surprises when they first use Office 2007:
<ul>
<li><strong>Word:</strong> <a href="http://office.microsoft.com/en-us/word/HA100744321033.aspx" target="_blank">http://office.microsoft.com/en-us/word/HA100744321033.aspx</a></li>
<li><strong>Excel:</strong> <a href="http://office.microsoft.com/en-us/excel/HA101491511033.aspx" target="_blank">http://office.microsoft.com/en-us/excel/HA101491511033.aspx</a></li>
<li><strong>PowerPoint:</strong> <a href="http://office.microsoft.com/en-us/powerpoint/HA101490761033.aspx" target="_blank">http://office.microsoft.com/en-us/powerpoint/HA101490761033.aspx</a></li>
<li><strong>Outlook:</strong> <a href="http://office.microsoft.com/en-us/outlook/HA102221621033.aspx" target="_blank">http://office.microsoft.com/en-us/outlook/HA102221621033.aspx</a></li>
</ul>
</li>
<li>Start with a small group of computers so if you discover a problem (eg. software conflict) there will be minimal interruption.  For example, start with 5 computers and if there are no problems then increase it to 10 computers for the next batch, then 20, then 40, and so on.</li>
</ul>
]]></content:encoded>
			<wfw:commentRss>http://www.calazan.com/how-to-automate-microsoft-office-2007-installation/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>How to change from ACPI Multiprocessor HAL back to ACPI Uniprocessor HAL in Windows 2003</title>
		<link>http://www.calazan.com/how-to-change-from-acpi-multiprocessor-hal-back-to-acpi-uniprocessor-hal-in-windows-2003/</link>
		<comments>http://www.calazan.com/how-to-change-from-acpi-multiprocessor-hal-back-to-acpi-uniprocessor-hal-in-windows-2003/#comments</comments>
		<pubDate>Sat, 10 Jan 2009 02:02:43 +0000</pubDate>
		<dc:creator>webmaster</dc:creator>
				<category><![CDATA[How-To]]></category>
		<category><![CDATA[SysAdmin]]></category>
		<category><![CDATA[Virtualization]]></category>

		<guid isPermaLink="false">http://www.calazan.com/?p=219</guid>
		<description><![CDATA[&#8220;Warning: Changing the number of virtual processors after the guest OS is installed may make your virtual machine unstable.&#8221;
You&#8217;ve probably seen this message before while working with VMware, especially if you&#8217;ve done physical to virtual migrations.
As a best practice, it is recommended to always start with only 1 vCPU when creating virtual machines and only [...]]]></description>
			<content:encoded><![CDATA[<p><em>&#8220;Warning: Changing the number of virtual processors after the guest OS is installed may make your virtual machine unstable.&#8221;</em></p>
<p>You&#8217;ve probably seen this message before while working with VMware, especially if you&#8217;ve done physical to virtual migrations.</p>
<p>As a best practice, it is recommended to always start with only 1 vCPU when creating virtual machines and only increase the number of vCPUs if you think it&#8217;s necessary and if the virtual machine is actually running applications that can utilize multiple processors to avoid wasting resources.</p>
<p>Increasing the number of processors from 1 to 2 or more is actually not a problem with Windows Server 2003 because it will automatically change the HAL to ACPI Multiprocessor PC.  But setting the number of virtual processors back to 1 won&#8217;t automatically change the Windows 2003 HAL back to ACPI Uniprocessor PC.</p>
<p>According to Microsoft, &#8220;<a title="HAL" href="http://support.microsoft.com/default.aspx?scid=kb;EN-US;811366" target="_blank">If you run a 		  multiprocessor HAL with only a single processor installed, the computer 		  typically works as expected, and there is little or no affect on 		  performance</a>.&#8221;  But if you&#8217;re like me and just want to be absolutely sure that there won&#8217;t be issues, switching back to the uniprocessor HAL in Windows Server 2003 is pretty easy:</p>
<ol>
<li>Make sure you have at least <a title="Windows Server 2003 SP2" href="http://www.microsoft.com/downloads/details.aspx?FamilyID=95ac1610-c232-4644-b828-c55eec605d55&amp;displaylang=en" target="_blank">Windows Server 2003 Service Pack 2</a> installed.</li>
<li>Shut down the virtual machine.</li>
<li>Change number of virtual processors to 1.</li>
<li>Power on the virtual machine.</li>
<li>In Windows, go to <strong>Device Manager</strong> -&gt; <strong>Computer</strong>.</li>
<li>Right-click &#8220;<strong>ACPI Multiprocessor PC</strong>&#8221; and choose &#8220;<strong>Update Driver&#8230;</strong>&#8220;.</li>
<li>Select &#8220;<strong>No, not this time</strong>&#8221; option -&gt; &#8220;<strong>Install from a list or specific location</strong>&#8221; -&gt; &#8220;<strong>Don&#8217;t search.  I will choose the driver to install.</strong>&#8221; -&gt; select &#8220;<strong>ACPI Uniprocessor PC</strong>.&#8221;</li>
<li>Reboot the virtual machine.</li>
</ol>
<p>That&#8217;s it! You&#8217;re all set!</p>
]]></content:encoded>
			<wfw:commentRss>http://www.calazan.com/how-to-change-from-acpi-multiprocessor-hal-back-to-acpi-uniprocessor-hal-in-windows-2003/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>How to send syslog messages to a remote syslog server in Fedora 9</title>
		<link>http://www.calazan.com/how-to-send-syslog-messages-to-a-remote-syslog-server-in-fedora-core-9/</link>
		<comments>http://www.calazan.com/how-to-send-syslog-messages-to-a-remote-syslog-server-in-fedora-core-9/#comments</comments>
		<pubDate>Mon, 08 Dec 2008 01:28:32 +0000</pubDate>
		<dc:creator>webmaster</dc:creator>
				<category><![CDATA[How-To]]></category>
		<category><![CDATA[Software]]></category>
		<category><![CDATA[SysAdmin]]></category>
		<category><![CDATA[Linux]]></category>
		<category><![CDATA[open source software]]></category>

		<guid isPermaLink="false">http://www.calazan.com/?p=154</guid>
		<description><![CDATA[I have a virtual machine set up running Fedora 9 on my home network which I mainly use for SSH tunneling and I just realized that this version of Fedora now uses rsyslog as its default syslog daemon.
I wanted to send a copy of the syslog messages for SSH to my central syslog server so [...]]]></description>
			<content:encoded><![CDATA[<p style="text-align: left;">I have a virtual machine set up running Fedora 9 on my home network which I mainly use for SSH tunneling and I just realized that this version of Fedora now uses <a title="rsyslog" href="http://en.wikipedia.org/wiki/Rsyslog" target="_blank"><strong>rsyslog</strong></a> as its default syslog daemon.</p>
<p style="text-align: left;">I wanted to send a copy of the syslog messages for SSH to my central syslog server so I can easily keep track of login attempts to my server from the outside.</p>
<p style="text-align: left;">Here are the steps:</p>
<ol style="text-align: left;">
<li>Open <strong>/etc/rsyslog.conf</strong> and  add this line:
<ul>
<li>
<pre>authpriv.* @remote_server_ip_address</pre>
</li>
</ul>
</li>
<li>Restart the rsyslog service: <strong>/etc/init.d/rsyslog restart</strong></li>
</ol>
<p style="text-align: left;">Change &#8220;authpriv<strong>.</strong>*&#8221; to &#8220;*.*&#8221; if you wish to send a copy of all the syslog messages to the remote server.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.calazan.com/how-to-send-syslog-messages-to-a-remote-syslog-server-in-fedora-core-9/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Windows XP: Updating a domain account&#8217;s local cached password</title>
		<link>http://www.calazan.com/windows-xp-updating-a-domain-accounts-local-cached-password/</link>
		<comments>http://www.calazan.com/windows-xp-updating-a-domain-accounts-local-cached-password/#comments</comments>
		<pubDate>Thu, 04 Dec 2008 02:43:33 +0000</pubDate>
		<dc:creator>webmaster</dc:creator>
				<category><![CDATA[SysAdmin]]></category>
		<category><![CDATA[Windows admin]]></category>

		<guid isPermaLink="false">http://www.calazan.com/?p=146</guid>
		<description><![CDATA[So I took a laptop home from work tonight to do some tests and I forgot that I haven&#8217;t logged in to that laptop with my domain account for quite some time now so I of course got the message &#8220;Domain YOURDOMAIN is not available&#8221; and I couldn&#8217;t log in.
I connect to our network over [...]]]></description>
			<content:encoded><![CDATA[<p>So I took a laptop home from work tonight to do some tests and I forgot that I haven&#8217;t logged in to that laptop with my domain account for quite some time now so I of course got the message &#8220;Domain YOURDOMAIN is not available&#8221; and I couldn&#8217;t log in.</p>
<p>I connect to our network over a VPN connection using Cisco VPN Client but I first have to be logged in to Windows to do this.  I want to be able to log in with my domain account directly then log in to the VPN as it is more convenient so here&#8217;s what I did to update the local cache for my domain profile:</p>
<ol>
<li>Log in as local Administrator.</li>
<li>Log in to the VPN.</li>
<li>While still connected to the VPN, do a &#8220;Run As&#8221; on a program.  In my case, I did a &#8220;Run As&#8221; with Outlook (press shift+right mouse click on the program&#8217;s icon, choose the option &#8220;Run As&#8230;&#8221; -&gt; &#8220;The following user:&#8221; myDomain\username -&gt; enter your current domain password) and the program should open using the profile of the user you wanted to run as.</li>
<li>Log off (which will also disconnect the VPN connection).</li>
<li>Log back in to your domain account using your current domain password and it should take it.</li>
</ol>
<p>If you&#8217;re already able to log in with the cached password, but your current domain password is different from the cached password, while connected to the VPN you can just press CTRL+ALT+DEL, choose the option &#8220;Lock Computer&#8221;, and then unlock it but this time using your current domain password and that should update the cached password.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.calazan.com/windows-xp-updating-a-domain-accounts-local-cached-password/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>How to capture an image using BDD 2007 and ImageX</title>
		<link>http://www.calazan.com/how-to-capture-an-image-using-bdd-2007-and-imagex/</link>
		<comments>http://www.calazan.com/how-to-capture-an-image-using-bdd-2007-and-imagex/#comments</comments>
		<pubDate>Fri, 14 Nov 2008 00:44:57 +0000</pubDate>
		<dc:creator>webmaster</dc:creator>
				<category><![CDATA[SysAdmin]]></category>
		<category><![CDATA[BDD 2007]]></category>

		<guid isPermaLink="false">http://www.calazan.com/how-to-capture-an-image-using-bdd-2007-and-imagex/</guid>
		<description><![CDATA[I was looking through some old notes and found this, hope this helps:

PXE boot on the computer you wish to image.
At the first prompt, choose the option &#8220;Exit to command Prompt.&#8221;
Map a network drive to your distribution share and run ImageX.  Example:


net use x: \\bddserver\distribution


cd x:\Tools\x86


imagex /capture c: x:\Captures\ImageName.wim &#8220;Computer Image Description&#8221;




Source:  http://lukenotley.wordpress.com/2007/05/20/bdd-2007-how-to-capture-a-reference-computer-image/
]]></description>
			<content:encoded><![CDATA[<p>I was looking through some old notes and found this, hope this helps:</p>
<ol>
<li>PXE boot on the computer you wish to image.</li>
<li>At the first prompt, choose the option &#8220;<strong>Exit to command Prompt</strong>.&#8221;</li>
<li>Map a network drive to your distribution share and run ImageX.  Example:
<ol>
<li>
<address>net use x: \\bddserver\distribution</address>
</li>
<li>
<address>cd x:\Tools\x86</address>
</li>
<li>
<address>imagex /capture c: x:\Captures\ImageName.wim &#8220;Computer Image Description&#8221;</address>
</li>
</ol>
</li>
</ol>
<p><strong>Source:  <a target="_blank" href="http://lukenotley.wordpress.com/2007/05/20/bdd-2007-how-to-capture-a-reference-computer-image/" title="How to capture a reference computer image">http://lukenotley.wordpress.com/2007/05/20/bdd-2007-how-to-capture-a-reference-computer-image/</a></strong></p>
]]></content:encoded>
			<wfw:commentRss>http://www.calazan.com/how-to-capture-an-image-using-bdd-2007-and-imagex/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Multiple connections to a server or shared resource by the same user&#8230;</title>
		<link>http://www.calazan.com/multiple-connections-to-a-server-or-shared-resource-by-the-same-user/</link>
		<comments>http://www.calazan.com/multiple-connections-to-a-server-or-shared-resource-by-the-same-user/#comments</comments>
		<pubDate>Fri, 24 Oct 2008 23:44:38 +0000</pubDate>
		<dc:creator>webmaster</dc:creator>
				<category><![CDATA[Error Messages]]></category>
		<category><![CDATA[SysAdmin]]></category>
		<category><![CDATA[Windows admin]]></category>

		<guid isPermaLink="false">http://www.calazan.com/multiple-connections-to-a-server-or-shared-resource-by-the-same-user/</guid>
		<description><![CDATA[Error Message:  &#8220;\\x.x.x.x is not accessible.  You might not have permission to use this network resource.  Contact the administrator of this server to find out if you have access permissions.
Multiple connections to a server or shared resource by the same user, using more than one user name, are not allowed.  Disconnect all previous connections to [...]]]></description>
			<content:encoded><![CDATA[<p><strong>Error Message:</strong>  &#8220;\\x.x.x.x is not accessible.  You might not have permission to use this network resource.  Contact the administrator of this server to find out if you have access permissions.</p>
<p>Multiple connections to a server or shared resource by the same user, using more than one user name, are not allowed.  Disconnect all previous connections to the server or shared resource and try again.&#8221;</p>
<p>I get this once in a while when working on files remotely.  To make it go away, do the following:</p>
<ol>
<li>Go to <strong>Start-&gt;Run</strong>, type in <strong>cmd</strong> and hit Enter.</li>
<li>Type <strong>net use</strong> to view all mapped network shares.</li>
<li>Type <strong>net use \\network_share /del</strong> to disconnect that specific network share or <strong> </strong>type <strong>net use * /del</strong> to disconnect all network shares.</li>
</ol>
]]></content:encoded>
			<wfw:commentRss>http://www.calazan.com/multiple-connections-to-a-server-or-shared-resource-by-the-same-user/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Security Warning: &#8220;The publisher could not be verified&#8221;</title>
		<link>http://www.calazan.com/security-warning-the-publisher-could-not-be-verified/</link>
		<comments>http://www.calazan.com/security-warning-the-publisher-could-not-be-verified/#comments</comments>
		<pubDate>Mon, 20 Oct 2008 23:10:33 +0000</pubDate>
		<dc:creator>webmaster</dc:creator>
				<category><![CDATA[SysAdmin]]></category>
		<category><![CDATA[Windows admin]]></category>

		<guid isPermaLink="false">http://www.calazan.com/security-warning-the-publisher-could-not-be-verified/</guid>
		<description><![CDATA[Warning Message: &#8220;The publisher could not be verified. Are you sure you want to run this software?&#8221;
I got this warning message last week while testing a group policy object to run a small program from a network drive when users log in to the domain.
After some googling, it turned out that this feature was added [...]]]></description>
			<content:encoded><![CDATA[<p><strong>Warning Message:</strong> &#8220;The publisher could not be verified. Are you sure you want to run this software?&#8221;</p>
<p>I got this warning message last week while testing a group policy object to run a small program from a network drive when users log in to the domain.</p>
<p>After some googling, it turned out that this feature was added in Windows XP Service Pack 2 and it checks whether the program has a digital signature attached.</p>
<p>To prevent this from appearing do the following:</p>
<ol>
<li>Open the Group Policy management console (<strong>Start-&gt;Run-&gt;gpedit.msc</strong>)</li>
<li>Go to <strong>User Configuration-&gt;Administrative Templates-&gt;Windows Components-&gt;Attachment  Manager</strong></li>
<li>Enable &#8220;<strong>Inclusion list for moderate risk file types</strong>&#8220;</li>
<li>Add <strong>.exe</strong> to the list</li>
</ol>
<p><strong>Source:</strong> <a href="http://davestechshop.net/archive/2006/10/30/IE7PublisherCouldNotBeVerified.aspx" title="The publisher could not be verified" target="_blank">http://davestechshop.net/archive/2006/10/30/IE7PublisherCouldNotBeVerified.aspx</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.calazan.com/security-warning-the-publisher-could-not-be-verified/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
