VBScript file displays a summary of all your hardware information using only the built-in Windows system codes, without the need for third-party programs abdullah-erturk/HardwareInfo: Hardware Information vbscript for Windows Direct Download Link: TR: https://github.com/abdullah-erturk/HardwareInfo/raw/refs/heads/main/Donanım_Bilgileri_TR.bat https://github.com/abdullah-erturk/HardwareInfo/raw/refs/heads/main/Donan%C4%B1m_Bilgileri.zip ENG: https://github.com/abdullah-erturk/HardwareInfo/raw/refs/heads/main/Hardware_Info_EN.bat https://github.com/abdullah-erturk/HardwareInfo/raw/refs/heads/main/Hardware_Info.zip
No, it has not been removed. The latest version Windows 11 24H2 still has support for vbscript. Only wmic was removed.
Powershell version has been added. abdullah-erturk/HardwareInfo: Hardware Information vbscript for Windows
You can format a long block of printed text (with variable strings), in PS: Code: $tMessage = @" Operating System`t`t: $($($osInfo.Caption -replace 'Microsoft ', '').Trim())`n OS Version`t`t: $($osInfo.Version)`n Windows Architecture`t: $cpuArchitecture`n User Name`t`t: $userName`n Computer Name`t`t: $computerName`n Last Format Date`t`t: $formattedInstallDate`n $dividerLine`n" Motherboard Manufacturer`t: $($mbInfo.Manufacturer)`n Motherboard Model`t: $($mbInfo.Product)`n Processor`t`t: $($cpuInfo.Manufacturer)`n Processor Model`t`t: $($cpuInfo.Name)`n CPU Architecture`t`t: $cpuArchitecture`n Total RAM`t`t: $totalRamGB_Display GB`n Max Supported RAM`t: $maxSupportedRamGB GB`n Empty RAM Slots`t`t: $emptySlots`n RAM Slots`t`t: `n$ramDetails`n" Graphics Card(s)`t`t: `n$gpuDetails $dividerLine`n Network Card(s) and IP Address(es) :`n`n$ipDetails $dividerLine`n $diskInfo "@