Is windows 95 : Win32 « Win32 « Perl






Is windows 95

  
#!/usr/bin/perl -w
use Win32;

$is95 = Win32::IsWin95();

if ($is95) {
    print "Running Windows 95\n";
}

   
    
  








Related examples in the same category

1.Is windows NT
2.OS version
3.Gets user login name on Windows
4.Node and domain information
5.The Win32::Spawn function acts much like the system function and the Windows start command.
6.Convert a Windows-specific error to a text string using the Win32::FormatMessage function.