foreach my $item ( $folder->Items ) { foreach my $attachment ( $item->Attachments ) { print "Saving " . $attachment->FileName . " from \"" . $item->Subject . "\"\n"; $attachment->SaveAsFile( "C:\\Download\\" . $attachment->FileName ) ; } }