in reply to Accessing workgroup names using perl
my @net_info = `net config`; # @net_info should contain lines of output # produced by the 'net config' command. # I hope they should contain work group info? while (@net_info) { # parse the line here... print "$_\n"; }
# Under Construction
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re: Re: Accessing workgroup names using perl
by earthboundmisfit (Chaplain) on Jun 19, 2002 at 18:26 UTC | |
|
Re: Re: Accessing workgroup names using perl
by caedes (Pilgrim) on Jun 19, 2002 at 19:18 UTC |