

This tip was submitted to the SearchWin2000.com tip exchange by member James Robertson. Please let other users know how useful it is by rating it below.
Have you ever needed to let a customer with a computer and user account in another domain print to your printers? This tip explains how.
Every printer on a Windows NT or Active Directory domain has some security placed on it. Even the special "Everyone" group has some security, because it is only for the domain on which it exists. When you have users who come onto your premises and need to print, they need a way to authenticate to your print server with a domain account. This is easily accomplished by performing the following steps:
@echo off
net use \\<printservername>\ipc$ /user:<domain>printer 12345678
Replace <printservername> with the name of the print server the person needs access to, and, of course, change <domain> to your Windows NT or AD NetBIOS domain name.
You're all done! Every time the person comes to your office and needs to print, they just need to use the batch file to authenticate first.