<?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>The D-Spot (The Deployment Spot) &#187; App-V Client Installation</title>
	<atom:link href="http://www.the-d-spot.org/wordpress/tag/app-v-client-installation/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.the-d-spot.org/wordpress</link>
	<description>Tickle your Deployment needs.</description>
	<lastBuildDate>Sat, 28 Jan 2012 15:43:53 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.1.3</generator>
		<item>
		<title>Upgrading AppV client to version 4.6</title>
		<link>http://www.the-d-spot.org/wordpress/2010/05/11/upgrading-appv-client-to-version-4-6/</link>
		<comments>http://www.the-d-spot.org/wordpress/2010/05/11/upgrading-appv-client-to-version-4-6/#comments</comments>
		<pubDate>Tue, 11 May 2010 10:03:10 +0000</pubDate>
		<dc:creator>Ben De Vriese</dc:creator>
				<category><![CDATA[App-V]]></category>
		<category><![CDATA[App-V Client Installation]]></category>
		<category><![CDATA[AppV]]></category>
		<category><![CDATA[Softgrid]]></category>

		<guid isPermaLink="false">http://www.the-d-spot.org/wordpress/2010/05/11/upgrading-appv-client-to-version-4-6/</guid>
		<description><![CDATA[Microsoft’s application virtualization solution has reached version 4.6 some weeks ago. The most important thing about version 4.6 is support for 64 bit. The Server parts could run on x64 operating systems, but it was impossible to install the AppV client on x64 operating systems. Time to upgrade! As the client needs to be updated [...]]]></description>
			<content:encoded><![CDATA[<p>Microsoft’s application virtualization solution has reached version 4.6 some weeks ago. The most important thing about version 4.6 is support for 64 bit. The Server parts could run on x64 operating systems, but it was impossible to install the AppV client on x64 operating systems. Time to upgrade!</p>
<p>As the client needs to be updated first, I will cover the client upgrade process only. (Client first, server next, sequencer last). Good to know that only the client and the sequencer are updated to version 4.6. No need to update your Management server as version 4.5.2.17140 is still the latest and greatest.</p>
<p>AppV has some Prerequisites, I will install them first. Then I will install the AppV client itself, using some command line parameters and a registry file import for applying custom settings.</p>
<h4>Prerequisites</h4>
<h5>Application error reporting</h5>
<blockquote><p>msiexec /I SOURCE_PATH\dw20shared.msi /QN APPGUID={4C1CE627-6B28-436E-BD12-3A881065FB20} REBOOT=REALLYSUPPRESS ALLUSERS=1</p></blockquote>
<h5>Visual C++ 2005 runtime</h5>
<blockquote><p>SOURCE_PATH\vcredist2005_x86.exe /Q:A /c:&#8221;VCREDI~3.exe /Q:A /C:&#8221;"MSIEXEC /I VCREDIST.MSI /QN &#8220;&#8221;"</p></blockquote>
<h5>Visual C++ 2008 runtime</h5>
<blockquote><p>msiexec /i SOURCE_PATH\vc2008\vc_red.msi /qn /l*v &#8220;LOGFILE_PATH\vc2008runtime.log&#8221;</p></blockquote>
<h4> </h4>
<h4>AppV 4.6 Client with command line parameters</h4>
<p>Because storage is expensive, we have a different cache policy for virtual machines. Cache size on virtual systems don’t have to be as enormous as on physical machines. Not only the cache size is reduced in virtual machines, also the AutoLoad features are disabled via the MSI command line parameters.</p>
<p>To identify virtual machines I query on the computer name. As we use specific names for our VM’s, this should be a piece of cake!</p>
<p>We do an architecture check in a batch file. So I have two code blocks, one for x64 and another for x86 operating systems. Only the paths are different, so I will post only one.</p>
<h5>AppV Client Installation</h5>
<blockquote><p>Echo install AppV x64 Client</p>
<p>rem Virtual Machine check<br />
Echo %computername% | findstr /i &#8220;ISOPC99 VPC&#8221; &gt;NUL &amp;&amp; (<br />
    Echo Installing AppV x64 client for Virtual Machines<br />
    msiexec /i &#8220;SOURCE_PATH\x64\setup.msi&#8221; SWICACHESIZE=&#8221;4096&#8243; autoloadTriggers=0 AutoLoadTarget=0 AutoLoadonLaunch=0 AutoLoadonRefresh=0 AutoLoadonLogin=0 SWIDCSDISPLAY=&#8221;Company Streaming Server&#8221; SWIDCSTYPE=&#8221;RTSP&#8221; SWIDCSHOST=&#8221;appvserver.domain.local&#8221; SWIDCSPORT=&#8221;554&#8243; SWIDCSREFRESH=&#8221;on&#8221; SWIGLOBALDATA=&#8221;C:\Program Files\Microsoft Application Virtualization Client\GLOBAL\&#8221; SWISOFTGRIDDRIVE=&#8221;Q&#8221; /q REBOOT=REALLYSUPPRESS /l*v &#8220;LOGFILE_PATH\appv46.log&#8221;<br />
    ) || ( <br />
   Echo Installing AppV x64 client for Physical Machines<br />
    msiexec /i &#8220;SOURCE_PATH\Source\x64\setup.msi&#8221; MinFreeSpaceMB=&#8221;6000&#8243; SWIDCSDISPLAY=&#8221;Company Streaming Server&#8221; SWIDCSTYPE=&#8221;RTSP&#8221; SWIDCSHOST=&#8221;appvserver.domain.local&#8221; SWIDCSPORT=&#8221;554&#8243; SWIDCSREFRESH=&#8221;on&#8221; SWIGLOBALDATA=&#8221;C:\Program Files\Microsoft Application Virtualization Client\GLOBAL\&#8221; SWISOFTGRIDDRIVE=&#8221;Q&#8221; /q REBOOT=REALLYSUPPRESS /l*v &#8220;LOGFILE_PATH\appv46.log&#8221;<br />
    )</p>
<p>Echo Import Regkeys<br />
regedit /s SOURCE_PATH\appv64_v2.reg</p></blockquote>
<p> </p>
<p>The registry file that is imported in the last line specify the sftlog.txt log file location, and some other tweaks, have a look:</p>
<h5>Registry import (x86)</h5>
<blockquote><p>Windows Registry Editor Version 5.00</p>
<p>[HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\SoftGrid\4.5\Client\Configuration]<br />
&#8220;SystemEventLogLevel&#8221;=dword:00000004<br />
&#8220;LogFileName&#8221;=&#8221;C:\\PATH_OF_YOUR_CHOICE\\sftlog.txt&#8221;<br />
&#8220;UserDataDirectory&#8221;=&#8221;%APPDATA%&#8221;<br />
&#8220;ApplicationSourceRoot&#8221;=&#8221;RTSP://server.domain.local:554&#8243;<br />
&#8220;LaunchRecordMask&#8221;=dword:005a0000</p>
<p>[HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\SoftGrid\4.5\Client\DC Servers\Company Streaming Server]<br />
&#8220;Period&#8221;=dword:000002d0<br />
&#8220;Refresh&#8221;=dword:00000001<br />
&#8220;Reporting&#8221;=dword:00000001</p>
<p>[HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\SoftGrid\4.5\Client\AppFS]<br />
&#8220;UnloadLeastRecentlyUsed&#8221;=dword:00000001<br />
&#8220;MinPackageAge&#8221;=dword:00000001</p></blockquote>
<p> </p>
<h5>Registry import (x64)</h5>
<blockquote><p>Windows Registry Editor Version 5.00</p>
<p>[HKEY_LOCAL_MACHINE\SOFTWARE\Wow6432Node\Microsoft\SoftGrid\4.5\Client\Configuration]<br />
&#8220;SystemEventLogLevel&#8221;=dword:00000004<br />
&#8220;LogFileName&#8221;=&#8221;C:\\PATH_OF_YOUR_CHOICE\\sftlog.txt&#8221;<br />
&#8220;UserDataDirectory&#8221;=&#8221;%APPDATA%&#8221;<br />
&#8220;ApplicationSourceRoot&#8221;=&#8221;RTSP://server.domain.local:554&#8243;<br />
&#8220;LaunchRecordMask&#8221;=dword:005a0000</p>
<p>[HKEY_LOCAL_MACHINE\SOFTWARE\Wow6432Node\Microsoft\SoftGrid\4.5\Client\DC Servers\Company Streaming Server]<br />
&#8220;Period&#8221;=dword:000002d0<br />
&#8220;Refresh&#8221;=dword:00000001<br />
&#8220;Reporting&#8221;=dword:00000001</p>
<p>[HKEY_LOCAL_MACHINE\SOFTWARE\Wow6432Node\Microsoft\SoftGrid\4.5\Client\AppFS]<br />
&#8220;UnloadLeastRecentlyUsed&#8221;=dword:00000001<br />
&#8220;MinPackageAge&#8221;=dword:00000001</p></blockquote>
<p> </p>
<p>That’s it.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.the-d-spot.org/wordpress/2010/05/11/upgrading-appv-client-to-version-4-6/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>App-V Management Service (AppVirtServer) fails to start at Reboot.</title>
		<link>http://www.the-d-spot.org/wordpress/2010/03/08/app-v-management-service-appvirtserver-fails-to-start-at-reboot/</link>
		<comments>http://www.the-d-spot.org/wordpress/2010/03/08/app-v-management-service-appvirtserver-fails-to-start-at-reboot/#comments</comments>
		<pubDate>Sun, 07 Mar 2010 22:49:35 +0000</pubDate>
		<dc:creator>Ben De Vriese</dc:creator>
				<category><![CDATA[App-V]]></category>
		<category><![CDATA[App-V Client Installation]]></category>
		<category><![CDATA[Softgrid]]></category>

		<guid isPermaLink="false">http://www.the-d-spot.org/wordpress/2010/03/08/app-v-management-service-appvirtserver-fails-to-start-at-reboot/</guid>
		<description><![CDATA[When the SQL Server is on the same machine as the App-V Management Server (formerly known as the VAS Server), the App-V Management Server Service doesn’t start after a reboot. Solve this by adding the MSSQLSERVER as dependency to App-V service in the registry. (Use MSSQL$SQLEXPRESS when using SQL Server Express edition). Name the new [...]]]></description>
			<content:encoded><![CDATA[<p>When the SQL Server is on the same machine as the App-V Management Server (formerly known as the VAS Server), the App-V Management Server Service doesn’t start after a reboot.</p>
<p>Solve this by adding the MSSQLSERVER as dependency to App-V service in the registry. (Use MSSQL$SQLEXPRESS when using SQL Server Express edition). Name the new string <em>DependOnService</em> and value <em>MSSQLSERVER</em> or <em>MSSQL$SQLEXPRESS</em>&#160; in the hive <em>HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\services\AppVirtServer</em>:</p>
<p><a href="http://www.the-d-spot.org/wordpress/wp-content/uploads/appvirt-dependonservice-mssqlserver.png"><img style="background-image: none; border-bottom: 0px; border-left: 0px; margin: ; padding-left: 0px; padding-right: 0px; display: inline; border-top: 0px; border-right: 0px; padding-top: 0px" title="appvirt-dependonservice-mssqlserver" border="0" alt="appvirt-dependonservice-mssqlserver" src="http://www.the-d-spot.org/wordpress/wp-content/uploads/appvirt-dependonservice-mssqlserver_thumb.png" width="754" height="282" /></a></p>
<p>&#160;</p>
<p>To finalize, add a DWORD named <em>DelayedAutostart</em> with value 1 in the same hive:</p>
<p><a href="http://www.the-d-spot.org/wordpress/wp-content/uploads/appvirt-deplayedautostart.png"><img style="background-image: none; border-bottom: 0px; border-left: 0px; margin: ; padding-left: 0px; padding-right: 0px; display: inline; border-top: 0px; border-right: 0px; padding-top: 0px" title="appvirt-deplayedautostart" border="0" alt="appvirt-deplayedautostart" src="http://www.the-d-spot.org/wordpress/wp-content/uploads/appvirt-deplayedautostart_thumb.png" width="758" height="324" /></a></p>
<p>Reboot the server, the Application Virtualization Management Server service should start (with a slight delay).</p>
]]></content:encoded>
			<wfw:commentRss>http://www.the-d-spot.org/wordpress/2010/03/08/app-v-management-service-appvirtserver-fails-to-start-at-reboot/feed/</wfw:commentRss>
		<slash:comments>5</slash:comments>
		</item>
	</channel>
</rss>

