PC Review


Reply
Thread Tools Rate Thread

batch file for IE7 Homepage

 
 
bigwillywgl@gmail.com
Guest
Posts: n/a
 
      27th Feb 2007
Sorry to bother everyone, but I need a batch file to change the
homepage for IE7. We have a company that uses sharepoint and we are
moving sharepoint onto a different server. I was wondering if it was
at all possible to get a batch file to change their homepage from
server to the other, without having to go to each PC and changing it
manually? Any help would be much appreciated! I do know that there is
an option in regedit to change the "start page"="ps08" for instance,
but I have not been able to create a batch in order to do so!

Thanks!!!

 
Reply With Quote
 
 
 
 
Ayush
Guest
Posts: n/a
 
      27th Feb 2007
Replied to [(E-Mail Removed)]s message :
> Sorry to bother everyone, but I need a batch file to change the
> homepage for IE7. We have a company that uses sharepoint and we are
> moving sharepoint onto a different server. I was wondering if it was
> at all possible to get a batch file to change their homepage from
> server to the other, without having to go to each PC and changing it
> manually? Any help would be much appreciated! I do know that there is
> an option in regedit to change the "start page"="ps08" for instance,
> but I have not been able to create a batch in order to do so!
>
> Thanks!!!
>



You can use the reg.exe command. Type reg /? at command prompt for more help.

Good Luck, Ayush.
--
Windows XP: http://www.microsoft.com/windows/usi...p/default.mspx
 
Reply With Quote
 
bigwillywgl@gmail.com
Guest
Posts: n/a
 
      27th Feb 2007
On Feb 27, 3:35 pm, Ayush <"ayushmaan.j[aatt]gmail.com"> wrote:
> Replied to [bigwilly...@gmail.com]s message :
>
> > Sorry to bother everyone, but I need a batch file to change the
> > homepage for IE7. We have a company that uses sharepoint and we are
> > moving sharepoint onto a different server. I was wondering if it was
> > at all possible to get a batch file to change their homepage from
> > server to the other, without having to go to each PC and changing it
> > manually? Any help would be much appreciated! I do know that there is
> > an option in regedit to change the "start page"="ps08" for instance,
> > but I have not been able to create a batch in order to do so!

>
> > Thanks!!!

>
> You can use the reg.exe command. Type reg /? at command prompt for more help.
>
> Good Luck, Ayush.
> --
> Windows XP:http://www.microsoft.com/windows/usi...p/default.mspx


is there any way you can help me any more than that, I tried to use
but I want to make sure that nothing too horrible happens to the
computer. Especially if I am changing anything in the Registry?
Basically what I need to do is change the current default from ps02 to
ps08 with a batch file so i can add this onto their login batch.

 
Reply With Quote
 
Ayush
Guest
Posts: n/a
 
      27th Feb 2007
Replied to [(E-Mail Removed)]s message :
> is there any way you can help me any more than that, I tried to use
> but I want to make sure that nothing too horrible happens to the
> computer. Especially if I am changing anything in the Registry?
> Basically what I need to do is change the current default from ps02 to
> ps08 with a batch file so i can add this onto their login batch.
>


For IE6, this will work(i dont know the reg key/value for IE7) :
;`````````````````````````````````````````````;
@echo off
set key=HKCU\Software\Microsoft\Internet Explorer\Main
set value=Start page
set data=ps08

reg.exe add "%key%" /v "%value%" /d "%data%" /f
;`````````````````````````````````````````````;



Good Luck, Ayush.
--
XP-Tips & Tricks [Use keyboard shortcuts] :
http://www.microsoft.com/windowsxp/u...shortcuts.mspx
 
Reply With Quote
 
bigwillywgl@gmail.com
Guest
Posts: n/a
 
      28th Feb 2007
On Feb 27, 4:54 pm, Ayush <"ayushmaan.j[aatt]gmail.com"> wrote:
> Replied to [bigwilly...@gmail.com]s message :
>
> > is there any way you can help me any more than that, I tried to use
> > but I want to make sure that nothing too horrible happens to the
> > computer. Especially if I am changing anything in the Registry?
> > Basically what I need to do is change the current default from ps02 to
> > ps08 with a batch file so i can add this onto their login batch.

