<?xml version="1.0" encoding="UTF-8"?><rss
version="2.0"
xmlns:content="http://purl.org/rss/1.0/modules/content/"
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/"
> <channel><title>Comments on: Logon Script: Move Local PST Files To Network Share</title> <atom:link href="http://halfloaded.com/blog/logon-script-move-local-pst-files-to-network-share/feed/" rel="self" type="application/rss+xml" /><link>http://halfloaded.com/blog/logon-script-move-local-pst-files-to-network-share/</link> <description>Smash forehead on keyboard to continue...</description> <lastBuildDate>Wed, 18 Jan 2012 03:07:46 +0000</lastBuildDate> <sy:updatePeriod>hourly</sy:updatePeriod> <sy:updateFrequency>1</sy:updateFrequency> <generator>http://wordpress.org/?v=3.3.1</generator> <item><title>By: Kevin</title><link>http://halfloaded.com/blog/logon-script-move-local-pst-files-to-network-share/comment-page-1/#comment-1505</link> <dc:creator>Kevin</dc:creator> <pubDate>Thu, 05 Jan 2012 14:54:57 +0000</pubDate> <guid
isPermaLink="false">http://halfloaded.com/?p=322#comment-1505</guid> <description>Hi Andrew
Just discovered this script looks perfect for what I am foing. I get an error about the remote path not being writable. I see the section of code referencing this but the users home directory is writabke in that i can move files manually. Is there a change I have to make to or file I have to create on the remote path in order to get this working?</description> <content:encoded><![CDATA[<p>Hi Andrew</p><p>Just discovered this script looks perfect for what I am foing. I get an error about the remote path not being writable. I see the section of code referencing this but the users home directory is writabke in that i can move files manually. Is there a change I have to make to or file I have to create on the remote path in order to get this working?</p> ]]></content:encoded> </item> <item><title>By: Daniel</title><link>http://halfloaded.com/blog/logon-script-move-local-pst-files-to-network-share/comment-page-1/#comment-1501</link> <dc:creator>Daniel</dc:creator> <pubDate>Fri, 25 Nov 2011 09:39:28 +0000</pubDate> <guid
isPermaLink="false">http://halfloaded.com/?p=322#comment-1501</guid> <description>Bug in
strNetworkPath = &quot;\\solaris\admin\&quot; &amp; user &amp; &quot;\&quot;
Why?</description> <content:encoded><![CDATA[<p>Bug in</p><p>strNetworkPath = &#8220;\\solaris\admin\&#8221; &amp; user &amp; &#8220;\&#8221;</p><p>Why?</p> ]]></content:encoded> </item> <item><title>By: Phil H</title><link>http://halfloaded.com/blog/logon-script-move-local-pst-files-to-network-share/comment-page-1/#comment-1497</link> <dc:creator>Phil H</dc:creator> <pubDate>Fri, 11 Nov 2011 06:56:33 +0000</pubDate> <guid
isPermaLink="false">http://halfloaded.com/?p=322#comment-1497</guid> <description>FWIW - attaching to PSTs on a network is not supported. See http://support.microsoft.com/kb/297019/en-us and http://blogs.technet.com/b/askperf/archive/2007/01/21/network-stored-pst-files-don-t-do-it.aspx</description> <content:encoded><![CDATA[<p>FWIW &#8211; attaching to PSTs on a network is not supported. See <a
href="http://support.microsoft.com/kb/297019/en-us" rel="nofollow">http://support.microsoft.com/kb/297019/en-us</a> and <a
href="http://blogs.technet.com/b/askperf/archive/2007/01/21/network-stored-pst-files-don-t-do-it.aspx" rel="nofollow">http://blogs.technet.com/b/askperf/archive/2007/01/21/network-stored-pst-files-don-t-do-it.aspx</a></p> ]]></content:encoded> </item> <item><title>By: DrNO</title><link>http://halfloaded.com/blog/logon-script-move-local-pst-files-to-network-share/comment-page-1/#comment-1496</link> <dc:creator>DrNO</dc:creator> <pubDate>Fri, 28 Oct 2011 14:20:08 +0000</pubDate> <guid
isPermaLink="false">http://halfloaded.com/?p=322#comment-1496</guid> <description>http://stackoverflow.com/questions/6414189/move-pst-files-to-server-via-vb
Read answer :
&#039; Enumerate PST filesand build arrays
objTextFile.Write(&quot;Enumerating PST files&quot; &amp; vbCrLf)
For Each objFolder in objNS.Folders
If GetPSTPath(objFolder.StoreID)  &quot;&quot; Then
count = count + 1
pstFiles = GetPSTPath(objFolder.StoreID)
pstName = objFolder.Name
pstFolder = objFolder
objTextFile.Write(count &amp; &quot;  &quot; &amp; pstFiles &amp; vbCrLf)
ReDim Preserve arrNames(count)
arrNames(count) = pstName
ReDim Preserve arrPaths(count)
arrPaths(count) = pstFiles
&#039;objOutlook.Session.RemoveStore objFolder
End If
Next
For Each pstName in arrNames
set objFolder = objNS.Folders.Item(pstName)
objNS.RemoveStore objFolder
Next
set objFolder = Nothing</description> <content:encoded><![CDATA[<p><a
href="http://stackoverflow.com/questions/6414189/move-pst-files-to-server-via-vb" rel="nofollow">http://stackoverflow.com/questions/6414189/move-pst-files-to-server-via-vb</a></p><p>Read answer :</p><p>&#8216; Enumerate PST filesand build arrays<br
/> objTextFile.Write(&#8220;Enumerating PST files&#8221; &amp; vbCrLf)<br
/> For Each objFolder in objNS.Folders<br
/> If GetPSTPath(objFolder.StoreID)  &#8220;&#8221; Then<br
/> count = count + 1<br
/> pstFiles = GetPSTPath(objFolder.StoreID)<br
/> pstName = objFolder.Name<br
/> pstFolder = objFolder<br
/> objTextFile.Write(count &amp; &#8221;  &#8221; &amp; pstFiles &amp; vbCrLf)<br
/> ReDim Preserve arrNames(count)<br
/> arrNames(count) = pstName<br
/> ReDim Preserve arrPaths(count)<br
/> arrPaths(count) = pstFiles<br
/> &#8216;objOutlook.Session.RemoveStore objFolder<br
/> End If<br
/> Next</p><p>For Each pstName in arrNames<br
/> set objFolder = objNS.Folders.Item(pstName)<br
/> objNS.RemoveStore objFolder<br
/> Next<br
/> set objFolder = Nothing</p> ]]></content:encoded> </item> <item><title>By: Ryan D</title><link>http://halfloaded.com/blog/logon-script-move-local-pst-files-to-network-share/comment-page-1/#comment-1494</link> <dc:creator>Ryan D</dc:creator> <pubDate>Mon, 17 Oct 2011 17:30:11 +0000</pubDate> <guid
isPermaLink="false">http://halfloaded.com/?p=322#comment-1494</guid> <description>Did Sebcou ever send out his updated script? Having the same problem where it will only move one PST per script run. Also anybody else have a solution for archive files that have the same file name?</description> <content:encoded><![CDATA[<p>Did Sebcou ever send out his updated script? Having the same problem where it will only move one PST per script run. Also anybody else have a solution for archive files that have the same file name?</p> ]]></content:encoded> </item> <item><title>By: Andy</title><link>http://halfloaded.com/blog/logon-script-move-local-pst-files-to-network-share/comment-page-1/#comment-1493</link> <dc:creator>Andy</dc:creator> <pubDate>Mon, 17 Oct 2011 15:08:11 +0000</pubDate> <guid
isPermaLink="false">http://halfloaded.com/?p=322#comment-1493</guid> <description>Hi Andrew,
I am looking at your script and trying to strip it down so that it simply opens all the .pst&#039;s found in a particular folder?
This was suggested elsewhere (http://community.spiceworks.com/topic/111622-open-multiple-pst-files-in-outlook-in-mass-not-1-at-a-time)
I am not a programmer, and am struggling to find a way to do this.
Any help would be much appreciated.</description> <content:encoded><![CDATA[<p>Hi Andrew,</p><p>I am looking at your script and trying to strip it down so that it simply opens all the .pst&#8217;s found in a particular folder?</p><p>This was suggested elsewhere (<a
href="http://community.spiceworks.com/topic/111622-open-multiple-pst-files-in-outlook-in-mass-not-1-at-a-time" rel="nofollow">http://community.spiceworks.com/topic/111622-open-multiple-pst-files-in-outlook-in-mass-not-1-at-a-time</a>)</p><p>I am not a programmer, and am struggling to find a way to do this.</p><p>Any help would be much appreciated.</p> ]]></content:encoded> </item> <item><title>By: DeHer</title><link>http://halfloaded.com/blog/logon-script-move-local-pst-files-to-network-share/comment-page-1/#comment-1478</link> <dc:creator>DeHer</dc:creator> <pubDate>Tue, 26 Jul 2011 17:42:08 +0000</pubDate> <guid
isPermaLink="false">http://halfloaded.com/?p=322#comment-1478</guid> <description>Hi sebcou,
I&#039;m also interesseted in your version of this great script. I&#039;m experiencing the same trouble as you and Guido do.
Could you sent me your version?
Many thanks.</description> <content:encoded><![CDATA[<p>Hi sebcou,</p><p>I&#8217;m also interesseted in your version of this great script. I&#8217;m experiencing the same trouble as you and Guido do.<br
/> Could you sent me your version?</p><p>Many thanks.</p> ]]></content:encoded> </item> <item><title>By: Nebil</title><link>http://halfloaded.com/blog/logon-script-move-local-pst-files-to-network-share/comment-page-1/#comment-1068</link> <dc:creator>Nebil</dc:creator> <pubDate>Mon, 02 May 2011 16:32:20 +0000</pubDate> <guid
isPermaLink="false">http://halfloaded.com/?p=322#comment-1068</guid> <description>Hi Andrew,
I am having the same issue as the Microsoft Guy.
the problem happens when you try to move a PST file that is already the default mail folder.
do you have a tweak to fix this issue? thanks again</description> <content:encoded><![CDATA[<p>Hi Andrew,<br
/> I am having the same issue as the Microsoft Guy.<br
/> the problem happens when you try to move a PST file that is already the default mail folder.<br
/> do you have a tweak to fix this issue? thanks again</p> ]]></content:encoded> </item> <item><title>By: Peter</title><link>http://halfloaded.com/blog/logon-script-move-local-pst-files-to-network-share/comment-page-1/#comment-1040</link> <dc:creator>Peter</dc:creator> <pubDate>Thu, 14 Apr 2011 08:06:23 +0000</pubDate> <guid
isPermaLink="false">http://halfloaded.com/?p=322#comment-1040</guid> <description>Hello,
in my case the script in here:
if (strChassisType &gt;= 8 And strChassisType &lt;=12) Or (strChassisType = 14) Then
Actually I am looking for a script to place back .pst files from network share to user profile.
Can you help me with that?
You script is amazing but I have some problems with it.
Regards,
Peter</description> <content:encoded><![CDATA[<p>Hello,</p><p>in my case the script in here:<br
/> if (strChassisType &gt;= 8 And strChassisType &lt;=12) Or (strChassisType = 14) Then</p><p>Actually I am looking for a script to place back .pst files from network share to user profile.<br
/> Can you help me with that?<br
/> You script is amazing but I have some problems with it.</p><p>Regards,<br
/> Peter</p> ]]></content:encoded> </item> <item><title>By: Guido</title><link>http://halfloaded.com/blog/logon-script-move-local-pst-files-to-network-share/comment-page-1/#comment-1038</link> <dc:creator>Guido</dc:creator> <pubDate>Mon, 11 Apr 2011 09:20:08 +0000</pubDate> <guid
isPermaLink="false">http://halfloaded.com/?p=322#comment-1038</guid> <description>Hi Sebcou,
How can i get your version of the script, i’m having the same issues your having
Thank you</description> <content:encoded><![CDATA[<p>Hi Sebcou,</p><p>How can i get your version of the script, i’m having the same issues your having</p><p>Thank you</p> ]]></content:encoded> </item> </channel> </rss>
<!-- This Quick Cache file was built for (  halfloaded.com/blog/logon-script-move-local-pst-files-to-network-share/feed/ ) in 0.26713 seconds, on Feb 4th, 2012 at 11:46 pm UTC. -->
<!-- This Quick Cache file will automatically expire ( and be re-built automatically ) on Feb 5th, 2012 at 12:46 am UTC -->
