<?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>Andrew Morgan &#187; Adobe</title>
	<atom:link href="http://andrewmorgan.ie/tag/adobe/feed/" rel="self" type="application/rss+xml" />
	<link>http://andrewmorgan.ie</link>
	<description>Grumpy ramblings</description>
	<lastBuildDate>Fri, 30 Jun 2017 09:24:25 +0000</lastBuildDate>
	<language>en-US</language>
		<sy:updatePeriod>hourly</sy:updatePeriod>
		<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=4.0</generator>
	<item>
		<title>Retrieve adobe flash version with PowerShell</title>
		<link>http://andrewmorgan.ie/2012/01/retrieve-adobe-flash-version-with-powershell/</link>
		<comments>http://andrewmorgan.ie/2012/01/retrieve-adobe-flash-version-with-powershell/#comments</comments>
		<pubDate>Mon, 09 Jan 2012 15:56:23 +0000</pubDate>
		<dc:creator><![CDATA[andyjmorgan]]></dc:creator>
				<category><![CDATA[PowerShell Scripting]]></category>
		<category><![CDATA[Adobe]]></category>
		<category><![CDATA[Flash]]></category>
		<category><![CDATA[PowerShell]]></category>

		<guid isPermaLink="false">http://andrewmorgan.ie/?p=1266</guid>
		<description><![CDATA[Just a quick powershell script to start the year. I recently needed to audit the version of adobe flash on the machines a script was running. This code was originally written for visual studio but translates well to powershell. to retrieve the version of adobe flash on the local machine, use get-adobeflashversion. The code for the get-adobeflashversion can be found below: [sourcecode language=&#8221;Powershell&#8221;] function get-adobeflashversion{ try{ $flashobject = new-object -ComObject &#34;shockwaveflash.shockwaveflash&#34; $version=(($flashobject.getvariable(&#34;`$version&#34;)).replace(&#34;,&#34;,&#34;.&#34;)).trimstart(&#34;WIN &#34;) } Catch{ write-warning &#34;Could not create Com [&#8230;]]]></description>
				<content:encoded><![CDATA[<p><img class="alignright" src="/wp-content/uploads/2011/03/windows_powershell_icon.png?w=68&amp;h=68&amp;h=68" alt="" width="68" height="68" />Just a quick powershell script to start the year.</p>
<p>I recently needed to audit the version of adobe flash on the machines a script was running. This code was originally written for visual studio but translates well to powershell.</p>
<p>to retrieve the version of adobe flash on the local machine, use get-adobeflashversion. The code for the get-adobeflashversion can be found below:</p>
<p>[sourcecode language=&#8221;Powershell&#8221;]<br />
function get-adobeflashversion{<br />
    try{<br />
        $flashobject = new-object -ComObject &quot;shockwaveflash.shockwaveflash&quot;<br />
        $version=(($flashobject.getvariable(&quot;`$version&quot;)).replace(&quot;,&quot;,&quot;.&quot;)).trimstart(&quot;WIN &quot;)<br />
    }<br />
    Catch{<br />
        write-warning &quot;Could not create Com Object, are you sure Adobe Flash is installed?&quot;<br />
    }<br />
    return $version<br />
}<br />
[/sourcecode]</p>
]]></content:encoded>
			<wfw:commentRss>http://andrewmorgan.ie/2012/01/retrieve-adobe-flash-version-with-powershell/feed/</wfw:commentRss>
		<slash:comments>4</slash:comments>
		</item>
		<item>
		<title>Remove shell extensions after installing Adobe Acrobat</title>
		<link>http://andrewmorgan.ie/2009/01/remove-combine-supported-files-in-acrobat-after-installing-acrobat-8/</link>
		<comments>http://andrewmorgan.ie/2009/01/remove-combine-supported-files-in-acrobat-after-installing-acrobat-8/#comments</comments>
		<pubDate>Mon, 12 Jan 2009 16:41:04 +0000</pubDate>
		<dc:creator><![CDATA[andyjmorgan]]></dc:creator>
				<category><![CDATA[Batch Scripting]]></category>
		<category><![CDATA[Citrix]]></category>
		<category><![CDATA[Scripting]]></category>
		<category><![CDATA[Server Based Computing]]></category>
		<category><![CDATA[Windows]]></category>
		<category><![CDATA[XenApp]]></category>
		<category><![CDATA[Adobe]]></category>
		<category><![CDATA[Context Menu]]></category>
		<category><![CDATA[script]]></category>

		<guid isPermaLink="false">http://andymorgan.wordpress.com/?p=235</guid>
		<description><![CDATA[A pet peeve of mine are context menu extensions&#8230; Why software vendors decide to include non optional context menu addons are besides me! A good example of this would be Adobe. when right clicking  on an office document Adobe decided  &#8220;Combine supported files in acrobat&#8221; to be we all must have, fine in the wild&#8230; but not so good in a shared desktop environment. To remove this from your Citrix environment / Desktop simply run this command: REGSVR32 /u "C:Program [&#8230;]]]></description>
				<content:encoded><![CDATA[<p><img class="alignright wp-image-942 " title="Adobe_Air_Logo" src="http://andrewmorgan.ie/wp-content/uploads/2011/10/adobe_air_logo.jpg" alt="" width="107" height="107" />A pet peeve of mine are context menu extensions&#8230; Why software vendors decide to include non optional context menu addons are besides me! A good example of this would be Adobe.</p>
<p>when right clicking  on an office document Adobe decided  &#8220;Combine supported files in acrobat&#8221; to be we all must have, fine in the wild&#8230; but not so good in a shared desktop environment.</p>
<p>To remove this from your Citrix environment / Desktop simply run this command:</p>
<pre>REGSVR32 /u "C:Program FilesAdobeAcrobat 9.0Acrobat ElementsContextMenu.dll.</pre>
<p>If you also wish to remove the New &gt; file type associations that Adobe decide to push in, heres a script to do so:</p>
<pre>REG DELETE HKEY_CLASSES_ROOT.xdpAcroExch.XDPDocShellNew /f
 REG DELETE HKEY_CLASSES_ROOT.xdpShellNew /f</pre>
<h4>Update:</h4>
<p>With the move to 64 bit platforms, a new dll has been put in place:</p>
<p>C:Program Files (x86)AdobeAcrobat 9.0Acrobat Elementscontextmenu64.dll</p>
<p>This dll add&#8217;s the following items to the context menu:</p>
<ul>
<li>Convert to Adobe PDF</li>
<li>Convert to Adobe PDF and Email.</li>
</ul>
<p>If you wish to remove these, run the following command:</p>
<pre>REGSVR32 /u "C:Program Files (x86)AdobeAcrobat 9.0Acrobat ElementsContextMenu64.dll"</pre>
]]></content:encoded>
			<wfw:commentRss>http://andrewmorgan.ie/2009/01/remove-combine-supported-files-in-acrobat-after-installing-acrobat-8/feed/</wfw:commentRss>
		<slash:comments>4</slash:comments>
		</item>
	</channel>
</rss>
