After Playing with it i got it to work... Just had to fix a ID 10 T Error... Apparently i was having a blond moment... Thanks everyone for your help!!! Much Appreciated!!!
BTW, Here is the Finished Code to do a search and install of Microsoft Office 2010...
Set objFSO = CreateObject("Scripting.FileSystemObject")
Set objTextFile = objFSO.CreateTextFile("C:\Software.txt")
strComputer = "."
Set objWMIService = GetObject("winmgmts:" _
& "{impersonationLevel=impersonate}!\\" & strComputer & "\root\cimv2")
Set colSoftware = objWMIService.ExecQuery _
("SELECT * FROM Win32_Product")
objTextFile.WriteLine "Caption" & vbtab & _
"Description" & vbtab & "Identifying Number" & vbtab & _
"Install Date" & vbtab & "Install Location" & vbtab & _
"Install State" & vbtab & "Name" & vbtab & _
"Package Cache" & vbtab & "SKU Number" & vbtab & "Vendor" & vbtab _
& "Version"
For Each objSoftware in colSoftware
objTextFile.WriteLine objSoftware.Caption & vbtab & _
objSoftware.Description & vbtab & _
objSoftware.IdentifyingNumber & vbtab & _
objSoftware.InstallLocation & vbtab & _
objSoftware.InstallState & vbtab & _
objSoftware.Name & vbtab & _
objSoftware.PackageCache & vbtab & _
objSoftware.SKUNumber & vbtab & _
objSoftware.Vendor & vbtab & _
objSoftware.Version
Next
objTextFile.Close
Const ForReading = 1
Dim sReadAll, sInputFile, sSearchString
sInputFile = "C:\Software.txt"
sSearchString = "Microsoft Office Proof (English) 2010"
Dim fso, f, objShell
Set objShell = WScript.CreateObject("WScript.Shell")
Set fso = CreateObject("Scripting.FileSystemObject")
Set f = fs

penTextFile(sInputFile, ForReading)
sReadAll = f.ReadAll
If InStr(sReadAll, sSearchString) > 0 Then
wscript.quit
Else
objshell.run Chr(34) & "\\Input Server name\Input Directory\Input Setup File Name" & Chr(34)
End If