Gets user login name on Windows : Win32 « Win32 « Perl






Gets user login name on Windows

  
#!/usr/bin/perl -w

use Win32;

$username = Win32::LoginName();

print "User name: $username\n";

   
    
  








Related examples in the same category

1.Is windows 95
2.Is windows NT
3.OS version
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.