Is there way to remove the 'Everyone' global group account off the C:/temp without having to remove the account off the PDC
I have written the following code based on an example from the Win32::Perms readme file, however it doesn't work (nothing happens - I don't even get the cmd prompt unless I press Ctrl C)does anyone know why?And $dir->Dump display every account permissioned to access c:/temp twice
use Win32::Perms;
my $dir = new Win32::Perms('c:/temp')||return 0;
$dir -> Remove ('everyone');
$dir -> Dump;