Thans all, with the help of Rollin_Again I am able to run the following script using PSTOOLS to get the results I need.
Dim objOutlook
Dim varVersion
Dim objNet
Set objNet = CreateObject("WScript.NetWork")
Set objOutlook = CreateObject("OUTLOOK.APPLICATION")
varVersion = objOutlook.version
msgbox("User Name: " & objNet.UserName & vbcrlf & "Computer Name: " _
& objNet.ComputerName & vbcrlf & "Outlook Version: "& varVersion)
Set objNet = nothing
Set objOutlook = nothing