Link to home
Start Free TrialLog in
Avatar of scrosbie
scrosbie

asked on

Find Programs instaled on all hosts in a Win2k enviornment

Can anyone recommend a software program which will report user installed on hosts in a windows 2k enviornment. And alert the network admin of any new installs on a machine.
SOLUTION
Avatar of mdubon3
mdubon3
Flag of United States of America image

Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial
For free, there is AIDA32. But, it won't alert you on new installs.

It does a lot of powerful system inventorying and you can just put it in the domain startup script for all the users.
ASKER CERTIFIED SOLUTION
Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial
Avatar of scrosbie
scrosbie

ASKER

Thank you both.  I heard of SMS but with my budget dont think I could go that route.  I will try AIDA32 and let yo know.

Thanks
To help you save time getting AIDA32 working, here is the line in my logon .bat file script assigned to most users:

\\servername\aida32$\AIDA32 /R \\servername\aida32log$\$HOSTNAME /CSV /AUDIT /SILENT /SAFE /NT4ZIPFIX /DELAY 60

Obviously, I created two shares on the file server: aida32$ to store the "installation/exe files" in, and aida32log$ to store the logfiles from clients.

The NT4ZIPFIX and DELAY switches help on different machines on my network, one helped resolve a problem with external ZIP drives and the delay helps AIDA not interfere with some legacy applications crashing if it does the system inventory while they are starting up (sometimes you see the screen flicker when AIDA does the scan).

There are some machines I flat-out don't want AIDA ever collecting on, in the event a user or myself ever logs on there, such as the mission-critical file server, so I have a line above the aida line so it looks like:

if "%computername%" == "SERVERNAME" goto SKIPAIDA
if "%computername%" == "EXCHANGESERVERNAME" goto SKIPAIDA
if "%computername%" == "TERMINALSERVERNAME" goto SKIPAIDA
\\servername\aida32$\AIDA32 /R \\servername\aida32log$\$HOSTNAME /CSV /AUDIT /SILENT /SAFE /NT4ZIPFIX /DELAY 60
:SKIPAIDA
I have tested Intuit's TrackIT!,  This is an Helpdesk/inventory solution which is very cost effective for small to medium businesses and will report on applications that are installed on the host computer.  Again this is not as big as SMS might be able to fit your budget. check it out, you can download a free trial from Intuit's website. I hope it helps.