Quote Originally Posted by Mavyak
[vba]Function getOS() As String
Dim OS
For Each OS In GetObject("winmgmts:").InstancesOf("Win32_OperatingSystem")
getOS = OS.Caption
Next OS
Set OS = Nothing
End Function[/vba]
Hi - Great stuff - just wondering if you know where I can see a list of properties, methods, etc., for the object model you're using here.