>
> For IE6, this will work(i dont know the reg key/value for IE7) :
> ;`````````````````````````````````````````````;
> @echo off
> set key=HKCU\Software\Microsoft\Internet Explorer\Main
> set value=Start page
> set data=ps08
>
> reg.exe add "%key%" /v "%value%" /d "%data%" /f
> ;`````````````````````````````````````````````;
>
> Good Luck, Ayush.
> --
> XP-Tips & Tricks [Use keyboard shortcuts] :http://www.microsoft.com/windowsxp/u...shortcuts.mspx


here is wut i typed in many different ways and nothing happens to the
"start page"
@echo off
reg.exe add %hkcu\software\microsoft\internet explorer\main% /v %start
page% /d %ps08%
as well as with the quotes and with out the percent signs, nothing
seems to be working? any other clues maybe?
sorry for the inconvience im not that great at dos commands and such.
Thanks for all the help so far!!

 
Reply With Quote
 
Ayush
Guest
Posts: n/a
 
      28th Feb 2007
(E-Mail Removed) wrote ::
> here is wut i typed in many different ways and nothing happens to the
> "start page"
> @echo off
> reg.exe add %hkcu\software\microsoft\internet explorer\main% /v %start
> page% /d %ps08%
> as well as with the quotes and with out the percent signs, nothing
> seems to be working? any other clues maybe?
> sorry for the inconvience im not that great at dos commands and such.
> Thanks for all the help so far!!
>


what is wrong with the batch file i gave you ?

If you want a single line, then use :
reg.exe add "HKCU\Software\Microsoft\Internet Explorer\Main" /v "Start
Page" /d "ps08" /f



Good Luck, Ayush.
--
XP-Tips [Schedule a weekly defragmentation] :
http://www.microsoft.com/windowsxp/u...ps/defrag.mspx
 
Reply With Quote
 
bigwillywgl@gmail.com
Guest
Posts: n/a
 
      1st Mar 2007
On Feb 28, 4:18 pm, Ayush <"ayushmaan.j[aatt]gmail.com"> wrote:
> bigwilly...@gmail.com wrote ::
>
> > here is wut i typed in many different ways and nothing happens to the
> > "start page"
> > @echo off
> > reg.exe add %hkcu\software\microsoft\internet explorer\main% /v %start
> > page% /d %ps08%
> > as well as with the quotes and with out the percent signs, nothing
> > seems to be working? any other clues maybe?
> > sorry for the inconvience im not that great at dos commands and such.
> > Thanks for all the help so far!!

>
> what is wrong with the batch file i gave you ?
>
> If you want a single line, then use :
> reg.exe add "HKCU\Software\Microsoft\Internet Explorer\Main" /v "Start
> Page" /d "ps08" /f
>
> Good Luck, Ayush.
> --
> XP-Tips [Schedule a weekly defragmentation] :http://www.microsoft.com/windowsxp/u...ps/defrag.mspx


Thank you Much!! that worked very well, i guess the problem was the %
's made my job alittle easier for tomorrow!!
Thanks again,
Will

 
Reply With Quote
 
Ayush
Guest
Posts: n/a
 
      1st Mar 2007
(E-Mail Removed) wrote ::
> Thank you Much!! that worked very well, i guess the problem was the %
> 's made my job alittle easier for tomorrow!!
> Thanks again,
> Will


You are welcome.


Good Luck, Ayush.
--
XP-Tips [Create personal screensaver using your photos] :
http://www.microsoft.com/windowsxp/u...reensaver.mspx
 
Reply With Quote
 
 
 
Reply

Thread Tools
Rate This Thread
Rate This Thread:

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are Off


Similar Threads
Thread Thread Starter Forum Replies Last Post
A script/batch to kill a batch file from scheduled tasks? Bogdan Windows XP Configuration 1 31st Jul 2009 06:05 AM
batch file call from a macro - how ? and required batch format VB-rookie Microsoft Excel Programming 3 5th Sep 2008 10:33 PM
calling multiple batch files from within a batch file yawnmoth Windows XP General 3 26th May 2008 06:47 PM
Batch file works in command line but not as a batch Danger Windows XP General 7 5th Feb 2008 04:50 PM
Save batch window msgs to a file from the batch prog Stephen Rainey Windows XP General 3 10th Jan 2007 12:50 AM


Features
 

Advertising
 

Newsgroups
 


All times are GMT +1. The time now is 06:30 AM.