<?xml version="1.0" encoding="UTF-8"?><rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	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/"
	
	>
<channel>
	<title>
	Comments on: Microsoft App-V Self service tool	</title>
	<atom:link href="https://blog.myvirtualvision.com/2011/02/21/microsoft-app-v-self-service-tool/feed/" rel="self" type="application/rss+xml" />
	<link>https://blog.myvirtualvision.com/2011/02/21/microsoft-app-v-self-service-tool/?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=microsoft-app-v-self-service-tool</link>
	<description>My thoughts on application delivery</description>
	<lastBuildDate>Thu, 20 Jun 2013 07:53:34 +0000</lastBuildDate>
	<sy:updatePeriod>
	hourly	</sy:updatePeriod>
	<sy:updateFrequency>
	1	</sy:updateFrequency>
	<generator>https://wordpress.org/?v=6.9</generator>
	<item>
		<title>
		By: k.baggerman		</title>
		<link>https://blog.myvirtualvision.com/2011/02/21/microsoft-app-v-self-service-tool/#comment-14</link>

		<dc:creator><![CDATA[k.baggerman]]></dc:creator>
		<pubDate>Tue, 22 Feb 2011 22:30:27 +0000</pubDate>
		<guid isPermaLink="false">http://blog.myvirtualvision.com/?p=225#comment-14</guid>

					<description><![CDATA[&lt;blockquote cite=&quot;#commentbody-12&quot;&gt;
&lt;strong&gt;&lt;a href=&quot;#comment-12&quot; rel=&quot;nofollow&quot;&gt;Patrick S.&lt;/a&gt; :&lt;/strong&gt;
&lt;p&gt;The WMI namespace for App-V has an Application class that you could use to get the App-V apps. This would probably be a little safer than reading registry keys. You could also use this class to get the application’s package GUID, which is the basis for part of the PKG folder name.&lt;/p&gt;
&lt;p&gt;For example, to fill in your drop-down box…&lt;/p&gt;
&lt;p&gt;$apps = Get-WmiObject -Class “Application” -Namespace “root\microsoft\appvirt\client” &#124;&lt;br&gt;
Sort-Object Name&lt;br&gt;
foreach ($app in $apps)&lt;br&gt;
{&lt;br&gt;
$DropDown.Items.Add([System.String]::Format(“{0}”, $app.Name))&lt;br&gt;
}&lt;/p&gt;
&lt;/blockquote&gt;

Patrick, thanks for your comments but my test enviroment doesn&#039;t support the namespace in combination with the Class application so it will take some time to re-write the script using WMI. I agree that WMI is a bit safer than plain registry keys.]]></description>
			<content:encoded><![CDATA[<blockquote cite="#commentbody-12"><p>
<strong><a href="#comment-12" rel="nofollow">Patrick S.</a> :</strong></p>
<p>The WMI namespace for App-V has an Application class that you could use to get the App-V apps. This would probably be a little safer than reading registry keys. You could also use this class to get the application’s package GUID, which is the basis for part of the PKG folder name.</p>
<p>For example, to fill in your drop-down box…</p>
<p>$apps = Get-WmiObject -Class “Application” -Namespace “root\microsoft\appvirt\client” |<br />
Sort-Object Name<br />
foreach ($app in $apps)<br />
{<br />
$DropDown.Items.Add([System.String]::Format(“{0}”, $app.Name))<br />
}</p>
</blockquote>
<p>Patrick, thanks for your comments but my test enviroment doesn&#8217;t support the namespace in combination with the Class application so it will take some time to re-write the script using WMI. I agree that WMI is a bit safer than plain registry keys.</p>
]]></content:encoded>
		
			</item>
		<item>
		<title>
		By: Tweets that mention My virtual visionMicrosoft App-V Self service tool - My virtual vision -- Topsy.com		</title>
		<link>https://blog.myvirtualvision.com/2011/02/21/microsoft-app-v-self-service-tool/#comment-13</link>

		<dc:creator><![CDATA[Tweets that mention My virtual visionMicrosoft App-V Self service tool - My virtual vision -- Topsy.com]]></dc:creator>
		<pubDate>Tue, 22 Feb 2011 06:31:51 +0000</pubDate>
		<guid isPermaLink="false">http://blog.myvirtualvision.com/?p=225#comment-13</guid>

					<description><![CDATA[[...] This post was mentioned on Twitter by ChaosNL, Kees Baggerman. Kees Baggerman said: @KBaggerman: New post: Microsoft New post: App-V Self service tool http://bit.ly/ftM5ZO #AppV #Microsoft #Pkg [...]]]></description>
			<content:encoded><![CDATA[<p>[&#8230;] This post was mentioned on Twitter by ChaosNL, Kees Baggerman. Kees Baggerman said: @KBaggerman: New post: Microsoft New post: App-V Self service tool <a href="http://bit.ly/ftM5ZO" rel="nofollow ugc">http://bit.ly/ftM5ZO</a> #AppV #Microsoft #Pkg [&#8230;]</p>
]]></content:encoded>
		
			</item>
		<item>
		<title>
		By: Patrick S.		</title>
		<link>https://blog.myvirtualvision.com/2011/02/21/microsoft-app-v-self-service-tool/#comment-12</link>

		<dc:creator><![CDATA[Patrick S.]]></dc:creator>
		<pubDate>Tue, 22 Feb 2011 02:27:01 +0000</pubDate>
		<guid isPermaLink="false">http://blog.myvirtualvision.com/?p=225#comment-12</guid>

					<description><![CDATA[The WMI namespace for App-V has an Application class that you could use to get the App-V apps. This would probably be a little safer than reading registry keys. You could also use this class to get the application&#039;s package GUID, which is the basis for part of the PKG folder name.

For example, to fill in your drop-down box...

$apps = Get-WmiObject -Class &quot;Application&quot; -Namespace &quot;root\microsoft\appvirt\client&quot; &#124;
Sort-Object Name
foreach ($app in $apps)
{
	$DropDown.Items.Add([System.String]::Format(&quot;{0}&quot;, $app.Name))
}]]></description>
			<content:encoded><![CDATA[<p>The WMI namespace for App-V has an Application class that you could use to get the App-V apps. This would probably be a little safer than reading registry keys. You could also use this class to get the application&#8217;s package GUID, which is the basis for part of the PKG folder name.</p>
<p>For example, to fill in your drop-down box&#8230;</p>
<p>$apps = Get-WmiObject -Class &#8220;Application&#8221; -Namespace &#8220;root\microsoft\appvirt\client&#8221; |<br />
Sort-Object Name<br />
foreach ($app in $apps)<br />
{<br />
	$DropDown.Items.Add([System.String]::Format(&#8220;{0}&#8221;, $app.Name))<br />
}</p>
]]></content:encoded>
		
			</item>
	</channel>
</rss>
