<?xml version="1.0"?><?xml-stylesheet type="text/xsl" href="http://www.codeplex.com/rss.xsl"?><rss version="2.0"><channel><title>spbackup Forum Rss Feed</title><link>http://www.codeplex.com/spbackup/Thread/List.aspx</link><description>spbackup Forum Rss Description</description><item><title>New Post: Backup Script Error</title><link>http://spbackup.codeplex.com/Thread/View.aspx?ThreadId=74825</link><description>&lt;div style="line-height: normal;"&gt;&lt;p&gt;When I try to run the script I am getting this error:&lt;/p&gt;
&lt;p&gt;File d:\SPBackup\spbackup.ps1 cannot be loaded. A required certificate is not within its validity period when verifying&lt;br&gt;&amp;nbsp;against the current system clock or the timestamp in the signed file.&lt;br&gt;At line:1 char:20&lt;/p&gt;
&lt;p&gt;&amp;nbsp;&lt;/p&gt;
&lt;p&gt;I cannot figure out what certificate it is looking at or how to get the script to not error out.&amp;nbsp; I would greatly appreciate any help.&lt;/p&gt;
&lt;p&gt;&amp;nbsp;&lt;/p&gt;
&lt;p&gt;Thanks.&lt;/p&gt;
&lt;p&gt;&amp;nbsp;&lt;/p&gt;
&lt;p&gt;Darren&lt;/p&gt;&lt;/div&gt;</description><author>darrenw</author><pubDate>Wed, 11 Nov 2009 19:50:53 GMT</pubDate><guid isPermaLink="false">New Post: Backup Script Error 20091111075053P</guid></item><item><title>New Post: Sending report on errors</title><link>http://spbackup.codeplex.com/Thread/View.aspx?ThreadId=73106</link><description>&lt;div style="line-height: normal;"&gt;&lt;p&gt;Thanks a lot for this great script.&lt;/p&gt;
&lt;p&gt;Could you help to change it.&lt;/p&gt;
&lt;p&gt;I want to send to email information on errors or not completing steps of it.&lt;/p&gt;
&lt;p&gt;&amp;nbsp;&lt;/p&gt;
&lt;p&gt;Thank you for advance&lt;/p&gt;
&lt;p&gt;Mihail&lt;/p&gt;&lt;/div&gt;</description><author>stakanoff</author><pubDate>Mon, 26 Oct 2009 14:16:18 GMT</pubDate><guid isPermaLink="false">New Post: Sending report on errors 20091026021618P</guid></item><item><title>New Post: Restore Steps</title><link>http://spbackup.codeplex.com/Thread/View.aspx?ThreadId=38267</link><description>&lt;div style="line-height: normal;"&gt;&lt;p&gt;I know that this post is a year old, but can anyone provide some steps in restoring a site with these files? This tool is wonderful and works like a champ, but it is useless to me if i don't know how to perform a restore using the files that are being backed up. Someone please help me.&lt;/p&gt;
&lt;p&gt;&amp;nbsp;&lt;/p&gt;
&lt;p&gt;Thanks,&lt;/p&gt;
&lt;p&gt;msprad&lt;/p&gt;&lt;/div&gt;</description><author>msprad</author><pubDate>Wed, 21 Oct 2009 14:28:54 GMT</pubDate><guid isPermaLink="false">New Post: Restore Steps 20091021022854P</guid></item><item><title>New Post: Error given path's format is not supported</title><link>http://spbackup.codeplex.com/Thread/View.aspx?ThreadId=52927</link><description>&lt;div style="line-height: normal;"&gt;&lt;p&gt;Thanks so much pioumamala. That fix worked for me. Now that our orginization has this script&amp;nbsp;that works, how would i use these files for a restore? Does anyone know how to perform a restore? i noticed that there was another discussion for restores, but there wasn't ever anything posted. i will also add another post in that discussion. Hopefully someone will give us some direction on how to do that because even if you have a backup, if you dont know how to do a restore, it serves no purpose. Once again, thanks for your help&lt;/p&gt;
&lt;p&gt;&amp;nbsp;&lt;/p&gt;
&lt;p&gt;msprad&amp;nbsp;&lt;/p&gt;&lt;/div&gt;</description><author>msprad</author><pubDate>Wed, 21 Oct 2009 13:36:14 GMT</pubDate><guid isPermaLink="false">New Post: Error given path's format is not supported 20091021013614P</guid></item><item><title>New Post: Email report only on errors</title><link>http://spbackup.codeplex.com/Thread/View.aspx?ThreadId=72191</link><description>&lt;div style="line-height: normal;"&gt;&lt;p&gt;Thank you very much for your script.&lt;/p&gt;
&lt;p&gt;This is a great job.&lt;/p&gt;
&lt;p&gt;Could you please help to change script for sending email report only on errors&lt;/p&gt;
&lt;p&gt;Thank for advance.&lt;/p&gt;
&lt;p&gt;Mihail&lt;/p&gt;&lt;/div&gt;</description><author>stakanoff</author><pubDate>Fri, 16 Oct 2009 07:51:40 GMT</pubDate><guid isPermaLink="false">New Post: Email report only on errors 20091016075140A</guid></item><item><title>New Post: Error given path's format is not supported</title><link>http://spbackup.codeplex.com/Thread/View.aspx?ThreadId=52927</link><description>&lt;div style="line-height: normal;"&gt;&lt;p&gt;Hi !&lt;/p&gt;
&lt;p&gt;It's because of your port number in the site collection adress when using a site collection method.&lt;br&gt;The script gets the full adress of the site collection except the &amp;quot;http://&amp;quot; which is replaced by nothing.&lt;br&gt;And when you've got a port number different than 80, you must input it (eg : &lt;a href="http://intranet:81"&gt;http://intranet:81&lt;/a&gt;). And th escript try to name the backup file with the &amp;quot;:&amp;quot; character, which is forbidden by system. This is why the script fails.&lt;br&gt;To workaround this : open the ps1 script (v 1.2), find the line : &lt;strong&gt;&lt;em&gt;$backupfilename = $sitecollectionurl.replace(&amp;quot;http://&amp;quot;,&amp;quot;&amp;quot;)&lt;/em&gt;&lt;br&gt;&lt;/strong&gt;And just under, put this line : &lt;strong&gt;&lt;em&gt;$backupfilename = &lt;strong&gt;&lt;em&gt;$backupfilename&lt;/em&gt;&lt;/strong&gt;.replace(&amp;quot;:&amp;quot;,&amp;quot;&amp;quot;)&lt;/em&gt;&lt;/strong&gt;&lt;/p&gt;
&lt;p&gt;retry. All should be OK now.&lt;/p&gt;&lt;/div&gt;</description><author>pioumamala</author><pubDate>Tue, 13 Oct 2009 08:34:10 GMT</pubDate><guid isPermaLink="false">New Post: Error given path's format is not supported 20091013083410A</guid></item><item><title>New Post: invalid Backup name</title><link>http://spbackup.codeplex.com/Thread/View.aspx?ThreadId=51454</link><description>&lt;div style="line-height: normal;"&gt;&lt;div id="ctl00_ctl00_MasterContent_Content_PostRepeater_ctl08_BodyDiv"&gt;
&lt;p&gt;Hi Jesper,&lt;/p&gt;
&lt;/div&gt;
&lt;div id="ctl00_ctl00_MasterContent_Content_PostRepeater_ctl08_BodyDiv"&gt;I'm also wondering if you made any progress on the issue?&lt;/div&gt;
&lt;div&gt;&lt;/div&gt;
&lt;div&gt;J&lt;/div&gt;&lt;/div&gt;</description><author>jrock</author><pubDate>Thu, 17 Sep 2009 19:46:50 GMT</pubDate><guid isPermaLink="false">New Post: invalid Backup name 20090917074650P</guid></item><item><title>New Post: Receiving Errors on Null Values</title><link>http://spbackup.codeplex.com/Thread/View.aspx?ThreadId=64834</link><description>&lt;div style="line-height: normal;"&gt;
&lt;span style="font-size:11pt"&gt;Hi Patrick,&lt;br&gt;
&lt;br&gt;
You can send a screenshot to this mail :) -and I will have a look at it.&lt;br&gt;
&lt;br&gt;
You are running the SPBackup script directly on the SharePoint Server, right?&lt;br&gt;
&lt;br&gt;
Regards,&lt;br&gt;
Jesper&lt;br&gt;
&lt;br&gt;
&lt;br&gt;
Den 07/08/09 16.38 skrev &amp;quot;apc3usa&amp;quot; &amp;lt;&lt;a href="notifications@codeplex.com"&gt;notifications@codeplex.com&lt;/a&gt;&amp;gt; følgende:&lt;br&gt;
&lt;br&gt;
&lt;/span&gt;&lt;blockquote&gt;&lt;span style="font-size:11pt"&gt; &lt;/span&gt;&lt;span style="font-size:11pt"&gt; &lt;br&gt;
&lt;br&gt;
From: apc3usa&lt;br&gt;
 &lt;br&gt;
