<?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>Binary Royale</title>
	<atom:link href="http://www.binaryroyale.com/index.php/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.binaryroyale.com</link>
	<description>Taking the complication out if IT</description>
	<lastBuildDate>Fri, 10 Feb 2012 11:13:22 +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>Windows Domain Health Checks</title>
		<link>http://www.binaryroyale.com/index.php/2012/01/windows-domain-health-checks/?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=windows-domain-health-checks</link>
		<comments>http://www.binaryroyale.com/index.php/2012/01/windows-domain-health-checks/#comments</comments>
		<pubDate>Tue, 03 Jan 2012 18:14:47 +0000</pubDate>
		<dc:creator>Andy</dc:creator>
				<category><![CDATA[administration]]></category>
		<category><![CDATA[Operating Systems]]></category>
		<category><![CDATA[Server Core]]></category>
		<category><![CDATA[Windows]]></category>

		<guid isPermaLink="false">http://www.binaryroyale.com/?p=264</guid>
		<description><![CDATA[It&#8217;s often necessary to check the health of your Windows Domain and Domain Controllers. You need to know if your domain is healthy before and after routine maintenance &#8211; Patching and the like &#8211; and when you are trying to diagnose problems. I&#8217;ve had to do this more times than i care to remember, and &#8230; <a href="http://www.binaryroyale.com/index.php/2012/01/windows-domain-health-checks/">Read more <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>It&#8217;s often necessary to check the health of your Windows Domain and Domain Controllers. You need to know if your domain is healthy before and after routine maintenance &#8211; Patching and the like &#8211; and when you are trying to diagnose problems.</p>
<p>I&#8217;ve had to do this more times than i care to remember, and each time I end up trawling the same sites to recall the same scripts that I run to output the logs that allow me to determine whether everything is OK or not. So this time I decided to compile the individual scripts in to a batch file that will run them all in sequence and output the results to files that I can review for problems. The scripts are thus:</p>
<ul>
<li>Dcdiag.exe /v &#8211; shows if there are any problems with your Domain Controllers and their associated services</li>
<li>Dcdiag.exe /test:dns  - validates the health of the Domain DNS service and replication.</li>
<li>Netsh dhcp show server  - Verifies DHCP servers and names</li>
<li>Repadmin /showreps  - Shows the status of replication between domain controllers</li>
<li>repadmin /replsum /errorsonly  - shows you any errors in the replication between domain controllers</li>
</ul>
<p>I&#8217;ve inserted these commands into a batch file, together with the switches to output the results of each script to file, rather than display it on screen. All files are created in C:temp &#8211; you will need to created this folder first if it doesn&#8217;t already exist. There are 2 batch files &#8211; one to be run before your maintenance to check for pre-existing problems, and another to run afterwards, to check for problems created as a result of your maintenance. The scripts are identical except for the name of the output files &#8211; the pre files are all prefixed pre_ and the post files are all prefixed post_ &#8211; so that you can see the before and after versions for comparison.</p>
<p>The batch files are available for download below. You will need to change the file extension of the downloaded files to .bat in order for them to work:</p>
<p><a href="http://www.binaryroyale.com/wp-content/uploads/2012/01/DC-Diagnose-Pre.txt">DC Diagnose Pre</a></p>
<p><a href="http://www.binaryroyale.com/wp-content/uploads/2012/01/DC-Diagnose-Post.txt">DC Diagnose Post</a></p>
<p>&nbsp;</p>
<p>&nbsp;</p>
]]></content:encoded>
			<wfw:commentRss>http://www.binaryroyale.com/index.php/2012/01/windows-domain-health-checks/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Configuring email alerts for Windows Server Backups</title>
		<link>http://www.binaryroyale.com/index.php/2011/12/configuring-email-alerts-for-windows-server-backups/?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=configuring-email-alerts-for-windows-server-backups</link>
		<comments>http://www.binaryroyale.com/index.php/2011/12/configuring-email-alerts-for-windows-server-backups/#comments</comments>
		<pubDate>Tue, 13 Dec 2011 13:08:03 +0000</pubDate>
		<dc:creator>Andy</dc:creator>
				<category><![CDATA[administration]]></category>
		<category><![CDATA[Backup]]></category>
		<category><![CDATA[Microsoft]]></category>
		<category><![CDATA[Monitoring]]></category>
		<category><![CDATA[Server Core]]></category>
		<category><![CDATA[Windows]]></category>

		<guid isPermaLink="false">http://www.binaryroyale.com/?p=236</guid>
		<description><![CDATA[Windows Server backup is a credible backup solution for small environments when backup space is plentiful and an integrated centrally managed solution is not required or not affordable. However one thing that is missing from WSB is any sort of alerting to let you know when your backups have completed or failed. Without this it&#8217;s &#8230; <a href="http://www.binaryroyale.com/index.php/2011/12/configuring-email-alerts-for-windows-server-backups/">Read more <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>Windows Server backup is a credible backup solution for small environments when backup space is plentiful and an integrated centrally managed solution is not required or not affordable. However one thing that is missing from WSB is any sort of alerting to let you know when your backups have completed or failed. Without this it&#8217;s necessary to manually login and check on the backup as they are run &#8211; a tedious waste of your time, I&#8217;m sure you&#8217;ll agree.</p>
<p>However there is a better solution. Using Windows Task Scheduler and a few simple powershell scripts it&#8217;s possible to get email alerts sent to you as soon as your backup job completes &#8211; or fails.</p>
<p>I&#8217;ll assume that you have WSB configured and working on the server in question &#8211; there are plenty of on-line resources available to help you get this set up and working.</p>
<ol>
<ol>
<li>Create you alert scripts. You need 3 Powershell scripts &#8211; 1 each for a successful backup, a failed backup and another to alert you that the backup disk is full. The content for each is as follows:
<pre style="padding-left: 60px;">$SmtpClient = new-object system.net.mail.smtpClient
$SmtpServer = "<span style="color: #ff0000;">x.x.x.x</span>"
$SmtpClient.host = $SmtpServer
$computer = gc env:computername</pre>
<pre style="padding-left: 60px;">$From = "<span style="color: #ff0000;">from@emailaddress.com</span>"
$To = "<span style="color: #ff0000;">to@emailaddress.com</span>"
$Title = "<span style="color: #339966;">Backup Complete on</span> " +$Computer
$Body = "<span style="color: #339966;">Backup Completed Successfully</span> " + $computer
$SmtpClient.Send($from,$to,$title,$Body)</pre>
<p>The details in red need to be changed to suit your environment, and are the same in all 3 scripts. The details in green are different in each script, and should be changed to suit the script &#8211; i.e. &#8220;Backup Failed on &#8221; or &#8220;Backup drive full on &#8220;. I save the scripts as BackupComplete.ps1, BackupFailed.ps1 and BackupFull.ps1. I put these in c:usersadministrator, but the location is up to you really.</li>
<li>You can test the scripts at this point by running them manually in Powershell. You may need to set the script execution policy to remote signed to allow the script to run if this hasn&#8217;t already been done on your server. Run
<pre style="padding-left: 60px;">get-help about_signing</pre>
<p>at the powershell prompt for more info. If the script runs, but you don&#8217;t receive the emails, check your mail server config to make sure that it will allow the server to send via it without authentication.</li>
<li>Open Windows Server Manager on the server running the backup, or a management server if the backup is running on a Server Core machine. Expand the Configuration node and the Task Scheduler sub-node. Click on Task Scheduler Library sub node.</li>
<li>Right click in the Task Scheduler Library middle pane, and select Create New Task. The Create New Task dialog box will appear.</li>
<li>On the General tab, give the task a name, a description if you like, and change the Security options as below:<br />
<a href="http://www.binaryroyale.com/wp-content/uploads/2011/12/general1.png"><img class="alignnone size-full wp-image-373" title="general" src="http://www.binaryroyale.com/wp-content/uploads/2011/12/general1.png" alt="" width="642" height="478" /></a></li>
<li>On the Triggers tab, press the &#8220;New&#8221; button to add a new Trigger. Select &#8220;On an Event&#8221; from the Begin the task drop-down. Select Microsoft-Windows-Backup/Operational for the Log, Backup for the Source, and specify the correct EventID depending on which task you are creating. The backup completed EventID is 4, the backup failed EventID is 5, and the backup full EventID is 50.<a href="http://www.binaryroyale.com/wp-content/uploads/2011/12/trigger.png"><img class="alignnone size-full wp-image-369" title="trigger" src="http://www.binaryroyale.com/wp-content/uploads/2011/12/trigger.png" alt="" width="606" height="517" /></a></li>
<li>On the Actions tab, press the &#8220;New&#8221; button to add a new Action. Select Start a program from the Action dropdown list. Enter powershell for the program, and add the argument that points it to the script that you created earlier. e.g. for the backup completed task, I would set the argument to:<br />
-command &#8220;&amp; c:usersadministratorBackupComplete.ps1&#8243;<br />
<a href="http://www.binaryroyale.com/wp-content/uploads/2011/12/action.png"><img class="alignnone size-full wp-image-245" title="action" src="http://www.binaryroyale.com/wp-content/uploads/2011/12/action.png" alt="" width="466" height="501" /></a></li>
<li>For the Conditions tab, you can leave the Settings as they are:<br />
<a href="http://www.binaryroyale.com/wp-content/uploads/2011/12/conditions.png"><img class="alignnone size-full wp-image-246" title="conditions" src="http://www.binaryroyale.com/wp-content/uploads/2011/12/conditions.png" alt="" width="641" height="479" /></a></li>
<li>On the Settings tab, adjust the settings as below:<br />
<a href="http://www.binaryroyale.com/wp-content/uploads/2011/12/settings.png"><img class="alignnone size-full wp-image-248" title="settings" src="http://www.binaryroyale.com/wp-content/uploads/2011/12/settings.png" alt="" width="641" height="476" /></a></li>
<li>The History tab will not contain any info at this stage, so you can press OK to save the task. You will be prompted to enter the server administrator password.</li>
<li>Repeat items 4 &#8211; 10 to add the second and third tasks to the task scheduler.</li>
<li>You should now be able to right click on each task and run it manually, and the corresponding email should duly arrive in the appointed inbox. If not, check that the scripts run properly from the Powershell prompt, and that you have entered the script arguments correctly.</li>
<li>You should now receive an email after your next scheduled backup cycle, letting you know how that backup went. However, it&#8217;s prudent to manually keep an eye on the backups until you&#8217;re happy that the emails are reporting the backup status correctly.</li>
</ol>
</ol>
<p>Thanks for reading.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.binaryroyale.com/index.php/2011/12/configuring-email-alerts-for-windows-server-backups/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Binary Royale offers tailored IT Consultancy to small/medium sized businesses in the East Midlands.</title>
		<link>http://www.binaryroyale.com/index.php/2011/09/binary-royale-offers-tailored-it-consultancy-to-smallmedium-sized-businesses-in-the-east-midlands/?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=binary-royale-offers-tailored-it-consultancy-to-smallmedium-sized-businesses-in-the-east-midlands</link>
		<comments>http://www.binaryroyale.com/index.php/2011/09/binary-royale-offers-tailored-it-consultancy-to-smallmedium-sized-businesses-in-the-east-midlands/#comments</comments>
		<pubDate>Wed, 14 Sep 2011 10:00:35 +0000</pubDate>
		<dc:creator>Jonathan</dc:creator>
				<category><![CDATA[Hosted Services]]></category>
		<category><![CDATA[IT Consultancy]]></category>

		<guid isPermaLink="false">http://www.binaryroyale.com/?p=225</guid>
		<description><![CDATA[Binary Royale offers services to its clients which include IT Consultancy Skills in HA, DR and Fault tolerance – implement these technologies into your systems Monitoring – SNMP monitoring of your systems – txt and email alerts Desktop and Server Hosting Hosted Exchange Services AV and AS Scanning for email Reliable Website Hosting &#8211; 15 &#8230; <a href="http://www.binaryroyale.com/index.php/2011/09/binary-royale-offers-tailored-it-consultancy-to-smallmedium-sized-businesses-in-the-east-midlands/">Read more <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<h6>Binary Royale offers services to its clients which include</h6>
<ul>
<li>IT Consultancy</li>
<li>Skills in HA, DR and Fault tolerance – implement these technologies into your systems</li>
<li>Monitoring – SNMP monitoring of your systems – txt and email alerts</li>
<li>Desktop and Server Hosting</li>
<li>Hosted Exchange Services</li>
<li>AV and AS Scanning for email</li>
<li>Reliable Website Hosting &#8211; 15 sites currently running &#8211; zero downtime in 9 months</li>
</ul>
<p>With Skills in</p>
<ul>
<li>Linux Ubuntu</li>
<li>Windows Server 2008</li>
<li>Cisco Firewalls and Routers</li>
<li>Microsoft Exchange 2010</li>
<li>Datacore SAN Products</li>
<li>Virtualisation &#8211; Citrix, VMWare and Hyper-v</li>
</ul>
<p>Please call <span style="color: #800080;">01332 890 460</span> if you wish to discuss using our services</p>
<p>&nbsp;</p>
]]></content:encoded>
			<wfw:commentRss>http://www.binaryroyale.com/index.php/2011/09/binary-royale-offers-tailored-it-consultancy-to-smallmedium-sized-businesses-in-the-east-midlands/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>CronLab Anti Virus and Anti Spam services added to Binary Royale&#8217;s mail services offerings</title>
		<link>http://www.binaryroyale.com/index.php/2011/06/cronlab-anti-virus-and-anti-spam-services-added-to-binary-royales-mail-services-offerings/?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=cronlab-anti-virus-and-anti-spam-services-added-to-binary-royales-mail-services-offerings</link>
		<comments>http://www.binaryroyale.com/index.php/2011/06/cronlab-anti-virus-and-anti-spam-services-added-to-binary-royales-mail-services-offerings/#comments</comments>
		<pubDate>Thu, 16 Jun 2011 11:24:51 +0000</pubDate>
		<dc:creator>Jonathan</dc:creator>
				<category><![CDATA[Hosted Services]]></category>

		<guid isPermaLink="false">http://www.binaryroyale.com/?p=218</guid>
		<description><![CDATA[Binary Royale offers mail services to its clients which include hosted MS Exchange 2010 services IMAP/POP Outlook Anywhere iPhone / activeSync conenctivity or plain simple webmail To add to this offering, we have now integrated Anti Virus and Anti Spamming Scanning Services into our inbound and outbound flow of mail See http://cronlab.com/ for details This &#8230; <a href="http://www.binaryroyale.com/index.php/2011/06/cronlab-anti-virus-and-anti-spam-services-added-to-binary-royales-mail-services-offerings/">Read more <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<h4>Binary Royale offers mail services to its clients which include</h4>
<ul>
<li>hosted MS Exchange 2010 services</li>
<li>IMAP/POP</li>
<li>Outlook Anywhere</li>
<li>iPhone / activeSync conenctivity</li>
<li>or plain simple webmail</li>
</ul>
<p>To add to this offering, we have now integrated Anti Virus and Anti Spamming Scanning Services into our inbound and outbound flow of mail</p>
<p>See <a href="http://cronlab.com/">http://cronlab.com/</a> for details</p>
<p>This service therefore protects our clients and our servers from unwanted nasties. SPAM and VIRUS&#8217;</p>
<p>Please call <span style="color: #800080;">01332 890 460</span> if you wish to discuss using our email services</p>
<p>&nbsp;</p>
]]></content:encoded>
			<wfw:commentRss>http://www.binaryroyale.com/index.php/2011/06/cronlab-anti-virus-and-anti-spam-services-added-to-binary-royales-mail-services-offerings/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Adding Windows Backup Component &#8211; Windows Server Core</title>
		<link>http://www.binaryroyale.com/index.php/2011/06/adding-windows-backup-component-windows-server-core/?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=adding-windows-backup-component-windows-server-core</link>
		<comments>http://www.binaryroyale.com/index.php/2011/06/adding-windows-backup-component-windows-server-core/#comments</comments>
		<pubDate>Thu, 09 Jun 2011 16:13:27 +0000</pubDate>
		<dc:creator>Jonathan</dc:creator>
				<category><![CDATA[Server Core]]></category>

		<guid isPermaLink="false">http://www.binaryroyale.com/?p=208</guid>
		<description><![CDATA[In order to backup your Windows Server Core you will need to install Windows Backup via a command line. To Install Windows Backup use the following command: CODE ocsetup WindowsServerBackup This command IS case sensitive. Once run, you will be able to connect remotely via Windows Server Backup to setup your backup schedule.]]></description>
			<content:encoded><![CDATA[<p>In order to backup your Windows Server Core you will need to install Windows Backup via a command line.</p>
<p>To Install Windows Backup use the following command:</p>
<p><strong>CODE</strong></p>
<blockquote><p>ocsetup WindowsServerBackup</p></blockquote>
<p>This command IS case sensitive.</p>
<p>Once run, you will be able to connect remotely via Windows Server Backup to setup your backup schedule.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.binaryroyale.com/index.php/2011/06/adding-windows-backup-component-windows-server-core/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>iphone connection problems for some users with Exchange 2010</title>
		<link>http://www.binaryroyale.com/index.php/2011/05/iphone-connection-problems-for-some-users-with-exchange-2010/?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=iphone-connection-problems-for-some-users-with-exchange-2010</link>
		<comments>http://www.binaryroyale.com/index.php/2011/05/iphone-connection-problems-for-some-users-with-exchange-2010/#comments</comments>
		<pubDate>Mon, 23 May 2011 07:38:52 +0000</pubDate>
		<dc:creator>Jonathan</dc:creator>
				<category><![CDATA[MS Exchange 2010]]></category>

		<guid isPermaLink="false">http://www.binaryroyale.com/?p=200</guid>
		<description><![CDATA[Hi All I had an issue this week where I had installed Exchange 2010, standard setup, onto a server and I was having issues with iphone connectivity. The thing that really saved me was the use of https://www.testexchangeconnectivity.com/ I don&#8217;t own an iPhone myself and using the above online tool helped me to test the &#8230; <a href="http://www.binaryroyale.com/index.php/2011/05/iphone-connection-problems-for-some-users-with-exchange-2010/">Read more <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>Hi All</p>
<p>I had an issue this week where I had installed Exchange 2010, standard setup, onto a server and I was having issues with iphone connectivity.</p>
<p>The thing that really saved me was the use of</p>
<p><a title="Testing Connectivity to Exchange 2010 mail server" href="https://www.testexchangeconnectivity.com/">https://www.testexchangeconnectivity.com/</a></p>
<p>I don&#8217;t own an iPhone myself and using the above online tool helped me to test the ActiveSync connectivity to the new mailserver, without needing a phone.</p>
<p>Please make sure you have ports <strong>80</strong> and <strong>443</strong> open on your firewall &#8211; both Windows Firewall and Hardware Firewall, otherwise traffic will not flow in and out correctly.</p>
<p>First of all, when running through the &#8220;ActiveSync (non-autodiscover)&#8221; utility, it flagged up the need for an external certificate. This I purchased and installed. See my other post for using a single domain external SSL certificate both internally and externally here</p>
<p><a title="Single Domain SSL Certificate - Exchange 2010" href="http://www.binaryroyale.com/index.php/2011/05/certificate-errors-when-opening-outlook-2010-exchange-2010/">Single Domain SSL Certificate &#8211; Exchange 2010</a></p>
<p>Secondly the tool then started to flag issues with running &#8220;CONNECT&#8221; statements and gave some error 500&#8242;s</p>
<h4>Exchange ActiveSync Returned an HTTP 500 Error</h4>
<h4>An Unsupported Authentication Method was Found</h4>
<p>at this point I could start to Google possible resolutions. Interestingly I managed to see that some users connected without any issues, and others caused errors, within the utility. This lead me to look into permissions issues.</p>
<h5>The resolution turned out to be extremely simple.</h5>
<blockquote>
<ol>
<li>Open Active Directory Users and Computers</li>
<li>Turn on Advanced Features in the tools menu</li>
<li>Locate the user in question</li>
<li>open their properties (right click &#8211; properties)</li>
<li>Goto the security tab</li>
<li>Click the Advanced button</li>
<li>In here TICK the box &#8220;inherit permissions from  parent&#8221;</li>
</ol>
</blockquote>
<p>This was ticked for users which were working and un-ticked for those who were not. very simple indeed.</p>
<p>Then the online connectivity tool started producing &#8220;green&#8221; &#8220;connected&#8221; messages <img src='http://www.binaryroyale.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
<p>Hope this helps</p>
<p>JK</p>
<p>&nbsp;</p>
]]></content:encoded>
			<wfw:commentRss>http://www.binaryroyale.com/index.php/2011/05/iphone-connection-problems-for-some-users-with-exchange-2010/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Windows Search not available in Outlook 2010</title>
		<link>http://www.binaryroyale.com/index.php/2011/05/windows-search-not-available-in-outlook-2010/?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=windows-search-not-available-in-outlook-2010</link>
		<comments>http://www.binaryroyale.com/index.php/2011/05/windows-search-not-available-in-outlook-2010/#comments</comments>
		<pubDate>Fri, 20 May 2011 14:36:21 +0000</pubDate>
		<dc:creator>Jonathan</dc:creator>
				<category><![CDATA[Windows]]></category>

		<guid isPermaLink="false">http://www.binaryroyale.com/?p=197</guid>
		<description><![CDATA[This post relates to Windows Server 2008 R2 and Outlook 2010 My setup is that I have a terminal server running Office 2010, hence why it&#8217;s installed on a Windows Server. During use of Outlook a &#8220;Windows Search&#8221; is not installed message was showing in the bottom pane, within the client. This is how to &#8230; <a href="http://www.binaryroyale.com/index.php/2011/05/windows-search-not-available-in-outlook-2010/">Read more <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>This post relates to</p>
<p>Windows Server 2008 R2</p>
<p>and</p>
<p>Outlook 2010</p>
<address>My setup is that I have a terminal server running Office 2010, hence why it&#8217;s installed on a Windows Server.</address>
<p>During use of Outlook a &#8220;Windows Search&#8221; is not installed message was showing in the bottom pane, within the client.</p>
<p>This is how to install the Windows Search Service under Windows Server 2008</p>
<blockquote>
<ol>
<li>Open Server Manager</li>
<li>Click on Roles</li>
<li>Click on Add a Role</li>
<li>Choose the File Server Role</li>
<li>Click Next</li>
<li>on the following screen remove the file server service</li>
<li>click on the Windows Search option</li>
<li>click next</li>
<li>You are given the option to turn on INDEXING for your drives &#8211; I didn&#8217;t select ANY as I only want search for use by Outlook</li>
<li>Click next</li>
<li>This will install the Search service</li>
</ol>
</blockquote>
<p>Restart Outlook and as it loads it will re-install some components. This may take a few minutes, then Outlook opens, and away you go.</p>
<p>The search facility working in conjuction with Outlook is excellent. I search through my emails all the time using this kind of built in feature and it&#8217;s very quick really.</p>
<p>&nbsp;</p>
<p>Enjoy</p>
<p>&nbsp;</p>
]]></content:encoded>
			<wfw:commentRss>http://www.binaryroyale.com/index.php/2011/05/windows-search-not-available-in-outlook-2010/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Certificate Errors when opening Outlook 2010 &#8211; Exchange 2010</title>
		<link>http://www.binaryroyale.com/index.php/2011/05/certificate-errors-when-opening-outlook-2010-exchange-2010/?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=certificate-errors-when-opening-outlook-2010-exchange-2010</link>
		<comments>http://www.binaryroyale.com/index.php/2011/05/certificate-errors-when-opening-outlook-2010-exchange-2010/#comments</comments>
		<pubDate>Tue, 10 May 2011 09:29:50 +0000</pubDate>
		<dc:creator>Jonathan</dc:creator>
				<category><![CDATA[MS Exchange 2010]]></category>

		<guid isPermaLink="false">http://www.binaryroyale.com/?p=186</guid>
		<description><![CDATA[This applies to those who have installed a standard SSL external certificate onto their Exchange server Hi All As you&#8217;re all probably aware, Exchange 2010 likes to have a certificate installed, under the &#8220;Server Configuration&#8221; node, to apply to SMTP, IIS, POP, UM, IMAP etc Out of the box, you can create a self signed &#8230; <a href="http://www.binaryroyale.com/index.php/2011/05/certificate-errors-when-opening-outlook-2010-exchange-2010/">Read more <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<h3>This applies to those who have installed a standard SSL external certificate onto their Exchange server</h3>
<p>Hi All</p>
<p>As you&#8217;re all probably aware, Exchange 2010 likes to have a certificate installed, under the &#8220;Server Configuration&#8221; node, to apply to</p>
<p>SMTP, IIS, POP, UM, IMAP etc</p>
<p>Out of the box, you can create a self signed certificate, which you can use. However, if your server is called &#8220;BR-EXCHANGE&#8221; for example, you get given a certificate valid for the server BR-EXCHANGE and nothing else.</p>
<p>This is generally fine for internal use. Outlook connects to BR-EXCHANGE, the certificate is read, it matches the server name and all is well.</p>
<h4>Buying a Certificate for your External URL &#8211; e.g mail.binaryroyale.com</h4>
<p>So then you want to start allowing external users to use Outlook Web Access, for example. They login to https://mail.binayroyale.com/OWA and are presented with a certificate error!</p>
<p>Certificate BR-EXCHANGE does not match the FQDN &#8211; mail.binaryroyale.com</p>
<p>So you go out and purchase a certificate to use externally on your mailserver.</p>
<h4>THIS IS WHERE YOU HAVE A CHOICE -</h4>
<ol>
<li>do you buy a standard SSL certificate for mail.binaryroyale.com</li>
<li>do you purchase one of these fancy SAN certificates, designed to work with Exchange 2010</li>
</ol>
<p>The standard cert will cost you around £80, the exchange cert will cost you around £350. For small businesses, this is a no brainer. You need to save money, so you buy a standard one.</p>
<p>You install the certificate onto your Exchange server, and designate SMTP, IIS, POP and IMAP to it.</p>
<p>NOW &#8211; THIS IS WHERE YOU START GETTING ERRORS and is why you are reading this post. Your external cert is being read internally and Outlook is moaning that mail.binaryroyale.com, read on the certificate, does not match BR-EXCHANGE, the name of the server it&#8217;s communicating with. We&#8217;re going round full circle now!</p>
<p>If you had spent the £350, you would have been allowed to add mail.binaryroyale.com as well as BR-EXCHANGE to the certificate as well as a couple of extra domain names used for autodiscovery services.</p>
<h4>SO &#8211; WHAT NOW?</h4>
<p>You need to issue some commands in Exchange Powershell, which tells Outlook to use alternative names, i.e the external one, when connecting to Exchange.</p>
<p>Firstly you need to check the name of your CASServer</p>
<p>CODE</p>
<blockquote><p><strong>Get-ClientAccessServer</strong></p></blockquote>
<p>This for me, returns BR-EXCHANGE &#8211; so where you see this below, substitute for the name of your CASServer. My external URL is mail.binaryroyale.com, and again, substitute accordingly.<strong></strong></p>
<p><strong>The next thing you need to absolutely make sure of is that you have a DNS entry, internally, for mail.binaryroyale.com, which actually points at the IP address of your CASServer.</strong></p>
<p>I did this in Windows DNS by adding an ALIAS, in a forward lookup zone, for binaryroyale.com. My Alias was called MAIL and it pointed at existing A record for my CASServer, BR-EXCHANGE. I guess you don&#8217;t necessarily need to use an alias.</p>
<p>CODE</p>
<blockquote><p><strong>Set-ClientAccessServer -Identity </strong><strong><em>BR-EXCHANGE </em>-AutoDiscoverServiceInternalUri</strong><strong> https://mail.binaryroyale.com/Autodiscover/Autodiscover.xml</strong></p></blockquote>
<p>CODE</p>
<blockquote><p><strong><em>Set-WebServicesVirtualDirectory -Identity “</em></strong><strong><em></em></strong><strong><em>BR-EXCHANGE\</em></strong><strong><em>EWS (Default Web Site)” -InternalURL https://</em></strong><strong>mail.binaryroyale.com</strong><strong><em>/EWS/Exchange.asmx -BasicAuthentication:$true</em> </strong></p>
<p><strong><em>Set-OABVirtualDirectory -Identity “</em></strong><strong><em></em></strong><strong><em>BR-EXCHANGE\</em></strong><strong><em>OAB (Default Web Site)” -InternalURL https://</em></strong><strong>mail.binaryroyale.com</strong><strong><em>/OAB</em></strong></p></blockquote>
<p>CODE</p>
<blockquote><p><strong><em>Enable-OutlookAnywhere -Server </em></strong><strong><em>BR-EXCHANGE</em></strong><strong><em> -ExternalHostname “</em></strong><strong>mail.binaryroyale.com</strong><strong><em>” -ClientAuthenticationMethod “Basic”-SSLOffloading:$False</em></strong></p></blockquote>
<p>All of the command&#8217;s here were taken from Elans&#8217;s BLOG here</p>
<p><a href="http://www.shudnow.net/2007/08/10/outlook-2007-certificate-error/">http://www.shudnow.net/2007/08/10/outlook-2007-certificate-error/</a> &#8211; so thank you Elan for this.</p>
<p>and now, you should hopefully have set the Client Access Server, the Web Services Directory, The OAB Virtual Directory and Outlook Anywhere to know that the CASServer is defined as the name of your internal CASServer and yet to use it&#8217;s external FQDN name.</p>
<p>Log out and back into Outlook, and your error should have disappeared.</p>
<p>Hope this helps</p>
<p>JK</p>
]]></content:encoded>
			<wfw:commentRss>http://www.binaryroyale.com/index.php/2011/05/certificate-errors-when-opening-outlook-2010-exchange-2010/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Opening the Control Panel via Command Line / Run &#8211; Win 2008</title>
		<link>http://www.binaryroyale.com/index.php/2011/05/opening-the-control-panel-via-command-line-run-win-2008/?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=opening-the-control-panel-via-command-line-run-win-2008</link>
		<comments>http://www.binaryroyale.com/index.php/2011/05/opening-the-control-panel-via-command-line-run-win-2008/#comments</comments>
		<pubDate>Thu, 05 May 2011 14:14:48 +0000</pubDate>
		<dc:creator>Jonathan</dc:creator>
				<category><![CDATA[Windows]]></category>

		<guid isPermaLink="false">http://www.binaryroyale.com/?p=180</guid>
		<description><![CDATA[Hi All I have a Windows Server which is tied down, so that the control panel is not visible. I therefore needed to work out how to open it up, via a command. It was dead simple, after doing some digging around. CODE Goto start and then run &#8211; alternatively hit &#8220;Windows Key&#8221; + R &#8230; <a href="http://www.binaryroyale.com/index.php/2011/05/opening-the-control-panel-via-command-line-run-win-2008/">Read more <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>Hi All</p>
<p>I have a Windows Server which is tied down, so that the control panel is not visible. I therefore needed to work out how to open it up, via a command. It was dead simple, after doing some digging around.</p>
<p>CODE</p>
<blockquote><p>Goto start and then run &#8211; alternatively hit &#8220;Windows Key&#8221; + R</p>
<p>type &#8220;control panel&#8221; in the run box</p></blockquote>
<p>Very simple indeed.</p>
<p>There are lots of .cpl calls you can make, to the various options within the control panel, such as</p>
<p>CODE</p>
<blockquote><p>sysdm.cpl &#8211; for the system properties</p>
<p>ncpa.cpl &#8211; for the network control centre</p>
<p>desk.cpl &#8211; for display stuff</p></blockquote>
<p>But to get directly to the whole control panel, is done from RUN using &#8220;control panel&#8221;</p>
<p>all the best</p>
<p>JK</p>
]]></content:encoded>
			<wfw:commentRss>http://www.binaryroyale.com/index.php/2011/05/opening-the-control-panel-via-command-line-run-win-2008/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>setting up remote access to mysql on Ubuntu</title>
		<link>http://www.binaryroyale.com/index.php/2011/05/setting-up-remote-access-to-mysql-on-ubuntu/?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=setting-up-remote-access-to-mysql-on-ubuntu</link>
		<comments>http://www.binaryroyale.com/index.php/2011/05/setting-up-remote-access-to-mysql-on-ubuntu/#comments</comments>
		<pubDate>Wed, 04 May 2011 16:30:04 +0000</pubDate>
		<dc:creator>Jonathan</dc:creator>
				<category><![CDATA[Ubuntu]]></category>

		<guid isPermaLink="false">http://www.binaryroyale.com/?p=177</guid>
		<description><![CDATA[Hi All Today I also had to setup mysql on Ubuntu and allow for remote connections to it. There are a few things that need to be done, to get this working, after you have installed mysql-server 1. Edit my.cnf to bind to the servers REAL IP address sudo vi /etc/mysql/my.cnf edit the line which &#8230; <a href="http://www.binaryroyale.com/index.php/2011/05/setting-up-remote-access-to-mysql-on-ubuntu/">Read more <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>Hi All</p>
<p>Today I also had to setup mysql on Ubuntu and allow for remote connections to it.</p>
<p>There are a few things that need to be done, to get this working, after you have installed mysql-server</p>
<p>1. Edit my.cnf to bind to the servers REAL IP address</p>
<blockquote><p>sudo vi /etc/mysql/my.cnf</p>
<p>edit the line which reads &#8220;bind-address = 127.0.0.1&#8243;</p>
<p>and change this to &#8220;bind-address = 192.168.80.85&#8243; or whatever the mysql server&#8217;s IP address is</p></blockquote>
<p>2. Restart mysql</p>
<blockquote><p>sudo /etc/init.d/mysql restart</p>
<p>or</p>
<p>service mysql restart</p></blockquote>
<p>3. Create an account with to use from a remote machine. On the mysql server</p>
<blockquote><p>mysql -u root -p</p>
<p>type in the password you entered during mysql-server setup</p>
<p>GRANT ALL PRIVILEGES ON *.*  TO newrootuser@&#8217;%&#8217;  IDENTIFIED BY &#8216;newpassord&#8217;  WITH GRANT OPTION;</p>
<p>mysql&gt;Flush Privileges;</p>
<p>mysql&gt; exit</p></blockquote>
<p>4. On a remote machine now try and connect using the newrootuser (name can obviously be anything) and the newpassword</p>
<p>and that&#8217;s it</p>
<p>IF you want to be a tad more particular about the remote account use</p>
<blockquote><p>GRANT ALL PRIVILEGES ON *.*  TO newrootuser@&#8217;machinename&#8217;  IDENTIFIED BY &#8216;newpassword&#8217;  WITH GRANT OPTION;</p></blockquote>
<p>Hope this helps.</p>
<p>JK</p>
<p>&nbsp;</p>
]]></content:encoded>
			<wfw:commentRss>http://www.binaryroyale.com/index.php/2011/05/setting-up-remote-access-to-mysql-on-ubuntu/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

