<?xml version="1.0" encoding="UTF-8" standalone="yes"?>
<rss version="2.0">
  <channel>
  <title>microsoft.public.scripting.vbscript Google Group</title>
  <link>http://groups.google.com.gh/group/microsoft.public.scripting.vbscript</link>
  <description>Microsoft scripting newsgroup.</description>
  <language>en</language>
  <item>
  <title>Re: How to speed this up?</title>
  <link>http://groups.google.com.gh/group/microsoft.public.scripting.vbscript/browse_thread/thread/200a0d6b7e0c4853/6e2ae9d6325976f3?show_docid=6e2ae9d6325976f3</link>
  <description>
  I don&#39;t think this approach (using console DIR command) needs to write &lt;br&gt; a batch procedure. I usually use a generalized function to run &lt;br&gt; console applications and collect the output. I&#39;ve posted it many &lt;br&gt; times, generally under the function name of CmdPrompt. In this case, &lt;br&gt; it might be more useful to use a function specifically designed to
  </description>
  <guid isPermaLink="true">http://groups.google.com.gh/group/microsoft.public.scripting.vbscript/browse_thread/thread/200a0d6b7e0c4853/6e2ae9d6325976f3?show_docid=6e2ae9d6325976f3</guid>
  <author>
  tglba...@verizon.net
  (Tom Lavedas)
  </author>
  <pubDate>Fri, 19 Mar 2010 17:24:26 UT
</pubDate>
  </item>
  <item>
  <title>Re: How to speed this up?</title>
  <link>http://groups.google.com.gh/group/microsoft.public.scripting.vbscript/browse_thread/thread/200a0d6b7e0c4853/9e043b513d365aa5?show_docid=9e043b513d365aa5</link>
  <description>
  Hi &lt;br&gt; Yes mayne it just takes the time it takes.. hmm &lt;br&gt; And why not do remote scripting..no.. I want a tool that can be &lt;br&gt; maintained without processes on every remote server .. :-) &lt;br&gt; But using DOS command speeds this task up from severel minutes to &lt;br&gt; seconds &lt;br&gt; looping through array with specified folders with VBS..
  </description>
  <guid isPermaLink="true">http://groups.google.com.gh/group/microsoft.public.scripting.vbscript/browse_thread/thread/200a0d6b7e0c4853/9e043b513d365aa5?show_docid=9e043b513d365aa5</guid>
  <author>
  kim.zeth...@gmail.com
  (Leon)
  </author>
  <pubDate>Fri, 19 Mar 2010 13:38:33 UT
</pubDate>
  </item>
  <item>
  <title>Re: Create a folder structure path</title>
  <link>http://groups.google.com.gh/group/microsoft.public.scripting.vbscript/browse_thread/thread/ed984d85d1f244d7/73991ed66b4bd21c?show_docid=73991ed66b4bd21c</link>
  <description>
  On my win7 box it is the same, this shows you how often I need to create &lt;br&gt; complete folder paths. ;-) &lt;br&gt; You can still accomplish this with 2 lines of code. &lt;br&gt; Set objShell = CreateObject(&amp;quot;Wscript.Shell&amp;quot;) &lt;br&gt; objShell.Run &amp;quot;cmd /c mkdir C:\folder1\folder2\folder3&amp;quot;
  </description>
  <guid isPermaLink="true">http://groups.google.com.gh/group/microsoft.public.scripting.vbscript/browse_thread/thread/ed984d85d1f244d7/73991ed66b4bd21c?show_docid=73991ed66b4bd21c</guid>
  <author>
  liketoc...@discussions.microsoft.com
  (LikeToCode)
  </author>
  <pubDate>Thu, 18 Mar 2010 22:36:02 UT
</pubDate>
  </item>
  <item>
  <title>Re: Create a folder structure path</title>
  <link>http://groups.google.com.gh/group/microsoft.public.scripting.vbscript/browse_thread/thread/ed984d85d1f244d7/9ce56e81f116dc6a?show_docid=9ce56e81f116dc6a</link>
  <description>
  LikeToCode schrieb: &lt;br&gt; For VBScript 5.6 and 5.7 .CreateFolder won&#39;t create a folder unless &lt;br&gt; its parent folder exists. I would like to know, whether newer versions &lt;br&gt; of VBScript (FSO) are more programmer friendly. &lt;br&gt; To be on the save side, you should use a recursive sub like Steve&#39;s &lt;br&gt; or shell out for mkdir.
  </description>
  <guid isPermaLink="true">http://groups.google.com.gh/group/microsoft.public.scripting.vbscript/browse_thread/thread/ed984d85d1f244d7/9ce56e81f116dc6a?show_docid=9ce56e81f116dc6a</guid>
  <author>
  ekkehard.hor...@arcor.de
  (ekkehard.horner)
  </author>
  <pubDate>Thu, 18 Mar 2010 20:38:22 UT
