Windows Vista Forums
Vista Forums Home Join Vista Forums Webcasts Windows 7 Forum Vista Tutorials Tags

Welcome to Vista Forums we are your forum to discuss Windows Vista x64 and x86 systems. Whether you need help or just want to post an idea you have on Vista, this is the forum for you.
Register at Vista forums...the world biggest Windows Vista resource Join Vista Forums Now

Go Back   Vista Forums > Microsoft Technical Newsgroups > PowerShell

Running batch file from Powershell script

Update your Vista Drivers Update Your Drivers Now!!
Closed Thread
 
Thread Tools Display Modes
Old 09-26-2007   #1 (permalink)
Varun Bansal
Guest


 

Running batch file from Powershell script

Hi,

Can anyone tell me how to run a batch file from a Powershell script? Will
appreciate a sample code.

Thanks in advance,
Varun



My System SpecsSystem Spec
Old 09-26-2007   #2 (permalink)
Keith Hill
Guest


 

Re: Running batch file from Powershell script

"Varun Bansal" <varun_bits@xxxxxx> wrote in message
news:#bbnXiLAIHA.5868@xxxxxx
Quote:

> Hi,
>
> Can anyone tell me how to run a batch file from a Powershell script? Will
> appreciate a sample code.
>
It's pretty straight forward:

41> '@echo "I am a batch file"' | out-file -enc ascii foo.bat
42> .\foo.bat
"I am a batch file"

--
Keith

My System SpecsSystem Spec
Old 09-27-2007   #3 (permalink)
Varun Bansal
Guest


 

Re: Running batch file from Powershell script

Thanks Keith!


"Keith Hill" <r_keith_hill@xxxxxx_spam_I> wrote in message
news:8CA1179B-857E-466D-8D9C-02BCCF643F14@xxxxxx
Quote:

> "Varun Bansal" <varun_bits@xxxxxx> wrote in message
> news:#bbnXiLAIHA.5868@xxxxxx
Quote:

>> Hi,
>>
>> Can anyone tell me how to run a batch file from a Powershell script? Will
>> appreciate a sample code.
>>
>
> It's pretty straight forward:
>
> 41> '@echo "I am a batch file"' | out-file -enc ascii foo.bat
> 42> .\foo.bat
> "I am a batch file"
>
> --
> Keith

My System SpecsSystem Spec
Closed Thread

Thread Tools
Display Modes



Similar Threads
Thread Thread Starter Forum Replies Last Post
Help with a Batch file script (FTP) MariusK Vista General 2 07-31-2008 08:13 PM
replicate a batch script to powershell zuume84 PowerShell 3 09-17-2007 03:28 PM
$AdminSessionADSettings when running Exchange script from batch mpriem PowerShell 1 07-17-2007 09:20 AM
Call powershell script via Batch-File kr1999@gmx.de PowerShell 2 07-02-2007 10:50 AM
How to run PS script with parameters from cmd batch file? =?Utf-8?B?Um9tYW4gS3V6bWlu?= PowerShell 5 07-22-2006 10:00 AM


Vistax64.com is an independent web site and has not been authorized,
sponsored, or otherwise approved by Microsoft Corporation.
"Windows Vista", the Start Orb, and related materials are trademarks of Microsoft Corp.
Designer Media 2005-2008

1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51