Perl 根据 Windows 的错误码获取详细的描述信息

清华大佬耗费三个月吐血整理的几百G的资源,免费分享!....>>>

# This function takes the error number returned by the Win32::GetLastError function.
          
#!/usr/bin/perl -w

use Win32;

$ApplicationName = 'c:\winnt\system32\notepad.exe';
$CommandLine     = "notepad";

# Spawn the process.
$status = Win32::Spawn( $ApplicationName,$CommandLine,$ProcessId );

if ( $status != 0 ) {
    print "Launched process with ID $ProcessId.\n";
} else {    
    print "Failed to launch process.\n";
    print Win32::FormatMessage( Win32::GetLastError() );
}