#Win32::Process sample sub ViewEmail{ my $Path = "c:\\documents and settings\\p court\\desktop"; my $Outlook = "c:\\program files\\Outlook Express\\MSIMN.exe"; my $ProcessObj; my $file = "VolleyballBC"; if($Outlook){ chdir $Path; Win32::Process::Create( $ProcessObj, $Outlook, "MSIMN $file", 1, NORMAL_PRIORITY_CLASS, ".") || die ! "no can do"; } $ProcessObj->Suspend(); $ProcessObj->Resume(); }