I am getting an error... &lt;br&gt;
&lt;br&gt;
you cannot call a method on a null-valued expression at c:\backup\spbackup.ps1:73 char:37 after starting hive backup message and after the iis metadata backup.  i am also having issues with email...  am i able to send you a screen shot?&lt;br&gt;
&lt;br&gt;
Thanks for the help.&lt;br&gt;
&lt;br&gt;
 &lt;br&gt;
&lt;br&gt;
-Patrick&lt;br&gt;
 &lt;br&gt;
 &lt;br&gt;
&lt;br&gt;
Read the full discussion online &amp;lt;&lt;a href="http://spbackup.codeplex.com/Thread/View.aspx?ThreadId=64834&amp;ANCHOR#Post220787"&gt;http://spbackup.codeplex.com/Thread/View.aspx?ThreadId=64834&amp;ANCHOR#Post220787&lt;/a&gt;&amp;gt; .&lt;br&gt;
 &lt;br&gt;
&lt;br&gt;
To add a post to this discussion, reply to this email (&lt;a href="spbackup@discussions.codeplex.com"&gt;spbackup@discussions.codeplex.com&lt;/a&gt; &amp;lt;&lt;a href="mailto:spbackup@discussions.codeplex.com?subject=[spbackup:64834]"&gt;mailto:spbackup@discussions.codeplex.com?subject=[spbackup:64834]&lt;/a&gt;&amp;gt; )&lt;br&gt;
 &lt;br&gt;
