The easiest way to migrate your client printers is to setup PrintMig to run from your Novell Netware or Microsoft NT Server login scripts.

 -----

NOVELL NETWARE 3.X

Edit the NET$LOG.DAT file that is located in the PUBLIC directory. Add the following text:

     IF MEMBER OF "PRINTMIG" THEN 
        #\\myserver\netutils\printmig\printmig3.exe /all /q
     END   

In this example, a Netware Group was created called "PRINTMIG", users where then added to create a staged migration approach. The pound sign (#) allows you to execute external programs in Novell NetWare login scripts.

 -----

NOVELL NETWARE 4.x or 5.x

Looking for implementation suggestions for NetWare 4 and 5. If you have implemented PrintMig in either a NetWare version 4 or 5 network, please send your implementation notes to support@foxwaredesign.com  .

 -----

MICROSOFT NT - Using Kixtart Logon scripts

     if ingroup("PrintMig")=1
        RUN "\\myserver\netutils\printmig\printmig3.exe /all /q"
     endif

 -----

MICROSOFT NT - Using Logon batch files

     Start \\myserver\netutils\printmig\printmig3.exe /all /q

 -----