We are having some problems with securing our desktop machines. Each machine has a C-drive with a DATA folder in it.
We want our users to only be possible to access the data folder and not the root. In the data folder they have to propper rights.
We now use this vbs script:
Set objShell = CreateObject("Wscript.Shell")
objShell.Run "CACLS " & "c:\" & " /e /r ""geverifieerde gebruikers"" ", 0, True
objShell.Run "CACLS " & "c:\MININT" & " /t /e /r ""geverifieerde gebruikers"" ", 0, True
But our users are still able to create folders in the root of the c drive.
Thanks