We have a perl script in place that we use to set permissions on our Win NT 4.0 system(s), but can't figure out how to set the permissions if we have to add a Domain to the user (name).

The script uses Win32::FileSecurity module to access NT filesystem permissions. Setting permission however is done in two steps:

1.) A permission mask is generated from user friendly settings

while (($usr,$mask) = each %PERMISSIONS) #set the permissions

{$PERMISSIONS{$usr}=MakeMask($mask);}

2.) Permission mask is then applied to the file.

Set($file,\%$perm) ;

Here is a copy of the script that we are trying to execute:
use Win32::FileSecurity qw(MakeMask Get Set); #file premissions sub set_permission{ my($file, $perm)=@_; Set($file,\%$perm) ; } %PERMISSIONS=("CTSDEV\\Domain Admins"=>"F", "Everyone"=>"C", "Production Control"=>"F", "Systems & Technology"=>"C"); while (($usr,$mask) = each %PERMISSIONS) #set the permissions {$PERMISSIONS{$usr}=MakeMask($mask);} set_permission("\\\\ctscolfpadev\\acpt\\phrem\\bin\\test.exe",\%PERMIS +SIONS) or die "Just couldn't\n";
Any suggestions or help with this would be great!! Thanks...

In reply to Setting Win NT permissions by JeffreyHoward

Title:
Use:  <p> text here (a paragraph) </p>
and:  <code> code here </code>
to format your post, it's "PerlMonks-approved HTML":



  • 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:
    & &amp;
    < &lt;
    > &gt;
    [ &#91;
    ] &#93;
  • Link using PerlMonks shortcuts! What shortcuts can I use for linking?
  • See Writeup Formatting Tips and other pages linked from there for more info.