<?xml version="1.0" encoding="UTF-8" standalone="yes"?>
<?xml-stylesheet href="http://www.blogger.com/styles/atom.css" type="text/css"?>
<feed xmlns="http://www.w3.org/2005/Atom">
  <id>http://groups.google.com.gh/group/microsoft.public.scripting.vbscript</id>
  <title type="text">microsoft.public.scripting.vbscript Google Group</title>
  <subtitle type="text">
  Microsoft scripting newsgroup.
  </subtitle>
  <link href="/group/microsoft.public.scripting.vbscript/feed/atom_v1_0_msgs.xml" rel="self" title="microsoft.public.scripting.vbscript feed"/>
  <updated>2010-03-19T13:38:33Z</updated>
  <generator uri="http://groups.google.com.gh" version="1.99">Google Groups</generator>
  <entry>
  <author>
  <name>Leon</name>
  <email>kim.zeth...@gmail.com</email>
  </author>
  <updated>2010-03-19T13:38:33Z</updated>
  <id>http://groups.google.com.gh/group/microsoft.public.scripting.vbscript/browse_thread/thread/200a0d6b7e0c4853/9e043b513d365aa5?show_docid=9e043b513d365aa5</id>
  <link href="http://groups.google.com.gh/group/microsoft.public.scripting.vbscript/browse_thread/thread/200a0d6b7e0c4853/9e043b513d365aa5?show_docid=9e043b513d365aa5"/>
  <title type="text">Re: How to speed this up?</title>
  <summary type="html" xml:space="preserve">
  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..
  </summary>
  </entry>
  <entry>
  <author>
  <name>LikeToCode</name>
  <email>liketoc...@discussions.microsoft.com</email>
  </author>
  <updated>2010-03-18T22:36:02Z</updated>
  <id>http://groups.google.com.gh/group/microsoft.public.scripting.vbscript/browse_thread/thread/ed984d85d1f244d7/73991ed66b4bd21c?show_docid=73991ed66b4bd21c</id>
  <link href="http://groups.google.com.gh/group/microsoft.public.scripting.vbscript/browse_thread/thread/ed984d85d1f244d7/73991ed66b4bd21c?show_docid=73991ed66b4bd21c"/>
  <title type="text">Re: Create a folder structure path</title>
  <summary type="html" xml:space="preserve">
  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;
  </summary>
  </entry>
  <entry>
  <author>
  <name>ekkehard.horner</name>
  <email>ekkehard.hor...@arcor.de</email>
  </author>
  <updated>2010-03-18T20:38:22Z</updated>
  <id>http://groups.google.com.gh/group/microsoft.public.scripting.vbscript/browse_thread/thread/ed984d85d1f244d7/9ce56e81f116dc6a?show_docid=9ce56e81f116dc6a</id>
  <link href="http://groups.google.com.gh/group/microsoft.public.scripting.vbscript/browse_thread/thread/ed984d85d1f244d7/9ce56e81f116dc6a?show_docid=9ce56e81f116dc6a"/>
  <title type="text">Re: Create a folder structure path</title>
  <summary type="html" xml:space="preserve">
  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.
  </summary>
  </entry>
  <entry>
  <author>
  <name>LikeToCode</name>
  <email>liketoc...@discussions.microsoft.com</email>
  </author>
  <updated>2010-03-18T16:26:01Z</updated>
  <id>http://groups.google.com.gh/group/microsoft.public.scripting.vbscript/browse_thread/thread/254d378275317999/5ac66ed8fad42446?show_docid=5ac66ed8fad42446</id>
  <link href="http://groups.google.com.gh/group/microsoft.public.scripting.vbscript/browse_thread/thread/254d378275317999/5ac66ed8fad42446?show_docid=5ac66ed8fad42446"/>
  <title type="text">RE: How to convert to unicode in ADSI - &quot;mail&quot; attribute?</title>
  <summary type="html" xml:space="preserve">
  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;)
  </summary>
  </entry>
  <entry>
  <author>
  <name>LikeToCode</name>
  <email>liketoc...@discussions.microsoft.com</email>
  </author>
  <updated>2010-03-18T16:05:01Z</updated>
  <id>http://groups.google.com.gh/group/microsoft.public.scripting.vbscript/browse_thread/thread/ed984d85d1f244d7/8a7a24f0b83a0639?show_docid=8a7a24f0b83a0639</id>
  <link href="http://groups.google.com.gh/group/microsoft.public.scripting.vbscript/browse_thread/thread/ed984d85d1f244d7/8a7a24f0b83a0639?show_docid=8a7a24f0b83a0639"/>
  <title type="text">RE: Create a folder structure path</title>
  <summary type="html" xml:space="preserve">
  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;
  </summary>
  </entry>
  <entry>
  <author>
  <name>Richard Mueller [MVP]</name>
  <email>rlmueller-nos...@ameritech.nospam.net</email>
  </author>
  <updated>2010-03-18T15:42:08Z</updated>
  <id>http://groups.google.com.gh/group/microsoft.public.scripting.vbscript/browse_thread/thread/254d378275317999/ebac338cb1f65f01?show_docid=ebac338cb1f65f01</id>
  <link href="http://groups.google.com.gh/group/microsoft.public.scripting.vbscript/browse_thread/thread/254d378275317999/ebac338cb1f65f01?show_docid=ebac338cb1f65f01"/>
  <title type="text">Re: How to convert to unicode in ADSI - &quot;mail&quot; attribute?</title>
  <summary type="html" xml:space="preserve">
  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
  </summary>
  </entry>
  <entry>
  <author>
  <name>mayayana</name>
  <email>mayay...@nospam.invalid</email>
  </author>
  <updated>2010-03-18T15:46:42Z</updated>
  <id>http://groups.google.com.gh/group/microsoft.public.scripting.vbscript/browse_thread/thread/c49979f722f5b5c8/f1f4f971ac80c54b?show_docid=f1f4f971ac80c54b</id>
  <link href="http://groups.google.com.gh/group/microsoft.public.scripting.vbscript/browse_thread/thread/c49979f722f5b5c8/f1f4f971ac80c54b?show_docid=f1f4f971ac80c54b"/>
  <title type="text">Re: Browse for File Dialog ( W7)</title>
  <summary type="html" xml:space="preserve">
  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
  </summary>
  </entry>
  <entry>
  <author>
  <name>Steve</name>
  <email>cerberu...@gmail.com</email>
  </author>
  <updated>2010-03-18T13:47:26Z</updated>
  <id>http://groups.google.com.gh/group/microsoft.public.scripting.vbscript/browse_thread/thread/ed984d85d1f244d7/ae14ec9822e1f5a7?show_docid=ae14ec9822e1f5a7</id>
  <link href="http://groups.google.com.gh/group/microsoft.public.scripting.vbscript/browse_thread/thread/ed984d85d1f244d7/ae14ec9822e1f5a7?show_docid=ae14ec9822e1f5a7"/>
  <title type="text">Re: Create a folder structure path</title>
  <summary type="html" xml:space="preserve">
  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
  </summary>
  </entry>
  <entry>
  <author>
  <name>Jason</name>
  <email>nos...@spam.com</email>
  </author>
  <updated>2010-03-18T13:09:16Z</updated>
  <id>http://groups.google.com.gh/group/microsoft.public.scripting.vbscript/browse_thread/thread/ed984d85d1f244d7/c677c364332a3900?show_docid=c677c364332a3900</id>
  <link href="http://groups.google.com.gh/group/microsoft.public.scripting.vbscript/browse_thread/thread/ed984d85d1f244d7/c677c364332a3900?show_docid=c677c364332a3900"/>
  <title type="text">Create a folder structure path</title>
  <summary type="html" xml:space="preserve">
  Hello &lt;br&gt; Is there a easy way to create the folder path c:\folder1\folder2\folder3 ?
  </summary>
  </entry>
  <entry>
  <author>
  <name>Jason</name>
  <email>nos...@spam.com</email>
  </author>
  <updated>2010-03-18T13:07:57Z</updated>
  <id>http://groups.google.com.gh/group/microsoft.public.scripting.vbscript/browse_thread/thread/1d2af466a0c4d067/e0ffa5a94a6fff61?show_docid=e0ffa5a94a6fff61</id>
  <link href="http://groups.google.com.gh/group/microsoft.public.scripting.vbscript/browse_thread/thread/1d2af466a0c4d067/e0ffa5a94a6fff61?show_docid=e0ffa5a94a6fff61"/>
  <title type="text">Re: Find a unused drive letter</title>
  <summary type="html" xml:space="preserve">
  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;...
  </summary>
  </entry>
  <entry>
  <author>
  <name>c</name>
  <email>c...@discussions.microsoft.com</email>
  </author>
  <updated>2010-03-18T11:17:01Z</updated>
  <id>http://groups.google.com.gh/group/microsoft.public.scripting.vbscript/browse_thread/thread/c49979f722f5b5c8/193578b38dcff92f?show_docid=193578b38dcff92f</id>
  <link href="http://groups.google.com.gh/group/microsoft.public.scripting.vbscript/browse_thread/thread/c49979f722f5b5c8/193578b38dcff92f?show_docid=193578b38dcff92f"/>
  <title type="text">Re: Browse for File Dialog ( W7)</title>
  <summary type="html" xml:space="preserve">
  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
  </summary>
  </entry>
  <entry>
  <author>
  <name>Yusuf</name>
  <email>yusufa...@msn.com</email>
  </author>
  <updated>2010-03-18T06:44:01Z</updated>
  <id>http://groups.google.com.gh/group/microsoft.public.scripting.vbscript/browse_thread/thread/1f2e5aabb5c03811/753ce7baa040605e?show_docid=753ce7baa040605e</id>
  <link href="http://groups.google.com.gh/group/microsoft.public.scripting.vbscript/browse_thread/thread/1f2e5aabb5c03811/753ce7baa040605e?show_docid=753ce7baa040605e"/>
  <title type="text">Diff in running VBScripts-WMI routuines from WinTaskSch &amp; SQL Agen</title>
  <summary type="html" xml:space="preserve">
  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.
  </summary>
  </entry>
  <entry>
  <author>
  <name>iTWeb</name>
  <email>it...@discussions.microsoft.com</email>
  </author>
  <updated>2010-03-18T03:58:01Z</updated>
  <id>http://groups.google.com.gh/group/microsoft.public.scripting.vbscript/browse_thread/thread/254d378275317999/9be2e24acf7d5812?show_docid=9be2e24acf7d5812</id>
  <link href="http://groups.google.com.gh/group/microsoft.public.scripting.vbscript/browse_thread/thread/254d378275317999/9be2e24acf7d5812?show_docid=9be2e24acf7d5812"/>
  <title type="text">How to convert to unicode in ADSI - &quot;mail&quot; attribute?</title>
  <summary type="html" xml:space="preserve">
  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.
  </summary>
  </entry>
  <entry>
  <author>
  <name>Paul Randall</name>
  <email>paulr...@cableone.net</email>
  </author>
  <updated>2010-03-18T02:29:33Z</updated>
  <id>http://groups.google.com.gh/group/microsoft.public.scripting.vbscript/browse_thread/thread/7a160729efbbc74d/61179633141fd8d7?show_docid=61179633141fd8d7</id>
  <link href="http://groups.google.com.gh/group/microsoft.public.scripting.vbscript/browse_thread/thread/7a160729efbbc74d/61179633141fd8d7?show_docid=61179633141fd8d7"/>
  <title type="text">Re: Installing a printer using WSH</title>
  <summary type="html" xml:space="preserve">
  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
  </summary>
  </entry>
  <entry>
  <author>
  <name>Richard Mueller [MVP]</name>
  <email>rlmueller-nos...@ameritech.nospam.net</email>
  </author>
  <updated>2010-03-17T21:53:07Z</updated>
  <id>http://groups.google.com.gh/group/microsoft.public.scripting.vbscript/browse_thread/thread/1d2af466a0c4d067/1ba3166f5c3c0efa?show_docid=1ba3166f5c3c0efa</id>
  <link href="http://groups.google.com.gh/group/microsoft.public.scripting.vbscript/browse_thread/thread/1d2af466a0c4d067/1ba3166f5c3c0efa?show_docid=1ba3166f5c3c0efa"/>
  <title type="text">Re: Find a unused drive letter</title>
  <summary type="html" xml:space="preserve">
  The Drives collection of the FileSystemObject is a collection of all known &lt;br&gt; drives. You could enumerate all drives, network and local, with: &lt;br&gt; ======= &lt;br&gt; Set objFSO = CreateObject(&amp;quot;Scripting.FileSy stemObject&amp;quot;) &lt;br&gt; For Each objDrive In objFSO.Drives &lt;br&gt; Wscript.Echo objDrive.DriveLetter &amp;amp; &amp;quot;, &amp;quot; &amp;amp; objDrive.Path
  </summary>
  </entry>
</feed>
