merrymonk has asked for the wisdom of the Perl Monks concerning the following question:

Is there a way using Perl that lets me find the
Full Computer Name that is shown on the
Computer Name tabbed frame following
Control Panel->System.

Replies are listed 'Best First'.
Re: Finding the Computer Name
by BrowserUk (Patriarch) on Mar 12, 2008 at 19:18 UTC
      Many thanks - just what I was hoping for.
Re: Finding the Computer Name
by hipowls (Curate) on Mar 13, 2008 at 10:23 UTC

    There is also Sys::Hostname which provides a platform independent method.

    use Sys::Hostname; my $host = hostname;
    It is one of the core modules