BIOS Fields set to "Default string"
Posted: Mon Jun 12, 2023 6:23 pm
A number of fields in my BIOS are currently set to the value "Default string". Unfortunately my employer needs the serial number of my computer to grant me access to certain resources via the Endpoint Verification Chrome extension. Can you please provide me with instructions to set the value appropriately? I was reading online that this can be accomplished via an AMI provided program but I'm hesitant to start following guides online for other manufacturers if there are potential differences with my AMR5 that I should be aware of.
Code: Select all
➜ ~ (echo 'field,value'; for f in $(find /sys/devices/virtual/dmi/id/ -type f); do printf "%s,%s\n" $(basename $f) "$(sudo cat $f | xargs)"; done) | csvq 'select * where value = "Default string"'
+-------------------+-----------------+
| field | value |
+-------------------+-----------------+
| product_serial | Default string |
| product_name | Default string |
| chassis_vendor | Default string |
| chassis_asset_tag | Default string |
| sys_vendor | Default string |
| product_version | Default string |
| board_vendor | Default string |
| chassis_version | Default string |
| chassis_serial | Default string |
| product_family | Default string |
| board_asset_tag | Default string |
| board_name | Default string |
+-------------------+-----------------+