</pubDate>
  </item>
  <item>
  <title>RE: How to convert to unicode in ADSI - &quot;mail&quot; attribute?</title>
  <link>http://groups.google.com.gh/group/microsoft.public.scripting.vbscript/browse_thread/thread/254d378275317999/5ac66ed8fad42446?show_docid=5ac66ed8fad42446</link>
  <description>
  you could use the Replace method to search each new email address and replace &lt;br&gt; the &amp;quot;Ø&amp;quot; with a &amp;quot;O&amp;quot;. &lt;br&gt; Replace(strEmail,&amp;quot;Ø&amp;quot;,&amp;quot;O&amp;quot;)
  </description>
  <guid isPermaLink="true">http://groups.google.com.gh/group/microsoft.public.scripting.vbscript/browse_thread/thread/254d378275317999/5ac66ed8fad42446?show_docid=5ac66ed8fad42446</guid>
  <author>
  liketoc...@discussions.microsoft.com
  (LikeToCode)
  </author>
  <pubDate>Thu, 18 Mar 2010 16:26:01 UT
</pubDate>
  </item>
  <item>
  <title>RE: Create a folder structure path</title>
  <link>http://groups.google.com.gh/group/microsoft.public.scripting.vbscript/browse_thread/thread/ed984d85d1f244d7/8a7a24f0b83a0639?show_docid=8a7a24f0b83a0639</link>
  <description>
  Or simply: &lt;br&gt; Set objFSO = CreateObject(&amp;quot;scripting.filesy stemobject&amp;quot;) &lt;br&gt; objFSO.CreateFolder(&amp;quot;c:\folder 1\folder2\folder3&amp;quot;) &lt;br&gt; This uses the CreateFolder Method of FileSystemObject. More information can &lt;br&gt; be found here: &lt;br&gt; &lt;a target=&quot;_blank&quot; rel=nofollow href=&quot;http://msdn.microsoft.com/en-us/library/6tkce7xa(VS.85).aspx&quot;&gt;[link]&lt;/a&gt; &lt;br&gt; and &lt;br&gt; &lt;a target=&quot;_blank&quot; rel=nofollow href=&quot;http://msdn.microsoft.com/en-us/library/7kby5ae3(VS.85).aspx&quot;&gt;[link]&lt;/a&gt;
  </description>
  <guid isPermaLink="true">http://groups.google.com.gh/group/microsoft.public.scripting.vbscript/browse_thread/thread/ed984d85d1f244d7/8a7a24f0b83a0639?show_docid=8a7a24f0b83a0639</guid>
  <author>
  liketoc...@discussions.microsoft.com
  (LikeToCode)
  </author>
  <pubDate>Thu, 18 Mar 2010 16:05:01 UT
</pubDate>
  </item>
  <item>
  <title>Re: How to convert to unicode in ADSI - &quot;mail&quot; attribute?</title>
  <link>http://groups.google.com.gh/group/microsoft.public.scripting.vbscript/browse_thread/thread/254d378275317999/ebac338cb1f65f01?show_docid=ebac338cb1f65f01</link>
  <description>
  You can use the ldifde utility to update attributes with values that are &lt;br&gt; Base64 encoded. I have example VBScript programs to Base64 encode strings &lt;br&gt; linked here: &lt;br&gt; &lt;a target=&quot;_blank&quot; rel=nofollow href=&quot;http://www.rlmueller.net/Base64.htm&quot;&gt;[link]&lt;/a&gt; &lt;br&gt; I have limited experience with foreign characters, but if you can convert &lt;br&gt; the desired value into a hexadecimal string, you can use the first program
  </description>
  <guid isPermaLink="true">http://groups.google.com.gh/group/microsoft.public.scripting.vbscript/browse_thread/thread/254d378275317999/ebac338cb1f65f01?show_docid=ebac338cb1f65f01</guid>
  <author>
  rlmueller-nos...@ameritech.nospam.net
  (Richard Mueller [MVP])
  </author>
  <pubDate>Thu, 18 Mar 2010 15:42:08 UT
