<?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/"
	xmlns:georss="http://www.georss.org/georss" xmlns:geo="http://www.w3.org/2003/01/geo/wgs84_pos#" xmlns:media="http://search.yahoo.com/mrss/"
	>

<channel>
	<title>Managing OS X</title>
	<atom:link href="http://managingosx.wordpress.com/feed/" rel="self" type="application/rss+xml" />
	<link>http://managingosx.wordpress.com</link>
	<description>Trials and Tribulations of an OS X Administrator</description>
	<lastBuildDate>Tue, 18 Jun 2013 12:38:17 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.com/</generator>
<cloud domain='managingosx.wordpress.com' port='80' path='/?rsscloud=notify' registerProcedure='' protocol='http-post' />
<image>
		<url>http://s2.wp.com/i/buttonw-com.png</url>
		<title>Managing OS X</title>
		<link>http://managingosx.wordpress.com</link>
	</image>
	<atom:link rel="search" type="application/opensearchdescription+xml" href="http://managingosx.wordpress.com/osd.xml" title="Managing OS X" />
	<atom:link rel='hub' href='http://managingosx.wordpress.com/?pushpress=hub'/>
		<item>
		<title>Undocumented options</title>
		<link>http://managingosx.wordpress.com/2013/04/30/undocumented-options/</link>
		<comments>http://managingosx.wordpress.com/2013/04/30/undocumented-options/#comments</comments>
		<pubDate>Wed, 01 May 2013 03:47:59 +0000</pubDate>
		<dc:creator>GregN</dc:creator>
				<category><![CDATA[Mountain Lion]]></category>
		<category><![CDATA[OS X]]></category>
		<category><![CDATA[Scripting]]></category>

		<guid isPermaLink="false">http://managingosx.wordpress.com/?p=858</guid>
		<description><![CDATA[Rich Trouton posted today about undocumented options for the asr command-line utility. On Twitter, Marnin asked: .@rtrouton The question is what other commands have hidden options? &#8212; Marnin (@gmarnin) April 30, 2013 Lots of OS X utilities have undocumented options. Take for example /usr/sbin/softwareupdate &#8212; the command-line Apple Software Update utility. It&#8217;s had several undocumented [&#8230;]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=managingosx.wordpress.com&#038;blog=98681&#038;post=858&#038;subd=managingosx&#038;ref=&#038;feed=1" width="1" height="1" />]]></description>
				<content:encoded><![CDATA[<p>Rich Trouton <a href="http://derflounder.wordpress.com/2013/04/30/asrs-hidden-documentation/">posted today</a> about undocumented options for the asr command-line utility.</p>
<p>On Twitter, Marnin asked:</p>
<blockquote class="twitter-tweet"><p>.@<a href="https://twitter.com/rtrouton">rtrouton</a> The question is what other commands have hidden options?</p>
<p>&mdash; Marnin (@gmarnin) <a href="https://twitter.com/gmarnin/status/329332408686100483">April 30, 2013</a></p></blockquote>
<p>Lots of OS X utilities have undocumented options. Take for example <code>/usr/sbin/softwareupdate</code> &#8212; the command-line Apple Software Update utility.</p>
<p>It&#8217;s had several undocumented options for years. <span id="more-858"></span> Two useful ones:</p>
<ol>
<li><code>--CatalogURL</code> lets you specify an alternate URL for a software update catalog. This can be used to point to an internal software update server:<br />
<code><br />
softwareupdate -l --CatalogURL <a href="http://yoursoftwareupdateserver/index.sucatalog" rel="nofollow">http://yoursoftwareupdateserver/index.sucatalog</a></p>
<p></code></li>
<li><code>-f <em>filename</em></code> causes <code>softwareupdate</code> to write some interesting metadata to filename. What&#8217;s not immediately apparent is that this file gets (re)written several times while  <code>softwareupdate</code> runs. You could monitor this file to provide some sort of status update while <code>softwareupdate</code> runs. The metadata that is written to this file might be useful if you were writing <a href="http://code.google.com/p/munki/">some code</a> that handled Apple Software Update for you&#8230;
        </li>
</ol>
<p>I noticed today that Mountain Lion&#8217;s version of <code>softwareupdate</code> adds a few more undocumented options, though I&#8217;m not entirely sure what they do exactly. The new options are <code>--force-scan, --printurls, --background,</code> and <code>--background-critical</code>:</p>
<blockquote><p><code>% sudo softwareupdate --force-scan -l<br />
Software Update Tool<br />
Copyright 2002-2010 Apple</p>
<p>No new software available.<br />
</code></p></blockquote>
<blockquote><p><code>% sudo softwareupdate --printurls -l<br />
Software Update Tool<br />
Copyright 2002-2010 Apple</p>
<p>No new software available.<br />
</code></p></blockquote>
<blockquote><p><code>% sudo softwareupdate --background -l<br />
softwareupdate[44238]: Triggering background check with normal scan ...<br />
</code></p></blockquote>
<blockquote><p><code>% sudo softwareupdate --background-critical -l<br />
softwareupdate[44254]: Triggering background check with normal scan (critical updates only) ...<br />
</code></p></blockquote>
<p>I&#8217;m sure that the first two might be more interesting if I actually had some available updates.</p>
<p>You might be wondering how one discovers undocumented options. One way is to use the <code>strings</code> command against a binary:</p>
<p><code>strings /usr/sbin/softwareupdate</code></p>
<p>I then look at the strings in the vicinity of known, documented options. Here&#8217;s a snippet of the output of the above command:<br />
<code><br />
list<br />
download<br />
install<br />
recommended<br />
ignore<br />
reset-ignored<br />
schedule<br />
lang<br />
verbose<br />
background<br />
background-critical<br />
force-scan<br />
printurls<br />
contentLocator<br />
help<br />
testhelp<br />
</code></p>
<p>Compare that to <code>softwareupdate</code>&#8216;s help message:<br />
<code><br />
sudo softwareupdate --help<br />
usage: softwareupdate  [ ...]</p>
<p>	-l | --list		List all appropriate updates<br />
	-d | --download		Download Only<br />
	-i | --install		Install<br />
		 ...	specific updates<br />
		-a | --all		all appropriate updates<br />
		-r | --recommended	only recommended updates</p>
<p>	--ignore  ...	Ignore specific updates<br />
	--reset-ignored		Clear all ignored updates<br />
	--schedule (on | off)	Set automatic checking</p>
<p>	-v | --verbose	Enable verbose output<br />
	-h | --help	Print this help<br />
</code></p>
<p>If you take a look at the output of <code>strings /usr/sbin/softwareupdate</code>, you may find some other interesting undocumented bits. Have fun!</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/managingosx.wordpress.com/858/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/managingosx.wordpress.com/858/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=managingosx.wordpress.com&#038;blog=98681&#038;post=858&#038;subd=managingosx&#038;ref=&#038;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://managingosx.wordpress.com/2013/04/30/undocumented-options/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
	
		<media:content url="http://2.gravatar.com/avatar/e1088e2a7d9b1e45999c4ba13389b232?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">GregN</media:title>
		</media:content>
	</item>
		<item>
		<title>10.8.3 supported platforms</title>
		<link>http://managingosx.wordpress.com/2013/03/15/10-8-3-supported-platforms/</link>
		<comments>http://managingosx.wordpress.com/2013/03/15/10-8-3-supported-platforms/#comments</comments>
		<pubDate>Fri, 15 Mar 2013 16:13:33 +0000</pubDate>
		<dc:creator>GregN</dc:creator>
				<category><![CDATA[Deployment]]></category>
		<category><![CDATA[OS X]]></category>
		<category><![CDATA[Packaging]]></category>

		<guid isPermaLink="false">http://managingosx.wordpress.com/?p=849</guid>
		<description><![CDATA[A follow-up to yesterday&#8217;s post on 10.8.3. I had hoped that the &#8220;SupportedModelProperties&#8221; list in the InstallESD.dmg&#8217;s /System/Library/CoreServices/PlatformSupport.plist would serve as a more-or-less human parseable list of supported models. But it appears that there are some supported models that do not appear in the &#8220;SupportedModelProperties&#8221; list, but whose board-ids do appear in the &#8220;SupportedBoardIds&#8221; list [&#8230;]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=managingosx.wordpress.com&#038;blog=98681&#038;post=849&#038;subd=managingosx&#038;ref=&#038;feed=1" width="1" height="1" />]]></description>
				<content:encoded><![CDATA[<p>A follow-up to <a href="http://managingosx.wordpress.com/2013/03/14/10-8-3/" title="10.8.3">yesterday&#8217;s post</a> on 10.8.3.</p>
<p>I had hoped that the &#8220;SupportedModelProperties&#8221; list in the InstallESD.dmg&#8217;s /System/Library/CoreServices/PlatformSupport.plist would serve as a more-or-less human parseable list of supported models.</p>
<p>But it appears that there are some supported models that do not appear in the &#8220;SupportedModelProperties&#8221; list, but whose board-ids do appear in the &#8220;SupportedBoardIds&#8221; list in that same file.</p>
<p>In any case, the _real_ thing that causes the the installer to decide whether or not to proceed is this function in the OSInstall.mpkg&#8217;s Distribution file:</p>
<pre class="brush: jscript; gutter: false; title: ; notranslate">
function isSupportedPlatform(){

	if( isVirtualMachine() ){
		return true;
	}
	
	var platformSupportValues=[&quot;Mac-F42D88C8&quot;,&quot;Mac-F2218EA9&quot;,&quot;Mac-F42D86A9&quot;,&quot;Mac-F22C8AC8&quot;,&quot;Mac-F22586C8&quot;,&quot;Mac-AFD8A9D944EA4843&quot;,&quot;Mac-F227BEC8&quot;,&quot;Mac-F226BEC8&quot;,&quot;Mac-7DF2A3B5E5D671ED&quot;,&quot;Mac-942B59F58194171B&quot;,&quot;Mac-2E6FAB96566FE58C&quot;,&quot;Mac-F42D89C8&quot;,&quot;Mac-00BE6ED71E35EB86&quot;,&quot;Mac-4B7AC7E43945597E&quot;,&quot;Mac-F22C89C8&quot;,&quot;Mac-942459F5819B171B&quot;,&quot;Mac-F42388C8&quot;,&quot;Mac-F223BEC8&quot;,&quot;Mac-F4238CC8&quot;,&quot;Mac-F222BEC8&quot;,&quot;Mac-4BC72D62AD45599E&quot;,&quot;Mac-F2268DC8&quot;,&quot;Mac-F2208EC8&quot;,&quot;Mac-66F35F19FE2A0D05&quot;,&quot;Mac-F4238BC8&quot;,&quot;Mac-F221BEC8&quot;,&quot;Mac-C08A6BB70A942AC2&quot;,&quot;Mac-8ED6AF5B48C039E1&quot;,&quot;Mac-F2238AC8&quot;,&quot;Mac-FC02E91DDD3FA6A4&quot;,&quot;Mac-6F01561E16C75D06&quot;,&quot;Mac-742912EFDBEE19B3&quot;,&quot;Mac-F22589C8&quot;,&quot;Mac-F22587A1&quot;,&quot;Mac-F22788AA&quot;,&quot;Mac-F42C86C8&quot;,&quot;Mac-942C5DF58193131B&quot;,&quot;Mac-F2238BAE&quot;,&quot;Mac-F22C86C8&quot;,&quot;Mac-F2268CC8&quot;,&quot;Mac-F2218FC8&quot;,&quot;Mac-7BA5B2794B2CDB12&quot;,&quot;Mac-F65AE981FFA204ED&quot;,&quot;Mac-031AEE4D24BFF0B1&quot;,&quot;Mac-F22587C8&quot;,&quot;Mac-F42D89A9&quot;,&quot;Mac-F2268AC8&quot;,&quot;Mac-F42C89C8&quot;,&quot;Mac-942452F5819B1C1B&quot;,&quot;Mac-F2218FA9&quot;,&quot;Mac-F221DCC8&quot;,&quot;Mac-94245B3640C91C81&quot;,&quot;Mac-F42D86C8&quot;,&quot;Mac-F2268EC8&quot;,&quot;Mac-F2268DAE&quot;,&quot;Mac-F42C88C8&quot;,&quot;Mac-94245A3940C91C80&quot;,&quot;Mac-F42386C8&quot;,&quot;Mac-C3EC7CD22292981F&quot;,&quot;Mac-942B5BF58194151B&quot;,&quot;Mac-F2218EC8&quot;];
	var boardID = system.ioregistry.fromPath('IOService:/')['board-id'];
	
	if( !boardID || platformSupportValues.length == 0 ) {
		return false
	}
	for( var i = 0; i &amp;lt; platformSupportValues.length; i++ ){
	 	if( boardID == platformSupportValues[i] ){
				return true;
	  	}	
	}

	return false;
}
</pre>
<p>Unfortunately, I have not found a reliable resource for mapping board-ids to models.</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/managingosx.wordpress.com/849/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/managingosx.wordpress.com/849/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=managingosx.wordpress.com&#038;blog=98681&#038;post=849&#038;subd=managingosx&#038;ref=&#038;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://managingosx.wordpress.com/2013/03/15/10-8-3-supported-platforms/feed/</wfw:commentRss>
		<slash:comments>5</slash:comments>
	
		<media:content url="http://2.gravatar.com/avatar/e1088e2a7d9b1e45999c4ba13389b232?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">GregN</media:title>
		</media:content>
	</item>
		<item>
		<title>10.8.3</title>
		<link>http://managingosx.wordpress.com/2013/03/14/10-8-3/</link>
		<comments>http://managingosx.wordpress.com/2013/03/14/10-8-3/#comments</comments>
		<pubDate>Fri, 15 Mar 2013 04:22:15 +0000</pubDate>
		<dc:creator>GregN</dc:creator>
				<category><![CDATA[Deployment]]></category>
		<category><![CDATA[General]]></category>
		<category><![CDATA[OS X]]></category>

		<guid isPermaLink="false">http://managingosx.wordpress.com/?p=835</guid>
		<description><![CDATA[Today Apple finally released OS X 10.8.3. This release has been awaited by many Mac admins as the hope was that this version would support all Macs capable of running Mountain Lion. Prior to this release, the Late 2012 Macs (iMacs, 13&#8243; Retina MacBookPros and Mac minis) required a different build of 10.8.2 than did [&#8230;]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=managingosx.wordpress.com&#038;blog=98681&#038;post=835&#038;subd=managingosx&#038;ref=&#038;feed=1" width="1" height="1" />]]></description>
				<content:encoded><![CDATA[<p><img class="alignleft size-thumbnail wp-image-591" alt="Mountain Lion image" src="http://managingosx.files.wordpress.com/2012/02/mountain-lion-180x180.png?w=150&#038;h=150" width="150" height="150" /></p>
<p>Today Apple finally released OS X 10.8.3.</p>
<p>This release has been awaited by many Mac admins as the hope was that this version would support all Macs capable of running Mountain Lion. Prior to this release, the Late 2012 Macs (iMacs, 13&#8243; Retina MacBookPros and Mac minis) required a different build of 10.8.2 than did other Macs.</p>
<p>This required having multiple restore images or OS installer pkgs and possibly multiple NetBoot disks to support all the Macs in your organization.</p>
<p>The hope (and assumption) was that 10.8.3 would unify the Mountain Lion builds, and that all recent machines would be able to use the new version.</p>
<p>How, though, to be sure? One way is to look at what Apple says. Mount the InstallESD.dmg disk image inside the 10.8.3 Install OS X Mountain Lion.app and take a look at /System/Library/CoreServices/PlatformSupport.plist.</p>
<p>One of the keys in this plist looks like this:</p>
<pre class="brush: xml; gutter: false; title: ; notranslate">
	&lt;key&gt;SupportedModelProperties&lt;/key&gt;
	&lt;array&gt;
		&lt;string&gt;MacBookPro4,1&lt;/string&gt;
		&lt;string&gt;Macmini5,3&lt;/string&gt;
		&lt;string&gt;Macmini5,2&lt;/string&gt;
		&lt;string&gt;Macmini5,1&lt;/string&gt;
		&lt;string&gt;MacBookPro5,1&lt;/string&gt;
		&lt;string&gt;MacPro4,1&lt;/string&gt;
		&lt;string&gt;MacBookPro5,2&lt;/string&gt;
		&lt;string&gt;MacBookPro5,5&lt;/string&gt;
		&lt;string&gt;MacBookPro5,4&lt;/string&gt;
		&lt;string&gt;Macmini4,1&lt;/string&gt;
		&lt;string&gt;iMac11,1&lt;/string&gt;
		&lt;string&gt;iMac11,2&lt;/string&gt;
		&lt;string&gt;iMac11,3&lt;/string&gt;
		&lt;string&gt;MacBook7,1&lt;/string&gt;
		&lt;string&gt;MacBookPro3,1&lt;/string&gt;
		&lt;string&gt;MacPro5,1&lt;/string&gt;
		&lt;string&gt;iMac9,1&lt;/string&gt;
		&lt;string&gt;Macmini3,1&lt;/string&gt;
		&lt;string&gt;MacBookPro6,1&lt;/string&gt;
		&lt;string&gt;iMac12,2&lt;/string&gt;
		&lt;string&gt;iMac12,1&lt;/string&gt;
		&lt;string&gt;MacBook5,1&lt;/string&gt;
		&lt;string&gt;MacBook5,2&lt;/string&gt;
		&lt;string&gt;iMac10,1&lt;/string&gt;
		&lt;string&gt;MacBookPro7,1&lt;/string&gt;
		&lt;string&gt;MacBookAir4,1&lt;/string&gt;
		&lt;string&gt;MacBookPro5,3&lt;/string&gt;
		&lt;string&gt;MacBookPro6,2&lt;/string&gt;
		&lt;string&gt;iMac8,1&lt;/string&gt;
		&lt;string&gt;MacBookAir3,1&lt;/string&gt;
		&lt;string&gt;MacBookAir3,2&lt;/string&gt;
		&lt;string&gt;Xserve3,1&lt;/string&gt;
		&lt;string&gt;MacBookAir2,1&lt;/string&gt;
		&lt;string&gt;MacBookPro8,1&lt;/string&gt;
		&lt;string&gt;MacBookPro8,2&lt;/string&gt;
		&lt;string&gt;MacBookPro8,3&lt;/string&gt;
		&lt;string&gt;iMac7,1&lt;/string&gt;
		&lt;string&gt;MacBook6,1&lt;/string&gt;
		&lt;string&gt;MacPro3,1&lt;/string&gt;
		&lt;string&gt;MacBookAir4,2&lt;/string&gt;
	&lt;/array&gt;
</pre>
<p>If your Macs are in this list, they should be supported by 10.8.3.</p>
<p>UPDATE: There are some Macs NOT in this list that are also supported by 10.8.3 &#8212; those are the &#8220;Late 2012&#8243; Macs. See the <a href="http://managingosx.wordpress.com/2013/03/15/10-8-3-supported-platforms/" title="10.8.3 supported platforms">follow-up post</a>.</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/managingosx.wordpress.com/835/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/managingosx.wordpress.com/835/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=managingosx.wordpress.com&#038;blog=98681&#038;post=835&#038;subd=managingosx&#038;ref=&#038;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://managingosx.wordpress.com/2013/03/14/10-8-3/feed/</wfw:commentRss>
		<slash:comments>10</slash:comments>
	
		<media:content url="http://2.gravatar.com/avatar/e1088e2a7d9b1e45999c4ba13389b232?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">GregN</media:title>
		</media:content>

		<media:content url="http://managingosx.files.wordpress.com/2012/02/mountain-lion-180x180.png?w=150" medium="image">
			<media:title type="html">Mountain Lion image</media:title>
		</media:content>
	</item>
		<item>
		<title>XProtect Updater Redux</title>
		<link>http://managingosx.wordpress.com/2013/02/08/xprotect-updater-redux/</link>
		<comments>http://managingosx.wordpress.com/2013/02/08/xprotect-updater-redux/#comments</comments>
		<pubDate>Fri, 08 Feb 2013 18:07:25 +0000</pubDate>
		<dc:creator>GregN</dc:creator>
				<category><![CDATA[Adobe]]></category>
		<category><![CDATA[Commentary]]></category>
		<category><![CDATA[Deployment]]></category>
		<category><![CDATA[OS X]]></category>

		<guid isPermaLink="false">http://managingosx.wordpress.com/?p=830</guid>
		<description><![CDATA[In the past 24 hours, Apple has released an update to the XProtect malware definitions. If your Macs have received the latest XProtect definitions, Adobe Flash Player will be blocked unless it is the version current as of yesterday (11.5.502.149). If you have already updated your clients to that version of the Flash Player, good [&#8230;]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=managingosx.wordpress.com&#038;blog=98681&#038;post=830&#038;subd=managingosx&#038;ref=&#038;feed=1" width="1" height="1" />]]></description>
				<content:encoded><![CDATA[<p>In the past 24 hours, Apple has released an update to the XProtect malware definitions. If your Macs have received the latest XProtect definitions, Adobe Flash Player will be blocked unless it is the version current as of yesterday (11.5.502.149).</p>
<p>If you have already updated your clients to that version of the Flash Player, good for you!</p>
<p>If you don&#8217;t want to be surprised by this sort of thing and have to scramble to address it, might I point you <a href="http://managingosx.wordpress.com/2013/02/01/more-thoughts-on-xprotect-updater/" title="More thoughts on XProtect Updater">here</a>?</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/managingosx.wordpress.com/830/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/managingosx.wordpress.com/830/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=managingosx.wordpress.com&#038;blog=98681&#038;post=830&#038;subd=managingosx&#038;ref=&#038;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://managingosx.wordpress.com/2013/02/08/xprotect-updater-redux/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://2.gravatar.com/avatar/e1088e2a7d9b1e45999c4ba13389b232?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">GregN</media:title>
		</media:content>
	</item>
		<item>
		<title>Disabling iCloud as default save location</title>
		<link>http://managingosx.wordpress.com/2013/02/05/disabling-icloud-as-default-save-location/</link>
		<comments>http://managingosx.wordpress.com/2013/02/05/disabling-icloud-as-default-save-location/#comments</comments>
		<pubDate>Tue, 05 Feb 2013 18:38:59 +0000</pubDate>
		<dc:creator>GregN</dc:creator>
				<category><![CDATA[Deployment]]></category>
		<category><![CDATA[MCX]]></category>
		<category><![CDATA[OS X]]></category>

		<guid isPermaLink="false">http://managingosx.wordpress.com/?p=825</guid>
		<description><![CDATA[Krypted.com has a new post on disabling iCloud as the default save location for new documents. This feature affects apps that can save to iCloud, and only if the user has an iCloud account configured for the current login. Still, you might want to turn this off by default for all users in your organization [&#8230;]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=managingosx.wordpress.com&#038;blog=98681&#038;post=825&#038;subd=managingosx&#038;ref=&#038;feed=1" width="1" height="1" />]]></description>
				<content:encoded><![CDATA[<p><img src="http://managingosx.files.wordpress.com/2012/07/icloud-logo.jpg?w=150&#038;h=150" alt="icloud-logo" width="150" height="150" class="alignleft size-thumbnail wp-image-674" /><br />
Krypted.com has a <a href="http://krypted.com/mac-os-x/change-default-location-of-new-documents-to-not-be-icloud/">new post</a> on disabling iCloud as the default save location for new documents.</p>
<p>This feature affects apps that <strong>can</strong> save to iCloud, and only if the user has an iCloud account configured for the current login.</p>
<p>Still, you might want to turn this off by default for all users in your organization so they don&#8217;t accidentally store company documents on Apple&#8217;s servers.  The Krypted.com post shows a command-line way to change this setting for a single user. How might you do this for all users?</p>
<p>One way would be to install a computer-level profile that installs the right settings. <a href="https://dl.dropbox.com/u/8119814/DontSaveNewDocumentsToiCloud.mobileconfig">Here&#8217;s one.</a></p>
<p>If installed as root using the /usr/bin/profiles tool:</p>
<pre>
sudo profiles -I -F DontSaveNewDocumentsToiCloud.mobileconfig
</pre>
<p>This setting will be applied Once to all users as they login.</p>
<p>DontSaveNewDocumentsToiCloud.mobileconfig was created using Tim Sutton&#8217;s <a href="https://github.com/timsutton/mcxToProfile">mcxToProfile tool</a>.</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/managingosx.wordpress.com/825/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/managingosx.wordpress.com/825/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=managingosx.wordpress.com&#038;blog=98681&#038;post=825&#038;subd=managingosx&#038;ref=&#038;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://managingosx.wordpress.com/2013/02/05/disabling-icloud-as-default-save-location/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
	
		<media:content url="http://2.gravatar.com/avatar/e1088e2a7d9b1e45999c4ba13389b232?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">GregN</media:title>
		</media:content>

		<media:content url="http://managingosx.files.wordpress.com/2012/07/icloud-logo.jpg?w=150" medium="image">
			<media:title type="html">icloud-logo</media:title>
		</media:content>
	</item>
		<item>
		<title>Still more on the XProtect Updater</title>
		<link>http://managingosx.wordpress.com/2013/02/04/still-more-on-the-xprotect-updater/</link>
		<comments>http://managingosx.wordpress.com/2013/02/04/still-more-on-the-xprotect-updater/#comments</comments>
		<pubDate>Mon, 04 Feb 2013 21:26:53 +0000</pubDate>
		<dc:creator>GregN</dc:creator>
				<category><![CDATA[Commentary]]></category>
		<category><![CDATA[Deployment]]></category>
		<category><![CDATA[Java]]></category>
		<category><![CDATA[Security]]></category>

		<guid isPermaLink="false">http://managingosx.wordpress.com/?p=821</guid>
		<description><![CDATA[Mike Boylan writes in a reply to my previous post: &#8230;I have to respectfully disagree that disabling the auto-update mechanism for Xprotect should be done in organizations with managed machines. Do you disable the automatic update mechanism for your anti-virus software? Do you manually test every definition update and push each one out through Munki? [&#8230;]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=managingosx.wordpress.com&#038;blog=98681&#038;post=821&#038;subd=managingosx&#038;ref=&#038;feed=1" width="1" height="1" />]]></description>
				<content:encoded><![CDATA[<p>Mike Boylan writes in a reply to <a href="http://managingosx.wordpress.com/2013/02/01/more-thoughts-on-xprotect-updater/" title="More thoughts on XProtect Updater">my previous post</a>:</p>
<blockquote><p>&#8230;I have to respectfully disagree that disabling the auto-update mechanism for Xprotect should be done in organizations with managed machines. Do you disable the automatic update mechanism for your anti-virus software? Do you manually test every definition update and push each one out through Munki? I’d assume not. Xprotect (clearly) isn’t serving the same type of updates as Apple software update. It’s a malware prevention/blocking (and in some cases, removal) system. I won’t argue that Xprotect’s disabling of Java plugins will almost certainly have a larger impact across organizations than say something like a Sophos definition update, but nonetheless, the intent is still to protect systems. Xprotect and anti-virus software together are meant to serve complimentary roles. These Java plugins are being disabled because serious known exploits are being used in the wild. For a company that cannot function without version xyx of the Java plugin, does it make sense to make changes so that it can continue to operate effectively? Sure. But I doubt most organizations rely that heavily on a single plugin. Also, how many different types of updaters should we as admins be responsible for managing? There are already too many. For most admins, I don’t think it’d be a responsible decision to add Xprotect to the list.
</p></blockquote>
<p>Mike:</p>
<p>If Xprotect&#8217;s disabling of web plugins has not caused your organization any issues, or you are willing to react to any issues such disabling might occur in the future, it may well make sense to leave things as they are for your organization.</p>
<p>In my organization, the Java 6 web plugin is required to perform vital, daily business functions. When it doesn&#8217;t work, business functions are seriously impacted.</p>
<p>My argument might be subtle.</p>
<p>Apple is acting as systems administrator for machines by updating the XProtect plists. As long as you are content to let Apple make those changes, and won&#8217;t complain if Apple makes a change that breaks things for you, by all means, leave the XProtect updater mechanism alone.</p>
<p>If, on the other hand, _you_ are taking responsibility for managing your machines, making sure they are functional for your organization, and keeping them safe from malware, you&#8217;ll want to disable _Apple&#8217;s_ update of the XProtect malware definitions, and take over updating them yourself.</p>
<p>If you do not want to be surprised that one morning Java or Flash or some other plugin has been disabled on all the Macs you manage, you cannot let Apple update these definitions without your review. You must take responsibility for reviewing and implementing Apple&#8217;s changes, or a modification thereof.</p>
<p>Is this more work? Yes. Does it add risk to your organization? Probably. All security is a trade-off between functionality and protection. Malware protection that prevents my users from doing their work is not an acceptable trade-off. Apple has made one decision about the trade-offs, one that protects a great number of Mac users while negatively affecting a very small number  of them. That is not the correct decision for my organization.</p>
<p>The only way I can ensure the correct decisions are made for my organization is to not leave the decision making process solely to Apple, but to instead review Apple&#8217;s changes and alter them if needed for the benefit of my organization.</p>
<p>Each organization needs to weigh this decision for themselves.</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/managingosx.wordpress.com/821/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/managingosx.wordpress.com/821/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=managingosx.wordpress.com&#038;blog=98681&#038;post=821&#038;subd=managingosx&#038;ref=&#038;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://managingosx.wordpress.com/2013/02/04/still-more-on-the-xprotect-updater/feed/</wfw:commentRss>
		<slash:comments>14</slash:comments>
	
		<media:content url="http://2.gravatar.com/avatar/e1088e2a7d9b1e45999c4ba13389b232?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">GregN</media:title>
		</media:content>
	</item>
		<item>
		<title>More thoughts on XProtect Updater</title>
		<link>http://managingosx.wordpress.com/2013/02/01/more-thoughts-on-xprotect-updater/</link>
		<comments>http://managingosx.wordpress.com/2013/02/01/more-thoughts-on-xprotect-updater/#comments</comments>
		<pubDate>Fri, 01 Feb 2013 17:07:08 +0000</pubDate>
		<dc:creator>GregN</dc:creator>
				<category><![CDATA[Commentary]]></category>
		<category><![CDATA[Deployment]]></category>
		<category><![CDATA[OS X]]></category>
		<category><![CDATA[Security]]></category>

		<guid isPermaLink="false">http://managingosx.wordpress.com/?p=815</guid>
		<description><![CDATA[I&#8217;ve been thinking more about Apple&#8217;s Xprotect Updater mechanism in light of the recent updates that have disabled Java web plugins. See yesterday&#8217;s post, for example. In many enterprise environments, admins choose to run their own Software Update server to provide Apple updates. This is done for several reasons. One is to save bandwidth &#8212; [&#8230;]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=managingosx.wordpress.com&#038;blog=98681&#038;post=815&#038;subd=managingosx&#038;ref=&#038;feed=1" width="1" height="1" />]]></description>
				<content:encoded><![CDATA[<p>I&#8217;ve been thinking more about Apple&#8217;s Xprotect Updater mechanism in light of the recent updates that have disabled Java web plugins. See <a href="http://managingosx.wordpress.com/2013/01/31/disabled-java-plugins-xprotect-updater/" title="Disabled Java Plugins, XProtect Updater">yesterday&#8217;s post</a>, for example.</p>
<p>In many enterprise environments, admins choose to run their own Software Update server to provide Apple updates. This is done for several reasons. One is to save bandwidth &#8212; it&#8217;s more efficient for a single machine to download available Apple updates over your Internet connection, then have all the other machines get those updates over the local LAN.</p>
<p>But another reason is to be able to control which updates are offered to your managed computers. Apple may offer an update that causes issues in your organization. For example, we did not deploy the &#8220;Java for OS X 2012-006&#8243; update in our environment because it disabled the Java 6 Web Plugin, which we needed.</p>
<p>Yesterday&#8217;s Xprotect update essentially did the same thing, this time over a wider range of machines. I quickly put together a <a href="http://managingosx.wordpress.com/2013/01/31/disabled-java-plugins-xprotect-updater/" title="Disabled Java Plugins, XProtect Updater">workaround</a>, but one of the things the workaround does is to turn off the automatic updates of the XProtect data.</p>
<p>After thinking more about the ramifications of this, I think that this is <em>exactly</em> what most enterprise sites <strong>should</strong> do. They should treat this update mechanism like all other update mechanisms. I think you should turn this off on most or all of your managed machines.</p>
<p>&#8220;But wait,&#8221; you are thinking. &#8220;Isn&#8217;t this risky? Apple is trying to protect users from malware.&#8221; If you only turned off the update mechanism on all your machines and did nothing else, you <em>are</em> adding risk. But what you <em>should</em> do is something similar to what an admin that vets Apple Software Updates (or third-party application updates) does before releasing them.</p>
<p>You should enable the update mechanism on an admin machine. When there are new XProtect.meta.plist and/or XProtect.plist files, you should test to see that they don&#8217;t cause any issues in your organization, modifying them if needed. You can then use your favorite software deployment system (I like <a href="http://code.google.com/p/munki">Munki</a>) to distribute these files to your managed machines.</p>
<p>In this way, your managed machines can still get the benefit of updates to Apple&#8217;s malware protection mechanism without risking that a component vital to your organization will be blocked without warning.</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/managingosx.wordpress.com/815/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/managingosx.wordpress.com/815/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=managingosx.wordpress.com&#038;blog=98681&#038;post=815&#038;subd=managingosx&#038;ref=&#038;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://managingosx.wordpress.com/2013/02/01/more-thoughts-on-xprotect-updater/feed/</wfw:commentRss>
		<slash:comments>18</slash:comments>
	
		<media:content url="http://2.gravatar.com/avatar/e1088e2a7d9b1e45999c4ba13389b232?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">GregN</media:title>
		</media:content>
	</item>
		<item>
		<title>Disabled Java Plugins, XProtect Updater</title>
		<link>http://managingosx.wordpress.com/2013/01/31/disabled-java-plugins-xprotect-updater/</link>
		<comments>http://managingosx.wordpress.com/2013/01/31/disabled-java-plugins-xprotect-updater/#comments</comments>
		<pubDate>Thu, 31 Jan 2013 18:54:55 +0000</pubDate>
		<dc:creator>GregN</dc:creator>
				<category><![CDATA[Commentary]]></category>
		<category><![CDATA[Deployment]]></category>
		<category><![CDATA[OS X]]></category>
		<category><![CDATA[Packaging]]></category>
		<category><![CDATA[Security]]></category>

		<guid isPermaLink="false">http://managingosx.wordpress.com/?p=801</guid>
		<description><![CDATA[Today Apple updated the XProtect.meta.plist file, which, among other things, causes XProtect to disable Java Plugins that don&#8217;t meet a minimum version. The net effect was to disable the Java 6 plugin on all browsers, as well as Java 7 plugins older than 1.7.11.22. If you need to continue to use the Java 6 plugin [&#8230;]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=managingosx.wordpress.com&#038;blog=98681&#038;post=801&#038;subd=managingosx&#038;ref=&#038;feed=1" width="1" height="1" />]]></description>
				<content:encoded><![CDATA[<p><img class="alignleft size-full wp-image-802" alt="Java" src="http://managingosx.files.wordpress.com/2013/01/java.jpg?w=450"   />Today Apple updated the XProtect.meta.plist file, which, among other things, causes XProtect to disable Java Plugins that don&#8217;t meet a minimum version.</p>
<p>The net effect was to disable the Java 6 plugin on all browsers, as well as Java 7 plugins older than 1.7.11.22.</p>
<p>If you need to continue to use the Java 6 plugin in your organization, you can revert the changes and disable the mechanism that updates the XProtect.meta.plist by installing this package:</p>
<p><a title="DisableXProtectUpdater.pkg" href="https://dl.dropbox.com/u/8119814/DisableXProtectUpdater.pkg.zip"> https://dl.dropbox.com/u/8119814/DisableXProtectUpdater.pkg.zip</a></p>
<p>This is a payload-free package that runs this script as a postflight:</p>
<pre style="overflow:scroll;">#!/bin/sh

# don't check JavaWebComponentVersionMinimum
XPROTECT_META_PLIST="$3/System/Library/CoreServices/CoreTypes.bundle/Contents/Resources/XProtect.meta.plist"
/usr/libexec/PlistBuddy -c "Delete :JavaWebComponentVersionMinimum" "$XPROTECT_META_PLIST"

# disable the xprotectupdater job
LAUNCHD_JOB_PLIST="$3/System/Library/LaunchDaemons/com.apple.xprotectupdater.plist"
/bin/launchctl unload -w "$LAUNCHD_JOB_PLIST"</pre>
<p>I won&#8217;t tell you this is a smart thing to install; there are many reasons to leave things as they are. Apple disabled these plugins to protect from known exploits. By re-enabling them, you are opening up your managed machines to these exploits.</p>
<p>But if your org needs the Java 6 Web Plugin, this should get you running again. You should re-enable the XProtect updater as soon as you are able, though:</p>
<pre style="overflow:scroll;">sudo /bin/launchctl load -w /System/Library/LaunchDaemons/com.apple.xprotectupdater.plist</pre>
<p>NOTE: if you need to re-enable an older version of the Oracle Java 1.7 Plugin, you&#8217;ll need to edit the postflight script and add something like:</p>
<pre style="overflow:scroll;">/usr/libexec/PlistBuddy -c "Set <img src='http://s2.wp.com/wp-includes/images/smilies/icon_razz.gif' alt=':P' class='wp-smiley' /> lugInBlacklist:10:com.oracle.java.JavaAppletPlugin:MinimumPlugInBundleVersion 1.7.10.19" "$XPROTECT_META_PLIST"</pre>
<p>(Sadly, WordPress changes a colon followed by a P into a emoticon, even in pre-formatted text. Not helping&#8230;)</p>
<p>This sets the MinimumPlugInBundleVersion for the Oracle Java Web Plugin back to the value it was with the 10 Jan 2013 version of the XProtect.meta.plist. Again, if you do this, you are choosing to expose your machines to a known Java Web Plugin exploit. Do so at your own risk.</p>
<p><strong>(Update 01 Feb 21013)</strong><br />
If you need to run the Oracle Java 1.7 Plugin (or are already running it and it&#8217;s been disabled) the best fix is to update the Java install. As of this writing, Java 7 Release 13 for OS X is available <a href="http://java.com/en/download/mac_download.jsp">here</a>. This installs a web plugin with BundleVersion 1.7.13.20.</p>
<p><strong>(Update 02 Feb 2103)</strong><br />
Apple has released a <a href="http://support.apple.com/kb/HT5575">Java 6 update for Snow Leopard</a>. Installing this update will restore Java 6 web plugin functionality under Mac OS 10.6. This won&#8217;t help if you need to use the Java 6 web plugin under OS X 10.7 or later.</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/managingosx.wordpress.com/801/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/managingosx.wordpress.com/801/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=managingosx.wordpress.com&#038;blog=98681&#038;post=801&#038;subd=managingosx&#038;ref=&#038;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://managingosx.wordpress.com/2013/01/31/disabled-java-plugins-xprotect-updater/feed/</wfw:commentRss>
		<slash:comments>17</slash:comments>
	
		<media:content url="http://2.gravatar.com/avatar/e1088e2a7d9b1e45999c4ba13389b232?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">GregN</media:title>
		</media:content>

		<media:content url="http://managingosx.files.wordpress.com/2013/01/java.jpg" medium="image">
			<media:title type="html">Java</media:title>
		</media:content>
	</item>
		<item>
		<title>Adobe reserialization tool</title>
		<link>http://managingosx.wordpress.com/2013/01/18/adobe-reserialization-tool/</link>
		<comments>http://managingosx.wordpress.com/2013/01/18/adobe-reserialization-tool/#comments</comments>
		<pubDate>Sat, 19 Jan 2013 02:52:59 +0000</pubDate>
		<dc:creator>GregN</dc:creator>
				<category><![CDATA[Adobe]]></category>
		<category><![CDATA[Deployment]]></category>
		<category><![CDATA[Packaging]]></category>

		<guid isPermaLink="false">http://managingosx.wordpress.com/?p=798</guid>
		<description><![CDATA[Here&#8217;s the tool I promised earlier: https://github.com/gregneagle/makereserializationpkg Enjoy.<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=managingosx.wordpress.com&#038;blog=98681&#038;post=798&#038;subd=managingosx&#038;ref=&#038;feed=1" width="1" height="1" />]]></description>
				<content:encoded><![CDATA[<p>Here&#8217;s the tool I promised earlier:</p>
<p><a href="https://github.com/gregneagle/makereserializationpkg">https://github.com/gregneagle/makereserializationpkg</a></p>
<p>Enjoy.</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/managingosx.wordpress.com/798/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/managingosx.wordpress.com/798/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=managingosx.wordpress.com&#038;blog=98681&#038;post=798&#038;subd=managingosx&#038;ref=&#038;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://managingosx.wordpress.com/2013/01/18/adobe-reserialization-tool/feed/</wfw:commentRss>
		<slash:comments>15</slash:comments>
	
		<media:content url="http://2.gravatar.com/avatar/e1088e2a7d9b1e45999c4ba13389b232?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">GregN</media:title>
		</media:content>
	</item>
		<item>
		<title>Fix for Adobe CS6 activation issue</title>
		<link>http://managingosx.wordpress.com/2013/01/18/fix-for-adobe-cs6-activation-issue/</link>
		<comments>http://managingosx.wordpress.com/2013/01/18/fix-for-adobe-cs6-activation-issue/#comments</comments>
		<pubDate>Sat, 19 Jan 2013 01:49:21 +0000</pubDate>
		<dc:creator>GregN</dc:creator>
				<category><![CDATA[Adobe]]></category>
		<category><![CDATA[Commentary]]></category>
		<category><![CDATA[Deployment]]></category>
		<category><![CDATA[OS X]]></category>
		<category><![CDATA[Packaging]]></category>

		<guid isPermaLink="false">http://managingosx.wordpress.com/?p=793</guid>
		<description><![CDATA[Adobe has posted some information and a fix for the recent issue with Adobe Photoshop CS6 registration/activations: http://blogs.adobe.com/oobe/2013/01/32767-days-left-but-whos-counting.html This issue appears to have been triggered by the Photoshop CS6 13.0.2 and/or 13.0.3 updates. The official recommendation on a fix is to update Photoshop CS6 to 13.0.4, then use the APTEE tool to remove and reapply [&#8230;]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=managingosx.wordpress.com&#038;blog=98681&#038;post=793&#038;subd=managingosx&#038;ref=&#038;feed=1" width="1" height="1" />]]></description>
				<content:encoded><![CDATA[<p><img src="http://managingosx.files.wordpress.com/2013/01/pscs6.jpg?w=450" alt="PSCS6"   class="alignright size-full wp-image-794" /><br />
Adobe has posted some information and a fix for the <a href="http://managingosx.wordpress.com/2013/01/09/adobe-cs6-serialization-fun/" title="Adobe CS6 Serialization fun">recent issue with Adobe Photoshop CS6 registration/activations</a>:</p>
<p><a href="http://blogs.adobe.com/oobe/2013/01/32767-days-left-but-whos-counting.html">http://blogs.adobe.com/oobe/2013/01/32767-days-left-but-whos-counting.html</a></p>
<p>This issue appears to have been triggered by the Photoshop CS6 13.0.2 and/or 13.0.3 updates. The official recommendation on a fix is to update Photoshop CS6 to 13.0.4, then use the APTEE tool to remove and reapply serialization. See the <a href="http://blogs.adobe.com/oobe/2013/01/32767-days-left-but-whos-counting.html">above post</a> for more details.</p>
<p>The APTEE tool is not exactly easy to use to deploy this fix in an enterprise environment; you need to install it on all your machines and also run a script (which you must write, test, and debug) on all your machines to perform the unserialization/reserialization.</p>
<p>Later today I will post a tool to help you create a standard Apple package to perform these steps. If you have some way to distribute and install Apple packages on your machines, you&#8217;ll be able to do the unserialization/reserialization by installing a package.</p>
<p>Check back later!</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/managingosx.wordpress.com/793/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/managingosx.wordpress.com/793/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=managingosx.wordpress.com&#038;blog=98681&#038;post=793&#038;subd=managingosx&#038;ref=&#038;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://managingosx.wordpress.com/2013/01/18/fix-for-adobe-cs6-activation-issue/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://2.gravatar.com/avatar/e1088e2a7d9b1e45999c4ba13389b232?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">GregN</media:title>
		</media:content>

		<media:content url="http://managingosx.files.wordpress.com/2013/01/pscs6.jpg" medium="image">
			<media:title type="html">PSCS6</media:title>
		</media:content>
	</item>
	</channel>
</rss>
