A Windows XP help forum. PCbanter

If this is your first visit, be sure to check out the FAQ by clicking the link above. You may have to register before you can post: click the register link above to proceed. To start viewing messages, select the forum that you want to visit from the selection below.

Go Back   Home » PCbanter forum » Microsoft Windows XP » The Basics
Site Map Home Register Authors List Search Today's Posts Mark Forums Read Web Partners

How to share IE favorites



 
 
Thread Tools Display Modes
  #1  
Old April 23rd 03, 05:58 PM
Mepol
external usenet poster
 
Posts: n/a
Default How to share IE favorites

Hi, I have a XP pro desktop and a XP Home notebook. They are on the same
network. I want to set up my system to share one set of favorite web sites.
So no matter which pc I am using, I always get the same favorite list, and
when I add a new one they both see the site. Is this possible? If how?
Thanks all in advance.


Ads
  #2  
Old April 23rd 03, 07:50 PM
Torgeir Bakken (MVP)
external usenet poster
 
Posts: n/a
Default How to share IE favorites

Mepol wrote:

Hi, I have a XP pro desktop and a XP Home notebook. They are on the same
network. I want to set up my system to share one set of favorite web sites.
So no matter which pc I am using, I always get the same favorite list, and
when I add a new one they both see the site. Is this possible? If how?
Thanks all in advance.


Below is a VBScript that redirects the pointer to "Favorites" (you may need a
logoff/logon to see the change, or at least you need to stop and start IE if it
is already started).

"Favorites" is the value that is changed (it is placed under two different
registry keys). Change the path in the variable sMyFavPath as you see fit.

Put the script in a text file with .vbs file extension and double

%--- Cut Here ---

' Change to correct path here
sMyFavPath = "U:\CommonFav"

Set oShell = CreateObject("WScript.Shell")

oShell.RegWrite "HKCU\Software\Microsoft\Windows\CurrentVersio n\" _
& "Explorer\Shell Folders\Personal", sMyFavPath, "REG_SZ"

oShell.RegWrite "HKCU\Software\Microsoft\Windows\CurrentVersio n\" _
& "Explorer\User Shell Folders\Personal", sMyFavPath, "REG_EXPAND_SZ"

MsgBox "Finished"

%--- Cut Here ---


--
torgeir
Microsoft MVP Scripting and WMI, Porsgrunn Norway
Administration scripting examples and an ONLINE version of the 1328 page
Scripting Guide: http://www.microsoft.com/technet/scriptcenter


  #3  
Old April 23rd 03, 07:50 PM
Torgeir Bakken (MVP)
external usenet poster
 
Posts: n/a
Default How to share IE favorites

Mepol wrote:

Hi, I have a XP pro desktop and a XP Home notebook. They are on the same
network. I want to set up my system to share one set of favorite web sites.
So no matter which pc I am using, I always get the same favorite list, and
when I add a new one they both see the site. Is this possible? If how?
Thanks all in advance.


Below is a VBScript that redirects the pointer to "Favorites" (you may need a
logoff/logon to see the change, or at least you need to stop and start IE if it
is already started).

"Favorites" is the value that is changed (it is placed under two different
registry keys). Change the path in the variable sMyFavPath as you see fit.

Put the script in a text file with .vbs file extension and double

%--- Cut Here ---

' Change to correct path here
sMyFavPath = "U:\CommonFav"

Set oShell = CreateObject("WScript.Shell")

oShell.RegWrite "HKCU\Software\Microsoft\Windows\CurrentVersio n\" _
& "Explorer\Shell Folders\Personal", sMyFavPath, "REG_SZ"

oShell.RegWrite "HKCU\Software\Microsoft\Windows\CurrentVersio n\" _
& "Explorer\User Shell Folders\Personal", sMyFavPath, "REG_EXPAND_SZ"

MsgBox "Finished"

%--- Cut Here ---


--
torgeir
Microsoft MVP Scripting and WMI, Porsgrunn Norway
Administration scripting examples and an ONLINE version of the 1328 page
Scripting Guide: http://www.microsoft.com/technet/scriptcenter


  #4  
Old April 23rd 03, 08:17 PM
Mepol
external usenet poster
 
Posts: n/a
Default How to share IE favorites

Thanks, I will try it out.


"Torgeir Bakken (MVP)" wrote in message
...
Mepol wrote:

Hi, I have a XP pro desktop and a XP Home notebook. They are on the same
network. I want to set up my system to share one set of favorite web

sites.
So no matter which pc I am using, I always get the same favorite list,

