Biff has asked for the wisdom of the Perl Monks concerning the following question:
I've been wrestling with Win32::Perms attempting to set the owner of files and directories and have found what appears to me to be a bug but wanted to seek your wisdom first.
Apparently, Win32::Perms has problems with local users. I attempted the code:
When I run this I get the error:use Win32::Perms; Win32::Perms::LookupDC(1); $filename = "c:\\foo.txt"; # $owner = 'DOMAIN\bob'; $owner = '\\HOSTNAME\Joe'; $SD = new Win32::Perms($filename) || die "new: $^E"; $SD->Dump; $SD->Remove(-1); # Null out the DACL; $SD->Set(); $SD->Owner($owner) or die "owner: $^E"; $SD->Set(); $SD->Dump;
No mapping between account names and security IDs was done.
If I uncomment the $owner assignment that uses a domain account and comment out the $owner assignment that uses the local host account then no errors and the script works.
I've logged into the machine as the local user and was able to create files as that user.
I'm at a loss to what is wrong except that there is a bug in Win32::Perms.
Thanks,
Biff
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re: Setting file ownership with Win32::Perms
by ikegami (Patriarch) on Mar 16, 2006 at 21:52 UTC | |
|
Re: Setting file ownership with Win32::Perms
by Marza (Vicar) on Mar 16, 2006 at 23:04 UTC | |
by Biff (Acolyte) on Mar 17, 2006 at 20:29 UTC |