in reply to Modifying NTFS File Permissions
Shouldn't that be
Win32::FileSecurity::Get($dir, \%permissions) or die $!; $permissions{ 'Everyone' } = MakeMask( qw( READ GENERIC_READ GENERIC_EXECUTE ) ); Win32::FileSecurity::Set($dir, \%permissions) or die $!;
I get a mask of -1609432919. Where did you get 1180095 from?
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re^2: Modifying NTFS File Permissions
by Anonymous Monk on May 21, 2009 at 00:35 UTC |