&lt;br&gt;
To start a new discussion for this project, email &lt;a href="spbackup@discussions.codeplex.com"&gt;spbackup@discussions.codeplex.com&lt;/a&gt;&lt;br&gt;
 &lt;br&gt;
&lt;br&gt;
You are receiving this email because you subscribed to this discussion on CodePlex. You can unsubscribe or change your settings &amp;lt;&lt;a href="http://www.codeplex.com/site/discussions/project/unsubscribe/spbackup"&gt;http://www.codeplex.com/site/discussions/project/unsubscribe/spbackup&lt;/a&gt;&amp;gt;  on codePlex.com.&lt;br&gt;
 &lt;br&gt;
&lt;br&gt;
Please note: Images and attachments will be removed from emails. Any posts to this discussion will also be available online at codeplex.com&lt;br&gt;
 &lt;br&gt;
  &lt;br&gt;
&lt;hr align=CENTER size=3 width="100%"&gt;&lt;/span&gt;
&lt;p align=CENTER&gt;
&lt;span style="font-size:11pt"&gt;Denne mail er blevet scannet af &lt;a href="http://www.comendo.dk"&gt;http://www.comendo.dk&lt;/a&gt; &amp;lt;&lt;a href="http://www.comendo.dk"&gt;http://www.comendo.dk&lt;/a&gt;&amp;gt;  og indeholder ikke virus!
&lt;/span&gt;
&lt;p&gt;
&lt;span style="font-size:11pt"&gt;&lt;hr align=CENTER size=3 width="100%"&gt;&lt;br&gt;
&lt;/span&gt;&lt;/blockquote&gt;
&lt;/div&gt;</description><author>JesperMChristense</author><pubDate>Sat, 08 Aug 2009 06:55:04 GMT</pubDate><guid isPermaLink="false">New Post: Receiving Errors on Null Values 20090808065504A</guid></item><item><title>New Post: Receiving Errors on Null Values</title><link>http://spbackup.codeplex.com/Thread/View.aspx?ThreadId=64834</link><description>&lt;div style="line-height: normal;"&gt;&lt;p&gt;I am getting an error...&amp;nbsp;&lt;/p&gt;
&lt;p&gt;you cannot call a method on a null-valued expression at c:\backup\spbackup.ps1:73 char:37 after starting hive backup message and after the iis metadata backup.&amp;nbsp; i am also having issues with email...&amp;nbsp; am i able to send you a screen shot?&lt;/p&gt;
&lt;p&gt;Thanks for the help.&lt;/p&gt;
&lt;p&gt;&amp;nbsp;&lt;/p&gt;
&lt;p&gt;-Patrick&lt;/p&gt;&lt;/div&gt;</description><author>apc3usa</author><pubDate>Fri, 07 Aug 2009 14:38:01 GMT</pubDate><guid isPermaLink="false">New Post: Receiving Errors on Null Values 20090807023801P</guid></item><item><title>New Post: invalid Backup name</title><link>http://spbackup.codeplex.com/Thread/View.aspx?ThreadId=51454</link><description>&lt;div style="line-height: normal;"&gt;&lt;p&gt;Hi Jesper,&lt;/p&gt;
&lt;p&gt;I just wanted to follow up as well and see if there was any progress on a fix for the issue above.&lt;/p&gt;
&lt;p&gt;Thanks.&lt;/p&gt;&lt;/div&gt;</description><author>whatupe</author><pubDate>Tue, 14 Jul 2009 20:11:04 GMT</pubDate><guid isPermaLink="false">New Post: invalid Backup name 20090714081104P</guid></item><item><title>New Post: Error given path's format is not supported</title><link>http://spbackup.codeplex.com/Thread/View.aspx?ThreadId=52927</link><description>&lt;div style="line-height: normal;"&gt;&lt;p&gt;Hi MSPrad,&lt;/p&gt;
&lt;p&gt;No it never worked for me and I gave up...&amp;nbsp;I expect atleaset a small&amp;nbsp;user guide with &amp;quot;how-to-use&amp;quot;...but&amp;nbsp;its never there...&amp;nbsp;I have had lot of issues with these codeplex tools ....anyway if u get any solution thenpls post it here..&lt;/p&gt;
&lt;p&gt;Good luck&lt;/p&gt;
&lt;p&gt;&amp;nbsp;&lt;/p&gt;
&lt;p&gt;&amp;nbsp;&lt;/p&gt;&lt;/div&gt;</description><author>sanban</author><pubDate>Tue, 19 May 2009 18:16:18 GMT</pubDate><guid isPermaLink="false">New Post: Error given path's format is not supported 20090519061618P</guid></item><item><title>New Post: Error given path's format is not supported</title><link>http://spbackup.codeplex.com/Thread/View.aspx?ThreadId=52927</link><description>&lt;div style="line-height: normal;"&gt;&lt;p&gt;i know that this is an old discussion, but i have the same issue and there was never a response. if anyone is out there and can give a respose, that would be wonderful. i am using the latest version that is posted. 1.2 Please help.&lt;/p&gt;&lt;/div&gt;</description><author>msprad</author><pubDate>Tue, 19 May 2009 13:39:30 GMT</pubDate><guid isPermaLink="false">New Post: Error given path's format is not supported 20090519013930P</guid></item><item><title>New Post: [string]$Configurationfile =</title><link>http://spbackup.codeplex.com/Thread/View.aspx?ThreadId=53614</link><description>&lt;div style="line-height: normal;"&gt;&lt;div class=Section1&gt;&lt;p class=MsoNormal&gt;&lt;span style="color:#1F497D"&gt;I got it working, thanks Kev.  Turns out I must run this on the SharePoint server, as it calls stsadm which I wasn’t aware of.  I was looking for a powershell remote backup solution where I could run this from anywhere and backup my site collection.&lt;/span&gt;&lt;/p&gt;&lt;p class=MsoNormal&gt;&lt;span style="color:#1F497D"&gt; &lt;/span&gt;&lt;/p&gt;&lt;p class=MsoNormal&gt;&lt;span style="color:#1F497D"&gt;Does anyone know whether a powershell solution that might use WebDAV or other protocol to provide this solution?&lt;/span&gt;&lt;/p&gt;&lt;p class=MsoNormal&gt;&lt;span style="color:#1F497D"&gt; &lt;/span&gt;&lt;/p&gt;&lt;div&gt;&lt;div style="border:none;border-top:solid #B5C4DF 1.0pt;padding:3.0pt 0in 0in 0in"&gt;&lt;p class=MsoNormal&gt;&lt;b&gt;&lt;span style="font-size:10.0pt;font-family:'Tahoma','sans-serif'"&gt;From:&lt;/span&gt;&lt;/b&gt;&lt;span style="font-size:10.0pt;font-family:'Tahoma','sans-serif'"&gt; Ryan Phillips &lt;br&gt;&lt;b&gt;Sent:&lt;/b&gt; Tuesday, April 28, 2009 11:18 AM&lt;br&gt;&lt;b&gt;To:&lt;/b&gt; 'spbackup@discussions.codeplex.com'&lt;br&gt;&lt;b&gt;Subject:&lt;/b&gt; [spbackup:53614]&lt;/span&gt;&lt;/p&gt;&lt;/div&gt;&lt;/div&gt;&lt;p class=MsoNormal&gt; &lt;/p&gt;&lt;p class=MsoNormal&gt;Hi Kev, thanks for the information.  I am receiving the following error after configuring the XML file and wondering whether I need to edit the .ps1 file, based on the error below:&lt;/p&gt;&lt;p class=MsoNormal&gt; &lt;/p&gt;&lt;p class=MsoNormal&gt;PS C:\Windows\system32&amp;gt; C:\Users\ryanph.REDMOND\Documents\Software\SharePoint\spbackup1.2\spbackup.ps1 need parameter Configurationfile (e.g. &amp;quot;c:\SPBackup\SPBackup.xml&amp;quot;)&lt;/p&gt;&lt;p class=MsoNormal&gt;At C:\Users\ryanph.REDMOND\Documents\Software\SharePoint\spbackup1.2\spbackup.ps1:16 char:41&lt;/p&gt;&lt;p class=MsoNormal&gt; &lt;/p&gt;&lt;p class=MsoNormal&gt;&lt;b&gt;&lt;span style="font-size:7.5pt;color:gray"&gt;…&lt;i&gt;kind regards,&lt;/i&gt;&lt;/span&gt;&lt;/b&gt;&lt;span style="font-size:10.0pt"&gt;&lt;/span&gt;&lt;/p&gt;&lt;p class=MsoNormal&gt;&lt;b&gt;&lt;span style="font-size:7.5pt;color:gray"&gt;______________________________&lt;/span&gt;&lt;/b&gt;&lt;span style="font-size:10.0pt"&gt;&lt;/span&gt;&lt;/p&gt;&lt;p class=MsoNormal&gt;&lt;b&gt;&lt;span style="font-size:7.5pt;color:#984806"&gt;Ryan J. Phillips&lt;/span&gt;&lt;/b&gt;&lt;b&gt;&lt;span style="font-size:7.5pt;color:#333333"&gt; &lt;/span&gt;&lt;/b&gt;&lt;b&gt;&lt;span style="font-size:7.5pt;color:#984806"&gt;::&lt;/span&gt;&lt;/b&gt;&lt;b&gt;&lt;span style="font-size:7.5pt;color:#1F497D"&gt; &lt;/span&gt;&lt;/b&gt;&lt;b&gt;&lt;span style="font-size:7.5pt;color:#984806"&gt;BPOS Migration Manager&lt;/span&gt;&lt;/b&gt;&lt;b&gt;&lt;span style="font-size:7.5pt;color:gray"&gt;  &lt;/span&gt;&lt;/b&gt;&lt;span style="font-size:10.0pt"&gt;&lt;/span&gt;&lt;/p&gt;&lt;p class=MsoNormal&gt;&lt;span style="font-size:7.5pt;color:gray"&gt;Microsoft Business Online Service Delivery (&lt;/span&gt;&lt;span style="font-size:7.5pt;color:#984806"&gt;BOSD&lt;/span&gt;&lt;span style="font-size:7.5pt;color:gray"&gt;)&lt;/span&gt;&lt;span style="font-size:10.0pt"&gt;&lt;/span&gt;&lt;/p&gt;&lt;p class=MsoNormal&gt;&lt;span style="font-size:7.5pt;font-family:Wingdings;color:#984806"&gt;(&lt;/span&gt;&lt;span style="font-size:7.5pt;color:#333333"&gt; &lt;/span&gt;&lt;span style="font-size:7.5pt;color:gray"&gt;425-538-1286 &lt;/span&gt;&lt;span style="font-size:7.5pt;color:#1F497D"&gt; &lt;/span&gt;&lt;span style="font-size:7.5pt;font-family:Webdings;color:#984806"&gt;F&lt;/span&gt;&lt;span style="font-size:7.5pt;color:gray"&gt; Redmond, WA&lt;/span&gt;&lt;span style="font-size:10.0pt"&gt;&lt;/span&gt;&lt;/p&gt;&lt;p class=MsoNormal&gt; &lt;/p&gt;&lt;/div&gt;&lt;/div&gt;</description><author>ryanph</author><pubDate>Tue, 28 Apr 2009 18:31:53 GMT</pubDate><guid isPermaLink="false">New Post: [string]$Configurationfile = 20090428063153P</guid></item><item><title>New Post: [string]$Configurationfile =</title><link>http://spbackup.codeplex.com/Thread/View.aspx?ThreadId=53614</link><description>&lt;div style="line-height: normal;"&gt;&lt;div class=Section1&gt;&lt;p class=MsoNormal&gt;Hi Kev, thanks for the information.  I am receiving the following error after configuring the XML file and wondering whether I need to edit the .ps1 file, based on the error below:&lt;/p&gt;&lt;p class=MsoNormal&gt; &lt;/p&gt;&lt;p class=MsoNormal&gt;PS C:\Windows\system32&amp;gt; C:\Users\ryanph.REDMOND\Documents\Software\SharePoint\spbackup1.2\spbackup.ps1 need parameter Configurationfile (e.g. &amp;quot;c:\SPBackup\SPBackup.xml&amp;quot;)&lt;/p&gt;&lt;p class=MsoNormal&gt;At C:\Users\ryanph.REDMOND\Documents\Software\SharePoint\spbackup1.2\spbackup.ps1:16 char:41&lt;/p&gt;&lt;p class=MsoNormal&gt; &lt;/p&gt;&lt;p class=MsoNormal&gt;&lt;b&gt;&lt;span style="font-size:7.5pt;color:gray"&gt;…&lt;i&gt;kind regards,&lt;/i&gt;&lt;/span&gt;&lt;/b&gt;&lt;span style="font-size:10.0pt"&gt;&lt;/span&gt;&lt;/p&gt;&lt;p class=MsoNormal&gt;&lt;b&gt;&lt;span style="font-size:7.5pt;color:gray"&gt;______________________________&lt;/span&gt;&lt;/b&gt;&lt;span style="font-size:10.0pt"&gt;&lt;/span&gt;&lt;/p&gt;&lt;p class=MsoNormal&gt;&lt;b&gt;&lt;span style="font-size:7.5pt;color:#984806"&gt;Ryan J. Phillips&lt;/span&gt;&lt;/b&gt;&lt;b&gt;&lt;span style="font-size:7.5pt;color:#333333"&gt; &lt;/span&gt;&lt;/b&gt;&lt;b&gt;&lt;span style="font-size:7.5pt;color:#984806"&gt;::&lt;/span&gt;&lt;/b&gt;&lt;b&gt;&lt;span style="font-size:7.5pt;color:#1F497D"&gt; &lt;/span&gt;&lt;/b&gt;&lt;b&gt;&lt;span style="font-size:7.5pt;color:#984806"&gt;BPOS Migration Manager&lt;/span&gt;&lt;/b&gt;&lt;b&gt;&lt;span style="font-size:7.5pt;color:gray"&gt;  &lt;/span&gt;&lt;/b&gt;&lt;span style="font-size:10.0pt"&gt;&lt;/span&gt;&lt;/p&gt;&lt;p class=MsoNormal&gt;&lt;span style="font-size:7.5pt;color:gray"&gt;Microsoft Business Online Service Delivery (&lt;/span&gt;&lt;span style="font-size:7.5pt;color:#984806"&gt;BOSD&lt;/span&gt;&lt;span style="font-size:7.5pt;color:gray"&gt;)&lt;/span&gt;&lt;span style="font-size:10.0pt"&gt;&lt;/span&gt;&lt;/p&gt;&lt;p class=MsoNormal&gt;&lt;span style="font-size:7.5pt;font-family:Wingdings;color:#984806"&gt;(&lt;/span&gt;&lt;span style="font-size:7.5pt;color:#333333"&gt; &lt;/span&gt;&lt;span style="font-size:7.5pt;color:gray"&gt;425-538-1286 &lt;/span&gt;&lt;span style="font-size:7.5pt;color:#1F497D"&gt; &lt;/span&gt;&lt;span style="font-size:7.5pt;font-family:Webdings;color:#984806"&gt;F&lt;/span&gt;&lt;span style="font-size:7.5pt;color:gray"&gt; Redmond, WA&lt;/span&gt;&lt;span style="font-size:10.0pt"&gt;&lt;/span&gt;&lt;/p&gt;&lt;p class=MsoNormal&gt; &lt;/p&gt;&lt;/div&gt;&lt;/div&gt;</description><author>ryanph</author><pubDate>Tue, 28 Apr 2009 18:18:13 GMT</pubDate><guid isPermaLink="false">New Post: [string]$Configurationfile = 20090428061813P</guid></item><item><title>New Post: Restore Steps</title><link>http://spbackup.codeplex.com/Thread/View.aspx?ThreadId=38267</link><description>&lt;div style="line-height: normal;"&gt;I know that this is outside of the scope of the script, but I do think it would be useful to follow through to the end and explain how we recover the files that are backed up with this script.&lt;br&gt;
&lt;br&gt;
I am planning to invoke a BCDR scenario where I recover to an alternative front-end web server and an alternative back-end database.
&lt;/div&gt;</description><author>kev147</author><pubDate>Tue, 28 Apr 2009 12:38:01 GMT</pubDate><guid isPermaLink="false">New Post: Restore Steps 20090428123801P</guid></item><item><title>New Post: [string]$Configurationfile =</title><link>http://spbackup.codeplex.com/Thread/View.aspx?ThreadId=53614</link><description>&lt;div style="line-height: normal;"&gt;Hi Ryan,&lt;br&gt;
&lt;br&gt;
You don't need to modify the ps1 script at all, all amendments of this kind should be made within the xml file.&lt;br&gt;
&lt;br&gt;
To tell the powershell script to read from the xml script, execute the following command line.&lt;br&gt;
&lt;br&gt;
(Place files within C:\SPBackup)&lt;br&gt;
&lt;br&gt;
C:\SPBackup\SPBackup.ps1 C:\SPBackup\SPBackup.xml
&lt;/div&gt;</description><author>kev147</author><pubDate>Tue, 28 Apr 2009 12:35:43 GMT</pubDate><guid isPermaLink="false">New Post: [string]$Configurationfile = 20090428123543P</guid></item><item><title>New Post: Additions to the script</title><link>http://spbackup.codeplex.com/Thread/View.aspx?ThreadId=48260</link><description>&lt;div style="line-height: normal;"&gt;Jesper, are these additions planned to be included in the next version?
&lt;/div&gt;</description><author>kev147</author><pubDate>Tue, 28 Apr 2009 12:32:43 GMT</pubDate><guid isPermaLink="false">New Post: Additions to the script 20090428123243P</guid></item><item><title>New Post: invalid Backup name</title><link>http://spbackup.codeplex.com/Thread/View.aspx?ThreadId=51454</link><description>&lt;div style="line-height: normal;"&gt;Hi Jesper,&lt;br&gt;
&lt;br&gt;
You mentioned an updated release that was expected to resolve this issue.&lt;br&gt;
&lt;br&gt;
I am a bit of a newbie, but I am willing to assist where possible, it would be great to get this part of the script working. I am investigating using this script as our Sharepoint backup tool and will then be invoking a BCDR test to see how we can use the files in a recovery scenario onto a different front-end web server and a different back-end SQL server.&lt;br&gt;
&lt;br&gt;
I am hoping that this is a supported scenario for this script.
&lt;/div&gt;</description><author>kev147</author><pubDate>Tue, 28 Apr 2009 12:23:24 GMT</pubDate><guid isPermaLink="false">New Post: invalid Backup name 20090428122324P</guid></item><item><title>New Post: [string]$Configurationfile =</title><link>http://spbackup.codeplex.com/Thread/View.aspx?ThreadId=53614</link><description>&lt;div style="line-height: normal;"&gt;Hi all, trying to work through the script and not sure how to populate this section of the .ps1 file?  I have tried the following and the script errors out?&lt;br&gt;
&lt;br&gt;
&lt;span style="font-family:courier new;font-size:13px"&gt;&lt;span style="font-family:courier new;font-size:13px"&gt;
&lt;p&gt;[&lt;/p&gt;
&lt;/span&gt;
&lt;p&gt;&amp;nbsp;&lt;/p&gt;
&lt;/span&gt;
&lt;p&gt;&lt;span style="font-family:courier new;color:#008080;font-size:13px"&gt;string&lt;/span&gt;&lt;span style="font-family:courier new;font-size:13px"&gt;]&lt;/span&gt;&lt;span style="font-family:courier new;color:#800080;font-size:13px"&gt;$Configurationfile&lt;/span&gt;&lt;span style="font-family:courier new;font-size:13px"&gt; &lt;/span&gt;&lt;span style="font-family:courier new;color:#ff0000;font-size:13px"&gt;=&lt;/span&gt;&lt;span style="font-family:courier new;font-size:13px"&gt; &lt;/span&gt;&lt;span style="font-family:courier new;color:#800000;font-size:13px"&gt;&amp;quot;C:\Users\ryanph\Documents\Software\SharePoint Backup\spbackup1.2\SPBackup.xml&amp;quot;&lt;/span&gt;&lt;span style="font-family:courier new;font-size:13px"&gt; $(&lt;/span&gt;&lt;span style="font-family:courier new;color:#0000ff;font-size:13px"&gt;throw&lt;/span&gt;&lt;span style="font-family:courier new;font-size:13px"&gt; &lt;/span&gt;&lt;span style="font-family:courier new;color:#800000;font-size:13px"&gt;&amp;quot;need parameter Configurationfile (e.g. &amp;quot;&amp;quot;c:\SpBack\SPBackup.xml&amp;quot;&amp;quot;)&amp;quot;&lt;/span&gt;&lt;span style="font-family:courier new;font-size:13px"&gt;) &lt;br&gt;
&lt;br&gt;
Is there a particular way I should enter this?  Possibly use a share UNC path instead of the full path?&lt;br&gt;
&lt;br&gt;
Thanks&lt;br&gt;
...Ryan
&lt;p&gt;&amp;nbsp;&lt;/p&gt;
&lt;/span&gt;&lt;/p&gt;
&lt;/div&gt;</description><author>ryanph</author><pubDate>Fri, 17 Apr 2009 05:26:31 GMT</pubDate><guid isPermaLink="false">New Post: [string]$Configurationfile = 20090417052631A</guid></item><item><title>New Post: Error given path's format is not supported</title><link>http://spbackup.codeplex.com/Thread/View.aspx?ThreadId=52927</link><description>&lt;div style="line-height: normal;"&gt;Hi,&lt;br&gt;
&lt;br&gt;
I have created a spbackup.xml as follows:&lt;br&gt;
&lt;br&gt;
&amp;lt;?xml version=&amp;quot;1.0&amp;quot; ?&amp;gt;&lt;br&gt;
&amp;lt;confSPBackup&amp;gt;&lt;br&gt;
   &amp;lt;site id=&amp;quot;1&amp;quot;&amp;gt;&lt;br&gt;
 &amp;lt;catastrophicbackup&amp;gt;0&amp;lt;/catastrophicbackup&amp;gt;&lt;br&gt;
 &amp;lt;catastrophicmethod&amp;gt;full&amp;lt;/catastrophicmethod&amp;gt;&lt;br&gt;
 &amp;lt;sitecollectionbackup&amp;gt;1&amp;lt;/sitecollectionbackup&amp;gt;&lt;br&gt;
 &amp;lt;sitecollectionurl&amp;gt;http://my-moss-server:13970&amp;lt;/sitecollectionurl&amp;gt;&lt;br&gt;
 &amp;lt;hivebackup&amp;gt;1&amp;lt;/hivebackup&amp;gt;&lt;br&gt;
 &amp;lt;hive&amp;gt;C:\Program Files\Common Files\Microsoft Shared\web server extensions\12&amp;lt;/hive&amp;gt;&lt;br&gt;
 &amp;lt;iisbackup&amp;gt;1&amp;lt;/iisbackup&amp;gt;&lt;br&gt;
 &amp;lt;iisencryptopassword&amp;gt;13970&amp;lt;/iisencryptopassword&amp;gt;  &lt;br&gt;
 &amp;lt;smtpserver&amp;gt;&amp;lt;/smtpserver&amp;gt;&lt;br&gt;
 &amp;lt;fromemail&amp;gt;&amp;lt;/fromemail&amp;gt;&lt;br&gt;
 &amp;lt;toemail&amp;gt;&amp;lt;/toemail&amp;gt;&lt;br&gt;
 &amp;lt;backupdestination&amp;gt;\\my-moss-server\spbackup-sitecollection&amp;lt;/backupdestination&amp;gt;&lt;br&gt;
 &amp;lt;backupdestinationmaxkeepdays&amp;gt;14&amp;lt;/backupdestinationmaxkeepdays&amp;gt;&lt;br&gt;
   &amp;lt;/site&amp;gt;&lt;br&gt;
