﻿<?xml version="1.0" encoding="utf-8"?><rss version="2.0"><channel><title>Windows PowerShell</title><link>http://www.visualbasicscript.com/</link><description /><copyright>(c) VBScript Forum</copyright><ttl>30</ttl><item><title>PowerShell Script to generate IE8 Fanboy Adblock XML (for import to InPrivate) (rekrapg)</title><description>Hi All,
Took me a while, but I finally got there - script to download Fanboy's IE9 TPL Adblock files, clean them up, generate XML ready for import :)  Anyone able to convert to VBS might be handy too.  Reason for script is i'm stuck on XP at work, IE o</description><link>http://www.visualbasicscript.com/fb.ashx?m=95777</link><pubDate>Thu, 12 Jan 2012 16:52:55 GMT</pubDate></item><item><title>How to reset Windows Password with Windows password reset software when you lost or forgot (bydwpr2011)</title><description>Off-Topic Lounge: http://www.visualbasicscript.com/fb.ashx?m=95660</description><link>http://www.visualbasicscript.com/fb.ashx?m=95665</link><pubDate>Fri, 06 Jan 2012 08:49:30 GMT</pubDate></item><item><title>What can we do when forgot/lost WIndows admin password? (syonxu)</title><description>Off-Topic Lounge: http://www.visualbasicscript.com/fb.ashx?m=95300</description><link>http://www.visualbasicscript.com/fb.ashx?m=95304</link><pubDate>Fri, 09 Dec 2011 07:58:14 GMT</pubDate></item><item><title>Re:comparing files for changes (ebgreen)</title><description>You could run a scheduled task to look at the last modified time of the file then compare that to the last time that the script ran. Usually for this sort of task however I use a WMI Event Sink to make a script fire whenever the file is modified.</description><link>http://www.visualbasicscript.com/fb.ashx?m=95266</link><pubDate>Wed, 07 Dec 2011 08:27:39 GMT</pubDate></item><item><title>comparing files for changes (bjpeck28)</title><description>Hey guys..
 
i am fairly new to Powershell here and I am trying to write a script that will allow me to "keep an eye" on the file and then write an event in my event log telling me that something was changed to that file.  I really want to base it of</description><link>http://www.visualbasicscript.com/fb.ashx?m=95258</link><pubDate>Tue, 06 Dec 2011 17:21:32 GMT</pubDate></item><item><title>exchange web services (faulkkev)</title><description>I installed the web service tools but when I run it remotely I just get a prompt not error.  Anyone have any idea what i'm doing wrong.  I have unread emails. 
 
 

$MailboxName = "jj@acme.com"
#Load the dll
$WebServicesdll = "C:\Program Files\</description><link>http://www.visualbasicscript.com/fb.ashx?m=94963</link><pubDate>Mon, 21 Nov 2011 09:24:22 GMT</pubDate></item><item><title>Problem opening windows application with help of WScript (tehrijack)</title><description>WSH &amp; Client Side VBScript: http://www.visualbasicscript.com/fb.ashx?m=94790</description><link>http://www.visualbasicscript.com/fb.ashx?m=94796</link><pubDate>Mon, 14 Nov 2011 11:36:13 GMT</pubDate></item><item><title>Re:Script to search multiple file types and email (BenC)</title><description>Solved it.
 
$Dir = get-childitem C:\ -recurse 
# $Dir |get-member 
$List = $Dir | where {$_.extension -match ".mp3" -or $_.extension -match ".wav"} 
$List |ft fullname |out-file C:\music.txt 
# List | format-table name</description><link>http://www.visualbasicscript.com/fb.ashx?m=94737</link><pubDate>Fri, 11 Nov 2011 04:33:20 GMT</pubDate></item><item><title>Re:Script to search multiple file types and email (BenC)</title><description>Hi, I have found a script that works for one file extension but I cant add more. I want to add wav and aac files to this if possible:
 
$Dir = get-childitem C:\ -recurse 
# $Dir |get-member 
$List = $Dir | where {$_.extension -match ".mp3"}
$List</description><link>http://www.visualbasicscript.com/fb.ashx?m=94736</link><pubDate>Fri, 11 Nov 2011 02:02:13 GMT</pubDate></item><item><title>Re:Script to search multiple file types and email (59cobalt)</title><description>Get-ChildItem C:\* -Include *.mp3,*.wav -Exclude A*</description><link>http://www.visualbasicscript.com/fb.ashx?m=94719</link><pubDate>Thu, 10 Nov 2011 12:04:19 GMT</pubDate></item><item><title>Re:Script to search multiple file types and email (BenC)</title><description>So from that I have this code 
  
get-childitem c:\* -include *.txt -exclude A* 
For multiple extensions how are they seperated it doesnt give help with that? 
  
is it: 
get-childitem c:\* -include *.mp3;*.wav -exclude A*</description><link>http://www.visualbasicscript.com/fb.ashx?m=94714</link><pubDate>Thu, 10 Nov 2011 09:48:05 GMT</pubDate></item><item><title>Re:Script to search multiple file types and email (ebgreen)</title><description>Look at the -Include parameter of the Get-ChildItem cmdlet. It will let you just get files with the extensions that you want. In powershell type:
 