</pubDate>
  </item>
  <item>
  <title>Re: Browse for File Dialog ( W7)</title>
  <link>http://groups.google.com.gh/group/microsoft.public.scripting.vbscript/browse_thread/thread/c49979f722f5b5c8/f1f4f971ac80c54b?show_docid=f1f4f971ac80c54b</link>
  <description>
  You might check what extensions or BHOs are &lt;br&gt; barnicled onto IE. If you use IE online it&#39;s easy to &lt;br&gt; end up with all sorts of &amp;quot;toolbars&amp;quot; and other junk. &lt;br&gt; They not only need to load, but some of them may &lt;br&gt; also go online or do other setup operations when &lt;br&gt; IE starts. &lt;br&gt; Also check for problematic &lt;br&gt; software running. (In my experience, the major
  </description>
  <guid isPermaLink="true">http://groups.google.com.gh/group/microsoft.public.scripting.vbscript/browse_thread/thread/c49979f722f5b5c8/f1f4f971ac80c54b?show_docid=f1f4f971ac80c54b</guid>
  <author>
  mayay...@nospam.invalid
  (mayayana)
  </author>
  <pubDate>Thu, 18 Mar 2010 15:46:42 UT
</pubDate>
  </item>
  <item>
  <title>Re: Create a folder structure path</title>
  <link>http://groups.google.com.gh/group/microsoft.public.scripting.vbscript/browse_thread/thread/ed984d85d1f244d7/ae14ec9822e1f5a7?show_docid=ae14ec9822e1f5a7</link>
  <description>
  Const FULL_PATH = &amp;quot;c:\folder1\folder2\folder3&amp;quot; &lt;br&gt; Set fso = CreateObject(&amp;quot;Scripting.FileSy stemObject&amp;quot;) &lt;br&gt; BuildPath FULL_PATH &lt;br&gt; Sub BuildPath(ByVal Path) &lt;br&gt; If Not fso.FolderExists(Path) Then &lt;br&gt; BuildPath fso.GetParentFolderName(Path) &lt;br&gt; fso.CreateFolder Path &lt;br&gt; End If &lt;br&gt; End Sub
  </description>
  <guid isPermaLink="true">http://groups.google.com.gh/group/microsoft.public.scripting.vbscript/browse_thread/thread/ed984d85d1f244d7/ae14ec9822e1f5a7?show_docid=ae14ec9822e1f5a7</guid>
  <author>
  cerberu...@gmail.com
  (Steve)
  </author>
  <pubDate>Thu, 18 Mar 2010 13:47:26 UT
</pubDate>
  </item>
  <item>
  <title>Create a folder structure path</title>
  <link>http://groups.google.com.gh/group/microsoft.public.scripting.vbscript/browse_thread/thread/ed984d85d1f244d7/c677c364332a3900?show_docid=c677c364332a3900</link>
  <description>
  Hello &lt;br&gt; Is there a easy way to create the folder path c:\folder1\folder2\folder3 ?
  </description>
  <guid isPermaLink="true">http://groups.google.com.gh/group/microsoft.public.scripting.vbscript/browse_thread/thread/ed984d85d1f244d7/c677c364332a3900?show_docid=c677c364332a3900</guid>
  <author>
  nos...@spam.com
  (Jason)
  </author>
  <pubDate>Thu, 18 Mar 2010 13:09:16 UT
</pubDate>
  </item>
  <item>
  <title>Re: Find a unused drive letter</title>
  <link>http://groups.google.com.gh/group/microsoft.public.scripting.vbscript/browse_thread/thread/1d2af466a0c4d067/e0ffa5a94a6fff61?show_docid=e0ffa5a94a6fff61</link>
  <description>
  Thats, that works. &lt;br&gt; &amp;quot;Richard Mueller [MVP]&amp;quot; &amp;lt;rlmueller-nos...@ameritech.no spam.net&amp;gt; wrote in &lt;br&gt; message &lt;a target=&quot;_blank&quot; href=&quot;http://groups.google.com/groups?as_umsgid=upQO$whxKHA.3408@TK2MSFTNGP06.phx.gbl&quot;&gt;news:upQO$whxKHA.3408@TK2MSFTNGP06.phx.gbl&lt;/a&gt;...
  </description>
  <guid isPermaLink="true">http://groups.google.com.gh/group/microsoft.public.scripting.vbscript/browse_thread/thread/1d2af466a0c4d067/e0ffa5a94a6fff61?show_docid=e0ffa5a94a6fff61</guid>
  <author>
  nos...@spam.com
  (Jason)
  </author>
  <pubDate>Thu, 18 Mar 2010 13:07:57 UT
