+ Post New Thread
Page 1 of 2 12 LastLast
Results 1 to 15 of 16
Windows Server 2008 Thread, folder redirection 'Favorites' in Technical; This is starting to drive me a little mad lol Im having trouble trying to point the redirection to the ...
  1. #1
    PEO
    PEO is offline
    PEO's Avatar
    Join Date
    Oct 2007
    Posts
    2,084
    Thank Post
    437
    Thanked 148 Times in 93 Posts
    Rep Power
    68

    folder redirection 'Favorites'

    This is starting to drive me a little mad lol

    Im having trouble trying to point the redirection to the users individual Favorites folder

    I have S:\ mapped to \\W8E-DC01\%USERNAME%Cached$

    which points to the users work folder.

    so I tried the following UNC path in the folder redirection for Favorites

    \\W8E-DC01\%USERNAME%Cached$\Favorites

    I've done a GPUPDATE but still having no joy.

    Can anyone help?

    Cheers
    Last edited by PEO; 28th April 2009 at 10:36 AM.

  2. IDG Tech News
  3. #2
    leco's Avatar
    Join Date
    Nov 2006
    Location
    West Yorkshire
    Posts
    2,026
    Thank Post
    595
    Thanked 125 Times in 119 Posts
    Rep Power
    39
    Which option are you using in GPO? Is it "Create a folder ..." or "Redirect to this ocation"? If the first the breadcrumbs show where the redirect will ultimately go i.e. it already knows that you want it to be \Claire\Favorites. Had a bit of a tussle with this myself, sorted now I think but my locations are not combinations of system variable+name$ shares, don't know if that makes a difference.

  4. Thanks to leco from:

    PEO (28th April 2009)

  5. #3

    AngryTechnician's Avatar
    Join Date
    Oct 2008
    Posts
    3,227
    Thank Post
    595
    Thanked 1,020 Times in 635 Posts
    Rep Power
    345
    Just a sanity check, the clients are running Vista and not XP? Favourites redirection is not available on XP clients (at least not via the 'normal' method).

  6. Thanks to AngryTechnician from:

    PEO (28th April 2009)

  7. #4
    tomscaper's Avatar
    Join Date
    Jul 2006
    Posts
    814
    Thank Post
    118
    Thanked 29 Times in 15 Posts
    Rep Power
    19
    We use a script for favorite redirection. Will put it up when i find it.

  8. Thanks to tomscaper from:

    PEO (28th April 2009)

  9. #5
    PEO
    PEO is offline
    PEO's Avatar
    Join Date
    Oct 2007
    Posts
    2,084
    Thank Post
    437
    Thanked 148 Times in 93 Posts
    Rep Power
    68
    Quote Originally Posted by AngryTechnician View Post
    Just a sanity check, the clients are running Vista and not XP? Favourites redirection is not available on XP clients (at least not via the 'normal' method).
    using xpSP3 no vista clients on network... Can't believe I did not realise this

  10. #6
    PEO
    PEO is offline
    PEO's Avatar
    Join Date
    Oct 2007
    Posts
    2,084
    Thank Post
    437
    Thanked 148 Times in 93 Posts
    Rep Power
    68
    Quote Originally Posted by tomscaper View Post
    We use a script for favorite redirection. Will put it up when i find it.
    Cheers Tom

  11. #7

    plexer's Avatar
    Join Date
    Dec 2005
    Location
    Norfolk
    Posts
    11,295
    Thank Post
    414
    Thanked 1,159 Times in 1,050 Posts
    Rep Power
    263

  12. Thanks to plexer from:

    PEO (28th April 2009)

  13. #8
    PEO
    PEO is offline
    PEO's Avatar
    Join Date
    Oct 2007
    Posts
    2,084
    Thank Post
    437
    Thanked 148 Times in 93 Posts
    Rep Power
    68
    This code has an error

    Option Explicit

    Dim RegLocate, objShell

    Set objShell = WScript.CreateObject(”WScript.Shell”)

    RegLocate = “HKEY_CURRENT_USER\SOFTWARE\Microsoft\Windows\Curr entVersion\Explorer\Shell Folders\Favorites”

    objShell.RegWrite RegLocate,”t:\Favorites”,”REG_SZ”

    RegLocate = “HKEY_CURRENT_USER\SOFTWARE\Microsoft\Windows\Curr entVersion\Explorer\User Shell Folders\Favorites”

    objShell.RegWrite RegLocate,”t:\Favorites”,”REG_SZ”


    invalid character line 5 character 37

    any ideas?

  14. #9
    ricki's Avatar
    Join Date
    Jul 2005
    Location
    uk
    Posts
    1,421
    Thank Post
    19
    Thanked 159 Times in 152 Posts
    Rep Power
    48
    HI

    I redirect favorites in gpo policy with this adm with windows xp and it works ok.

    You have to change one of the settings to see the settings as its not a normal windows settings under view filtering and remove the tick from the only show policy settings that can be fully managed.

    This will then give you a user option under administrative templates, widows components, internet explorer and Favorites.

    Richard
    Attached Files Attached Files

  15. 2 Thanks to ricki:

    PEO (28th April 2009), shreevie (1st October 2012)

  16. #10
    PEO
    PEO is offline
    PEO's Avatar
    Join Date
    Oct 2007
    Posts
    2,084
    Thank Post
    437
    Thanked 148 Times in 93 Posts
    Rep Power
    68
    Quote Originally Posted by ricki View Post
    HI

    I redirect favorites in gpo policy with this adm with windows xp and it works ok.

    You have to change one of the settings to see the settings as its not a normal windows settings under view filtering and remove the tick from the only show policy settings that can be fully managed.

    This will then give you a user option under administrative templates, widows components, internet explorer and Favorites.

    Richard
    does this adm apply on a 2008 box?

  17. #11
    PEO
    PEO is offline
    PEO's Avatar
    Join Date
    Oct 2007
    Posts
    2,084
    Thank Post
    437
    Thanked 148 Times in 93 Posts
    Rep Power
    68
    Im having no joy finidng this setting

  18. #12
    cromertech's Avatar
    Join Date
    Dec 2007
    Location
    Cromer by the coast
    Posts
    641
    Thank Post
    134
    Thanked 93 Times in 87 Posts
    Rep Power
    37
    Quote Originally Posted by PEO View Post
    This code has an error

    Option Explicit

    Dim RegLocate, objShell

    Set objShell = WScript.CreateObject(”WScript.Shell”)

    RegLocate = “HKEY_CURRENT_USER\SOFTWARE\Microsoft\Windows\Curr entVersion\Explorer\Shell Folders\Favorites”

    objShell.RegWrite RegLocate,”t:\Favorites”,”REG_SZ”

    RegLocate = “HKEY_CURRENT_USER\SOFTWARE\Microsoft\Windows\Curr entVersion\Explorer\User Shell Folders\Favorites”

    objShell.RegWrite RegLocate,”t:\Favorites”,”REG_SZ”


    invalid character line 5 character 37

    any ideas?
    Error is the directional quote characters ” . It need to be a regular double quote. Use notepad and paste it in it should change them to ".

    Other than that do you want the favourites to follow the user? You can install the Group Policy Client Side Extensions update from microsoft to make the XP machines comply with the new Group Policy options that are available to Vista.

  19. #13
    PEO
    PEO is offline
    PEO's Avatar
    Join Date
    Oct 2007
    Posts
    2,084
    Thank Post
    437
    Thanked 148 Times in 93 Posts
    Rep Power
    68
    cheers gang, its now working... next job NOD32 remote console

  20. #14

    Join Date
    Jan 2006
    Location
    Surburbia
    Posts
    2,178
    Thank Post
    74
    Thanked 305 Times in 243 Posts
    Rep Power
    112
    ..but, since it's a 2008 forum you could have added that reg setting with a Preference!

  21. #15
    ricki's Avatar
    Join Date
    Jul 2005
    Location
    uk
    Posts
    1,421
    Thank Post
    19
    Thanked 159 Times in 152 Posts
    Rep Power
    48
    Quote Originally Posted by PEO View Post
    does this adm apply on a 2008 box?
    I am sorry I dont know I dont have any windows 2008 yet I am sorry.

    Richard

SHARE:
+ Post New Thread
Page 1 of 2 12 LastLast

Similar Threads

  1. Folder redirection
    By laserblazer in forum Windows
    Replies: 0
    Last Post: 23rd January 2009, 09:10 AM
  2. Folder redirection.
    By ICT_GUY in forum Windows Server 2000/2003
    Replies: 9
    Last Post: 9th January 2009, 03:53 PM
  3. folder redirection
    By billbow1 in forum Wireless Networks
    Replies: 2
    Last Post: 18th January 2008, 11:21 AM
  4. Staff favorites folder.
    By Ste_Harve in forum How do you do....it?
    Replies: 11
    Last Post: 13th September 2007, 09:07 AM
  5. Folder redirection
    By kerrymoralee9280 in forum Windows
    Replies: 3
    Last Post: 3rd August 2007, 09:30 AM

Thread Information

Users Browsing this Thread

There are currently 1 users browsing this thread. (0 members and 1 guests)

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •