So, I'm looking for a way to modify the "Computer Description" field on all the machines on our domain. I know you can use variables like %E% in customer tools and whatnot, but what I'm looking to do is this:
Change the "Computer Description" field on all domain PCs to "'PC Make' 'PC Model' - 'Serial Number' - 'System RAM'"
Obviously I'll need to Query WMI for these to automate it, and I understand I'll need the enterprise version in order to query any WMI aside from Win32_Process, But I'd like to prove that this is possible as a proof of concept to present to our management as a reason to upgrade.
PC Make can be obtained from "Win32_ComputerSystem" in the "Manufacturer" Key
PC Model can be obtained from "Win32_ComputerSystem" in the "Model" Key
Serial Number can be obtained from "Win32_ComputerSystem" in the "Name" key
System RAM can be obtained from "Win32_ComputerSystem" in the "TotalPhysicalMemory" Key
Is there any way to do this? I'm even totally Okay If there was a way to do it without WMI.
Change the "Computer Description" field on all domain PCs to "'PC Make' 'PC Model' - 'Serial Number' - 'System RAM'"
Obviously I'll need to Query WMI for these to automate it, and I understand I'll need the enterprise version in order to query any WMI aside from Win32_Process, But I'd like to prove that this is possible as a proof of concept to present to our management as a reason to upgrade.
PC Make can be obtained from "Win32_ComputerSystem" in the "Manufacturer" Key
PC Model can be obtained from "Win32_ComputerSystem" in the "Model" Key
Serial Number can be obtained from "Win32_ComputerSystem" in the "Name" key
System RAM can be obtained from "Win32_ComputerSystem" in the "TotalPhysicalMemory" Key
Is there any way to do this? I'm even totally Okay If there was a way to do it without WMI.

Comment