</pubDate>
  </item>
  <item>
  <title>Re: Browse for File Dialog ( W7)</title>
  <link>http://groups.google.com.gh/group/microsoft.public.scripting.vbscript/browse_thread/thread/c49979f722f5b5c8/193578b38dcff92f?show_docid=193578b38dcff92f</link>
  <description>
  same here as well. I&#39;ve come across the following 4 options so far, and &lt;br&gt; neither of them are yet reliable in win7: &lt;br&gt; &amp;lt;Option 1&amp;gt; &lt;br&gt; This returns error in both winXP and win7 when certain file is selected: &lt;br&gt; Function Browse() &lt;br&gt; Const sHandle=&amp;amp;H0 &lt;br&gt; Const sText = &amp;quot;Browse&amp;quot; &lt;br&gt; Const sOption=&amp;amp;H4000 &lt;br&gt; Const sOption2=&amp;amp;H0001
  </description>
  <guid isPermaLink="true">http://groups.google.com.gh/group/microsoft.public.scripting.vbscript/browse_thread/thread/c49979f722f5b5c8/193578b38dcff92f?show_docid=193578b38dcff92f</guid>
  <author>
  c...@discussions.microsoft.com
  (c)
  </author>
  <pubDate>Thu, 18 Mar 2010 11:17:01 UT
</pubDate>
  </item>
  <item>
  <title>Diff in running VBScripts-WMI routuines from WinTaskSch &amp; SQL Agen</title>
  <link>http://groups.google.com.gh/group/microsoft.public.scripting.vbscript/browse_thread/thread/1f2e5aabb5c03811/753ce7baa040605e?show_docid=753ce7baa040605e</link>
  <description>
  Is there a difference in running VBScripts-WMI routuines from &lt;br&gt; WinTaskScheduler &amp;amp; SQLAgent. Because what is running all fine with cscript &amp;amp; &lt;br&gt; WinTaskScheduler suffers with unlrelated errors when tried with a SQL JOB. &lt;br&gt; Any insights.
  </description>
  <guid isPermaLink="true">http://groups.google.com.gh/group/microsoft.public.scripting.vbscript/browse_thread/thread/1f2e5aabb5c03811/753ce7baa040605e?show_docid=753ce7baa040605e</guid>
  <author>
  yusufa...@msn.com
  (Yusuf)
  </author>
  <pubDate>Thu, 18 Mar 2010 06:44:01 UT
</pubDate>
  </item>
  <item>
  <title>How to convert to unicode in ADSI - &quot;mail&quot; attribute?</title>
  <link>http://groups.google.com.gh/group/microsoft.public.scripting.vbscript/browse_thread/thread/254d378275317999/9be2e24acf7d5812?show_docid=9be2e24acf7d5812</link>
  <description>
  Hi all, &lt;br&gt; I made a vbs to add an extra e-maill address to a distribution list group. &lt;br&gt; The e-mail address should be &amp;lt;group name&amp;gt;@dnv.com. &lt;br&gt; As we are a Norwegian company, the group name sometimes contains Norwegian &lt;br&gt; character such as &amp;quot;Ø&amp;quot;. &lt;br&gt; When I look into ADSI, the string with &amp;quot;Ø&amp;quot; do updates in &amp;quot;mail&amp;quot; attribute.
  </description>
  <guid isPermaLink="true">http://groups.google.com.gh/group/microsoft.public.scripting.vbscript/browse_thread/thread/254d378275317999/9be2e24acf7d5812?show_docid=9be2e24acf7d5812</guid>
  <author>
  it...@discussions.microsoft.com
  (iTWeb)
  </author>
  <pubDate>Thu, 18 Mar 2010 03:58:01 UT
</pubDate>
  </item>
  <item>
  <title>Re: Installing a printer using WSH</title>
  <link>http://groups.google.com.gh/group/microsoft.public.scripting.vbscript/browse_thread/thread/7a160729efbbc74d/61179633141fd8d7?show_docid=61179633141fd8d7</link>
  <description>
  I think I found it &amp;quot;wscript.sleep xxxx (where x represents time, 3 &lt;br&gt; minutes should be enough time to install a printer) so &lt;br&gt; Set WshNetwork = WScript.CreateObject(&amp;quot;WScript. Network&amp;quot;) &lt;br&gt; PrinterPath = &amp;quot;\\server1\sharedName_hp1&amp;quot; &lt;br&gt; WshNetwork.AddWindowsPrinterCo nnection PrinterPath
  </description>
  <guid isPermaLink="true">http://groups.google.com.gh/group/microsoft.public.scripting.vbscript/browse_thread/thread/7a160729efbbc74d/61179633141fd8d7?show_docid=61179633141fd8d7</guid>
  <author>
  paulr...@cableone.net
  (Paul Randall)
  </author>
  <pubDate>Thu, 18 Mar 2010 02:29:33 UT
</pubDate>
  </item>
  </channel>
</rss>