Get-Help Get-ChildItem -detail</description><link>http://www.visualbasicscript.com/fb.ashx?m=94712</link><pubDate>Thu, 10 Nov 2011 09:42:04 GMT</pubDate></item><item><title>Re:Script to search multiple file types and email (BenC)</title><description>Ive already been on google, this is what I have so far but it doesnt work. Im trying to learn as I go but its hard.
 
# PowerShell script to list the music files in music.txt file
$Dir = get-childitem C:\ -recurse
# $Dir |get-member
$List = $Dir |</description><link>http://www.visualbasicscript.com/fb.ashx?m=94711</link><pubDate>Thu, 10 Nov 2011 09:38:08 GMT</pubDate></item><item><title>Re:Script to search multiple file types and email (ebgreen)</title><description>Google should get you started. Break it into pieces and figure out one piece at a time. Start with the finding the files part. Searc for information on the Get-ChildItem cmdlet to get yourself started.</description><link>http://www.visualbasicscript.com/fb.ashx?m=94710</link><pubDate>Thu, 10 Nov 2011 09:36:14 GMT</pubDate></item><item><title>Script to search multiple file types and email (BenC)</title><description>Hi guys I was hoping someone could help me please.

I need a script that will search a specific network share for multiple file types then email what files it has found to me afterwards either by attaching a csv file to the email or putting the results</description><link>http://www.visualbasicscript.com/fb.ashx?m=94709</link><pubDate>Thu, 10 Nov 2011 09:16:34 GMT</pubDate></item><item><title>Javascript TO VBscript help (traviss)</title><description>WSH &amp; Client Side VBScript: http://www.visualbasicscript.com/fb.ashx?m=94615</description><link>http://www.visualbasicscript.com/fb.ashx?m=94616</link><pubDate>Fri, 04 Nov 2011 15:59:40 GMT</pubDate></item><item><title>run as VBS script neeeeeed help (BiG_Ze)</title><description>WSH &amp; Client Side VBScript: http://www.visualbasicscript.com/fb.ashx?m=94366</description><link>http://www.visualbasicscript.com/fb.ashx?m=94367</link><pubDate>Wed, 19 Oct 2011 12:54:20 GMT</pubDate></item><item><title>Re:powershell to vbscript? (ebgreen)</title><description>Generally speaking yes. It really just depends on exactly what the script is doing.</description><link>http://www.visualbasicscript.com/fb.ashx?m=94258</link><pubDate>Fri, 14 Oct 2011 07:06:21 GMT</pubDate></item><item><title>powershell to vbscript? (fullyloaded)</title><description>Hi
i was wondering if it's posable to convert a powershell script to vbscript?</description><link>http://www.visualbasicscript.com/fb.ashx?m=94257</link><pubDate>Fri, 14 Oct 2011 00:55:58 GMT</pubDate></item><item><title>copy folder from "c:\Users\%UserName%\..." (uyt95)</title><description>WSH &amp; Client Side VBScript: http://www.visualbasicscript.com/fb.ashx?m=94230</description><link>http://www.visualbasicscript.com/fb.ashx?m=94231</link><pubDate>Thu, 13 Oct 2011 09:42:41 GMT</pubDate></item><item><title>Some useful PowerShell resources (admins feel free to edit / make sticky) (mab9595)</title><description>WSH &amp; Client Side VBScript: http://www.visualbasicscript.com/fb.ashx?m=93089</description><link>http://www.visualbasicscript.com/fb.ashx?m=93090</link><pubDate>Sun, 21 Aug 2011 10:11:57 GMT</pubDate></item><item><title>Re:PowerShell and DOS commands? (ebgreen)</title><description>Good point.</description><link>http://www.visualbasicscript.com/fb.ashx?m=92908</link><pubDate>Mon, 15 Aug 2011 09:58:00 GMT</pubDate></item><item><title>Re:PowerShell and DOS commands? (59cobalt)</title><description>Powershell scripts end with a PS1 extension not VBS. For that matter DOS scripts are batch files (BAT extension) not Visual Basic Scripts (VBS extension). VBS files run in the Windows Script Host (WSH) not DOS.
While we're at it:</description><link>http://www.visualbasicscript.com/fb.ashx?m=92906</link><pubDate>Mon, 15 Aug 2011 09:24:28 GMT</pubDate></item><item><title>Re:PowerShell and DOS commands? (ebgreen)</title><description>So the answer is a resounding sometimes. First let's start with the fact that the powershell prompt is most definitely *not* the dos cmd prompt. However the developers of powershell wanted to make it as inviting as possible to both people accustom to DOS</description><link>http://www.visualbasicscript.com/fb.ashx?m=92900</link><pubDate>Mon, 15 Aug 2011 08:25:29 GMT</pubDate></item><item><title>PowerShell and DOS commands? (Dark Water Streams)</title><description>Dear old Dad who is a coding enthusiast and does I.T. security was telling me all about Power Shell. Now, does Power Shell let you run all the prompt commands as if it were still DOS 6.22? Do power shell files still run under .VB</description><link>http://www.visualbasicscript.com/fb.ashx?m=92882</link><pubDate>Sun, 14 Aug 2011 11:10:22 GMT</pubDate></item></channel></rss>
