Hi there!
the code snippet
---
strComputerName = "."
strWinMgt = "winmgmts://" & strComputerName & ""
Set compsysset = GetObject(strWinMgt).ExecQuery("select * from
Win32_SystemEnclosure")
For Each CompSys In compsysset
MsgBox CompSys.SMBIOSAssetTag
Next
---
gives me the WMI Asset Tag.
Is there a way to (over)write this value? As far as I see it is built in in
the computer by the manufacturer, but I would like to use it to store the
Asset Number of the PC from our Asset Management Database...