I have a problem: I shall explain (poorly maybe so please bear with me :-)
I have this code which simply extracts access permission information from an object (in my case, it's always a directory), displays the information on the screen and and I should be able to remove permission from a given account name(lets say the 'Everyone' account) off every directory/sub-directory from a given location (lets say \\srv1\d$).
I have a test drive (lets say d:/) and assigned access permissions to Domain Admins, Everyone and myself, I also have ensured that the ”Allow inherited permissions from parent to propagate to this object” is checked. Which means that the permissions are inherited on all accounts.
When I run my script (on Windows 2000 based PC) it removes permissions for the top level only, i.e. all sub folder below it are left intact.
Can some please tell what am I doing wrong. I REALLY appreciate your help.
use strict;
use Win32::Perms;
my $path = 'd:/';
my $acc = 'everyone';
my $prms = new Win32::Perms($path);
print "\n\nPATH '" . $prms->Path() . "'\n";
my @list;
my $total=0;
my $indx = $prms->Get(\@list);
print "index( number of entries )= $indx\n";
foreach my $rec_ref (@list)
{
print "\n***********************\n";
print "Record reference: $rec_ref\n";
foreach my $role (keys %$rec_ref)
{
print "$role = $rec_ref->{$role}\n";
}
}
$prms -> Dump;
while ($indx--)
{
print "INDEX NUMBER: $indx\n";
my $rec_ref = $list[$indx];
foreach my $role (keys %$rec_ref)
{
next unless ($role =~ /account/i);
print "$role = $rec_ref->{$role}\n";
if ($rec_ref->{$role} =~ /$acc/i)
{
print "Permission for this account will be removed\n";
if ( $rec_ref->{Flag} && INHERITED_ACE )
{
print "\nFound inheretance here\n";
$total += $prms ->Remove($indx);
$prms -> Set( );
}
else
{
$prms ->Remove($indx);
$prms -> Set( );
}
}
}
print "****************************\n";
}
$prms -> Dump;
Posts are HTML formatted. Put <p> </p> tags around your paragraphs. Put <code> </code> tags around your code and data!
Titles consisting of a single word are discouraged, and in most cases are disallowed outright.
Read Where should I post X? if you're not absolutely sure you're posting in the right place.
Please read these before you post! —
Posts may use any of the Perl Monks Approved HTML tags:
- a, abbr, b, big, blockquote, br, caption, center, col, colgroup, dd, del, details, div, dl, dt, em, font, h1, h2, h3, h4, h5, h6, hr, i, ins, li, ol, p, pre, readmore, small, span, spoiler, strike, strong, sub, summary, sup, table, tbody, td, tfoot, th, thead, tr, tt, u, ul, wbr
You may need to use entities for some characters, as follows. (Exception: Within code tags, you can put the characters literally.)
| |
For: |
|
Use: |
| & | | & |
| < | | < |
| > | | > |
| [ | | [ |
| ] | | ] |
Link using PerlMonks shortcuts! What shortcuts can I use for linking?
See Writeup Formatting Tips and other pages linked from there for more info.