JATSO Posted June 24, 2015 Posted June 24, 2015 Hi All, Wonder if anyone can explain this and if possible how to fix. Every now and again when I look at users home directory folder on the server some of the folders have been renamed Documents instead of the users . Up until now I have just looked at the properties of the each users folder and reset the name and changed the icon back to the default yellow icon. Can anyone point in the right direction for fixing the issue. Image is attached of my users folders. Names hidden of course. Any help would be welcomed. Thanks:)
clockend25 Posted June 24, 2015 Posted June 24, 2015 Hunt down and delete desktop.ini. Better, use FSRM to delete all instances of that file. 1
sted Posted June 24, 2015 Posted June 24, 2015 or change the explorer view to include filename rather than name 1
JATSO Posted June 24, 2015 Author Posted June 24, 2015 Is that desktop.ini, anywhere on the server or within each users home folder? would need to look up FSRM first never used it before. Thanks
sted Posted June 24, 2015 Posted June 24, 2015 its in every folder thats renamed documents so if your users are d:\users\staff\fred d:\users\staff\freda d:\users\staff\john .... there will be a desktop.ini file in each one d:\users\staff\fred\desktop.ini d:\users\staff\freda\desktop.ini d:\users\staff\john\desktop.ini .... 2
DavetheITguy Posted June 24, 2015 Posted June 24, 2015 in AD check and make sure that the home drive path is set correctly. are you using folder redirection ?
mdrabble Posted June 24, 2015 Posted June 24, 2015 You can use powershell to delete the desktop.ini get-childitem D:\Users -filter desktop.ini -force -recurse | foreach ($_) {remove-item $_.fullname -force -whatif} Replace D:\Users with the path to your users. -Whatif allows you to test the script without actually deleting anything and shows you what would have happened if allowed to run correctly. Once your happy with it, change -Whatif to -Verbose that way you can see files as they being deleted. 2
fiza Posted June 25, 2015 Posted June 25, 2015 @JATSO - I am about to try this fix http://www.edugeek.net/forums/general-chat/146046-desktop-ini-gpp-fix.html
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