<?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>SharePointed</title>
	<atom:link href="http://www.sharepointed.com/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.sharepointed.com</link>
	<description>All things SharePoint</description>
	<lastBuildDate>Wed, 16 May 2012 20:40:28 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=</generator>
		<item>
		<title>Great Silverlight Tutorial</title>
		<link>http://www.sharepointed.com/2012/05/16/great-silverlight-tutorial/</link>
		<comments>http://www.sharepointed.com/2012/05/16/great-silverlight-tutorial/#comments</comments>
		<pubDate>Wed, 16 May 2012 20:40:28 +0000</pubDate>
		<dc:creator>Ian Hayse</dc:creator>
				<category><![CDATA[Random]]></category>
		<category><![CDATA[Connection]]></category>
		<category><![CDATA[Silverlight]]></category>
		<category><![CDATA[SQL]]></category>

		<guid isPermaLink="false">http://www.sharepointed.com/?p=906</guid>
		<description><![CDATA[http://code.msdn.microsoft.com/silverlight/Getting-Started-WCF-RIA-1469cbe2/view/Reviews I was digging around for a simple tutorial on how to connect a Silverlight to a SQL database. The link above starts at square one, and works through some fun examples on displaying and updating SQL data.]]></description>
			<content:encoded><![CDATA[<p>http://code.msdn.microsoft.com/silverlight/Getting-Started-WCF-RIA-1469cbe2/view/Reviews</p>
<p>I was digging around for a simple tutorial on how to connect a Silverlight to a SQL database.  The link above starts at square one, and works through some fun examples on displaying and updating SQL data.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.sharepointed.com/2012/05/16/great-silverlight-tutorial/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Get The Size of a Document Library</title>
		<link>http://www.sharepointed.com/2012/05/10/get-the-size-of-a-document-library/</link>
		<comments>http://www.sharepointed.com/2012/05/10/get-the-size-of-a-document-library/#comments</comments>
		<pubDate>Thu, 10 May 2012 20:24:45 +0000</pubDate>
		<dc:creator>Ian Hayse</dc:creator>
				<category><![CDATA[Powershell]]></category>
		<category><![CDATA[SharePoint]]></category>
		<category><![CDATA[Library]]></category>
		<category><![CDATA[powershell]]></category>
		<category><![CDATA[sharepoint]]></category>
		<category><![CDATA[Size]]></category>

		<guid isPermaLink="false">http://www.sharepointed.com/?p=901</guid>
		<description><![CDATA[&#8220;How large is my Document Library&#8221; This was an odd one to crack. For reporting reasons, our team wanted to track the item count and size growth of a Document Library. Sound easy? Thanks you Jon for guiding this script.]]></description>
			<content:encoded><![CDATA[<p>&#8220;How large is my Document Library&#8221;</p>
<p>This was an odd one to crack.  For reporting reasons, our team wanted to track the item count and <strong>size </strong>growth of a Document Library.  Sound easy?</p>
<pre class="brush: plain; title: ; notranslate">
if(-not(Get-PSSnapin | where { $_.Name -eq &quot;Microsoft.SharePoint.PowerShell&quot;}))
{
      Add-PSSnapin Microsoft.SharePoint.PowerShell;
}

$SPsite = Get-SPsite &quot;http://www.sharepointed.com/sites/taco/&quot;

$dataTable = $SPsite.StorageManagementInformation(2,0x11,0,0)
foreach($x in $dataTable.Rows)
{
	if ($x.LeafName -eq &quot;MyTacoLibrary&quot; -and $x.Directory -eq &quot;sites/taco&quot;)
		{
			$LibSize = [Math]::Round(($x.Size/1GB),2)
			Write-Host $LibSize
		}
}
</pre>
<p><a href="http://www.jonthenerd.com/2011/08/16/sharepoint-2010-findinglargestdoclibrary/">Thanks you Jon for guiding this script.</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.sharepointed.com/2012/05/10/get-the-size-of-a-document-library/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Use PowerShell to Export a List of My Sites</title>
		<link>http://www.sharepointed.com/2012/05/01/use-powershell-to-export-a-list-of-my-sites/</link>
		<comments>http://www.sharepointed.com/2012/05/01/use-powershell-to-export-a-list-of-my-sites/#comments</comments>
		<pubDate>Tue, 01 May 2012 14:26:23 +0000</pubDate>
		<dc:creator>Ian Hayse</dc:creator>
				<category><![CDATA[Powershell]]></category>
		<category><![CDATA[SharePoint]]></category>
		<category><![CDATA[export]]></category>
		<category><![CDATA[list]]></category>
		<category><![CDATA[my sites]]></category>
		<category><![CDATA[mysite]]></category>
		<category><![CDATA[powershell]]></category>
		<category><![CDATA[sharepoint]]></category>

		<guid isPermaLink="false">http://www.sharepointed.com/?p=897</guid>
		<description><![CDATA[How many My Sites (MySites) are currently enabled in my Farm? load the powershell snapin. get the Web App hosting your My Sites. set a variable to where you want the script to output the results to. loop through all &#8230; <a href="http://www.sharepointed.com/2012/05/01/use-powershell-to-export-a-list-of-my-sites/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>How many My Sites (MySites) are currently enabled in my Farm?</p>
<pre class="brush: plain; title: ; notranslate">
if(-not(Get-PSSnapin | where { $_.Name -eq &quot;Microsoft.SharePoint.PowerShell&quot;}))
{
      Add-PSSnapin Microsoft.SharePoint.PowerShell;
}

$site = Get-SPsite &quot;http://mysite.sharepointed.com/&quot;
$spWebApp = $site.WebApplication

$log = &quot;c:\test.txt&quot;

foreach($site in $spWebApp.Sites)
{
    $site.url |	Out-File $log -Append
    $site.Dispose()
}
</pre>
<p>load the powershell snapin.<br />
get the Web App hosting your My Sites.<br />
set a variable to where you want the script to output the results to.<br />
loop through all the sites in the Web App, and output them to your text file.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.sharepointed.com/2012/05/01/use-powershell-to-export-a-list-of-my-sites/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>People search not working</title>
		<link>http://www.sharepointed.com/2012/03/26/people-search-not-working/</link>
		<comments>http://www.sharepointed.com/2012/03/26/people-search-not-working/#comments</comments>
		<pubDate>Mon, 26 Mar 2012 14:59:32 +0000</pubDate>
		<dc:creator>Ian Hayse</dc:creator>
				<category><![CDATA[SharePoint]]></category>
		<category><![CDATA[People Search]]></category>
		<category><![CDATA[Scope]]></category>
		<category><![CDATA[sharepoint]]></category>

		<guid isPermaLink="false">http://www.sharepointed.com/?p=885</guid>
		<description><![CDATA[The People scope in Central Administration was showing 0 ( zero ) items, but my Number of User Profiles in Manage Profile Services was showing plenty of profiles. First I looked at the scope to make sure it was correct. &#8230; <a href="http://www.sharepointed.com/2012/03/26/people-search-not-working/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>The People scope in Central Administration was showing 0 ( zero ) items, but my Number of User Profiles in Manage Profile Services was showing plenty of profiles.</p>
<p>First I looked at the scope to make sure it was correct.</p>
<p>Scope Rule Type: <strong>Property Query</strong></p>
<p>Property Query: <strong>urn:content-class:SPSPeople </strong></p>
<p>Behavior: <strong>Include</strong></p>
<p>Next, I looked at the User Profile Service (Central Admin &#8211;&gt; Manage Service Applications) or (http://<strong>yourCentalAdminURL</strong>/_admin/ServiceApplications.aspx).  I wanted to make sure the same account that was crawling all my data had access to this service.   Select the first User Profile Service item, then click on Administrators in the ribbon.  Your <strong>Default content access account</strong> should be listed here with <strong>Retrieve People Data for Search Crawls</strong> permissions.</p>
<p>If your <strong>Default content access account</strong> is not listed in the Administrators list, add the account and give it <strong>Retrieve People Data for Search Crawls</strong> permissions.</p>
<p>Where I can find my <strong>Default content access account</strong>?</p>
<p>Central Administration &#8211;&gt; Manage service applications (under Application Management) &#8211;&gt; click on Search Service Application.  There you should see your System Status web part, and listed will be <strong>Default content access account</strong>.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.sharepointed.com/2012/03/26/people-search-not-working/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>my sharepoint is slow</title>
		<link>http://www.sharepointed.com/2012/03/20/my-sharepoint-is-slow/</link>
		<comments>http://www.sharepointed.com/2012/03/20/my-sharepoint-is-slow/#comments</comments>
		<pubDate>Tue, 20 Mar 2012 13:19:09 +0000</pubDate>
		<dc:creator>Ian Hayse</dc:creator>
				<category><![CDATA[SharePoint]]></category>
		<category><![CDATA[sharepoint]]></category>
		<category><![CDATA[Slow]]></category>

		<guid isPermaLink="false">http://www.sharepointed.com/?p=881</guid>
		<description><![CDATA[Recently received an email from a user that basically said &#8220;my SharePoint is slow.&#8221; The user sent me a link to the Form Library they were working with.  I clicked on link and it took roughly two minutes for the page to open.  Long &#8230; <a href="http://www.sharepointed.com/2012/03/20/my-sharepoint-is-slow/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>Recently received an email from a user that basically said &#8220;my SharePoint is slow.&#8221;</p>
<p>The user sent me a link to the Form Library they were working with.  I clicked on link and it took roughly two minutes for the page to open.  Long story short, the user had changed to View to display 2,000 items at a time.</p>
<p>I updated the View to return 50 items, and now &#8220;my SharePoint is fast.&#8221;</p>
<p>&nbsp;</p>
]]></content:encoded>
			<wfw:commentRss>http://www.sharepointed.com/2012/03/20/my-sharepoint-is-slow/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
		<item>
		<title>CAML Query Returning all Records</title>
		<link>http://www.sharepointed.com/2012/03/15/caml-query-returning-all-records/</link>
		<comments>http://www.sharepointed.com/2012/03/15/caml-query-returning-all-records/#comments</comments>
		<pubDate>Thu, 15 Mar 2012 16:54:39 +0000</pubDate>
		<dc:creator>Ian Hayse</dc:creator>
				<category><![CDATA[Powershell]]></category>
		<category><![CDATA[SharePoint]]></category>
		<category><![CDATA[all records]]></category>
		<category><![CDATA[caml query]]></category>
		<category><![CDATA[powershell]]></category>
		<category><![CDATA[sharepoint]]></category>

		<guid isPermaLink="false">http://www.sharepointed.com/?p=879</guid>
		<description><![CDATA[I was trying to CAML query a document library, but my returned data set had all the items from the library. Bad query: Good query: Removing &#60;query&#62; and &#60;/query&#62; from the string fixed the CAML query.]]></description>
			<content:encoded><![CDATA[<p>I was trying to CAML query a document library, but my returned data set had all the items from the library.</p>
<p>Bad query:</p>
<pre class="brush: plain; title: ; notranslate">

$camlQuery = '&lt;Query&gt;&lt;Where&gt;&lt;Eq&gt;&lt;FieldRef Name=&quot;ID&quot; /&gt;&lt;Value Type=&quot;Text&quot;&gt;1624&lt;/Value&gt;&lt;/Eq&gt;&lt;/Where&gt;&lt;/Query&gt;'
</pre>
<p>Good query:</p>
<pre class="brush: plain; title: ; notranslate">

$camlQuery = '&lt;Where&gt;&lt;Eq&gt;&lt;FieldRef Name=&quot;ID&quot; /&gt;&lt;Value Type=&quot;Text&quot;&gt;1624&lt;/Value&gt;&lt;/Eq&gt;&lt;/Where&gt;'
</pre>
<p>Removing <strong>&lt;query&gt;</strong> and <strong>&lt;/query&gt; </strong>from the string fixed the CAML query.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.sharepointed.com/2012/03/15/caml-query-returning-all-records/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Microsoft Lync Appear Offline</title>
		<link>http://www.sharepointed.com/2012/03/14/microsoft-lync-appear-offline/</link>
		<comments>http://www.sharepointed.com/2012/03/14/microsoft-lync-appear-offline/#comments</comments>
		<pubDate>Wed, 14 Mar 2012 20:07:24 +0000</pubDate>
		<dc:creator>Ian Hayse</dc:creator>
				<category><![CDATA[Random]]></category>
		<category><![CDATA[Appear Offline]]></category>
		<category><![CDATA[Lync]]></category>

		<guid isPermaLink="false">http://www.sharepointed.com/?p=875</guid>
		<description><![CDATA[If Appear Offline is not enabled in your Lync app, here is how you can enable the option. Navigate to the following registry (regedit): \HKEY_LOCAL_MACHINE\SOFTWARE\Policies\Microsoft\Communicator Right-click on Communicator, add a DWORD called EnableAppearOffline (32bit) and give it a value of 1. Restart &#8230; <a href="http://www.sharepointed.com/2012/03/14/microsoft-lync-appear-offline/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>If Appear Offline is not enabled in your Lync app, here is how you can enable the option.</p>
<p>Navigate to the following registry (regedit):</p>
<p><strong>\HKEY_LOCAL_MACHINE\SOFTWARE\Policies\Microsoft\Communicator</strong></p>
<p><strong></strong>Right-click on Communicator, add a DWORD called <strong>EnableAppearOffline</strong> (32bit) and give it a value of <strong>1</strong>.</p>
<p>Restart Lync and the status should be there.</p>
<div id="attachment_876" class="wp-caption alignnone" style="width: 160px"><a href="http://www.sharepointed.com/wp-content/uploads/2012/03/MicroSoft-Lync-Appear-Offline.png"><img class="size-full wp-image-876" title="MicroSoft Lync Appear Offline" src="http://www.sharepointed.com/wp-content/uploads/2012/03/MicroSoft-Lync-Appear-Offline.png" alt="MicroSoft Lync Appear Offline" width="150" height="267" /></a><p class="wp-caption-text">MicroSoft Lync Appear Offline</p></div>
]]></content:encoded>
			<wfw:commentRss>http://www.sharepointed.com/2012/03/14/microsoft-lync-appear-offline/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>The Process cannot access the file because it is being used by another process</title>
		<link>http://www.sharepointed.com/2012/03/09/the-process-cannot-access-the-file-because-it-is-being-used-by-another-process/</link>
		<comments>http://www.sharepointed.com/2012/03/09/the-process-cannot-access-the-file-because-it-is-being-used-by-another-process/#comments</comments>
		<pubDate>Fri, 09 Mar 2012 20:31:17 +0000</pubDate>
		<dc:creator>Ian Hayse</dc:creator>
				<category><![CDATA[SharePoint]]></category>
		<category><![CDATA[Central Administration]]></category>
		<category><![CDATA[File being used]]></category>
		<category><![CDATA[Locked]]></category>
		<category><![CDATA[sharepoint]]></category>
		<category><![CDATA[Stopped]]></category>

		<guid isPermaLink="false">http://www.sharepointed.com/?p=872</guid>
		<description><![CDATA[Central Admin won&#8217;t load&#8230; After rebooting my farm I wasn&#8217;t able to access Central Administration. Went into IIS and noticed the site was stopped.  When I tried to start it, I was greeted with the following error: The Process cannot access &#8230; <a href="http://www.sharepointed.com/2012/03/09/the-process-cannot-access-the-file-because-it-is-being-used-by-another-process/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>Central Admin won&#8217;t load&#8230;</p>
<p>After rebooting my farm I wasn&#8217;t able to access Central Administration.</p>
<p>Went into IIS and noticed the site was stopped.  When I tried to start it, I was greeted with the following error: <strong>The Process cannot access the file because it is being used by another process.</strong></p>
<p>On the server hosting the site, get to a command prompt and type:  netstat -ano</p>
<p>scroll through the list and find the port that Central Admin is using.  After you find it, <strong>make note of the PID</strong> (right column).</p>
<p>Now, open task manager, click on the Processes tab.  From the View menu, click on Selected Column&#8230; Select PID (Process Identifier).</p>
<p>Sort the PID column in Task Manager, locate the PID that you made note of in the command window.  Kill the process.</p>
<p>Go back to IIS, start the Site (right click on the site, Manage Web Site, Start).</p>
<p>Browse to Central Admin!</p>
]]></content:encoded>
			<wfw:commentRss>http://www.sharepointed.com/2012/03/09/the-process-cannot-access-the-file-because-it-is-being-used-by-another-process/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Mass Create Word Documents Using PowerShell</title>
		<link>http://www.sharepointed.com/2012/03/06/mass-create-word-documents-using-powershell/</link>
		<comments>http://www.sharepointed.com/2012/03/06/mass-create-word-documents-using-powershell/#comments</comments>
		<pubDate>Tue, 06 Mar 2012 13:50:58 +0000</pubDate>
		<dc:creator>Ian Hayse</dc:creator>
				<category><![CDATA[Powershell]]></category>
		<category><![CDATA[SharePoint]]></category>
		<category><![CDATA[Create Word Documents]]></category>
		<category><![CDATA[Demo]]></category>
		<category><![CDATA[Mass]]></category>
		<category><![CDATA[powershell]]></category>
		<category><![CDATA[sharepoint]]></category>

		<guid isPermaLink="false">http://www.sharepointed.com/?p=861</guid>
		<description><![CDATA[I&#8217;m my other post,  I outlined how to create a bunch of folders in a Document Library.  In this post, I&#8217;ll explain how I then populated those folders with Word documents. To stage this, I created a Document Library called BaseLibrary. &#8230; <a href="http://www.sharepointed.com/2012/03/06/mass-create-word-documents-using-powershell/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>I&#8217;m my other <a title="post" href="http://www.sharepointed.com/2012/03/06/use-powershell-to-create-a-bunch-of-folders/">post</a>,  I outlined how to create a bunch of folders in a Document Library.  In this post, I&#8217;ll explain how I then populated those folders with Word documents.</p>
<p>To stage this, I created a Document Library called <strong>BaseLibrary</strong>.  In BaseLibrary I uploaded a single Word document.  After uploading the document, make note of the ID of the document in the Library.  <em>*To get the ID of the document, modify your default View, and add the ID column, click save.*</em></p>
<pre class="brush: plain; title: ; notranslate">

if(-not(Get-PSSnapin | where { $_.Name -eq &quot;Microsoft.SharePoint.PowerShell&quot;}))
{
      Add-PSSnapin Microsoft.SharePoint.PowerShell;
}

$site = Get-SPweb &quot;http://sharepointed.com/taco&quot;

$spListFrom = $site.lists[&quot;BaseLibrary&quot;]
$iFrom = $spListFrom.GetItemById(&quot;1&quot;)

$mList=$site.Lists[&quot;Shared Documents&quot;]

foreach($f in $mlist.Folders)
 {

$fName=$f.Name

$range = 1..500
 $count = $range.Count
 for($i=0; $i -lt $count; $i++)
 {
 $nName = &quot;$fName$i.docx&quot;
 $nURL = $site.Url+''+$f.Url+&quot;/&quot;+$nName
 $iFrom.CopyTo($nURL)
 }
 }

$site.dispose()
</pre>
<p>What I&#8217;m doing here is referencing the document with the ID of 1, from BaseLibrary.</p>
<p>Loop though all the folders in Shared Documents, in each folder, I&#8217;m doing a loop to copy the document into the folder, and create a new name for the document on each loop.</p>
<p><strong>$nName = &#8220;$fName$i.docx&#8221;</strong></p>
<p><strong>$fname</strong> is the name of the folder we are working with.</p>
<p><strong>$i</strong> is the count of the loop we are on.  Joining the two variables will create a unique file name.</p>
<p><strong>$range = 1..500</strong></p>
<p>To create more or less documents in each folder, adjust this range.  This example will create <strong>500</strong> documents in each folder.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.sharepointed.com/2012/03/06/mass-create-word-documents-using-powershell/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>use PowerShell to create a bunch of folders</title>
		<link>http://www.sharepointed.com/2012/03/06/use-powershell-to-create-a-bunch-of-folders/</link>
		<comments>http://www.sharepointed.com/2012/03/06/use-powershell-to-create-a-bunch-of-folders/#comments</comments>
		<pubDate>Tue, 06 Mar 2012 13:22:46 +0000</pubDate>
		<dc:creator>Ian Hayse</dc:creator>
				<category><![CDATA[Powershell]]></category>
		<category><![CDATA[SharePoint]]></category>
		<category><![CDATA[Create Folders]]></category>
		<category><![CDATA[powershell]]></category>
		<category><![CDATA[sharepoint]]></category>

		<guid isPermaLink="false">http://www.sharepointed.com/?p=857</guid>
		<description><![CDATA[I&#8217;m going to explain this idea in two posts.  This post will outline creating a bunch of folders in a Document Library.  After the folders are created, I will then demonstrate how to put a bunch of Word documents in the newly &#8230; <a href="http://www.sharepointed.com/2012/03/06/use-powershell-to-create-a-bunch-of-folders/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>I&#8217;m going to explain this idea in two posts.  This post will outline creating a bunch of folders in a Document Library.  After the folders are created, I will then demonstrate how to<a href="http://www.sharepointed.com/2012/03/06/mass-create-word-documents-using-powershell/"> put a bunch of Word documents in the newly created folders</a>.</p>
<p>Why?</p>
<p>I was needing a way to stress test / performance test updating documents in SharePoint.</p>
<pre class="brush: plain; title: ; notranslate">

if(-not(Get-PSSnapin | where { $_.Name -eq &quot;Microsoft.SharePoint.PowerShell&quot;}))
{
      Add-PSSnapin Microsoft.SharePoint.PowerShell;
}

$site = Get-SPweb &quot;http://sharepointed.com/taco/&quot;
$mList = $site.Lists[&quot;Shared Documents&quot;]

$range = 1..1000

$count = $range.Count
for($i=0; $i -lt $count; $i++)
 {
 $spFolder = $mList.AddItem(&quot;&quot;,[Microsoft.SharePoint.SPFileSystemObjectType]::Folder,$i)
 $spFolder.Update()
 }

$site.dispose()
</pre>
<p>$range can be adjusted to create less or more folders.  If you only wanted to create ten folders, change <strong>$range = 1..10</strong></p>
<p>I&#8217;m using the incremented value of <strong>$i</strong> to name the folders. You can setup a another naming convention for the foldering.</p>
<p>In the next post, I will populate the folders with a Word document.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.sharepointed.com/2012/03/06/use-powershell-to-create-a-bunch-of-folders/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

