in reply to Sloppy, but simplein thread net::ping not working for windows hosts
Why not something like
unless ($^O =~ /WIN32/) { Net::Ping->new("tcp", 2); etcetera } else { Net::Ping->new("icmp"); etcetera } [download]