Skip to content
View in the app

A better way to browse. Learn more.

MSFN

A full-screen app on your home screen with push notifications, badges and more.

To install this app on iOS and iPadOS
  1. Tap the Share icon in Safari
  2. Scroll the menu and tap Add to Home Screen.
  3. Tap Add in the top-right corner.
To install this app on Android
  1. Tap the 3-dot menu (⋮) in the top-right corner of the browser.
  2. Tap Add to Home screen or Install app.
  3. Confirm by tapping Install.

Pulling BIOS info in WinPE 2.0?

Featured Replies

SMBiosD and W don't work for me in 2.0? HTA and WMI packages are installed and I can't figure out why neither will run. They both say that the .exe cannot be found. Does anyone have a freeware utility that will read the bios in PE 2.0? I need to extract Model and Manufacturer.

Here is what I use: (VBS script)

Dim objFileSystem, objOutputFile

Dim strOutputFile

strComputer = "."

strOutputFile = "X:\hardtest.ini"

Set objFileSystem = CreateObject("Scripting.fileSystemObject")

Set objOutputFile = objFileSystem.CreateTextFile(strOutputFile, TRUE)

Set objWMIService = GetObject("winmgmts:" _

& "{impersonationLevel=impersonate}!\\" & strComputer & "\root\cimv2")

Set colSettings = objWMIService.ExecQuery _

("SELECT * FROM Win32_ComputerSystem")

For Each objComputer in colSettings

'Wscript.Echo "System Manufacturer: " & objComputer.Manufacturer

objOutputFile.WriteLine("Type: " & objComputer.Manufacturer & "")

objOutputFile.WriteLine("Model: " & objComputer.Model & "")

Next

objOutputFile.Close

Set objFileSystem = Nothing

WScript.Quit(0)

Here is the output: "X:\hardtest.ini"

Type: Supermicro

Model: H8SMI

Edited by Jazkal

  • Author
Here is what I use: (VBS script)
Dim objFileSystem, objOutputFile

Dim strOutputFile

strComputer = "."

strOutputFile = "X:\hardtest.ini"

Set objFileSystem = CreateObject("Scripting.fileSystemObject")

Set objOutputFile = objFileSystem.CreateTextFile(strOutputFile, TRUE)

Set objWMIService = GetObject("winmgmts:" _

& "{impersonationLevel=impersonate}!\\" & strComputer & "\root\cimv2")

Set colSettings = objWMIService.ExecQuery _

("SELECT * FROM Win32_ComputerSystem")

For Each objComputer in colSettings

'Wscript.Echo "System Manufacturer: " & objComputer.Manufacturer

objOutputFile.WriteLine("Type: " & objComputer.Manufacturer & "")

objOutputFile.WriteLine("Model: " & objComputer.Model & "")

Next

objOutputFile.Close

Set objFileSystem = Nothing

WScript.Quit(0)

Here is the output: "X:\hardtest.ini"

Type: Supermicro

Model: H8SMI

Thanks Jaz, I ended up writing a very simple AutoIT script for it, working great now.

Create an account or sign in to comment

Recently Browsing 0

  • No registered users viewing this page.

Account

Navigation

Search

Search

Configure browser push notifications

Chrome (Android)
  1. Tap the lock icon next to the address bar.
  2. Tap Permissions → Notifications.
  3. Adjust your preference.
Chrome (Desktop)
  1. Click the padlock icon in the address bar.
  2. Select Site settings.
  3. Find Notifications and adjust your preference.