<?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>mylifeinaminute.com &#187; SharePoint Solution Packages</title>
	<atom:link href="http://www.mylifeinaminute.com/tag/sharepoint-solution-packages/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.mylifeinaminute.com</link>
	<description>You can learn a lot in a minute</description>
	<lastBuildDate>Wed, 18 Jan 2012 02:33:27 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.1</generator>
		<item>
		<title>Retrieving SharePoint 2010 Farm Solutions with PowerShell</title>
		<link>http://www.mylifeinaminute.com/2011/04/11/retrieving-sharepoint-2010-farm-solutions-with-powershell/</link>
		<comments>http://www.mylifeinaminute.com/2011/04/11/retrieving-sharepoint-2010-farm-solutions-with-powershell/#comments</comments>
		<pubDate>Mon, 11 Apr 2011 17:50:13 +0000</pubDate>
		<dc:creator>Scott</dc:creator>
				<category><![CDATA[Microsoft]]></category>
		<category><![CDATA[Office]]></category>
		<category><![CDATA[PowerShell]]></category>
		<category><![CDATA[SharePoint Server 2010]]></category>
		<category><![CDATA[SharePoint]]></category>
		<category><![CDATA[SharePoint 2010]]></category>
		<category><![CDATA[SharePoint Solution Packages]]></category>
		<category><![CDATA[wsp]]></category>

		<guid isPermaLink="false">http://www.mylifeinaminute.com/?p=813</guid>
		<description><![CDATA[The following PowerShell script allows for saving all of the farm level solutions in a SharePoint 2010 farm. The Script or the one liner:]]></description>
			<content:encoded><![CDATA[<p>The following <a title="PowerShell" href="/tag/powershell/">PowerShell</a> script allows for saving all of the farm level <a title="SharePoint Solutions Packages" href="/tag/sharepoint-solution-packages/">solutions</a> in a <a title="SharePoint" href="/tag/sharepoint/">SharePoint</a> <a title="SharePoint 2010" href="/tag/sharepoint-2010/">2010</a> farm.</p>
<h4>The Script</h4>
<pre class="brush: powershell; title: ; notranslate">
function SPGetFarmSolutions {
	param (
		[string] $directory = $(Read-Host -prompt &quot;Enter a directory (use &quot;&quot;.&quot;&quot; for current dir)&quot;)
	)

	if ($directory.Length -lt 2) {
		$directory = [string]$pwd + &quot;\\&quot;;
	}

	$farm = [Microsoft.SharePoint.Administration.SPFarm]::Local;
	$solutions = $farm.Solutions;
	$solutions | ForEach-Object {
		Write-Host &quot;Found solution $_.name&quot;;
		$_.SolutionFile.SaveAs($directory + $_.name);
	}
}
</pre>
<p>or the one liner:</p>
<pre class="brush: powershell; title: ; notranslate">
(Get-SPFarm).Solutions | ForEach-Object{$var = (Get-Location).Path + &quot;\&quot; + $_.Name; $_.SolutionFile.SaveAs($var)}
</pre>
<p><map name='google_ad_map_813_0feb153b14d1a0fb'>
<area shape='rect' href='http://imageads.googleadservices.com/pagead/imgclick/813?pos=0' coords='1,2,367,28' />
<area shape='rect' href='http://services.google.com/feedback/abg' coords='384,10,453,23'/></map>
<img usemap='#google_ad_map_813_0feb153b14d1a0fb' border='0' src='http://imageads.googleadservices.com/pagead/ads?format=468x30_aff_img&amp;client=&amp;channel=&amp;output=png&amp;cuid=813&amp;url= http%3A%2F%2Fwww.mylifeinaminute.com%2F2011%2F04%2F11%2Fretrieving-sharepoint-2010-farm-solutions-with-powershell%2F' /></p>]]></content:encoded>
			<wfw:commentRss>http://www.mylifeinaminute.com/2011/04/11/retrieving-sharepoint-2010-farm-solutions-with-powershell/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>SharePoint Solution Downloader</title>
		<link>http://www.mylifeinaminute.com/2009/08/21/sharepoint-solution-downloader/</link>
		<comments>http://www.mylifeinaminute.com/2009/08/21/sharepoint-solution-downloader/#comments</comments>
		<pubDate>Fri, 21 Aug 2009 22:22:24 +0000</pubDate>
		<dc:creator>Scott</dc:creator>
				<category><![CDATA[.NET]]></category>
		<category><![CDATA[Microsoft]]></category>
		<category><![CDATA[News]]></category>
		<category><![CDATA[Office]]></category>
		<category><![CDATA[Sharepoint Server]]></category>
		<category><![CDATA[Visual Studio 2008]]></category>
		<category><![CDATA[Windows SharePoint Services]]></category>
		<category><![CDATA[codeplex]]></category>
		<category><![CDATA[moss 2007]]></category>
		<category><![CDATA[SharePoint]]></category>
		<category><![CDATA[sharepoint administration]]></category>
		<category><![CDATA[SharePoint Solution Packages]]></category>

		<guid isPermaLink="false">http://www.mylifeinaminute.com/?p=401</guid>
		<description><![CDATA[One of my pain points as a SharePoint &#8220;administrator&#8221; is having to deal with deployments of solution packages to my environment without the best change management. This means that I often see packages making their way in to the environment without any thought given to keeping the package in case it needs to be reapplied [...]]]></description>
			<content:encoded><![CDATA[<p>One of my pain points as a SharePoint &#8220;administrator&#8221; is having to deal with deployments of solution packages to my environment without the best change management. This means that I often see packages making their way in to the environment without any thought given to keeping the package in case it needs to be reapplied at a later time (Note: I&#8217;m not the only one who controls what goes into the environment).</p>
<p>The solution? I whipped up a Windows application so download one, several, or all of the solution packages currently stored in the farm configuration database.</p>
<p>I have posted the application to <a title="SharePoint Solution Downloader" href="http://spsolutiondownloader.codeplex.com/">CodePlex</a> @ <a title="SharePoint Solution Downloader" href="http://spsolutiondownloader.codeplex.com/">http://spsolutiondownloader.codeplex.com/</a>.</p>
<p style="text-align: center;"><a href="/images/2009/08/spdownloader_download.jpg" target="_blank" rel="lightbox[401]"><img class="aligncenter size-medium wp-image-402" title="SharePoint Solution Downloader" src="http://www.mylifeinaminute.com/images/2009/08/spdownloader_download-300x155.jpg" alt="SharePoint Solution Downloader" width="300" height="155" /></a></p>
<p>The application must be run in the context of a Farm Administrator (i.e. right-click, <em>Run As&#8230;</em>) on a server in the farm for which you wish to download the solution package(s) from and requires the .NET Framework 3.5.</p>
<p>I would love some feedback from the community as to whether or not this useful. I have some other little apps in mind I could put together with the proper motivation.</p>
<p><map name='google_ad_map_401_0feb153b14d1a0fb'>
<area shape='rect' href='http://imageads.googleadservices.com/pagead/imgclick/401?pos=0' coords='1,2,367,28' />
<area shape='rect' href='http://services.google.com/feedback/abg' coords='384,10,453,23'/></map>
<img usemap='#google_ad_map_401_0feb153b14d1a0fb' border='0' src='http://imageads.googleadservices.com/pagead/ads?format=468x30_aff_img&amp;client=&amp;channel=&amp;output=png&amp;cuid=401&amp;url= http%3A%2F%2Fwww.mylifeinaminute.com%2F2009%2F08%2F21%2Fsharepoint-solution-downloader%2F' /></p>]]></content:encoded>
			<wfw:commentRss>http://www.mylifeinaminute.com/2009/08/21/sharepoint-solution-downloader/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Some Background on CAS Policies</title>
		<link>http://www.mylifeinaminute.com/2008/12/31/some-background-on-cas-policies/</link>
		<comments>http://www.mylifeinaminute.com/2008/12/31/some-background-on-cas-policies/#comments</comments>
		<pubDate>Wed, 31 Dec 2008 16:26:38 +0000</pubDate>
		<dc:creator>Scott</dc:creator>
				<category><![CDATA[Office]]></category>
		<category><![CDATA[Sharepoint Server]]></category>
		<category><![CDATA[Visual Studio 2005]]></category>
		<category><![CDATA[Visual Studio 2008]]></category>
		<category><![CDATA[Windows SharePoint Services]]></category>
		<category><![CDATA[CAS]]></category>
		<category><![CDATA[Development]]></category>
		<category><![CDATA[Microsoft]]></category>
		<category><![CDATA[SharePoint]]></category>
		<category><![CDATA[SharePoint Solution Packages]]></category>

		<guid isPermaLink="false">http://www.mylifeinaminute.com/?p=275</guid>
		<description><![CDATA[Reza Alirezaei has a good post on the behind the scenes of CAS policies and SharePoint. Check it out.]]></description>
			<content:encoded><![CDATA[<p><a href="http://blogs.devhorizon.com/reza/" title="Reza Alirezaei's Blog">Reza Alirezaei</a> has a good post on the behind the scenes of CAS policies and SharePoint.
<p><a href="http://blogs.devhorizon.com/reza/?p=785" title="Behind the Scences: CAS in Solution Packages">Check it out.</a></p>
<p><map name='google_ad_map_275_0feb153b14d1a0fb'>
<area shape='rect' href='http://imageads.googleadservices.com/pagead/imgclick/275?pos=0' coords='1,2,367,28' />
<area shape='rect' href='http://services.google.com/feedback/abg' coords='384,10,453,23'/></map>
<img usemap='#google_ad_map_275_0feb153b14d1a0fb' border='0' src='http://imageads.googleadservices.com/pagead/ads?format=468x30_aff_img&amp;client=&amp;channel=&amp;output=png&amp;cuid=275&amp;url= http%3A%2F%2Fwww.mylifeinaminute.com%2F2008%2F12%2F31%2Fsome-background-on-cas-policies%2F' /></p>]]></content:encoded>
			<wfw:commentRss>http://www.mylifeinaminute.com/2008/12/31/some-background-on-cas-policies/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

<!-- Served from: www.mylifeinaminute.com @ 2012-02-07 16:21:08 by W3 Total Cache -->
