Computer Hope

Software => Computer programming => Topic started by: kiritateru on February 18, 2007, 04:46:00 PM

Title: Batch files help please!
Post by: kiritateru on February 18, 2007, 04:46:00 PM
hi, i was wondering if when creating a batch file i could give it a command to open internet explorer, but to open IE with a site, such as google.
 
can it be done?
 
thank in advance if you do help
Title: Re: Batch files help please!
Post by: dkdeath on February 19, 2007, 03:42:09 AM
create a batch file an place this

@echo off

cd c:\program files\internet explorer\
iexplore.exe www.google.com
Title: Re: Batch files help please!
Post by: fffreak on February 19, 2007, 04:44:47 PM
You can also do this...

Code: [Select]
explorer.exe http://www.google.com