<?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>Solutions Archives - Blog IT</title>
	<atom:link href="https://blogit.create.pt/tag/solutions/feed/" rel="self" type="application/rss+xml" />
	<link>https://blogit.create.pt/tag/solutions/</link>
	<description>Create IT blogger community</description>
	<lastBuildDate>Thu, 10 Jan 2019 12:46:17 +0000</lastBuildDate>
	<language>en-US</language>
	<sy:updatePeriod>
	hourly	</sy:updatePeriod>
	<sy:updateFrequency>
	1	</sy:updateFrequency>
	<generator>https://wordpress.org/?v=6.9.1</generator>
	<item>
		<title>SharePoint &#8211; Export all solutions wsp using PowerShell script</title>
		<link>https://blogit.create.pt/fabiocarvalho/2017/02/16/sharepoint-export-all-solutions-wsp-using-powershell-script/</link>
					<comments>https://blogit.create.pt/fabiocarvalho/2017/02/16/sharepoint-export-all-solutions-wsp-using-powershell-script/#comments</comments>
		
		<dc:creator><![CDATA[Fábio Carvalho]]></dc:creator>
		<pubDate>Thu, 16 Feb 2017 02:52:53 +0000</pubDate>
				<category><![CDATA[PowerShell]]></category>
		<category><![CDATA[Migration]]></category>
		<category><![CDATA[Tools]]></category>
		<category><![CDATA[SharePoint]]></category>
		<category><![CDATA[Administration]]></category>
		<category><![CDATA[SharePoint 2010]]></category>
		<category><![CDATA[SharePoint 2013]]></category>
		<category><![CDATA[SharePoint 2016]]></category>
		<category><![CDATA[Solutions]]></category>
		<guid isPermaLink="false">http://blogit.create.pt/fabiocarvalho/?p=2631</guid>

					<description><![CDATA[<p>Hey Everyone, Today i will post a script very helpful when you are on Migration steps and you need export all wsp solutions. Thanks Fábio Carvalho SharePoint Consultant &#124;create&#124;it&#124;</p>
<p>The post <a href="https://blogit.create.pt/fabiocarvalho/2017/02/16/sharepoint-export-all-solutions-wsp-using-powershell-script/">SharePoint &#8211; Export all solutions wsp using PowerShell script</a> appeared first on <a href="https://blogit.create.pt">Blog IT</a>.</p>
]]></description>
										<content:encoded><![CDATA[<p>Hey Everyone,</p>
<p>Today i will post a script very helpful when you are on Migration steps and you need export all wsp solutions.</p>
<pre class="brush: bash; title: ; notranslate"> 

$dirName = &quot;C:\WSP&quot;
if (!(Test-Path -path $dirName))
{
New-Item $dirName -type directory
}
Write-Host Exporting solutions to $dirName
foreach ($solution in Get-SPSolution)
{
    $id = $Solution.SolutionID
    $title = $Solution.Name
    $filename = $Solution.SolutionFile.Name
    Write-Host &quot;Exporting ‘$title’ to …\$filename&quot; -nonewline
    try {
        $solution.SolutionFile.SaveAs(&quot;$dirName\$filename&quot;)
        Write-Host &quot; – done&quot; -foreground green
    }
    catch
    {
        Write-Host &quot; – error : $_&quot; -foreground red
    }
}

</pre>
<p>Thanks</p>
<p><strong>Fábio Carvalho</strong><br />
SharePoint Consultant<br />
<strong>|create|</strong><span style="color: #ff0000"><strong>it</strong></span><strong>|</strong></p>
<p>The post <a href="https://blogit.create.pt/fabiocarvalho/2017/02/16/sharepoint-export-all-solutions-wsp-using-powershell-script/">SharePoint &#8211; Export all solutions wsp using PowerShell script</a> appeared first on <a href="https://blogit.create.pt">Blog IT</a>.</p>
]]></content:encoded>
					
					<wfw:commentRss>https://blogit.create.pt/fabiocarvalho/2017/02/16/sharepoint-export-all-solutions-wsp-using-powershell-script/feed/</wfw:commentRss>
			<slash:comments>11</slash:comments>
		
		
			</item>
	</channel>
</rss>
