Skip to content

How to Set the Windows Server Computer Description and Asset Information Print

  • 0

How to Set the Windows Server Computer Description and Asset Information

Applies to: Windows Server 2019, 2022 and 2025.

A consistent description helps identify purpose and ownership. Never place passwords, customer data or sensitive topology details in this field.

Work from console access or a tested recovery path. Changes to remote access, licensing or domain membership can lock out administrators if prerequisites are wrong. Managed Windows VPS options are available at networkmanager.info.

Prerequisites

  • Define an approved description format.
  • Confirm service ownership and asset identifier.
  • Avoid secrets and personal information.
  • Use elevated PowerShell.

Step-by-step procedure

Step 1: Read the current description

Capture it for rollback.

Get-CimInstance Win32_OperatingSystem | Select Description

Step 2: Set a concise value

Update the CIM property.

$os = Get-CimInstance Win32_OperatingSystem
Set-CimInstance -InputObject $os -Property @{Description='Production application server - Operations'}

Step 3: Collect inventory IDs

Store them only in the authorized asset system.

Get-CimInstance Win32_BIOS | Select SerialNumber
Get-CimInstance Win32_ComputerSystemProduct | Select UUID

Step 4: Update monitoring records

Keep labels aligned across inventory and monitoring.

Verification

Compare the local value with the approved asset record.

Get-CimInstance Win32_OperatingSystem | Select Caption,Description

Rollback

Set Description back to the value captured before the change.

Version and operational notes

CIM cmdlets apply to all target releases; inventory policy is organizational.

Official references

For managed deployment and support, visit https://networkmanager.info/.


Was this answer helpful?

« Back