search for: bill_pc

Displaying 2 results from an estimated 2 matches for "bill_pc".

Did you mean: bill_h
2003 Jul 01
0
Re: Winpopup message to all user on a PDC
...-use program, so I use something like this inside an executable script: for i in $(cat /path/clientlist.txt) do echo message_text | smbclient -M $i & done clientlist.txt is an ASCII file containing a list of all NetBIOS names of the PCs in the network, e.g.: ACCOUNTING JOHN BILL_PC SHARED etc... message_text is the text you want to send. -- Ciao, Marco. ..."The Lamb Lies Down on Broadway", Genesis 1974 -- To unsubscribe from this list go to the following URL and read the instructions: http://lists.samba.org/mailman/listinfo/samba
2003 Jul 02
0
Winpopup message to all user on a PDC
...utable script: > > for i in $(cat /path/clientlist.txt) > do > echo message_text | smbclient -M $i & > done > > clientlist.txt is an ASCII file containing a list of all NetBIOS names > of the PCs in the network, e.g.: > > ACCOUNTING > JOHN > BILL_PC > SHARED > etc... > > message_text is the text you want to send. > > -- > Ciao, > Marco. In the above example, you can generate a list of the machine names (/path/clientlist.txt) on the fly with the following sed script. The script is all one line even though the mailer wi...