I found a script that checks every domain computer for an application.
They have it pipe to a msgbox like this:
How can I edit that line to create a TSV file?Code:WScript.Echo sComputer & vbTab & vbTab & sInstalled
Thanks for any help.
Printable View
I found a script that checks every domain computer for an application.
They have it pipe to a msgbox like this:
How can I edit that line to create a TSV file?Code:WScript.Echo sComputer & vbTab & vbTab & sInstalled
Thanks for any help.
No help?
Look up the FileSystemObject to create your file. Then instead of Echo use the WriteLine method of the FSO to write the content.