Is windows NT : Win32 « Win32 « Perl






Is windows NT

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

$isnt = Win32::IsWinNT();

if ($isnt) {
    print "Running Windows NT\n";
}

   
    
  








Related examples in the same category

1.Is windows 95
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.