<?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>Glo Networks Technical Blog (Glo Blog) &#187; Applications</title>
	<atom:link href="http://blog.glo-networks.com/category/servers/serverapps/feed/" rel="self" type="application/rss+xml" />
	<link>http://blog.glo-networks.com</link>
	<description>Glo Networks team sharing their technical experiences and thoughts.</description>
	<lastBuildDate>Wed, 18 Jan 2012 17:35:24 +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>Removing Automapped Exchange 2010 Mailboxes in Outlook (Pre-SP2)</title>
		<link>http://blog.glo-networks.com/2012/01/12/removing-automapped-exchange-2010-mailboxes-in-outlook-pre-sp2/</link>
		<comments>http://blog.glo-networks.com/2012/01/12/removing-automapped-exchange-2010-mailboxes-in-outlook-pre-sp2/#comments</comments>
		<pubDate>Thu, 12 Jan 2012 09:56:31 +0000</pubDate>
		<dc:creator>Karl</dc:creator>
				<category><![CDATA[Applications]]></category>
		<category><![CDATA[Cool Stuff]]></category>
		<category><![CDATA[Scripting]]></category>
		<category><![CDATA[Servers]]></category>
		<category><![CDATA[Exchange]]></category>
		<category><![CDATA[Exchange 2010]]></category>
		<category><![CDATA[Microsoft]]></category>
		<category><![CDATA[powershell]]></category>
		<category><![CDATA[scripting]]></category>
		<category><![CDATA[SP2]]></category>

		<guid isPermaLink="false">http://blog.glo-networks.com/?p=1199</guid>
		<description><![CDATA[For those of us Exchange admins who aren&#8217;t fully up to date with Exchange 2010 service packs (for whatever reason &#8211; don&#8217;t berate us) and have slowly been getting annoyed with an ever increasing amount of mailboxes that get automapped in Outlook 2007 and 2010 can rejoice. One of our staff spent 10 minutes reearching, [...]]]></description>
			<content:encoded><![CDATA[<p>For those of us Exchange admins who aren&#8217;t fully up to date with Exchange 2010 service packs (for whatever reason &#8211; don&#8217;t berate us) and have slowly been getting annoyed with an ever increasing amount of mailboxes that get automapped in Outlook 2007 and 2010 can rejoice. One of our staff spent 10 minutes reearching, understanding and writing a bit of Powershell to resolve the issue en-bulk.</p>
<p>Just run the following under a Powershell instance with the Exchange modules loaded (i.e. the Exchange Management Shell).</p>
<pre><code>foreach ($u in $(Get-User)) { Write-Host "Clearing the msExchDelegateListLink for $($u.distinguishedname)"; $ad = [adsi]"LDAP://$($u.originatingserver)/$($u.distinguishedname)"; $ad.msExchDelegateListLink.Clear(); $ad.SetInfo(); }</code></pre>
<p>Be aware that if you do this, <strong>all auto mappings for all users will get removed</strong>. This may not have the desired behaviour as some users may be relying on an automapped account. It should be feasible to alter this as required, as it&#8217;s pretty damn simple!</p>
<p>As with all things, do this at your own risk, we accept no liability, yadda yadda yadda.</p>
<p>If you&#8217;re curious (and lets face it, if you&#8217;re modifying the Active Directory en bulk, you should be!), basically what this does is loop over all users, and clear all values against their Active Directory account msExchDelegateListLink attribute. This attribute is where the automapping gets written to.</p>
<p>As an example imagine 2 users, Bob and Alice. Bob is an Exchange admin and at some point was granted full access (with permission, naturally) to diagnose a problem with Alice&#8217;s mailbox without having to disturb her too much directly. Bob will now be added to Alice&#8217;s msExchDelegateListLink attribute. It&#8217;s this entry that needs to be removed.</p>
<p>Apparently in SP2 there is the facility to disable automapping, at the time of adding the relevant permission; the shiny new &#8220;-AutoMapping&#8221; argument to Add-MailboxPermission. As with many things Exchange 2007 and newer, it&#8217;s just a facility available at the Powershell console, for now. And you know what? We&#8217;re ok with that.</p>
]]></content:encoded>
			<wfw:commentRss>http://blog.glo-networks.com/2012/01/12/removing-automapped-exchange-2010-mailboxes-in-outlook-pre-sp2/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>VMWares Memory vTax</title>
		<link>http://blog.glo-networks.com/2011/08/04/vmwares-memory-vtax/</link>
		<comments>http://blog.glo-networks.com/2011/08/04/vmwares-memory-vtax/#comments</comments>
		<pubDate>Thu, 04 Aug 2011 15:35:46 +0000</pubDate>
		<dc:creator>James</dc:creator>
				<category><![CDATA[Applications]]></category>
		<category><![CDATA[General]]></category>
		<category><![CDATA[Operating Systems]]></category>
		<category><![CDATA[Servers]]></category>
		<category><![CDATA[hyper-v]]></category>
		<category><![CDATA[hypervisor]]></category>
		<category><![CDATA[memory tax]]></category>
		<category><![CDATA[virtual machine]]></category>
		<category><![CDATA[virtualisation]]></category>
		<category><![CDATA[vmware]]></category>
		<category><![CDATA[vtax]]></category>

		<guid isPermaLink="false">http://blog.glo-networks.com/?p=1058</guid>
		<description><![CDATA[In the virtualisation game VMWare are big competitors.  They’ve been selling virtual machine software since 1999 and their products are the ‘go to’ virtualisation tools for many businesses (not us at Glo). But since announcing their most recent price structure changes VMWare have experienced a huge amount of criticism from their customer base. And we [...]]]></description>
			<content:encoded><![CDATA[<p>In the virtualisation game VMWare are big competitors.  They’ve been selling virtual machine software since 1999 and their products are the ‘go to’ virtualisation tools for many businesses (not us at Glo). But since announcing their most recent price structure changes VMWare have experienced a huge amount of criticism from their customer base.</p>
<p>And we can understand why. The basic gist of the change is a cap on the RAM you can apply to your virtual machines per license. Formally licenses were required on a per processor basis alone, now, if you reach the virtual RAM cap for the number of processor’s you have licensed, you will require extra licenses to cover any additional RAM. This increase caused the change to be dubbed the ‘Memory vTax’.</p>
<p>When VMWare first announced this pricing change the memory allowance per license were rather low, meaning (obviously depending on the configuration of the virtual machines) some VMWare customers were looking at their licensing costs being several times what the old pricing structure would have cost. Reacting to the complaints of their customers VMWare have now raised the cap, which should keep the license costs to a more reasonable level for most customers.</p>
<p>Here at GloNetworks we’ve always tended towards the Microsoft Virtualization software ‘Hyper-V’ over the VMWare options, and right now we’re more confident than ever in our choice. It could be argued that WMWares virtualisation software is more ‘feature-full’ however we feel that Hyper-V’s pricing has always been more appropriate for us and our customers’ requirements. And since Microsoft have appeared to confirm they have no plans to use a similar ‘Memory Tax’ in its next Hyper-V product (Windows Server ‘8’ Hyper-V) we’re sure this will continue to be the case.</p>
]]></content:encoded>
			<wfw:commentRss>http://blog.glo-networks.com/2011/08/04/vmwares-memory-vtax/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Our New Private Cloud Platform: Technical Thoughts on Hyper-V Clustering and Clouds</title>
		<link>http://blog.glo-networks.com/2011/07/04/our-new-private-cloud-platform-technical-thoughts-on-hyper-v-clustering-and-clouds/</link>
		<comments>http://blog.glo-networks.com/2011/07/04/our-new-private-cloud-platform-technical-thoughts-on-hyper-v-clustering-and-clouds/#comments</comments>
		<pubDate>Mon, 04 Jul 2011 11:51:51 +0000</pubDate>
		<dc:creator>Karl</dc:creator>
				<category><![CDATA[Applications]]></category>
		<category><![CDATA[General]]></category>
		<category><![CDATA[Hardware]]></category>
		<category><![CDATA[Operating Systems]]></category>
		<category><![CDATA[cloud computing]]></category>
		<category><![CDATA[DPM 2010]]></category>
		<category><![CDATA[hyper-v]]></category>
		<category><![CDATA[hyper-v server 2008]]></category>
		<category><![CDATA[IaaS]]></category>
		<category><![CDATA[SCVMM 2008 R2]]></category>
		<category><![CDATA[virtualisation]]></category>

		<guid isPermaLink="false">http://blog.glo-networks.com/?p=1035</guid>
		<description><![CDATA[As promised in &#8220;Our New Private Cloud Platform&#8220;, I&#8217;m about to divulge all our secrets. Or at least some of them. In vague deal. I should warn you that this is a blog post aimed at technical people, who have some knowledge of Hyper-V clusters already, so if you&#8217;re looking at this from a &#8220;users&#8221; [...]]]></description>
			<content:encoded><![CDATA[<p>As promised in &#8220;<a href="http://blog.glo-networks.com/2011/05/19/our-new-private-cloud-platform/">Our New Private Cloud Platform</a>&#8220;, I&#8217;m about to divulge all our secrets. Or at least some of them. In vague deal.</p>
<p>I should warn you that this is a blog post aimed at technical people, who have some knowledge of Hyper-V clusters already, so if you&#8217;re looking at this from a &#8220;users&#8221; point of view you may get very lost, very fast. I&#8217;m not going to explain every little detail, because quite frankly we&#8217;d be here all day.</p>
<p>I feel I should start off by defining our &#8220;Private Cloud&#8221;. Cloud is term that thrown about a lot recently by marketing staff, and for that reason technical staff need to use it in front of boards and in front of the decision makers. To us techies it may be frustrating, however it&#8217;s the world we live in. If you&#8217;re uninitiated it&#8217;s a very broad term that covers:</p>
<ul>
<li>Infrastructure as a Service (IaaS) &#8211; Server and networking hardware, possibly server OS, such as Amazon&#8217;s AWS,</li>
<li>Software as a Service (SaaS) &#8211; Software provided by a remote system, such as Google Apps (Mail, Docs, etc.), or Dropbox,</li>
<li>Platform as a Service (PaaS) &#8211; Normally software infrastructure for developers to rapidly build software, such as force.com, Google&#8217;s AppEngine, or parts of Azure.</li>
</ul>
<p>Whilst we also provide SaaS products, in this instance our small &#8220;Private Cloud&#8221; we see as an IaaS offering. It&#8217;s a small, 2 node, Hyper-V cluster that we use to run our own and customer&#8217;s systems.</p>
<p>As a rough outline our cluster consists of:</p>
<ul>
<li>1x HP Procurve 2810-24G as our main switch,</li>
<li>1x Juniper SRX210 acts as our firewall and gateway device for some portions of our network,</li>
<li>1x IBM x3250 M3 acts as our physical Active Directory Domain Controller, and also hosts our Data Protection Manager (DPM) 2010 and System Center Virtual Machine Manager (SCVMM) virtual machine under Hyper-V,</li>
<li>2x IBM x3550 M3 act as our Hyper-V nodes,</li>
<li>1x IBM DS3512 acts as our shared storage,</li>
<li>1x QNap TS-459U+ acts as our short term backup storage,</li>
<li>Several USB hard drives for off-site backup that are routinely swapped.</li>
</ul>
<p>We&#8217;re aware that there are some issues with this design; single switch, single firewall and only 2 Hyper-V nodes. However the importance here is why we chose some of these things and why we don&#8217;t care as much right now (this was a significant investment for our small company);</p>
<ol>
<li>Granted all hardware does die. In the event that a switch does we can get one on-site reasonably quickly if we needed to, however we&#8217;re yet to have a HP Procurve die on us since we&#8217;ve started business,</li>
<li>Single firewall is something that we worry about, but we&#8217;ve chosen Juniper as they are easily clustered,</li>
<li>Provided that you don&#8217;t over subscrbe 2 Hyper-V Nodes should be sufficient, however additional nodes can be introduced to the cluster easily in the future.</li>
</ol>
<p>So whilst we are aware of the problems, I believe that we&#8217;ve engineered the system in such a manner that we&#8217;re able to introduce new hardware easily, upgrade the existing hardware, and provide some additional redundancy, including multiple switches with multi-chassis LACP links.</p>
<p>We&#8217;ve not built this system to compete with Amazon&#8217;s amazing AWS, however we have built it with 3 goals in mind:</p>
<ol>
<li>Extensibility,</li>
<li>To use as a small reference design,</li>
<li>To virtualise our own systems more redundantly. The fact we&#8217;re able to host customer&#8217;s systems as well is a nice perk.</li>
</ol>
<p>I won&#8217;t take you through the process of setting up your Hyper-V cluster, but I will cover a few bits and bobs that we feel a techy should be aware of before walking into a project like this, but might forget when looking at the big picture.</p>
<p>Clustered Shared Volume, or CSV, is the magic that makes the shared storage work. It&#8217;s a clever file system that allows multiple nodes to share the same storage. We&#8217;re yet to deploy a CSV using FC so we&#8217;re unsure if this is true for FC as well, however in the instance of both DAS and iSCSI what happens is the following;</p>
<ol>
<li>The master node takes control of the storage,</li>
<li>All other nodes are notified of this, and effectively redirect all storage requests for the shared storage to the master node, over the network.</li>
</ol>
<p>It should be clear from this that your choice of network card and switch are very important.</p>
<p>CSVs are not supported by Microsoft for any other use other than Hyper-V clusters. So don&#8217;t go getting any ideas.</p>
<p>Jumbo frames on your networking gear is a must. Generally speaking a Jumbo Frame is any ethernet frame that exceeds 1500 bytes, however they&#8217;re commonly also used as a naming convention for frames of 9000-9600 bytes (+/- 14 bytes for the header, depending on your switch(es)/NIC configuration language). If you don&#8217;t remember how IP and ethernet interact I suggest you go and refresh your memory very quickly. You should recognise the importance of having Jumbo Frames enabled very quickly; it should provide higher performance in situations where large payloads are being transmitted frequently.</p>
<p>At present we&#8217;re using Microsoft&#8217;s DPM 2010 to backup. The major gotcha that we didn&#8217;t see was that DPM 2010 on a Domain Controller <a href="http://technet.microsoft.com/en-us/library/ff399416.aspx">is basically a no-no</a>:</p>
<blockquote><p>For a DPM server that is installed on a domain controller, only protection of data sources local to the DPM server is supported. You cannot install agents on other computers to configure protection.</p></blockquote>
<p>SCVMM (System Center Virtual Machine Manager) 2008 R2 needs some polish. We&#8217;ve had to dive into the database once already. Don&#8217;t be afraid of it.</p>
<p>Other than that the project went exceedlingly smoothly. There are a few features that I wish Hyper-V had, in comparison to VMWare and Xen. And I really do wish that there were more, cheaper, graphics cards out there for RemoteFX.</p>
<p>However, that&#8217;s just something to plan for as a future project.</p>
]]></content:encoded>
			<wfw:commentRss>http://blog.glo-networks.com/2011/07/04/our-new-private-cloud-platform-technical-thoughts-on-hyper-v-clustering-and-clouds/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Removing &#8220;Missing&#8221; Virtual Machines from System Center Virtual Machine Manager 2008 [R2]</title>
		<link>http://blog.glo-networks.com/2011/05/27/removing-missing-virtual-machines-from-system-center-virtual-machine-manager-2008-r2/</link>
		<comments>http://blog.glo-networks.com/2011/05/27/removing-missing-virtual-machines-from-system-center-virtual-machine-manager-2008-r2/#comments</comments>
		<pubDate>Fri, 27 May 2011 13:02:16 +0000</pubDate>
		<dc:creator>Karl</dc:creator>
				<category><![CDATA[Applications]]></category>
		<category><![CDATA[Servers]]></category>

		<guid isPermaLink="false">http://blog.glo-networks.com/?p=987</guid>
		<description><![CDATA[Sometimes SCVMM 2008 [R2] has a problem, and it becomes out of sync with the underlying Hyper-V cluster. Usually a quick refresh of the cluster and you&#8217;re stored. Sadly this is not always the case. In the instance where you see duplicate virtual machines you have a bit of an issue on your hands as [...]]]></description>
			<content:encoded><![CDATA[<p>Sometimes SCVMM 2008 [R2] has a problem, and it becomes out of sync with the underlying Hyper-V cluster. Usually a quick refresh of the cluster and you&#8217;re stored.</p>
<p>Sadly this is not always the case. In the instance where you see duplicate virtual machines you have a bit of an issue on your hands as you can&#8217;t migrate that virtual machine to the Hyper-V cluster node that also has the &#8220;missing&#8221; version of itself.</p>
<p>If you delve deeper, and check the Failover Cluster Manager, you should see that there is only one copy. With that verified the answer is to break out the SQL to fix SCVMM.</p>
<ol>
<li>Ideally you&#8217;ll want to stop the SCVMM service (VMMService)</li>
<li>Download and install SQL Studio Manager, or if you&#8217;re really hardcore use osql. If you&#8217;ve used the default database then you&#8217;ll want to connect to COMPUTERNAME\MICROSOFT$VMM$. Otherwise it&#8217;ll be where ever it was installed.</li>
<li>Now there are &#8220;2&#8243; solutions we&#8217;ve found for this problem. As always backup your database first.
<ul>
<li>We found by digging into the database that the virtual machines instances are stored in tbl_WLC_VObject and have an ObjectState equal to 220. Deleting these very quickly removes the VM. However it does potentially leave other references behind.</li>
<li>The technet way, which we&#8217;d recommend, (see <a href="http://technet.microsoft.com/en-us/library/ff641854.aspx">http://technet.microsoft.com/en-us/library/ff641854.aspx</a>), which looks at the same table, however also searches all other tables for references.</li>
</ul>
</li>
<li>Restart the SCVMM service and you should be laughing all the way to the bank</li>
</ol>
<p>Just incase Technet ever decides to go away, we&#8217;ve put the script from the page <a href="http://technet.microsoft.com/en-us/library/ff641854.aspx">referenced above</a>, below.</p>
<p><code>BEGIN TRANSACTION T1</code></p>
<p><code>DECLARE custom_cursor CURSOR FOR<br />
SELECT ObjectId from<br />
dbo.tbl_WLC_VObject WHERE [ObjectState] = 220<br />
DECLARE @ObjectId uniqueidentifier<br />
OPEN custom_cursor<br />
FETCH NEXT FROM custom_cursor INTO @ObjectId<br />
WHILE(@@fetch_status = 0)<br />
BEGIN<br />
DECLARE vdrive_cursor CURSOR FOR<br />
SELECT VDriveId, VHDId, ISOId from<br />
dbo.tbl_WLC_VDrive WHERE ParentId = @ObjectId<br />
DECLARE @VDriveId uniqueidentifier<br />
DECLARE @VHDId uniqueidentifier<br />
DECLARE @ISOId uniqueidentifier</code></p>
<p><code>OPEN vdrive_cursor<br />
FETCH NEXT FROM vdrive_cursor INTO @VDriveId, @VHDId, @ISOId<br />
WHILE(@@fetch_status = 0)<br />
BEGIN<br />
DELETE FROM dbo.tbl_WLC_VDrive<br />
WHERE VDriveId = @VDriveId<br />
if(@VHDId is NOT NULL)<br />
BEGIN</code></p>
<p><code>DELETE FROM dbo.tbl_WLC_VHD<br />
WHERE VHDId = @VHDId<br />
DELETE FROM dbo.tbl_WLC_PhysicalObject<br />
WHERE PhysicalObjectId = @VHDId<br />
END<br />
if(@ISOId is NOT NULL)<br />
BEGIN</p>
<p>DELETE FROM dbo.tbl_WLC_ISO<br />
WHERE ISOId = @ISOId<br />
DELETE FROM dbo.tbl_WLC_PhysicalObject<br />
WHERE PhysicalObjectId = @ISOId<br />
END</p>
<p>FETCH NEXT FROM vdrive_cursor INTO @VDriveId, @VHDId, @ISOId<br />
END<br />
CLOSE vdrive_cursor<br />
DEALLOCATE vdrive_cursor<br />
-----------------<br />
DECLARE floppy_cursor CURSOR FOR<br />
SELECT VFDId, vFloppyId from<br />
dbo.tbl_WLC_VFloppy WHERE HWProfileId = @ObjectId<br />
DECLARE @vFloppyId uniqueidentifier<br />
DECLARE @vfdId uniqueidentifier<br />
OPEN floppy_cursor<br />
FETCH NEXT FROM floppy_cursor INTO @vfdId, @vFloppyId<br />
WHILE(@@fetch_status = 0)<br />
BEGIN<br />
DELETE FROM dbo.tbl_WLC_VFloppy<br />
WHERE VFloppyId = @vFloppyId</p>
<p>if(@vfdid is NOT NULL)<br />
BEGIN<br />
DELETE FROM dbo.tbl_WLC_VFD<br />
WHERE VFDId = @vfdId<br />
DELETE FROM dbo.tbl_WLC_PhysicalObject<br />
WHERE PhysicalObjectId = @vfdId</p>
<p>END</p>
<p>FETCH NEXT FROM floppy_cursor INTO @vfdId, @vFloppyId<br />
END<br />
CLOSE floppy_cursor<br />
DEALLOCATE floppy_cursor<br />
----------------<br />
DECLARE checkpoint_cursor CURSOR FOR<br />
SELECT VMCheckpointId from<br />
dbo.tbl_WLC_VMCheckpoint WHERE VMId = @ObjectId<br />
DECLARE @vmCheckpointId uniqueidentifier<br />
OPEN checkpoint_cursor<br />
FETCH NEXT FROM checkpoint_cursor INTO @vmCheckpointId<br />
WHILE(@@fetch_status = 0)<br />
BEGIN<br />
DELETE FROM dbo.tbl_WLC_VMCheckpointRelation<br />
WHERE VMCheckpointId = @vmCheckpointId</p>
<p>FETCH NEXT FROM checkpoint_cursor INTO @vmCheckpointId<br />
END<br />
CLOSE checkpoint_cursor<br />
DEALLOCATE checkpoint_cursor<br />
-------------------------<br />
---------Clean checkpoint<br />
DELETE FROM dbo.tbl_WLC_VMCheckpoint<br />
WHERE VMId = @ObjectID</p>
<p>exec [dbo].[prc_VMMigration_Delete_VMInfoAndLUNMappings] @ObjectId<br />
DECLARE @RefreshId uniqueidentifier<br />
exec [dbo].[prc_RR_Refresher_Delete] @ObjectId, @RefreshId</p>
<p>DELETE FROM dbo.tbl_WLC_VAdapter<br />
WHERE HWProfileId = @ObjectId</p>
<p>DELETE FROM dbo.tbl_WLC_VNetworkAdapter<br />
WHERE HWProfileId = @ObjectId</p>
<p></code></p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p><code> DELETE FROM dbo.tbl_WLC_VCOMPort<br />
WHERE HWProfileId = @ObjectId<br />
DELETE FROM dbo.tbl_WLC_HWProfile<br />
WHERE HWProfileId = @ObjectId<br />
DELETE FROM dbo.tbl_WLC_VMInstance<br />
WHERE VMInstanceId = @ObjectId<br />
DELETE FROM dbo.tbl_WLC_VObject<br />
WHERE ObjectId = @ObjectId<br />
FETCH NEXT FROM custom_cursor INTO @ObjectId<br />
END<br />
CLOSE custom_cursor<br />
DEALLOCATE custom_cursor<br />
COMMIT TRANSACTION T1</code></p>
]]></content:encoded>
			<wfw:commentRss>http://blog.glo-networks.com/2011/05/27/removing-missing-virtual-machines-from-system-center-virtual-machine-manager-2008-r2/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Hosted BlackBerry Service for BPOS to become Free of Charge</title>
		<link>http://blog.glo-networks.com/2011/03/18/hosted-blackberry-service-for-bpos-to-become-free-of-charge/</link>
		<comments>http://blog.glo-networks.com/2011/03/18/hosted-blackberry-service-for-bpos-to-become-free-of-charge/#comments</comments>
		<pubDate>Fri, 18 Mar 2011 14:13:27 +0000</pubDate>
		<dc:creator>James</dc:creator>
				<category><![CDATA[Applications]]></category>
		<category><![CDATA[General]]></category>
		<category><![CDATA[Small Business Software]]></category>
		<category><![CDATA[BlackBerry]]></category>
		<category><![CDATA[BPOS]]></category>
		<category><![CDATA[Exchange]]></category>
		<category><![CDATA[Hosted BlackBerry]]></category>
		<category><![CDATA[Hosted Exchange]]></category>
		<category><![CDATA[Microsoft Office 365]]></category>

		<guid isPermaLink="false">http://blog.glo-networks.com/?p=950</guid>
		<description><![CDATA[Microsoft have announced they are updating pricing for Hosted BlackBerry Service for Exchange Online. Soon this service will be available free of charge to BPOS subscribers (new and existing).  The Hosted BlackBerry service offers increased functionality compared to the other, already free option: BlackBerry Internet Service. Previously BPOS users who access their email via the [...]]]></description>
			<content:encoded><![CDATA[<p>Microsoft have announced they are updating pricing for Hosted BlackBerry Service for Exchange Online. Soon this service will be available free of charge to <a title="Business Productivity Online Standard Suite" href="http://www.microsoft.com/online/">BPOS </a>subscribers (new and existing).  The Hosted BlackBerry service offers increased functionality compared to the other, already free option: BlackBerry Internet Service.</p>
<p>Previously BPOS users who access their email via the free BlackBerry Internet Service were limited to wireless email access, pushed from the mobile operator. Other information, such as contacts and calendar data had to be updated through a wired connection.</p>
<p>Hosted Blackberry services allows wireless access to e-mail, calendar, tasks and contacts with global address list (GAL) integration, and device management such as device wipe and password reset.</p>
<p>By scrapping the current Hosted BlackBerry services pricing structure and moving towards a free service for BPOS subscribers, Microsoft will be hoping to see businesses that have come to like and possibly rely on their BlackBerry looking on the BPOS (and Office 365 in the future) offerings more favourably.</p>
<p>&nbsp;</p>
]]></content:encoded>
			<wfw:commentRss>http://blog.glo-networks.com/2011/03/18/hosted-blackberry-service-for-bpos-to-become-free-of-charge/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Microsoft Office 365 Announcement</title>
		<link>http://blog.glo-networks.com/2010/10/28/microsoft-office-365-announcement/</link>
		<comments>http://blog.glo-networks.com/2010/10/28/microsoft-office-365-announcement/#comments</comments>
		<pubDate>Thu, 28 Oct 2010 16:19:31 +0000</pubDate>
		<dc:creator>James</dc:creator>
				<category><![CDATA[Applications]]></category>
		<category><![CDATA[Servers]]></category>
		<category><![CDATA[Small Business Software]]></category>
		<category><![CDATA[Microsoft Office 365]]></category>
		<category><![CDATA[Microsoft Online Services]]></category>

		<guid isPermaLink="false">http://blog.glo-networks.com/?p=833</guid>
		<description><![CDATA[Microsoft have recently announced a new edition to their Office suites: Office 365. While there isn’t a great deal of information available it looks set to combine the elements of the Microsoft Online Services suite (Exchange Online,  Sharepoint Online and Lync Online) with the desktop Office suite (at least the Enterprise level product has the [...]]]></description>
			<content:encoded><![CDATA[<p>Microsoft have recently announced a new edition to their Office suites: Office 365. While there isn’t a great deal of information available it looks set to combine the elements of the Microsoft Online Services suite (Exchange Online,  Sharepoint Online and Lync Online) with the desktop Office suite (at least the Enterprise level product has the desktop suite, the Small Business only has the browser based Office Web Apps) .</p>
<p>The pricing structure is a monthly subscription/rental, reflecting the online ‘cloud’ based nature of the Online Services applications. While we can see the benefit for those who are already using or planning to use Microsoft Online Services (essentially a free licence for Office Professional Plus per user whilst they are subscribed) at present we cannot see any major attraction for new customers.</p>
<p>Whilst we still have many unanswered questions about Office 365 (primarily regards deployment in terminal server environments) what’s evident is Microsoft are trying to entice more customers to embrace their Online Services ‘cloud’ based solutions.</p>
]]></content:encoded>
			<wfw:commentRss>http://blog.glo-networks.com/2010/10/28/microsoft-office-365-announcement/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Exchange 2010 SP1 Release</title>
		<link>http://blog.glo-networks.com/2010/08/26/exchange-2010-sp1-release/</link>
		<comments>http://blog.glo-networks.com/2010/08/26/exchange-2010-sp1-release/#comments</comments>
		<pubDate>Thu, 26 Aug 2010 11:38:50 +0000</pubDate>
		<dc:creator>James</dc:creator>
				<category><![CDATA[Applications]]></category>
		<category><![CDATA[Servers]]></category>
		<category><![CDATA[Exchange 2010]]></category>
		<category><![CDATA[SP1]]></category>

		<guid isPermaLink="false">http://blog.glo-networks.com/?p=802</guid>
		<description><![CDATA[Exchange 2010 has been available for a while now, here at Glo Networks we’ve been using it since the beta testing stage and we’ve found many of the new features to be great, both for administrators and users. Now SP1 for Exchange 2010 is released today, and not only does it include all the roll-up [...]]]></description>
			<content:encoded><![CDATA[<p>Exchange 2010 has been available for a while now, here at Glo Networks we’ve been using it since the beta testing stage and we’ve found many of the new features to be great, both for administrators and users.</p>
<p>Now SP1 for Exchange 2010 is released today, and not only does it include all the roll-up updates and bug fixes released so far but it also includes some handy new features. Several of the features are to make administrating the Exchange server more efficient  (some new features in the Management GUI) but there are a few that users will enjoy.</p>
<p>One big benefit of the SP is it includes the ability for user to share their calendars, from OWA (which has been improved again and looks very nice!), via HTML or iCal. This means when someone asks you when you’re free for a meeting you could simply send them a link to your calendar for them to compare with theirs. Just imagine: no more ‘I can do Friday’ ‘Well I can’t make Friday but how about Monday..’ type conversations!</p>
]]></content:encoded>
			<wfw:commentRss>http://blog.glo-networks.com/2010/08/26/exchange-2010-sp1-release/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Hyper V Snapshots and their uses</title>
		<link>http://blog.glo-networks.com/2010/08/10/hyper-v-snapshots-and-their-uses/</link>
		<comments>http://blog.glo-networks.com/2010/08/10/hyper-v-snapshots-and-their-uses/#comments</comments>
		<pubDate>Tue, 10 Aug 2010 10:33:29 +0000</pubDate>
		<dc:creator>James</dc:creator>
				<category><![CDATA[Applications]]></category>
		<category><![CDATA[Servers]]></category>
		<category><![CDATA[backup]]></category>
		<category><![CDATA[hyper-v]]></category>
		<category><![CDATA[Snapshots]]></category>
		<category><![CDATA[VSS]]></category>

		<guid isPermaLink="false">http://blog.glo-networks.com/?p=787</guid>
		<description><![CDATA[Recently one of our customers has been playing with Hyper V, creating virtual machines for testing purposes. We have advised them in this and have guided them through using Hyper V, and it’s features and functions. One of the questions asked by the customer was about snapshots. ‘Why not use them for backups?’ they asked. [...]]]></description>
			<content:encoded><![CDATA[<p>Recently one of our customers has been playing with Hyper V, creating virtual machines for testing purposes. We have advised them in this and have guided them through using Hyper V, and it’s features and functions. One of the questions asked by the customer was about snapshots. ‘Why not use them for backups?’ they asked.</p>
<p>For anyone using Hyper V, Snapshots can be a very handy tool. Allowing the swift roll back of a VM to a previous state, they were intended to be used mainly for development and testing environments. They do have their uses for production environments too however, for example; if you wished to perform a potentially risky update on software installed on a virtual machine a quick snapshot before would allow you to do so safe in the knowledge you can revert to before the update simply by loading the snapshot.</p>
<p>One thing that snapshots should not be used for is a substitute for backups. Although they may on the surface seem ideal for this purpose there are a few reasons this is not recommended.</p>
<ul>
<li>They do not provide protection against problems that may occur on the host server (the one running Hyper-V), such as a hardware problems on the physical computer or a software-related issues in the operating system.</li>
<li>Programs running in the virtual machine will not be aware of the snapshot and when rolling back they will not be able to adjust correctly. For example a Exchange server on a VM which has reverted to a snapshot would expect to have connections to the same clients as it did when the snapshot was created.</li>
<li>The snapshot files (.avhd) will not work, or at least not you will easily be able to revert to them, once they have been moved from their original location. This means that copying them away from the host machine (as you may if you were planning to use them as a backup) will essentially make them useless.</li>
</ul>
<p>Please note: Our method of backing up HyperV VM’s involves the use of volume shadow copy snapshots. These are not the same as HyperV snapshots! For more info please see the following:</p>
<p><a href="http://blog.glo-networks.com/2009/09/25/hyper-v-backups/">Hyper-v Backups</a> on the Glo Networks Technical Blog</p>
<p><a href="http://www.backupassist.com/blog/support/hyper-v-snapshots-vss-snapshots-the-differences/"> Hyper-V Snapshots &amp; VSS Snapshots: the differences</a> on the Backup Assist Blog</p>
<p><a href="http://technet.microsoft.com/en-us/library/dd560637(WS.10).aspx" target="_blank">Hyper V Snapshots FAQ</a> on the Technet site</p>
]]></content:encoded>
			<wfw:commentRss>http://blog.glo-networks.com/2010/08/10/hyper-v-snapshots-and-their-uses/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Speed up Hyper-V Backups</title>
		<link>http://blog.glo-networks.com/2010/04/06/speed-up-hyper-v-backups/</link>
		<comments>http://blog.glo-networks.com/2010/04/06/speed-up-hyper-v-backups/#comments</comments>
		<pubDate>Tue, 06 Apr 2010 07:04:30 +0000</pubDate>
		<dc:creator>Chris</dc:creator>
				<category><![CDATA[Applications]]></category>
		<category><![CDATA[Servers]]></category>
		<category><![CDATA[Hyper-V Backup]]></category>
		<category><![CDATA[Hyper-V Faster Backup]]></category>
		<category><![CDATA[Hyper-V Faster Copy]]></category>

		<guid isPermaLink="false">http://blog.glo-networks.com/?p=680</guid>
		<description><![CDATA[A few weeks ago Dilip from VMUtil replied to one of our blog entries about backing up Hyper-V. He was saying that VHDCopy would speed things up and so we thought we&#8217;d give it a try. We use the scripts in the blog post for all the Hyper-V data we manage. One customer has a [...]]]></description>
			<content:encoded><![CDATA[<p><a href="http://blog.glo-networks.com/wp-content/uploads/2010/03/Microsoft-Virtualization.gif"><img class="alignleft size-full wp-image-675" title="Microsoft Virtualization" src="http://blog.glo-networks.com/wp-content/uploads/2010/03/Microsoft-Virtualization.gif" alt="" width="276" height="40" /></a>A few weeks ago Dilip from <a href="http://www.vmutil.com" target="_blank">VMUtil</a> replied to one of our blog entries about <a href="http://blog.glo-networks.com/2009/09/25/hyper-v-backups/" target="_blank">backing up Hyper-V</a>. He was saying that <a href="http://www.vmutil.com/vhdcopy.html" target="_blank">VHDCopy</a> would speed things up and so we thought we&#8217;d give it a try.</p>
<p>We use the scripts in the blog post for all the Hyper-V data we manage. One customer has a fixed size disk of 272GB so we thought we&#8217;d give it a try. We changed one line in the backup script from</p>
<pre style="margin-top: 0px; margin-right: 0px; margin-bottom: 1em; margin-left: 0px; font-size: 12px; color: #000000; overflow-x: auto; overflow-y: auto; background-color: #f7f9fa; padding: 0.5em; border: 1px dashed #8cacbb;">xcopy %srcb% %bkf% /Y</pre>
<p>to</p>
<pre style="margin-top: 0px; margin-right: 0px; margin-bottom: 1em; margin-left: 0px; font-size: 12px; color: #000000; overflow-x: auto; overflow-y: auto; background-color: #f7f9fa; padding: 0.5em; border: 1px dashed #8cacbb;">C:\Data\Scripts\VHDCopy.exe /fast %srcb% E:\DRIVE.vhd</pre>
<p>and let it run as usual. It used to finish at around 4:09:01.47am every day but now it finishes at approximately 1:15:21.86am !</p>
<p>In the piped log file we found -<br />
Avoided reading      150252 MB     146 GB<br />
Also avoided writing 150252 MB     146 GB</p>
<p>Now that is handy ! The written file is still it&#8217;s full size and of course it still works perfectly.</p>
<p><strong>Note</strong> that this software only helps FIXED SIZE VHDs. It will still copy dynamic sized VHDs but only makes a speed difference to FIXED SIZE ones. Also you can&#8217;t specifiy a directory to copy like you do in xcopy, here it has to be the full distinct name of the VHD in the destination and source.</p>
<p>So should we (where disk space is not an issue) convert all the VHDs to fixed size ? We didn&#8217;t use to because it was just soo slow to back them up &#8230; not an issue any more !</p>
]]></content:encoded>
			<wfw:commentRss>http://blog.glo-networks.com/2010/04/06/speed-up-hyper-v-backups/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Hyper-V Gets Even Better</title>
		<link>http://blog.glo-networks.com/2010/03/26/hyper-v-gets-even-better/</link>
		<comments>http://blog.glo-networks.com/2010/03/26/hyper-v-gets-even-better/#comments</comments>
		<pubDate>Fri, 26 Mar 2010 09:23:41 +0000</pubDate>
		<dc:creator>Chris</dc:creator>
				<category><![CDATA[Applications]]></category>
		<category><![CDATA[Operating Systems]]></category>
		<category><![CDATA[Servers]]></category>
		<category><![CDATA[Hyper-V Dynamic Memory]]></category>
		<category><![CDATA[Windows 2008 R2 SP1]]></category>

		<guid isPermaLink="false">http://blog.glo-networks.com/?p=672</guid>
		<description><![CDATA[In the next few months SP1 (Service Pack 1) will be released for Windows 2008 R2 and Windows 7. It will contain the usual plethora of hotfixes and some new functions. One of the great new functions that we&#8217;ve been waiting on for months is the Dynamic Memory availability in Hyper-V. We&#8217;ve not got our [...]]]></description>
			<content:encoded><![CDATA[<p><a href="http://blog.glo-networks.com/wp-content/uploads/2010/03/Microsoft-Virtualization.gif"><img class="alignleft size-full wp-image-675" title="Microsoft Virtualization" src="http://blog.glo-networks.com/wp-content/uploads/2010/03/Microsoft-Virtualization.gif" alt="" width="276" height="40" /></a>In the next few months SP1 (Service Pack 1) will be released for Windows 2008 R2 and Windows 7. It will contain the usual plethora of hotfixes and some new functions. One of the great new functions that we&#8217;ve been waiting on for months is the Dynamic Memory availability in Hyper-V.</p>
<p>We&#8217;ve not got our hands on it for testing yet but from reading <a href="http://blogs.technet.com/virtualization/archive/2010/03/18/dynamic-memory-coming-to-hyper-v.aspx" target="_blank">this</a> TechNet Blog article it looks like it should do exactly what we want / need.</p>
]]></content:encoded>
			<wfw:commentRss>http://blog.glo-networks.com/2010/03/26/hyper-v-gets-even-better/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

