You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
15 lines
533 B
15 lines
533 B
|
|
WScript.Echo " "
|
|
WScript.Echo "Testing brp_sysfinfo values"
|
|
WScript.Echo " "
|
|
|
|
Set oSysInfo = CreateObject("PCHealth.BugRepSysInfo")
|
|
if Err.number <> 0 then
|
|
WScript.Echo "Error occured ",Err.number
|
|
WScript.Echo " ",Err.description
|
|
else
|
|
WScript.Echo "OS Ver ",oSysInfo.GetOSVersionString
|
|
WScript.Echo "OS Language ID ",oSysInfo.GetLanguageID
|
|
WScript.Echo "OS Lang User LCID ",oSysInfo.GetUserDefaultLCID
|
|
WScript.Echo "OS Lang Active CP ",oSysInfo.GetActiveCP
|
|
end if
|