Is there *one* file that I could search for to distinguish if a computer had Office 2003 installed? I’m writing a batch file so that I can apply updates across the network, and I’d like to split my machines into two groups…O2k and O2k3. We don’t have the hardware to do a full upgrade to O2k3 (which would simplify my life), so I’m stuck doing this. Here’s an example of the batch file:
@echo off
if exist C:WINDOWSsystem32MacromedFlashFlash9.ocx echo %computername% >> usmc_nfstranspoflashgood.txt
if not exist C:WINDOWSsystem32MacromedFlashFlash9.ocx echo %computername% >> usmc_nfstranspoflashbad.txt
Also, is there a way to echo the computer IP instead of name?