Access the answers to your technology questions today.
Subscribe Now
30-day free trial. Register in 60 seconds.
What Makes Experts Exchange Unique?
Members of the expert community talk about why the experience at Experts Exchange is different than what you will find anywhere else.
Try it out and discover for yourself.
Subscribe Now
30-day free trial. Register in 60 seconds.
Join the Community
Give a Little. Get a Lot.
Join the community of experts here and help other tech pros by answering question in your area of expertise. You can earn FREE access to all Experts Exchange's premium features and resources.
Join the Community
by: SteveGTRPosted on 2006-04-28 at 13:46:57ID: 16565487
You could create a batch file that is called from some network login script. It would look something like this:
\sharename \Common directory\logfile.txt
etworkShar e%" e%" Share%" etworkShar e%"
@echo off
setlocal
set networkShare=\\yournetwork
(echo --------------------)>>"%n
(echo Login time: %date% %time%)>>"%networkShare%"
(echo Username: %username%)>>"%networkShar
(echo Computername: %computername%)>>"%network
(echo --------------------)>>"%n
You could include other information. Type:
set
at the command prompt to see other information that might be useful. You'll want to adjust the networkShare environment variable to a network share and directory that is available to all users.
Good Luck,
Steve