&amp;lt;/confSPBackup&amp;gt;&lt;br&gt;
===================================================&lt;br&gt;
I'm getting following error when I run the spbackup.ps1 script&lt;br&gt;
&lt;br&gt;
&lt;br&gt;
&lt;p&gt;Test-Path : The given path's format is not supported.&lt;br&gt;
At C:\Tools\spbackup1.2\spbackup.ps1:67 char:21&lt;br&gt;
+  if (-not (test-path  &amp;lt;&amp;lt;&amp;lt;&amp;lt; $path))&lt;br&gt;
Set-Content : The given path's format is not supported.&lt;br&gt;
At C:\Tools\spbackup1.2\spbackup.ps1:69 char:14&lt;br&gt;
+   set-content  &amp;lt;&amp;lt;&amp;lt;&amp;lt; $path (&amp;quot;PK&amp;quot; + [char]5 + [char]6 + (&amp;quot;$([char]0)&amp;quot; * 18))&lt;br&gt;
Set-Content : The given path's format is not supported.&lt;br&gt;
At C:\Tools\spbackup1.2\spbackup.ps1:69 char:14&lt;br&gt;
+   set-content  &amp;lt;&amp;lt;&amp;lt;&amp;lt; $path (&amp;quot;PK&amp;quot; + [char]5 + [char]6 + (&amp;quot;$([char]0)&amp;quot; * 18))&lt;br&gt;
Set-Content : The given path's format is not supported.&lt;br&gt;
At C:\Tools\spbackup1.2\spbackup.ps1:69 char:14&lt;br&gt;
+   set-content  &amp;lt;&amp;lt;&amp;lt;&amp;lt; $path (&amp;quot;PK&amp;quot; + [char]5 + [char]6 + (&amp;quot;$([char]0)&amp;quot; * 18))&lt;br&gt;
You cannot call a method on a null-valued expression.&lt;br&gt;
At C:\Tools\spbackup1.2\spbackup.ps1:73 char:37&lt;br&gt;
+  $files | foreach {$zipfile.CopyHere( &amp;lt;&amp;lt;&amp;lt;&amp;lt; $_.fullname) }&lt;br&gt;
Access to the path '\\my-moss-server\spbackup-sitecollection\log.txt' is denied.&lt;br&gt;
At C:\Tools\spbackup1.2\spbackup.ps1:161 char:120&lt;br&gt;
+     [DateTime]::Now.ToString() +  &amp;quot;: Hive backup Done! File name is $backupdestination\$backupfilename-12hive$guid.zi&lt;br&gt;
p&amp;quot; &amp;gt;&amp;gt;  &amp;lt;&amp;lt;&amp;lt;&amp;lt; &amp;quot;$backupdestination\log.txt&amp;quot;&lt;/p&gt;
&lt;p&gt;Invalid backup name.&lt;br&gt;
Test-Path : The given path's format is not supported.&lt;br&gt;
At C:\Tools\spbackup1.2\spbackup.ps1:67 char:21&lt;br&gt;
+  if (-not (test-path  &amp;lt;&amp;lt;&amp;lt;&amp;lt; $path))&lt;br&gt;
Set-Content : The given path's format is not supported.&lt;br&gt;
At C:\Tools\spbackup1.2\spbackup.ps1:69 char:14&lt;br&gt;
+   set-content  &amp;lt;&amp;lt;&amp;lt;&amp;lt; $path (&amp;quot;PK&amp;quot; + [char]5 + [char]6 + (&amp;quot;$([char]0)&amp;quot; * 18))&lt;br&gt;
Set-Content : The given path's format is not supported.&lt;br&gt;
At C:\Tools\spbackup1.2\spbackup.ps1:69 char:14&lt;br&gt;
+   set-content  &amp;lt;&amp;lt;&amp;lt;&amp;lt; $path (&amp;quot;PK&amp;quot; + [char]5 + [char]6 + (&amp;quot;$([char]0)&amp;quot; * 18))&lt;br&gt;
Set-Content : The given path's format is not supported.&lt;br&gt;
At C:\Tools\spbackup1.2\spbackup.ps1:69 char:14&lt;br&gt;
+   set-content  &amp;lt;&amp;lt;&amp;lt;&amp;lt; $path (&amp;quot;PK&amp;quot; + [char]5 + [char]6 + (&amp;quot;$([char]0)&amp;quot; * 18))&lt;br&gt;
Access to the path '\\my-moss-server\spbackup-sitecollection\log.txt' is denied.&lt;br&gt;
At C:\Tools\spbackup1.2\spbackup.ps1:206 char:133&lt;br&gt;
+     [DateTime]::Now.ToString() +  &amp;quot;: IIS Metadata backup Done! File name is $backupdestination\$backupfilename-IISMet&lt;br&gt;
adata$guid.zip&amp;quot; &amp;gt;&amp;gt;  &amp;lt;&amp;lt;&amp;lt;&amp;lt; &amp;quot;$backupdestination\log.txt&amp;quot;&lt;br&gt;
&lt;br&gt;
&lt;br&gt;
whats the problem here?&lt;br&gt;
&lt;br&gt;
Thanks,&lt;br&gt;
San&lt;/p&gt;
&lt;/div&gt;</description><author>sanban</author><pubDate>Fri, 10 Apr 2009 18:57:56 GMT</pubDate><guid isPermaLink="false">New Post: Error given path's format is not supported 20090410065756P</guid></item></channel></rss>