Hello friends,
I have script that tells me the exchange server version and builds and OS, etc.
However the following information is each popped up on different boxes. And we have to click OK to get to another page/box for next information.
How can get everything on one box/page?
Thank you in advance.
For Each objOperatingSystem In colOperatingSystems
WScript.Echo "Build Number: " & objOperatingSystem.BuildNumber
WScript.Echo "Build Type: " & objOperatingSystem.BuildType
WScript.Echo "Country Code: " & objOperatingSystem.CountryCode
WScript.Echo "Caption: " & objOperatingSystem.Caption
WScript.Echo "Organization: " & objOperatingSystem.Organization
WScript.Echo "Install Date: " & objOperatingSystem.InstallDate
WScript.Echo "OS Type: " & objOperatingSystem.OSType
WScript.Echo "OS Product Suite: " & objOperatingSystem.OSProductSuite
WScript.Echo "Version: " & objOperatingSystem.Version
Next
I have script that tells me the exchange server version and builds and OS, etc.
However the following information is each popped up on different boxes. And we have to click OK to get to another page/box for next information.
How can get everything on one box/page?
Thank you in advance.
For Each objOperatingSystem In colOperatingSystems
WScript.Echo "Build Number: " & objOperatingSystem.BuildNumber
WScript.Echo "Build Type: " & objOperatingSystem.BuildType
WScript.Echo "Country Code: " & objOperatingSystem.CountryCode
WScript.Echo "Caption: " & objOperatingSystem.Caption
WScript.Echo "Organization: " & objOperatingSystem.Organization
WScript.Echo "Install Date: " & objOperatingSystem.InstallDate
WScript.Echo "OS Type: " & objOperatingSystem.OSType
WScript.Echo "OS Product Suite: " & objOperatingSystem.OSProductSuite
WScript.Echo "Version: " & objOperatingSystem.Version
Next