I'm trying to find if an executable exists and if so, I want the script to write out the computer name to a text file. I have 3 problems: 1. I would normally do more research and testing however, I have to have this completed in a few hours. 2. I'm not that familiar with using ADSI and 3, I'm not sure how to represent each computer that is returned when I attach to the computers OU.
When I attach to the Computers OU I can echo out all 1400 of my computers..does the are these computer names placed in some dynamic array or do I need to use a dictionary array and count through each computer?
How do I tie strComputer into this script so I can writeline it to the text file?
Any help would be appreciated.
When I attach to the Computers OU I can echo out all 1400 of my computers..does the are these computer names placed in some dynamic array or do I need to use a dictionary array and count through each computer?
How do I tie strComputer into this script so I can writeline it to the text file?
Any help would be appreciated.
Code:
'Option Explicit
Const ForAppending = 8
Const pLogFileName = "c:\outlooklog.txt"
'On Error Resume Next
Dim objFSO, objOU, objComputer, strComputer, searchDir
Dim objItem, sName, objTextFile, oLogFile
Set objFSO = CreateObject("Scripting.FileSystemObject")
Set oLogFile = objFSO.OpenTextFile(pLogFileName, ForAppending)
Set searchDir = "C:\Program Files\Microsoft Office\OFFICE11"
Set objOU = GetObject("LDAP://OU=Computers, DC=fabrikim, DC=com")
For Each objComputer in objOU
strComputer =
If exists searchDir & "outlook.exe"
pLogFile.WriteLine strComputer
Else
Err.clear
End If
Next
oLogFile.Close
WScript.echo "Script Finished"