in reply to Setting an ADSI boolean property to "false"

Hey, hey, hey!

A quick Google search turned up the info I needed. Apparantly you need to use Win32::OLE::Variant to create a variable of type VT_BOOL. Like this:

my $false = Win32::OLE::Variant->new(VT_BOOL,0); $group->{$attribute} = $false;


Dave