and
when I add a new one they both see the site. Is this possible? If how?
Thanks all in advance.


Below is a VBScript that redirects the pointer to "Favorites" (you may

need a
logoff/logon to see the change, or at least you need to stop and start IE

if it
is already started).

"Favorites" is the value that is changed (it is placed under two different
registry keys). Change the path in the variable sMyFavPath as you see fit.

Put the script in a text file with .vbs file extension and double

%--- Cut Here ---

' Change to correct path here
sMyFavPath = "U:\CommonFav"

Set oShell = CreateObject("WScript.Shell")

oShell.RegWrite "HKCU\Software\Microsoft\Windows\CurrentVersio n\" _
& "Explorer\Shell Folders\Personal", sMyFavPath, "REG_SZ"

oShell.RegWrite "HKCU\Software\Microsoft\Windows\CurrentVersio n\" _
& "Explorer\User Shell Folders\Personal", sMyFavPath, "REG_EXPAND_SZ"

MsgBox "Finished"

%--- Cut Here ---


--
torgeir
Microsoft MVP Scripting and WMI, Porsgrunn Norway
Administration scripting examples and an ONLINE version of the 1328 page
Scripting Guide: http://www.microsoft.com/technet/scriptcenter




  #5  
Old April 23rd 03, 08:17 PM
Mepol
external usenet poster
 
Posts: n/a
Default How to share IE favorites

Thanks, I will try it out.


"Torgeir Bakken (MVP)" wrote in message
...
Mepol wrote:

Hi, I have a XP pro desktop and a XP Home notebook. They are on the same
network. I want to set up my system to share one set of favorite web

sites.
So no matter which pc I am using, I always get the same favorite list,

and
when I add a new one they both see the site. Is this possible? If how?
Thanks all in advance.


Below is a VBScript that redirects the pointer to "Favorites" (you may

need a
logoff/logon to see the change, or at least you need to stop and start IE

if it
is already started).

"Favorites" is the value that is changed (it is placed under two different
registry keys). Change the path in the variable sMyFavPath as you see fit.

Put the script in a text file with .vbs file extension and double

%--- Cut Here ---

' Change to correct path here
sMyFavPath = "U:\CommonFav"

Set oShell = CreateObject("WScript.Shell")

oShell.RegWrite "HKCU\Software\Microsoft\Windows\CurrentVersio n\" _
& "Explorer\Shell Folders\Personal", sMyFavPath, "REG_SZ"

oShell.RegWrite "HKCU\Software\Microsoft\Windows\CurrentVersio n\" _
& "Explorer\User Shell Folders\Personal", sMyFavPath, "REG_EXPAND_SZ"

MsgBox "Finished"

%--- Cut Here ---


--
torgeir
Microsoft MVP Scripting and WMI, Porsgrunn Norway
Administration scripting examples and an ONLINE version of the 1328 page
Scripting Guide: http://www.microsoft.com/technet/scriptcenter




  #6  
Old December 5th 03, 12:04 AM
Joan and Al
external usenet poster
 
Posts: n/a
Default Favorites

Hi: How can I get a print out list of my favorites? Thanks, Alan


  #7  
Old December 5th 03, 12:04 AM
taurarian
external usenet poster
 
Posts: n/a
Default Favorites

In IE - select File from Menu
then select Import and Export
Wizard comes up, select next
Export Fvourites, next
Select favourites, next
Export to file or address (take note where you are sending
the file to)
Continue until finished.

Your favourites are now listed as a .htm file presumably
called bookmark if left as the default.

Hope this assists you.

-----Original Message-----
Hi: How can I get a print out list of my favorites?

Thanks, Alan


.

  #8  
Old December 5th 03, 12:04 AM
River0401
external usenet poster
 
Posts: n/a
Default Favorites

Open Internet Explorer
Go to File / Import and Export
Chose Export Favorites
Click Export to a File or Address
Click the Browse button and navigate to where u want to save the file
Find the file and double click it
It will open your favorites as an html document
You can print the list from there

Hope this helps!

"Joan and Al" wrote in message
m...
Hi: How can I get a print out list of my favorites? Thanks, Alan




 




Thread Tools
Display Modes

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

vB code is On
Smilies are On
[IMG] code is Off
HTML code is Off






All times are GMT +1. The time now is 08:28 PM.


Powered by vBulletin® Version 3.6.4
Copyright ©2000 - 2024, Jelsoft Enterprises Ltd.
Copyright ©2004-2024 PCbanter.
The comments are property of their posters.