Pegasus
Sun Oct 21 04:21:52 PDT 2007
I don't think it is practical or desirable to make a user's desktop
"read-only". I assume that these large files are .mp3 files or video
clips. Here are a couple of alternative approaches to deal with them:
- File screening
(
http://www.windowsnetworking.com/articles_tutorials/Implementing-File-Screening-Windows-Server-2003-R2.html)
- Company policy: You formulate a suitable policy that bans the
storage of such files on people's desktop, get it approved by
management, then publish it. You then run a scheduled batch job
every night that will move all banned files to a dedicated disk on
some workstation. Most users will do the right thing immediately.
Those who don't will soon get the message.
"Woody" <tosca925@NOSPAMyahoo.co.uk> wrote in message
news:%239fYIx8EIHA.4752@TK2MSFTNGP04.phx.gbl...
> Sorry if it seems vague, after reading back to myself I see what you mean.
>
> OK, All our network users have roaming profiles. A lot of them have a
> habit of saving large files to their desktops, then complain when it takes
> an age to log on because they have a 40mb file on heir desktop. What I
> wanted to do was search all the roaming profiles of the users and find the
> 'Desktop' folder. Then make that folder on the server read access only or
> Deny write.
>
> Could this be done the way I mentioned below?
>
>
> "Pegasus (MVP)" <I.can@fly.com> wrote in message
> news:O2%23%23ny6EIHA.4752@TK2MSFTNGP04.phx.gbl...
>>
>> "Woody" <tosca925@NOSPAMyahoo.co.uk> wrote in message
>> news:uM0kqF3EIHA.3716@TK2MSFTNGP03.phx.gbl...
>>>I need a script (pref VB) to change permissions on a folder in multiple
>>>folders.
>>>
>>>
>>> Example, imagine users home directory, so a folder contains all the
>>> users. Each user has a folder inside their home directory called
>>> 'examples'. I need a script to search for that folder inside each users
>>> home directory and change the permissions to 'read, list folder
>>> contents'
>>>
>>> Can this be done?
>>>
>>>
>>> This is not being done on users home directories but this was the best
>>> example I could give.
>>>
>>>
>>> Or imagine their are 10 folders named 1 to 10. inside each folder are 5
>>> folders named A,B,C,D and E. I want a script to search for the folder
>>> named 'D' and change the permission on that folder only.
>>>
>>
>> Your post is a little vague. You write that you wish to apply "read-only"
>> permissions to the "examples" folder but you never say WHO is supposed
>> to have this read-only right. You also do not state if the new
>> permissions
>> should apply to this folder only or to its subfolders too.
>>
>> Here is a simple batch file solution to get you started. It will give
>> everybody read-access to the "examples" folder. Remove the word "echo"
>> to activate it.
>>
>> Line1=@echo off
>> Line2=set target=d:\Users
>> Line3=for /F "delims=" %%a in ('dir "%target%" /ad /b ^| find /i
>> "examples"') do echo cacls "%%a" /e /r domain\everyone
>> Line4=for /F "delims=" %%a in ('dir "%target%" /ad /b ^| find /i
>> "examples"') do echo cacls "%%a" /e /g domain\everyone:R
>>
>>
>
>