<?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>eGroup &#187; Ian Jones</title>
	<atom:link href="http://www.egroup-us.com/author/ian-jones/feed" rel="self" type="application/rss+xml" />
	<link>http://www.egroup-us.com</link>
	<description>Technology Solutions for Serious Competitors</description>
	<lastBuildDate>Wed, 22 May 2013 15:35:45 +0000</lastBuildDate>
	<language>en-US</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.5.1</generator>
		<item>
		<title>RESETTING CITRIX LICENSE SERVER PASSWORD</title>
		<link>http://www.egroup-us.com/2012/03/resetting-citrix-license-server-password/</link>
		<comments>http://www.egroup-us.com/2012/03/resetting-citrix-license-server-password/#comments</comments>
		<pubDate>Tue, 20 Mar 2012 02:23:25 +0000</pubDate>
		<dc:creator>Ian Jones</dc:creator>
				<category><![CDATA[Blog On]]></category>
		<category><![CDATA[Change]]></category>
		<category><![CDATA[Citrix]]></category>
		<category><![CDATA[License Server]]></category>
		<category><![CDATA[password]]></category>

		<guid isPermaLink="false">http://www.egroup-us.com/?p=6294</guid>
		<description><![CDATA[<p>Sometimes it becomes necessary to reset the Citrix License Console admin password. It is actually a very straightforward operation once you know how to do it. Open the server.xml file located in C:\Program Files\Citrix\Licensing\LS\conf\ There should be an entry that begins with &#60;user firstName=&#8221;System&#8221; id=&#8221;admin&#8221;&#8230; Replace the contents between the quotes of password=&#8221;" and replace [...]</p><p>The post <a href="http://www.egroup-us.com/2012/03/resetting-citrix-license-server-password/">RESETTING CITRIX LICENSE SERVER PASSWORD</a> appeared first on <a href="http://www.egroup-us.com">eGroup</a>.</p>]]></description>
				<content:encoded><![CDATA[<p>Sometimes it becomes necessary to reset the Citrix License Console admin password. It is actually a very straightforward operation once you know how to do it.</p>
<ul>
<li>Open the server.xml file located in C:\Program Files\Citrix\Licensing\LS\conf\</li>
<li>There should be an entry that begins with &lt;user firstName=&#8221;System&#8221; id=&#8221;admin&#8221;&#8230;</li>
<li>Replace the contents between the quotes of password=&#8221;" and replace it with a simple plain-text password. This is only a temporary password. The contents will be encrypted</li>
<li>Change passwordExpired=&#8221;false&#8221; to passwordExpired=&#8221;true&#8221;</li>
<li>Save and close the xml file</li>
<li>Restart the Citrix Licensing Server Service</li>
<li>Log into the Licensing Console using the username admin and the password you set in Step 3</li>
<li>You should be prompted to reset the password upon logging in</li>
<li>Re-open the server.xml file and verify that the password=&#8221;password you set&#8221; is now an encrypted string representing the new password you just entered</li>
</ul>
<p>Good luck!</p>
<p>The post <a href="http://www.egroup-us.com/2012/03/resetting-citrix-license-server-password/">RESETTING CITRIX LICENSE SERVER PASSWORD</a> appeared first on <a href="http://www.egroup-us.com">eGroup</a>.</p>]]></content:encoded>
			<wfw:commentRss>http://www.egroup-us.com/2012/03/resetting-citrix-license-server-password/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>QUICKLY FAILOVER SQL SERVER MIRROR DATABASE</title>
		<link>http://www.egroup-us.com/2012/02/quickly-failover-sql-server-mirror-database/</link>
		<comments>http://www.egroup-us.com/2012/02/quickly-failover-sql-server-mirror-database/#comments</comments>
		<pubDate>Wed, 22 Feb 2012 21:56:11 +0000</pubDate>
		<dc:creator>Ian Jones</dc:creator>
				<category><![CDATA[Blog On]]></category>
		<category><![CDATA[Citrix]]></category>
		<category><![CDATA[DataStream]]></category>
		<category><![CDATA[Failover]]></category>
		<category><![CDATA[Microsoft]]></category>
		<category><![CDATA[Mirror]]></category>
		<category><![CDATA[SQL Server]]></category>

		<guid isPermaLink="false">http://www.egroup-us.com/?p=6030</guid>
		<description><![CDATA[<p>While working on a customer implementation of Microsoft SQL Server 2008 R2 and Citrix DataStream I ran into a need to quickly failover mirror partners between servers for testing reasons. This can be done easily via the ALTER DATABASE command but to save time I wrapped the command up into a dynamic Stored Procedure. mirroring_role [...]</p><p>The post <a href="http://www.egroup-us.com/2012/02/quickly-failover-sql-server-mirror-database/">QUICKLY FAILOVER SQL SERVER MIRROR DATABASE</a> appeared first on <a href="http://www.egroup-us.com">eGroup</a>.</p>]]></description>
				<content:encoded><![CDATA[<p>While working on a customer implementation of Microsoft SQL Server 2008 R2 and Citrix DataStream I ran into a need to quickly failover mirror partners between servers for testing reasons. This can be done easily via the ALTER DATABASE command but to save time I wrapped the command up into a dynamic Stored Procedure.</p>
<p>mirroring_role being equal to 1 indicates it has the PRINCIPAL role where the mirroring_state being equal to 4 indicates it is SYNCHRONIZED.</p>
<p>The procedure should be run on the server where the database is the PRINCIPAL. Running it on the MIRROR server will not result in any changes. Using Linked Servers and 2 parameters in the Stored Procedure such as:</p>
<p>sps_FailoverMirror (@databaseName nvarchar(200), @serverOne nvarchar(200), @serverTwo nvarchar(200))</p>
<p>would allow the Stored Procedure to query both servers, find the PRINCIPAL server, and perform the failover.</p>
<p>&nbsp;</p>
<p><a href="http://www.egroup-us.com/wp-content/uploads/2012/02/sqlQuery2.jpg"><img class="aligncenter size-full wp-image-6032" src="http://www.egroup-us.com/wp-content/uploads/2012/02/sqlQuery2.jpg" alt="" width="527" height="388" /></a></p>
<p>The post <a href="http://www.egroup-us.com/2012/02/quickly-failover-sql-server-mirror-database/">QUICKLY FAILOVER SQL SERVER MIRROR DATABASE</a> appeared first on <a href="http://www.egroup-us.com">eGroup</a>.</p>]]></content:encoded>
			<wfw:commentRss>http://www.egroup-us.com/2012/02/quickly-failover-sql-server-mirror-database/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>EXCHANGE 2010 &#8211; CHANGING MAILBOX DB LOCATIONS WHEN DB IS UNAVAILABLE</title>
		<link>http://www.egroup-us.com/2011/09/exchange-2010-changing-mailbox-db-locations-when-db-is-unavailable/</link>
		<comments>http://www.egroup-us.com/2011/09/exchange-2010-changing-mailbox-db-locations-when-db-is-unavailable/#comments</comments>
		<pubDate>Fri, 09 Sep 2011 18:14:18 +0000</pubDate>
		<dc:creator>Ian Jones</dc:creator>
				<category><![CDATA[Blog On]]></category>
		<category><![CDATA[database]]></category>
		<category><![CDATA[Exchange 2010]]></category>
		<category><![CDATA[Mailbox]]></category>
		<category><![CDATA[PowerShell]]></category>

		<guid isPermaLink="false">http://www.egroup-us.com/?p=5005</guid>
		<description><![CDATA[<p>There are times when an Exchange Mailbox Database is unavailable &#8211; wether it is missing or the underlying storage is unavailable. Recently, while visiting a customer, they asked about the best method for solving this issue when the old database does not need to be retrieved. There is a simple set of commands that can be [...]</p><p>The post <a href="http://www.egroup-us.com/2011/09/exchange-2010-changing-mailbox-db-locations-when-db-is-unavailable/">EXCHANGE 2010 &#8211; CHANGING MAILBOX DB LOCATIONS WHEN DB IS UNAVAILABLE</a> appeared first on <a href="http://www.egroup-us.com">eGroup</a>.</p>]]></description>
				<content:encoded><![CDATA[<p>There are times when an Exchange Mailbox Database is unavailable &#8211; wether it is missing or the underlying storage is unavailable. Recently, while visiting a customer, they asked about the best method for solving this issue when the old database does not need to be retrieved. There is a simple set of commands that can be used to move the path and generate a new, empty, .edb file.</p>
<p>To identify the the database to work with one can either use the Mailbox name or the Mailbox GUID. To obtain the GUID run the following Exchange Management Shell command:</p>
<p><strong><em>Get-MailboxDatabase -Identity &#8220;MailboxName&#8221; | Format-Table Name, GUID</em></strong></p>
<p>Taking the resulting GUID, or the Mailbox Name itself, it can be plugged into the Identity property of the following command:</p>
<p><strong><em>Move-DatabasePath -ConfigurationOnly -Identity &#8220;GUIDorName&#8221; -EdbFilePath &#8220;C:\PathToEdb\FileName.edb&#8221; -LogFolderPath &#8220;C:\PathToFolder&#8221;</em></strong></p>
<p>The -ConfigurationOnly property instructs the Exchange Management Shell to ignore the fact that it cannot find the current path or file. The above command without the -ConfigurationOnly property is identical to running the Move Database Path option within the Exchange Management GUI.</p>
<p>Once the above command is complete, the Mailbox database can be mounted at which time it will create a new, empty, .edb file in the new storage location.</p>
<p>This is a nice command to have in your brain bank when faced with a situation where the existing path for your mailbox stores cannot be contacted or you&#8217;re restoring Mailbox databases to a new location.</p>
<p>The post <a href="http://www.egroup-us.com/2011/09/exchange-2010-changing-mailbox-db-locations-when-db-is-unavailable/">EXCHANGE 2010 &#8211; CHANGING MAILBOX DB LOCATIONS WHEN DB IS UNAVAILABLE</a> appeared first on <a href="http://www.egroup-us.com">eGroup</a>.</p>]]></content:encoded>
			<wfw:commentRss>http://www.egroup-us.com/2011/09/exchange-2010-changing-mailbox-db-locations-when-db-is-unavailable/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>CITRIX PVS 5.6 XENDESKTOP WIZARD TEMPLATE ISSUE</title>
		<link>http://www.egroup-us.com/2011/07/citrix-pvs-5-6-xendesktop-wizard-template-issue/</link>
		<comments>http://www.egroup-us.com/2011/07/citrix-pvs-5-6-xendesktop-wizard-template-issue/#comments</comments>
		<pubDate>Thu, 14 Jul 2011 16:21:01 +0000</pubDate>
		<dc:creator>Ian Jones</dc:creator>
				<category><![CDATA[Blog On]]></category>
		<category><![CDATA[Citrix]]></category>
		<category><![CDATA[PVS]]></category>
		<category><![CDATA[vSphere]]></category>
		<category><![CDATA[XenDesjtop]]></category>

		<guid isPermaLink="false">http://blogs.eGroup-us.com/?p=4464</guid>
		<description><![CDATA[<p>I wanted to share some new thoughts and a new solution for a known issue when using PVS 5.6 and XenDesktop 5 deployed via vSphere 4.1. By now we&#8217;ve all experienced the issue wherein any templates containing a network adapter configured to used a vNetwork Distributed Switch will cause the XenDesktop Wizard to crash when [...]</p><p>The post <a href="http://www.egroup-us.com/2011/07/citrix-pvs-5-6-xendesktop-wizard-template-issue/">CITRIX PVS 5.6 XENDESKTOP WIZARD TEMPLATE ISSUE</a> appeared first on <a href="http://www.egroup-us.com">eGroup</a>.</p>]]></description>
				<content:encoded><![CDATA[<p>I wanted to share some new thoughts and a new solution for a known issue when using PVS 5.6 and XenDesktop 5 deployed via vSphere 4.1.</p>
<p>By now we&#8217;ve all experienced the issue wherein any templates containing a network adapter configured to used a vNetwork Distributed Switch will cause the XenDesktop Wizard to crash when attempting to query available templates. The real kicker to this issue is that if any storage in the chosen DesktopController host configuration contains a template with a Distributed Switch then the behavior will appear. It does not matter if those templates are part of another vSphere installation, only that they are sharing the same storage.</p>
<p>Continue reading for more details and a PowerCLI based solution.</p>
<p><span id="more-4588"></span>Here is the error received:</p>
<p><a href="http://egroup-us.levelwing.com/wp-content/uploads/2011/07/PVSError2.jpg"><img class="alignnone size-full wp-image-4481" src="http://egroup-us.levelwing.com/wp-content/uploads/2011/07/PVSError2.jpg" alt="" width="420" height="194" /></a></p>
<p>The supported solution from Citrix is to choose a template that has a Standard Switch configured (as should ALL templates located on the shared storage), begin the PVS XenDesktop Wizard and immediately before clicking finish to begin machine creation &#8211; convert the template back to a VM, change the adapter network to the desired distributed switch, and then convert back to a template. The problem is that I have personally seen this work approximately 25% of the time. It is a clunky solution to a known problem.</p>
<p>My solution was to craft a PowerCLI script to check each VM (based on a particular name format) in a vCenter instance for a particular standard switch (created and named for this particular issue), and change the Network Adapter network to the desired Distributed Switch.</p>
<p>Here is the script:</p>
<p><a href="http://egroup-us.levelwing.com/wp-content/uploads/2011/07/PSCode_VDS2.jpg"><img class="alignnone size-full wp-image-4478" src="http://egroup-us.levelwing.com/wp-content/uploads/2011/07/PSCode_VDS2.jpg" alt="" width="672" height="151" /></a></p>
<p style="text-align: left">This will print out each VirtualMachine name that it discovers based on the search pattern. If the Network is changed it will also print out all of the relevant information after the change.</p>
<p style="text-align: left">Word is this issue will be fixed as of PVS 6 which is due out in August or September &#8211; this issue has been around far too long to be waiting for a major release for a fix. It is critical functionality and while not more than an inconvenience when creating 5 machines, it is a huge pain when creating 500.</p>
<p>The post <a href="http://www.egroup-us.com/2011/07/citrix-pvs-5-6-xendesktop-wizard-template-issue/">CITRIX PVS 5.6 XENDESKTOP WIZARD TEMPLATE ISSUE</a> appeared first on <a href="http://www.egroup-us.com">eGroup</a>.</p>]]></content:encoded>
			<wfw:commentRss>http://www.egroup-us.com/2011/07/citrix-pvs-5-6-xendesktop-wizard-template-issue/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Outlook 2010 &#8220;Unable to Open&#8221; &#8211; XenApp 6 &#8211; XenDesktop 5 &#8211; Mandatory Profiles</title>
		<link>http://www.egroup-us.com/2011/07/outlook-2010-unable-to-open-xenapp-6-xendesktop-5-mandatory-profiles/</link>
		<comments>http://www.egroup-us.com/2011/07/outlook-2010-unable-to-open-xenapp-6-xendesktop-5-mandatory-profiles/#comments</comments>
		<pubDate>Thu, 07 Jul 2011 14:57:23 +0000</pubDate>
		<dc:creator>Ian Jones</dc:creator>
				<category><![CDATA[General]]></category>

		<guid isPermaLink="false">http://blogs.eGroup-us.com/?p=4452</guid>
		<description><![CDATA[<p>I recently ran into an issue where Outlook was not able to be launched from a XenDesktop session when that application was delivered via XenApp and the Online Client Plugin. The error was: &#8220;Cannot Start Microsoft Outlook.&#8221; Also noted was when logging into the XenApp server using a published desktop the user also was unable [...]</p><p>The post <a href="http://www.egroup-us.com/2011/07/outlook-2010-unable-to-open-xenapp-6-xendesktop-5-mandatory-profiles/">Outlook 2010 &#8220;Unable to Open&#8221; &#8211; XenApp 6 &#8211; XenDesktop 5 &#8211; Mandatory Profiles</a> appeared first on <a href="http://www.egroup-us.com">eGroup</a>.</p>]]></description>
				<content:encoded><![CDATA[<p>I recently ran into an issue where Outlook was not able to be launched from a XenDesktop session when that application was delivered via XenApp and the Online Client Plugin. The error was: &#8220;Cannot Start Microsoft Outlook.&#8221; Also noted was when logging into the XenApp server using a published desktop the user also was unable to launch the Control Panel mail.cpl. The error was: &#8220;Your system needs more memory or system resources. Close some windows and try again.&#8221;</p>
<p>The user having the issue was utilizing a Mandatory Profile created in Windows 7 that was launching from a shared network location. When running Outlook as Administrator the application launched correctly.</p>
<p>An attempt was made to use a PRF to auto configure the Outlook Profile but this produced the same error.</p>
<p>Outlook also failed to launch using any of the typical command line switches such as /resetnavpane, /safe:1, /safe, etc.</p>
<p>Click below to read more about the solution to this issue.</p>
<p><span id="more-4579"></span>When removing the Mandatory Profile from the users AD Account and clearing the profile off of the XenApp server Outlook launched correctly.</p>
<p>The cause of this issue was that the user was unable to access a necessary key in HKCU that stores Profile Information. This was the reason mail.cpl was unable to launch and thus so was Outlook. It was preventing the creation of the profile for that user.</p>
<p>The solution was to rename the NTUSER.man file back to NTUSER.dat, load the hive into the registry and rename or delete the following key:</p>
<p><strong>HKCUSoftwareMicrosoftWindows NTCurrentVersionWindows Messaging Subsystem</strong></p>
<p>After doing this, the hive was unloaded and the file renamed back to NTUSER.man and copied back into the Mandatory Profile folder in the shared network location.</p>
<p>After re-launching Outlook both from XenDesktop and XenApp it was able to successfully start and a profile was created. In reviewing HKCU in the registry it was noted that a new Key was created to replace the one removed from NTUSER.man and it was accessible to the user. The mail.cpl applet was also able to be launched by the user.</p>
<p>The post <a href="http://www.egroup-us.com/2011/07/outlook-2010-unable-to-open-xenapp-6-xendesktop-5-mandatory-profiles/">Outlook 2010 &#8220;Unable to Open&#8221; &#8211; XenApp 6 &#8211; XenDesktop 5 &#8211; Mandatory Profiles</a> appeared first on <a href="http://www.egroup-us.com">eGroup</a>.</p>]]></content:encoded>
			<wfw:commentRss>http://www.egroup-us.com/2011/07/outlook-2010-unable-to-open-xenapp-6-xendesktop-5-mandatory-profiles/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>ISSUES LAUNCHING XenApp APPLICATIONS DELIVERED TO XenDesktop &#8211; Mapped Drives</title>
		<link>http://www.egroup-us.com/2011/07/issues-launching-xenapp-applications-delivered-to-xendesktop-mapped-drives/</link>
		<comments>http://www.egroup-us.com/2011/07/issues-launching-xenapp-applications-delivered-to-xendesktop-mapped-drives/#comments</comments>
		<pubDate>Wed, 06 Jul 2011 15:27:42 +0000</pubDate>
		<dc:creator>Ian Jones</dc:creator>
				<category><![CDATA[Blog On]]></category>
		<category><![CDATA[Drive Redirection]]></category>
		<category><![CDATA[Online Plugin]]></category>
		<category><![CDATA[xenapp]]></category>
		<category><![CDATA[XenDesktop]]></category>

		<guid isPermaLink="false">http://blogs.eGroup-us.com/?p=4450</guid>
		<description><![CDATA[<p>Recently, when deploying a XenDesktop Pilot and delivering applications to the desktop via XenApp it was discovered that the user would receive an error when accessing a file via their AD redirected documents folder (Z: -&#62; Network Share). The error presented by the Online Plugin version 12.1 was that the file could not be found [...]</p><p>The post <a href="http://www.egroup-us.com/2011/07/issues-launching-xenapp-applications-delivered-to-xendesktop-mapped-drives/">ISSUES LAUNCHING XenApp APPLICATIONS DELIVERED TO XenDesktop &#8211; Mapped Drives</a> appeared first on <a href="http://www.egroup-us.com">eGroup</a>.</p>]]></description>
				<content:encoded><![CDATA[<p>Recently, when deploying a XenDesktop Pilot and delivering applications to the desktop via XenApp it was discovered that the user would receive an error when accessing a file via their AD redirected documents folder (Z: -&gt; Network Share). The error presented by the Online Plugin version 12.1 was that the file could not be found at \ClientZ$&#8230;</p>
<p>The solution involved several changes to the XenDesktop registry to work seamlessly</p>
<p><span id="more-4578"></span></p>
<p>File type association was configured in the Application Properties under Advanced -&gt; Content Redirection.</p>
<p>Create or Edit: HKEY_LOCAL_MACHINE SoftwareCitrixUncLinksUNCEnabled and ensure it is set to DWORD 0.</p>
<p>Create or Edit: HKEY_LOCAL_MACHINESOFTWARECitrixICA ClientEngineConfigurationAdvancedModulesClientDrive and ensure it is set to REG_SZ TRUE.</p>
<p>The registry changesadditions were pushed using a machine startup policy in <a href="http://www.appsense.com/products/environmentmanager/">AppSense Environment Manager</a>.</p>
<p>Related Citrix KB Articles:</p>
<p><a href="http://support.citrix.com/article/CTX238200">CTX238200</a></p>
<p><a href="http://support.citrix.com/article/CTX126763">CTX126763</a></p>
<p>The post <a href="http://www.egroup-us.com/2011/07/issues-launching-xenapp-applications-delivered-to-xendesktop-mapped-drives/">ISSUES LAUNCHING XenApp APPLICATIONS DELIVERED TO XenDesktop &#8211; Mapped Drives</a> appeared first on <a href="http://www.egroup-us.com">eGroup</a>.</p>]]></content:encoded>
			<wfw:commentRss>http://www.egroup-us.com/2011/07/issues-launching-xenapp-applications-delivered-to-xendesktop-mapped-drives/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>XENDESKTOP 5 AND USING REMOTE ASSISTANCE THROUGH DESKTOP DIRECTOR</title>
		<link>http://www.egroup-us.com/2011/06/xendesktop-5-and-using-remote-assistance-through-desktop-director/</link>
		<comments>http://www.egroup-us.com/2011/06/xendesktop-5-and-using-remote-assistance-through-desktop-director/#comments</comments>
		<pubDate>Mon, 20 Jun 2011 04:01:40 +0000</pubDate>
		<dc:creator>Ian Jones</dc:creator>
				<category><![CDATA[General]]></category>
		<category><![CDATA[Group Policy]]></category>
		<category><![CDATA[Remote Assistance]]></category>
		<category><![CDATA[XenDesktop]]></category>

		<guid isPermaLink="false">http://blogs.eGroup-us.com/?p=4314</guid>
		<description><![CDATA[<p>One of the recommended best practices for a XenDesktop deployment is placing virtual desktops in their own OU with GPO inheritance blocked. This ensures a clean group policy exists to customize for the special needs of a VDI environment. Once you&#8217;ve configured port access for remote assistance through Desktop Director &#8211; 3389 and 5985 &#8211; [...]</p><p>The post <a href="http://www.egroup-us.com/2011/06/xendesktop-5-and-using-remote-assistance-through-desktop-director/">XENDESKTOP 5 AND USING REMOTE ASSISTANCE THROUGH DESKTOP DIRECTOR</a> appeared first on <a href="http://www.egroup-us.com">eGroup</a>.</p>]]></description>
				<content:encoded><![CDATA[<p>One of the recommended best practices for a XenDesktop deployment is placing virtual desktops in their own OU with GPO inheritance blocked. This ensures a clean group policy exists to customize for the special needs of a VDI environment.</p>
<p>Once you&#8217;ve configured port access for remote assistance through Desktop Director &#8211; 3389 and 5985 &#8211; don&#8217;t forget to apply the required group policy to the desktops. This can be done through local policy or to the newly created GPO applied to your dedicated VDI OU.</p>
<p>Computer Configuration -&gt; Administrative Templates -&gt; System -&gt; Remote Assistance -&gt; Offer Remote Assistance.</p>
<p>Make sure to enable this object and also configure those allowed to perform the remote access.</p>
<p>The post <a href="http://www.egroup-us.com/2011/06/xendesktop-5-and-using-remote-assistance-through-desktop-director/">XENDESKTOP 5 AND USING REMOTE ASSISTANCE THROUGH DESKTOP DIRECTOR</a> appeared first on <a href="http://www.egroup-us.com">eGroup</a>.</p>]]></content:encoded>
			<wfw:commentRss>http://www.egroup-us.com/2011/06/xendesktop-5-and-using-remote-assistance-through-desktop-director/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>PROVISIONING SERVER 5.6 SP1 DATABASE SIZE CAUSES FAILED INSTALL</title>
		<link>http://www.egroup-us.com/2011/06/provisioning-server-5-6-sp1-database-size-causes-failed-install/</link>
		<comments>http://www.egroup-us.com/2011/06/provisioning-server-5-6-sp1-database-size-causes-failed-install/#comments</comments>
		<pubDate>Mon, 13 Jun 2011 15:58:14 +0000</pubDate>
		<dc:creator>Ian Jones</dc:creator>
				<category><![CDATA[Blog On]]></category>
		<category><![CDATA[Citrix]]></category>
		<category><![CDATA[Model]]></category>
		<category><![CDATA[PVS]]></category>
		<category><![CDATA[SQL Server]]></category>
		<category><![CDATA[XenDeskop]]></category>

		<guid isPermaLink="false">http://blogs.eGroup-us.com/?p=4291</guid>
		<description><![CDATA[<p>Recently, while deploying a 50 user pilot of XenDesktop 5 and PVS 5.6 we ran into an issue wherein the install was failing with the following error: Exception of type System.Data.SqlClient.SqlException caught, error=MODIFY FILE failed. Specified size is less than or equal to current size. The cause of this error is the PVS database being [...]</p><p>The post <a href="http://www.egroup-us.com/2011/06/provisioning-server-5-6-sp1-database-size-causes-failed-install/">PROVISIONING SERVER 5.6 SP1 DATABASE SIZE CAUSES FAILED INSTALL</a> appeared first on <a href="http://www.egroup-us.com">eGroup</a>.</p>]]></description>
				<content:encoded><![CDATA[<p>Recently, while deploying a 50 user pilot of XenDesktop 5 and PVS 5.6 we ran into an issue wherein the install was failing with the following error:</p>
<p>Exception of type System.Data.SqlClient.SqlException caught, error=MODIFY FILE failed. Specified size is less than or equal to current size.</p>
<p>The cause of this error is the PVS database being larger than 20 MB at the time PVS is installed. In this case it was caused by the MODEL database being configured with a fixed size of 500 MB on the target SQL 2008 R2 Server.</p>
<p>Near the end of the install PVS attempts to &#8220;increase&#8221; the size of the database to 20 MB. I assume this is because it is preparing to insert significant amounts of data (around 20 MB) and proactively increases the database size to avoid the overhead and continually growing the data file. Of course, if they database size is already greater than 20 MB as it was in this case this operation will fail as it is actually attempting to shrink the size of the database.</p>
<p>Our solution was to temporarily reduce the size of the MODEL database while the PVS install was completed. Other workarounds are detailed here in this <a href="http://support.citrix.com/article/CTX127403">KB Article from Citrix.</a></p>
<p>It would be a better model for the installer to first check the size of the database and then increase it only if it is not already 20 MB.</p>
<p>The post <a href="http://www.egroup-us.com/2011/06/provisioning-server-5-6-sp1-database-size-causes-failed-install/">PROVISIONING SERVER 5.6 SP1 DATABASE SIZE CAUSES FAILED INSTALL</a> appeared first on <a href="http://www.egroup-us.com">eGroup</a>.</p>]]></content:encoded>
			<wfw:commentRss>http://www.egroup-us.com/2011/06/provisioning-server-5-6-sp1-database-size-causes-failed-install/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>WHY iCloud AND iOS 5 IS A BIGGER DEAL THAN WE REALIZE!</title>
		<link>http://www.egroup-us.com/2011/06/why-icloud-and-ios-5-is-a-bigger-deal-than-we-realize/</link>
		<comments>http://www.egroup-us.com/2011/06/why-icloud-and-ios-5-is-a-bigger-deal-than-we-realize/#comments</comments>
		<pubDate>Tue, 07 Jun 2011 02:24:38 +0000</pubDate>
		<dc:creator>Ian Jones</dc:creator>
				<category><![CDATA[General]]></category>
		<category><![CDATA[Apple]]></category>
		<category><![CDATA[iPad]]></category>
		<category><![CDATA[iPhone]]></category>
		<category><![CDATA[iTunes]]></category>
		<category><![CDATA[Mac Book Pro]]></category>

		<guid isPermaLink="false">http://blogs.eGroup-us.com/?p=4240</guid>
		<description><![CDATA[<p>The cloud is here. Finally, after years of battling with multiple devices and my iTunes purchases, it is no more. As a self-proclaimed Apple fanatic (proud Mac Book Pro, iPhone 4, and iPad 2 owner) I can&#8217;t remember an Apple update I&#8217;ve been more excited about. New features include iTunes purchases available on any device, [...]</p><p>The post <a href="http://www.egroup-us.com/2011/06/why-icloud-and-ios-5-is-a-bigger-deal-than-we-realize/">WHY iCloud AND iOS 5 IS A BIGGER DEAL THAN WE REALIZE!</a> appeared first on <a href="http://www.egroup-us.com">eGroup</a>.</p>]]></description>
				<content:encoded><![CDATA[<p>The cloud is here. Finally, after years of battling with multiple devices and my iTunes purchases, it is no more. As a self-proclaimed Apple fanatic (proud Mac Book Pro, iPhone 4, and iPad 2 owner) I can&#8217;t remember an Apple update I&#8217;ve been more excited about. New features include iTunes purchases available on any device, last 1000 photos available on any device, iBooks anywhere. The idea of not having to worry about syncing my iPhone and iPad to a single device is liberating. Combined with the new features in the upcoming iOS 5 &#8211; http://www.apple.com/ios/ios5/ &#8211; this is a game changer.</p>
<p>http://www.apple.com/icloud/</p>
<p>Any application. Any device. Anywhere.</p>
<p>The post <a href="http://www.egroup-us.com/2011/06/why-icloud-and-ios-5-is-a-bigger-deal-than-we-realize/">WHY iCloud AND iOS 5 IS A BIGGER DEAL THAN WE REALIZE!</a> appeared first on <a href="http://www.egroup-us.com">eGroup</a>.</p>]]></content:encoded>
			<wfw:commentRss>http://www.egroup-us.com/2011/06/why-icloud-and-ios-5-is-a-bigger-deal-than-we-realize/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>ADAM SCHEMA PRE-REQUISITES SCRIPT ERROR &#8211; VIEW 4.5 &#8211; WINDOWS 2008 R2</title>
		<link>http://www.egroup-us.com/2011/05/adam-schema-pre-requisites-script-error-view-4-5-windows-2008-r2/</link>
		<comments>http://www.egroup-us.com/2011/05/adam-schema-pre-requisites-script-error-view-4-5-windows-2008-r2/#comments</comments>
		<pubDate>Tue, 10 May 2011 01:51:44 +0000</pubDate>
		<dc:creator>Ian Jones</dc:creator>
				<category><![CDATA[Blog On]]></category>
		<category><![CDATA[Connection Server]]></category>
		<category><![CDATA[Scripting]]></category>
		<category><![CDATA[View 4.5]]></category>
		<category><![CDATA[VMware]]></category>
		<category><![CDATA[windows 2008 r2]]></category>

		<guid isPermaLink="false">http://blogs.eGroup-us.com/?p=4070</guid>
		<description><![CDATA[<p>I ran across an interesting error today when installing View 4.5 Connection Server on Windows 2008 R2. During the initial install the following error was thrown: &#8220;Error 1720. A script required for this install to complete could not be run. Custom action VM_AdamLoadVdiSchemaPreReqs script error -2147024894 , : Line 16, Column 1.&#8221; The following update [...]</p><p>The post <a href="http://www.egroup-us.com/2011/05/adam-schema-pre-requisites-script-error-view-4-5-windows-2008-r2/">ADAM SCHEMA PRE-REQUISITES SCRIPT ERROR &#8211; VIEW 4.5 &#8211; WINDOWS 2008 R2</a> appeared first on <a href="http://www.egroup-us.com">eGroup</a>.</p>]]></description>
				<content:encoded><![CDATA[<p>I ran across an interesting error today when installing View 4.5 Connection Server on Windows 2008 R2. During the initial install the following error was thrown:</p>
<p>&#8220;Error 1720. A script required for this install to complete could not be  run. Custom action VM_AdamLoadVdiSchemaPreReqs script error -2147024894  , : Line 16, Column 1.&#8221;</p>
<p>The following update from Microsoft fixed this error:</p>
<p><a title="http://support.microsoft.com/kb/947821" href="http://support.microsoft.com/kb/947821">http://support.microsoft.com/kb/947821</a></p>
<p>The post <a href="http://www.egroup-us.com/2011/05/adam-schema-pre-requisites-script-error-view-4-5-windows-2008-r2/">ADAM SCHEMA PRE-REQUISITES SCRIPT ERROR &#8211; VIEW 4.5 &#8211; WINDOWS 2008 R2</a> appeared first on <a href="http://www.egroup-us.com">eGroup</a>.</p>]]></content:encoded>
			<wfw:commentRss>http://www.egroup-us.com/2011/05/adam-schema-pre-requisites-script-error-view-4-5-windows-2008-r2/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
<!-- WP Super Cache is installed but broken. The path to wp-cache-phase1.php in wp-content/advanced-cache.php must be fixed! -->