POWict Posted September 8, 2011 Posted September 8, 2011 Hi, we are having weird problem with setup on the title. We don't have roaming profiles but recently set folder redirection via group policy so that user’s documents folder points to \\server\users\username (also H:\ mapped to this path) Problem is, if a new user logs in to a machine that they have never logged in before, they logon to temporary profile with windows classic theme and customisation doesn't apply. user doesn’t get internet explorer 9 short cut to pinned their task bar and/or their programs list. I know removed folder redirection policy and used below script to setup Documents folder on logon script ---------------- set WshShell = CreateObject("Wscript.shell") MyDocuments = "H:\" MyPictures = "H:\My Pictures" WshShell.RegWrite "HKCU\Software\Microsoft\Windows\CurrentVersion\Explorer\User Shell Folders\Personal",MyDocuments,"REG_SZ" WshShell.RegWrite "HKCU\Software\Microsoft\Windows\CurrentVersion\Explorer\User Shell Folders\My Pictures",MyPictures,"REG_SZ" Above script somewhat sorted for some of the desktops around, but issue I’ve described still on many computers. Has anyone had similar problem? Thanks
DaveyPitch Posted September 9, 2011 Posted September 9, 2011 Have you checked the event viewer on the machines in question to see what errors are being thrown up? Logging in with temporary profiles is often down to a permissions issue somewhere so the event log might shed some light on it for you.
techie2008 Posted September 9, 2011 Posted September 9, 2011 I am also receiving the same problem. Users can logon and get their correct profile and folder redirection and other times they are issued with temporary profiles and local folders and rights. Can anyone shed any light on this? Many thanks
DaveyPitch Posted September 9, 2011 Posted September 9, 2011 I'd go with the same suggestion - check the event log after a failed login, and see what error messages are coming up. I had a similar problem here with respect to folder redirection occassionally failing, and found a registry file which solved the problem for me. I've now set my login script to automatically import the reg file to make sure the problem doesn't come back.
techie2008 Posted September 9, 2011 Posted September 9, 2011 I've checked my event logs and all my folder reditections are fine. I only get one error and thats regarding Windows Mail. Any help or guidance would be much appreciated.
Jiser Posted September 10, 2011 Posted September 10, 2011 We had simmilar issue only for our staff accounts. For some when logging in they got temp profiles and a black screen. Deleted profile.v2 in their home drives and any local profiles stored and voila issue solved. Not sure if that will help any for u,.
alexsanger Posted November 23, 2011 Posted November 23, 2011 (edited) I found registry file which solved the problem for me. I've now set my login script to automatically import the reg file to make sure the problem doesn't come back. Hi DaveyPitch, Just trawling the forums for info on my inconsistent profile loading (some PCs refuse to load correctly - some need 2 goes at it - majority are fine and its not a permissions or profile specific thing) and spotted the above. Could you post any more info re: the reg file, and if you're feeling really magnanamous, the line in the logon script Thanks Edited November 23, 2011 by alexsanger
3s-gtech Posted November 23, 2011 Posted November 23, 2011 Could it be this one - this fixes Windows 7 folder redirection (when you look in the event logs, all folder redirection fails when a user logs on). This was apparently caused by a KB. I've been having issues with this recently, so rolled this out via a startup script. Windows Registry Editor Version 5.00 [-HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Explorer\FolderDescriptions\{2112AB0A-C86A-4ffe-A368-0DE96E47012E}] [-HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Explorer\FolderDescriptions\{2112AB0A-C86A-4ffe-A368-0DE96E47012E}\PropertyBag] [-HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Explorer\FolderDescriptions\{491E922F-5643-4af4-A7EB-4E7A138D8174}] [-HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Explorer\FolderDescriptions\{491E922F-5643-4af4-A7EB-4E7A138D8174}\PropertyBag] [-HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Explorer\FolderDescriptions\{7b0db17d-9cd2-4a93-9733-46cc89022e7c}] [-HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Explorer\FolderDescriptions\{7b0db17d-9cd2-4a93-9733-46cc89022e7c}\PropertyBag] [-HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Explorer\FolderDescriptions\{A302545D-DEFF-464b-ABE8-61C8648D939B}] [-HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Explorer\FolderDescriptions\{A302545D-DEFF-464b-ABE8-61C8648D939B}\PropertyBag] [-HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Explorer\FolderDescriptions\{A990AE9F-A03B-4e80-94BC-9912D7504104}] [-HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Explorer\FolderDescriptions\{A990AE9F-A03B-4e80-94BC-9912D7504104}\PropertyBag] Saved as a .reg and imported with: regedit /s \\path 1
alexsanger Posted November 23, 2011 Posted November 23, 2011 3s-gtech Top job - thanks for the quick reply - I'll try it on the worst affected suite and see how it goes. Were you able to find anything on M$'s site about it? My recent searches have turned up precious little of any use.
3s-gtech Posted November 23, 2011 Posted November 23, 2011 Nope. That was an obscure blog find. I had used this before 18 months ago, and thought it wouldn't reoccur, but it happens with my brand new Windows 7 installs. There's an update in WSUS causing this, blergh central – nebev.net » Blog Archive » Folder Redirection Woes has details. Looks like killing KB980408 is worth doing! 1
Michael Posted November 23, 2011 Posted November 23, 2011 Have a look here how I do Folder Redirection. It may give you something to compare with. 1
DaveyPitch Posted November 23, 2011 Posted November 23, 2011 Could it be this one - this fixes Windows 7 folder redirection (when you look in the event logs, all folder redirection fails when a user logs on). This was apparently caused by a KB. I've been having issues with this recently, so rolled this out via a startup script. Windows Registry Editor Version 5.00 [-HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Explorer\FolderDescriptions\{2112AB0A-C86A-4ffe-A368-0DE96E47012E}] [-HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Explorer\FolderDescriptions\{2112AB0A-C86A-4ffe-A368-0DE96E47012E}\PropertyBag] [-HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Explorer\FolderDescriptions\{491E922F-5643-4af4-A7EB-4E7A138D8174}] [-HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Explorer\FolderDescriptions\{491E922F-5643-4af4-A7EB-4E7A138D8174}\PropertyBag] [-HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Explorer\FolderDescriptions\{7b0db17d-9cd2-4a93-9733-46cc89022e7c}] [-HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Explorer\FolderDescriptions\{7b0db17d-9cd2-4a93-9733-46cc89022e7c}\PropertyBag] [-HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Explorer\FolderDescriptions\{A302545D-DEFF-464b-ABE8-61C8648D939B}] [-HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Explorer\FolderDescriptions\{A302545D-DEFF-464b-ABE8-61C8648D939B}\PropertyBag] [-HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Explorer\FolderDescriptions\{A990AE9F-A03B-4e80-94BC-9912D7504104}] [-HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Explorer\FolderDescriptions\{A990AE9F-A03B-4e80-94BC-9912D7504104}\PropertyBag] Saved as a .reg and imported with: regedit /s \\path Yup, that's the exact same script I use, and import it the same way 1
alexsanger Posted December 2, 2011 Posted December 2, 2011 Thanks all. Seems to have helped a lot - users don't seem to get the problem where it fails to connect to their redirected My Docs. We are still seeing the failure to redirect Start Menu and Desktop occasionally. Logging off and on a second time works okay though.
Recommended Posts
Create an account or sign in to comment
You need to be a member in order to leave a comment
Create an account
Sign up for a new account in our community. It's easy!
Register a new accountSign in
Already have an account? Sign in here.
Sign In Now