<?xml version="1.0" encoding="UTF-8" ?>
<?xml-stylesheet type="text/xsl" href="http://powershell.com/cs/utility/FeedStylesheets/rss.xsl" media="screen"?><rss version="2.0" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:slash="http://purl.org/rss/1.0/modules/slash/" xmlns:wfw="http://wellformedweb.org/CommentAPI/"><channel><title>Search results for 'app:weblogs' matching tags 'VBScript' and 'Windows PowerShell'</title><link>http://powershell.com/cs/search/SearchResults.aspx?q=app:weblogs&amp;tag=VBScript,Windows+PowerShell&amp;orTags=0&amp;o=DateDescending</link><description>Search results for 'app:weblogs' matching tags 'VBScript' and 'Windows PowerShell'</description><dc:language>en-US</dc:language><generator>CommunityServer 2008.5 (Build: 30929.2835)</generator><item><title>How to Use VBScript to Run a PowerShell Script</title><link>http://powershell.com/cs/blogs/hey-scriptingguy/archive/2012/07/18/how-to-use-vbscript-to-run-a-powershell-script.aspx</link><pubDate>Wed, 18 Jul 2012 05:00:00 GMT</pubDate><guid isPermaLink="false">f421715f-7aba-45f0-8a8d-44de5318a3a7:17768</guid><dc:creator>Anonymous</dc:creator><description>&lt;p&gt;&lt;b&gt;Summary&lt;/b&gt;: Microsoft Scripting Guy, Ed Wilson, shows you that it&amp;#39;s easier than you think to use VBScript to run a Windows PowerShell script.&lt;/p&gt;
&lt;p&gt;Microsoft Scripting Guy, Ed Wilson, is here. Things are really heating up around here&amp;mdash;and I am not just talking about the hot, humid weather down in Charlotte, North Carolina in the United States. First, I am busily getting ready for my trip to Seattle, Washington next week. I will be speaking about using Windows PowerShell&amp;nbsp;3.0 to manage the remote Windows 8 desktop to a bunch of Microsoft people from all over the world. The event (called TechReady&amp;nbsp;15) is like TechEd, only it is only for Microsoft employees. Nevertheless, in every other fashion, including the size and scope of the event, it is like TechEd. I really look forward to speaking at this event, because it is an honor to get to speak to so many smart people, and it is a great chance to see my friends from all over the world.&lt;/p&gt;
&lt;p&gt;The second thing that is exciting are Windows&amp;nbsp;8 (which I have been running on my production machine for some time) and Office&amp;nbsp;15 (which I have just installed on my production machine). It is sooo cool, and is powerful, simple to use, and fun. Often powerful and simple do not go together in the computing world. This time, I think we did it right. The Scripting Wife is absolutely chomping at the bit to get a new slate device. I agreed to get her one for the holidays, but she wants it NOW!&lt;/p&gt;
&lt;p&gt;The third thing that is super exciting is Windows PowerShell Saturday on September 15 at the Charlotte Microsoft office. We have just about finalized the schedule, and we have all the speakers lined up. It will be a super cool event. Keep watching, because we will be opening registration very soon, and expect it to sell out within days. We have to limit the attendance to 200 people, so you will want to ensure that you are watching for the announcement. The announcement of the opening of registration will take place on Twitter, then on Facebook on the Scripting Guys Facebook site, and then on the Scripting Guys blog, and finally on the Learn PowerShell page. So this would be a good time to get a twitter account and start following @ScriptingWife and @ScriptingGuys. By the way, I love the Rowi app on Windows 8.&lt;/p&gt;
&lt;h2&gt;Creating a VBScript to run Windows PowerShell&lt;/h2&gt;
&lt;p&gt;When creating a permanent WMI event consumer that uses the &lt;b&gt;ActiveScriptEventConsumer&lt;/b&gt; WMI class, you need to use VBScript as the script type. This is because &lt;b&gt;ActiveScriptEventConsumer&lt;/b&gt; does not know how to run a Windows PowerShell script. This is not a huge problem, however, because writing a VBScript script to launch a Windows PowerShell script is very easy when you know the secrets.&lt;/p&gt;
&lt;p style="padding-left:30px;"&gt;&lt;b&gt;Note&amp;nbsp;&amp;nbsp;&amp;nbsp;&lt;/b&gt;This is the third blog in a five part series about monitoring a folder for the creation of files that have leading spaces in the file names. On Monday, I wrote &lt;a href="http://blogs.technet.com/b/heyscriptingguy/archive/2012/07/16/use-powershell-to-detect-and-fix-files-with-leading-spaces.aspx" target="_blank"&gt;Use PowerShell to Detect and Fix Files with Leading Spaces&lt;/a&gt;, and the scripts from that blog will be used today and again on Friday. On Tuesday, I wrote &lt;a href="http://blogs.technet.com/b/heyscriptingguy/archive/2012/07/17/use-powershell-to-monitor-for-the-creation-of-new-files.aspx" target="_blank"&gt;Use PowerShell to Monitor for the Creation of New Files&lt;/a&gt;. This blog talks about creating a temporary WMI event to monitor for the creation of files in a particular folder. This query is crucial to Friday&amp;rsquo;s blog.&lt;i&gt;&lt;/i&gt;&lt;/p&gt;
&lt;p&gt;There are two methods available from the &lt;a href="http://msdn.microsoft.com/en-us/library/aew9yb99(v=VS.84).aspx" target="_blank"&gt;WshShell Object&lt;/a&gt; to launch other programs. These methods are the &lt;b&gt;Exec&lt;/b&gt;&lt;i&gt; &lt;/i&gt;method and the &lt;b&gt;Run&lt;/b&gt;&lt;i&gt; &lt;/i&gt;method. For my purpose, I use the &lt;b&gt;Run&lt;/b&gt;&lt;i&gt; &lt;/i&gt;method. It takes two lines of VBscript code; therefore, I use Notepad to create the script. Remember to save it as a .vbs file. The script is shown here.&lt;/p&gt;
&lt;p style="padding-left:30px;"&gt;LaunchPowerShell.VBS&lt;/p&gt;
&lt;p style="padding-left:30px;"&gt;Set objShell = CreateObject(&amp;quot;Wscript.shell&amp;quot;)&lt;/p&gt;
&lt;p style="padding-left:30px;"&gt;objShell.run(&amp;quot;powershell -noexit -file c:\fso\CleanupFiles.ps1&amp;quot;)&lt;/p&gt;
&lt;p&gt;The first line of code creates the &lt;strong&gt;WshShell&lt;/strong&gt; object, and it stores the returned object in the &lt;strong&gt;objShell&lt;/strong&gt; variable. This line is shown here.&lt;/p&gt;
&lt;p style="padding-left:30px;"&gt;Set objShell = CreateObject(&amp;quot;Wscript.shell&amp;quot;)&lt;/p&gt;
&lt;p&gt;The second line of code runs the command. The syntax of this command is critical. It is a good idea to use the Start / Run command to practice the syntax before embedding it in the VBScript script. Here is an example of using the &lt;strong&gt;Run&lt;/strong&gt; command to practice the syntax.&lt;/p&gt;
&lt;p&gt;&lt;a href="http://blogs.technet.com/cfs-file.ashx/__key/communityserver-blogs-components-weblogfiles/00-00-00-76-18/5141.HSG_2D00_7_2D00_18_2D00_12_2D00_01.png"&gt;&lt;img src="http://blogs.technet.com/resized-image.ashx/__size/400x0/__key/communityserver-blogs-components-weblogfiles/00-00-00-76-18/5141.HSG_2D00_7_2D00_18_2D00_12_2D00_01.png" alt="Image of command" title="Image of command" /&gt;&lt;/a&gt;&lt;/p&gt;
&lt;p&gt;If you need to bypass the execution policy, you would add that switch to the command as well. The syntax to bypass the execution policy is shown here.&lt;/p&gt;
&lt;p style="padding-left:30px;"&gt;powershell -executionpolicy bypass -noexit -file c:\fso\helloworld.ps1&lt;/p&gt;
&lt;p&gt;It is also possible to run a specific Windows PowerShell command or series of commands from the VBScript script. This technique is shown here.&lt;/p&gt;
&lt;p style="padding-left:30px;"&gt;objShell.run(&amp;quot;powershell -noexit -command &amp;quot;&amp;quot;&amp;amp;{0..15 | % {Write-Host -foreground $_ &amp;#39;Hello World&amp;#39; }}&amp;quot;&amp;quot;&amp;quot;)&lt;/p&gt;
&lt;p style="padding-left:30px;"&gt;&lt;b&gt;Note&amp;nbsp;&amp;nbsp;&amp;nbsp;&lt;/b&gt;Keep in mind that you are writing in VBScript. Therefore, you need to escape the quotation marks with another pair of quotation marks. Also, remember that you use REM to comment out a line, and not the pound sign character (&lt;b&gt;#&lt;/b&gt;) that is used in Windows PowerShell.&lt;/p&gt;
&lt;p&gt;The &lt;i&gt;CleanupFiles.ps1 &lt;/i&gt;script referenced in the VBScript script is the &lt;b&gt;Get-FilesWithLeadingSpaces&lt;/b&gt; function from Monday&amp;rsquo;s blog, &lt;a href="http://blogs.technet.com/b/heyscriptingguy/archive/2012/07/16/use-powershell-to-detect-and-fix-files-with-leading-spaces.aspx" target="_blank"&gt;Use PowerShell to Detect and Fix Files with Leading Spaces&lt;/a&gt;. I removed it from the function and placed it in a file to make it easier to call from within the VBScript script. The &lt;i&gt;CleanupFiles.ps1 &lt;/i&gt;file is shown here.&lt;/p&gt;
&lt;p style="padding-left:30px;"&gt;&lt;strong&gt;CleanupFiles.ps1&lt;/strong&gt;&lt;/p&gt;
&lt;p style="padding-left:30px;"&gt;Param(&lt;/p&gt;
&lt;p style="padding-left:30px;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; [string]$path = &amp;quot;c:\test&amp;quot;,&lt;/p&gt;
&lt;p style="padding-left:30px;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; [switch]$rename = $true&lt;/p&gt;
&lt;p style="padding-left:30px;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; )&lt;/p&gt;
&lt;p style="padding-left:30px;"&gt;&amp;nbsp;Get-ChildItem -Path $path -Recurse |&lt;/p&gt;
&lt;p style="padding-left:30px;"&gt;&amp;nbsp;foreach-object -Begin {$count = 0} -process {&lt;/p&gt;
&lt;p style="padding-left:30px;"&gt;&amp;nbsp;&amp;nbsp; if($_.name.length -ne $_.name.trim().length)&lt;/p&gt;
&lt;p style="padding-left:30px;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; {&lt;/p&gt;
&lt;p style="padding-left:30px;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; if($rename)&lt;/p&gt;
&lt;p style="padding-left:30px;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; {&lt;/p&gt;
&lt;p style="padding-left:30px;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; Rename-Item -Path $_.fullname -NewName (&amp;quot;{0}{1}{2}&amp;quot; -f `&lt;/p&gt;
&lt;p style="padding-left:30px;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; $_.basename.trim(),$count,$_.extension)&lt;/p&gt;
&lt;p style="padding-left:30px;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; $count++&lt;/p&gt;
&lt;p style="padding-left:30px;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; }&lt;/p&gt;
&lt;p style="padding-left:30px;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; else&lt;/p&gt;
&lt;p style="padding-left:30px;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; {&amp;quot;$($_.basename) contains a leading space&amp;quot;}} }&lt;/p&gt;
&lt;p&gt;By using the &lt;b&gt;New-FilesWithLeadingSpaces&lt;/b&gt; function from Monday, I create 10 new files with leading spaces in the names in a folder named &lt;i&gt;test. &lt;/i&gt;These newly created folders are shown here.&lt;/p&gt;
&lt;p&gt;&lt;a href="http://blogs.technet.com/cfs-file.ashx/__key/communityserver-blogs-components-weblogfiles/00-00-00-76-18/0066.HSG_2D00_7_2D00_18_2D00_12_2D00_02.png"&gt;&lt;img src="http://blogs.technet.com/resized-image.ashx/__size/550x0/__key/communityserver-blogs-components-weblogfiles/00-00-00-76-18/0066.HSG_2D00_7_2D00_18_2D00_12_2D00_02.png" alt="Image of menu" title="Image of menu" /&gt;&lt;/a&gt;&lt;/p&gt;
&lt;p&gt;Now, I want to try out my VBScript script to see if I can run it, and cause it to launch the Windows PowerShell script to clean up the folder. I open a command prompt, and drag the VBScript script to the command line. The command prompt is shown here.&lt;/p&gt;
&lt;p&gt;&lt;a href="http://blogs.technet.com/cfs-file.ashx/__key/communityserver-blogs-components-weblogfiles/00-00-00-76-18/5850.HSG_2D00_7_2D00_18_2D00_12_2D00_03.png"&gt;&lt;img src="http://blogs.technet.com/resized-image.ashx/__size/550x0/__key/communityserver-blogs-components-weblogfiles/00-00-00-76-18/5850.HSG_2D00_7_2D00_18_2D00_12_2D00_03.png" alt="Image of command output" title="Image of command output" /&gt;&lt;/a&gt;&lt;/p&gt;
&lt;p&gt;When I run the script, a Windows PowerShell console appears, but it does not look like it really did anything. Here is the newly appearing Windows PowerShell console.&lt;/p&gt;
&lt;p&gt;&lt;a href="http://blogs.technet.com/cfs-file.ashx/__key/communityserver-blogs-components-weblogfiles/00-00-00-76-18/3806.HSG_2D00_7_2D00_18_2D00_12_2D00_04.png"&gt;&lt;img src="http://blogs.technet.com/resized-image.ashx/__size/550x0/__key/communityserver-blogs-components-weblogfiles/00-00-00-76-18/3806.HSG_2D00_7_2D00_18_2D00_12_2D00_04.png" alt="Image of command output" title="Image of command output" /&gt;&lt;/a&gt;&lt;/p&gt;
&lt;p&gt;But when I go to the &lt;i&gt;c:\test&lt;/i&gt; folder, I see that all the files are fixed. This is shown here.&lt;/p&gt;
&lt;p&gt;&lt;a href="http://blogs.technet.com/cfs-file.ashx/__key/communityserver-blogs-components-weblogfiles/00-00-00-76-18/6710.HSG_2D00_7_2D00_18_2D00_12_2D00_05.png"&gt;&lt;img src="http://blogs.technet.com/resized-image.ashx/__size/550x0/__key/communityserver-blogs-components-weblogfiles/00-00-00-76-18/6710.HSG_2D00_7_2D00_18_2D00_12_2D00_05.png" alt="Image of menu" title="Image of menu" /&gt;&lt;/a&gt;&lt;/p&gt;
&lt;p&gt;That is all there is to using VBScript to run a Windows PowerShell script. WMI Event Monitoring Week will continue tomorrow when I will talk about using the WMI admin tools to monitor for newly arriving events.&lt;/p&gt;
&lt;p&gt;I invite you to follow me on &lt;a href="http://bit.ly/scriptingguystwitter" target="_blank"&gt;Twitter&lt;/a&gt; and &lt;a href="http://bit.ly/scriptingguysfacebook" target="_blank"&gt;Facebook&lt;/a&gt;. If you have any questions, send email to me at &lt;a href="mailto:scripter@microsoft.com" target="_blank"&gt;scripter@microsoft.com&lt;/a&gt;, or post your questions on the &lt;a href="http://bit.ly/scriptingforum" target="_blank"&gt;Official Scripting Guys Forum&lt;/a&gt;. See you tomorrow. Until then, peace.&lt;/p&gt;
&lt;p&gt;&lt;strong&gt;Ed Wilson, Microsoft Scripting Guy&lt;/strong&gt;&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;&lt;img src="http://blogs.technet.com/aggbug.aspx?PostID=3509459" width="1" height="1" alt="" /&gt;</description></item><item><title>Use Jobs to Run Parallel Queries or Remove Objects from Active Memory</title><link>http://powershell.com/cs/blogs/hey-scriptingguy/archive/2011/01/14/use-jobs-to-run-parallel-queries-or-remove-objects-from-active-memory.aspx</link><pubDate>Fri, 14 Jan 2011 06:00:00 GMT</pubDate><guid isPermaLink="false">f421715f-7aba-45f0-8a8d-44de5318a3a7:9018</guid><dc:creator>Anonymous</dc:creator><description>Summary: Learn how to use jobs to run parallel queries, remove objects from active memory, work with text files and use the Get-Member Cmdlet to go behind the scenes of PowerShell commands in this edition of Quick Hits Friday. In this Post: Use Jobs to...(&lt;a href="http://blogs.technet.com/b/heyscriptingguy/archive/2011/01/14/use-jobs-to-run-parallel-queries-or-remove-objects-from-active-memory.aspx"&gt;read more&lt;/a&gt;)&lt;img src="http://blogs.technet.com/aggbug.aspx?PostID=3380277" width="1" height="1" alt="" /&gt;</description></item><item><title>How Do I Install PowerShell on Windows 7 and Other Questions</title><link>http://powershell.com/cs/blogs/hey-scriptingguy/archive/2011/01/07/how-do-i-install-powershell-on-windows-7-and-other-questions.aspx</link><pubDate>Fri, 07 Jan 2011 06:00:00 GMT</pubDate><guid isPermaLink="false">f421715f-7aba-45f0-8a8d-44de5318a3a7:8944</guid><dc:creator>Anonymous</dc:creator><description>Summary: Learn how to install Windows PowerShell on Windows 7, how to detect 32-bit PowerShell, or how to read an offline registry. In this post: Install Windows PowerShell on Windows 7 Detect 32-bit PowerShell Read an Offline Registry Working with Security...(&lt;a href="http://blogs.technet.com/b/heyscriptingguy/archive/2011/01/07/how-do-i-install-powershell-on-windows-7-and-other-questions.aspx"&gt;read more&lt;/a&gt;)&lt;img src="http://blogs.technet.com/aggbug.aspx?PostID=3378838" width="1" height="1" alt="" /&gt;</description></item><item><title>Scripting Guys Holiday Special</title><link>http://powershell.com/cs/blogs/hey-scriptingguy/archive/2010/12/17/scripting-guys-holiday-special.aspx</link><pubDate>Fri, 17 Dec 2010 06:00:00 GMT</pubDate><guid isPermaLink="false">f421715f-7aba-45f0-8a8d-44de5318a3a7:8724</guid><dc:creator>Anonymous</dc:creator><description>Microsoft Scripting Guy Ed Wilson here. Remember those really cheesy late night commercials? I used to stay up late on weekends watching &amp;ldquo;The Cool Ghoul&amp;rdquo; and making fun of really bogus commercials. Evidently, I was not the only one to engage...(&lt;a href="http://blogs.technet.com/b/heyscriptingguy/archive/2010/12/17/scripting-guys-holiday-special.aspx"&gt;read more&lt;/a&gt;)&lt;img src="http://blogs.technet.com/aggbug.aspx?PostID=3375275" width="1" height="1" alt="" /&gt;</description></item><item><title>Use PowerShell to Detect Version of Internet Explorer</title><link>http://powershell.com/cs/blogs/hey-scriptingguy/archive/2010/12/10/use-powershell-to-detect-version-of-internet-explorer.aspx</link><pubDate>Fri, 10 Dec 2010 06:00:00 GMT</pubDate><guid isPermaLink="false">f421715f-7aba-45f0-8a8d-44de5318a3a7:8625</guid><dc:creator>Anonymous</dc:creator><description>Summary: Learn how to use Windows PowerShell to detect the version of Internet Explorer that is running on your computer. In this post: Access Environment Variables using a VBS Script Version Control for PowerShell Scripts Detect Internet Explorer Versions...(&lt;a href="http://blogs.technet.com/b/heyscriptingguy/archive/2010/12/10/use-powershell-to-detect-version-of-internet-explorer.aspx"&gt;read more&lt;/a&gt;)&lt;img src="http://blogs.technet.com/aggbug.aspx?PostID=3374261" width="1" height="1" alt="" /&gt;</description></item><item><title>Automatically Add Comments in PowerShell, Work with Text Files and Customize Office Communicator</title><link>http://powershell.com/cs/blogs/hey-scriptingguy/archive/2010/11/19/automatically-add-comments-in-powershell-work-with-text-files-and-customize-office-communicator.aspx</link><pubDate>Fri, 19 Nov 2010 06:00:00 GMT</pubDate><guid isPermaLink="false">f421715f-7aba-45f0-8a8d-44de5318a3a7:8398</guid><dc:creator>Anonymous</dc:creator><description>Summary: Learn how to automatically add multiline comments in the Windows PowerShell ISE, how to work with text files in VBScript, and how to customize Microsoft Office Communicator. In this post: Customize Sounds in Office Communicator Work with Text...(&lt;a href="http://blogs.technet.com/b/heyscriptingguy/archive/2010/11/19/automatically-add-comments-in-powershell-work-with-text-files-and-customize-office-communicator.aspx"&gt;read more&lt;/a&gt;)&lt;img src="http://blogs.technet.com/aggbug.aspx?PostID=3369732" width="1" height="1" alt="" /&gt;</description></item><item><title>Quick-Hits Friday: The Scripting Guys Respond to a Bunch of Questions (10/1/10)</title><link>http://powershell.com/cs/blogs/hey-scriptingguy/archive/2010/10/01/quick-hits-friday-the-scripting-guys-respond-to-a-bunch-of-questions-10-1-10.aspx</link><pubDate>Fri, 01 Oct 2010 05:00:00 GMT</pubDate><guid isPermaLink="false">f421715f-7aba-45f0-8a8d-44de5318a3a7:7742</guid><dc:creator>Anonymous</dc:creator><description>Summary : The Scripting Guys show you how to use functions in Windows PowerShell background jobs, troubleshoot VBScript, and use WMI computer shutdown events. In this post : WMI Computer Shutdown Events Use Functions in Windows PowerShell Background Jobs...(&lt;a href="http://blogs.technet.com/b/heyscriptingguy/archive/2010/10/01/quick-hits-friday-the-scripting-guys-respond-to-a-bunch-of-questions-10-1-10.aspx"&gt;read more&lt;/a&gt;)&lt;img src="http://blogs.technet.com/aggbug.aspx?PostID=3359135" width="1" height="1" alt="" /&gt;</description></item><item><title>Quick-Hits Friday: Run VBScript from the PowerShell Console, and Search for Multiple Extensions</title><link>http://powershell.com/cs/blogs/hey-scriptingguy/archive/2010/09/17/quick-hits-friday-run-vbscript-from-the-powershell-console-and-search-for-multiple-extensions.aspx</link><pubDate>Fri, 17 Sep 2010 05:00:00 GMT</pubDate><guid isPermaLink="false">f421715f-7aba-45f0-8a8d-44de5318a3a7:7629</guid><dc:creator>Anonymous</dc:creator><description>Summary : The Microsoft Scripting Guys discuss adding Run As capability to VBScript and using Windows PowerShell to run VBScript. Also discussed: Searching for multiple extensions, and creating a local account and adding it to the local administrators...(&lt;a href="http://blogs.technet.com/b/heyscriptingguy/archive/2010/09/17/add-runas-capability-to-vbscript-and-use-powershell-to-run-vbscript.aspx"&gt;read more&lt;/a&gt;)&lt;img src="http://blogs.technet.com/aggbug.aspx?PostID=3354804" width="1" height="1" alt="" /&gt;</description></item><item><title>Quick-Hits Friday: The Scripting Guys Respond to a Bunch of Questions (9/10/10)</title><link>http://powershell.com/cs/blogs/hey-scriptingguy/archive/2010/09/10/quick-hits-friday-the-scripting-guys-respond-to-a-bunch-of-questions-9-10-10.aspx</link><pubDate>Fri, 10 Sep 2010 05:00:00 GMT</pubDate><guid isPermaLink="false">f421715f-7aba-45f0-8a8d-44de5318a3a7:7573</guid><dc:creator>Anonymous</dc:creator><description>Summary : The Scripting Guys answer questions about Windows Features, and discuss troubleshooting VBScript scripts and Windows PowerShell. In this post : Converting a VBScript Script to a Windows PowerShell Script Using the Add-Windowsfeature Cmdlet to...(&lt;a href="http://blogs.technet.com/b/heyscriptingguy/archive/2010/09/10/quick-hits-friday-the-scripting-guys-respond-to-a-bunch-of-questions-9-10-10.aspx"&gt;read more&lt;/a&gt;)&lt;img src="http://blogs.technet.com/aggbug.aspx?PostID=3354165" width="1" height="1" alt="" /&gt;</description></item><item><title>Quick-Hits Friday: The Scripting Guys Respond to a Bunch of Questions (8/27/10)</title><link>http://powershell.com/cs/blogs/hey-scriptingguy/archive/2010/08/27/quick-hits-friday-the-scripting-guys-respond-to-a-bunch-of-questions-8-27-10.aspx</link><pubDate>Fri, 27 Aug 2010 05:00:00 GMT</pubDate><guid isPermaLink="false">f421715f-7aba-45f0-8a8d-44de5318a3a7:7493</guid><dc:creator>Anonymous</dc:creator><description>In this post : How Can I Take Script Output and Use It in Other Scripts? Troubleshooting a Script That Reads from Excel Does Windows 7 Recognize VBScript Scripts? Can I Change the Path to the Profile Folder in Windows PowerShell? How Can I Take Script...(&lt;a href="http://blogs.technet.com/b/heyscriptingguy/archive/2010/08/27/quick-hits-friday-the-scripting-guys-answer-a-bunch-of-questions-8-27-10.aspx"&gt;read more&lt;/a&gt;)&lt;img src="http://blogs.technet.com/aggbug.aspx?PostID=3351991" width="1" height="1" alt="" /&gt;</description></item></channel></rss>