+ 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,050
    Thank Post
    422
    Thanked 147 Times in 92 Posts
    Rep Power
    66

    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
    37
    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
    2,654
    Thank Post
    482
    Thanked 818 Times in 501 Posts
    Rep Power
    247
    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
    813
    Thank Post
    118
    Thanked 29 Times in 15 Posts
    Rep Power
    17
    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,050
    Thank Post
    422
    Thanked 147 Times in 92 Posts
    Rep Power
    66
    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,050
    Thank Post
    422
    Thanked 147 Times in 92 Posts
    Rep Power
    66
    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
    9,565
    Thank Post
    306
    Thanked 884 Times in 794 Posts
    Rep Power
    211

  12. Thanks to plexer from:

    PEO (28th April 2009)

  13. #8
    PEO
    PEO is offline
    PEO's Avatar
    Join Date
    Oct 2007
    Posts
    2,050
    Thank Post
    422
    Thanked 147 Times in 92 Posts
    Rep Power
    66
    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,206
    Thank Post
    19
    Thanked 129 Times in 125 Posts
    Rep Power
    41
    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. Thanks to ricki from:

    PEO (28th April 2009)

  16. #10
    PEO
    PEO is offline
    PEO's Avatar
    Join Date
    Oct 2007
    Posts
    2,050
    Thank Post
    422
    Thanked 147 Times in 92 Posts
    Rep Power
    66
    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,050
    Thank Post
    422
    Thanked 147 Times in 92 Posts
    Rep Power
    66
    Im having no joy finidng this setting

  18. #12
    cromertech's Avatar
    Join Date
    Dec 2007
    Location
    Cromer by the coast
    Posts
    605
    Thank Post
    118
    Thanked 90 Times in 84 Posts
    Rep Power
    34
    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,050
    Thank Post
    422
    Thanked 147 Times in 92 Posts
    Rep Power
    66
    cheers gang, its now working... next job NOD32 remote console

  20. #14

    Join Date
    Jan 2006
    Location
    Surburbia
    Posts
    2,039
    Thank Post
    69
    Thanked 275 Times in 218 Posts
    Rep Power
    97
    ..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,206
    Thank Post
    19
    Thanked 129 Times in 125 Posts
    Rep Power
    41
    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, 10:10 AM
  2. Folder redirection.
    By ICT_GUY in forum Windows Server 2000/2003
    Replies: 9
    Last Post: 9th January 2009, 04:53 PM
  3. folder redirection
    By billbow1 in forum Networks
    Replies: 2
    Last Post: 18th January 2008, 12:21 PM
  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
  •