Help for this page

Select Code to Download


  1. or download this
    print "Content-type: text/html\n\n";
    open (netsh, "C:/WINDOWS/system32/netsh.exe dhcp server scope <scopeip
    +removed> dump|");
    foreach my $line (<netsh>) {
        print $line;
    }
    close netsh;
    
  2. or download this
    print "Content-type: text/html\n\n";
    print `netsh dhcp server scope <scopeipremoved> dump`;