Jump to content

Recommended Posts

Posted
Does that reg fix work on network drives as its the redirected user folders that are being changed. Would I have to run the reg on the server the redirections are located or the client and if a folder has already been renamed do I have to do anything first?
Posted
You can simply have the home folder inside another folder and not worry about the desktop.INI issue. So share/user/folder. The folder gets renamed to mydocs but that does not mater as it is inside a folder that has the name of your user.
Posted
Would I have to run the reg on the server the redirections are located or the client

On each client.

 

if a folder has already been renamed do I have to do anything first?

Delete the desktop.ini files that are inside these folders.

  • Thanks 1
Posted

I have recently solved this for us by running 2 slightly modified .cmd files to delete any current desktop.ini files, then used the File Screen Management with a custom rule to prevent the saving of files called desktop.ini

 

The files are essentially:

 

@echo ON
forfiles /p e:\students /s /m desktop.ini /c "cmd /c attrib -h -s @path"
forfiles /p e:\students /s /m desktop.ini /c "cmd /c del @path"
Pause

 

and...

 

@echo ON
forfiles /p e:\staff /s /m desktop.ini /c "cmd /c attrib -h -s @path"
forfiles /p e:\staff /s /m desktop.ini /c "cmd /c del @path"
Pause

  • Thanks 2

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 account

Sign in

Already have an account? Sign in here.

Sign In Now



×
×
  • Create New...