如何做批處理來獲取電腦資訊,如何做一個批處理來獲取電腦資訊

時間 2021-08-30 11:08:37

1樓:匿名使用者

鍵一個記事本檔案 裡面打上

ipconfig /all >c:\1.txt之後儲存為ipconfig.bat

雙擊之後去c盤找1.txt就可以了。這個檔案裡有你要的資訊。

2樓:匿名使用者

@echo off

color 0a

title 硬體檢測

mode con cols=90

sc config winmgmt start= auto >nul 2<&1

net start winmgmt 2>1nul

setlocal enabledelayedexpansion

echo 主版:

for /f "tokens=1,* delims==" %%a in ('wmic baseboard get manufacturer^,product^,version^,serialnumber /value') do (

set /a tee+=1

if "!tee!" == "3" echo 製造商 = %%b

if "!tee!" == "4" echo 型 號 = %%b

if "!tee!" == "5" echo 序列號 = %%b

if "!tee!" == "6" echo 版 本 = %%b

)set tee=0

echo bios:

for /f "tokens=1,* delims==" %%a in ('wmic bios get

currentlanguage^,manufacturer^,smbiosbiosversion^,smbiosmajorversion^,smbiosminorversion^,releasedate /value') do (

set /a tee+=1

if "!tee!" == "3" echo 當前語言 = %%b

if "!tee!" == "4" echo 製造商 = %%b

if "!tee!" == "5" echo 發行日期 = %%b

if "!tee!" == "6" echo 版 本 = %%b

if "!tee!" == "7" echo smbiosmajorversion = %%b

if "!tee!" == "8" echo smbiosminorversion = %%b

)set tee=0

echo.

echo cpu:

for /f "tokens=1,* delims==" %%a in ('wmic cpu get name^,extclock^,cpustatus^,description /value') do (

set /a tee+=1

if "!tee!" == "3" echo cpu個數 = %%b

if "!tee!" == "4" echo 處理器版本 = %%b

if "!tee!" == "5" echo 外 頻 = %%b

if "!tee!" == "6" echo 名稱及主頻率 = %%b

)set tee=0

echo.

echo 顯示器:

for /f "tokens=1,* delims==" %%a in ('wmic desktopmonitor get name^,screenwidth^,screenheight^,pnpdeviceid /value') do (

set /a tee+=1

if "!tee!" == "3" echo 類 型 = %%b

if "!tee!" == "4" echo 其他資訊 = %%b

if "!tee!" == "5" echo 螢幕高 = %%b

if "!tee!" == "6" echo 螢幕寬 = %%b

)set tee=0

echo.

echo 硬 盤:

for /f "tokens=1,* delims==" %%a in ('wmic diskdrive get model^,inte***cetype^,size^,totalsectors^,partitions /value') do (

set /a tee+=1

if "!tee!" == "3" echo 介面型別 = %%b

if "!tee!" == "4" echo 硬碟型號 = %%b

if "!tee!" == "5" echo 分割槽數 = %%b

if "!tee!" == "6" echo 容 量 = %%b

if "!tee!" == "7" echo 總扇區 = %%b

)echo 分割槽資訊:

wmic logicaldisk where mediatype='12' get description,deviceid,filesystem,size,freespace

set tee=0

echo.

echo 網 卡:

for /f "tokens=1,* delims==" %%a in ('wmic nicconfig where "index='1'" get ipaddress^,macaddress^,description /value') do (

set /a tee+=1

if "!tee!" == "3" echo 網絡卡型別 = %%b

if "!tee!" == "4" echo 網絡卡ip = %%b

if "!tee!" == "5" echo 網絡卡mac = %%b

)set tee=0

echo.

echo 印表機:

for /f "tokens=1,* delims==" %%a in ('wmic printer get caption /value') do (

set /a tee+=1

if "!tee!" == "3" echo 印表機名字 = %%b

)set tee=0

echo.

echo 聲 卡:

for /f "tokens=1,* delims==" %%a in ('wmic sounddev get name^,deviceid /value') do (

set /a tee+=1

if "!tee!" == "3" echo 其他資訊 = %%b

if "!tee!" == "4" echo 型 號 = %%b

)set tee=0

echo.

echo 內 存:

for /f "tokens=1,* delims==" %%a in ('systeminfo^|find "記憶體"') do (

echo %%a 4534 %%b

)echo.

echo 顯 卡:

del /f "%temp%\temp.txt" 2>nul

dxdiag /t %temp%\temp.txt

:顯示卡rem 這裡需要30秒左右!

if exist "%temp%\temp.txt" (

for /f "tokens=1,2,* delims=:" %%a in ('findstr /c:" card name:

" /c:"display memory:" /c:

"current mode:" "%temp%\temp.txt"') do (

set /a tee+=1

if !tee! == 1 echo 顯示卡型號: %%b

if !tee! == 2 echo 視訊記憶體大小: %%b

if !tee! == 3 echo 當前設定: %%b

) ) else (

ping /n 2 127.1>nul

goto 顯示卡

)set /p var=需要額外資訊嗎(y/n):

if /i %var% == y notepad "%temp%\temp.txt"

del /f "%temp%\temp.txt" 2>nul

pause

bat檔案中如何建立時間變數,批處理獲取了檔案的修改時間,怎麼賦值給變數

date 和time兩個變數中包含了當前的的日期和時間。date 6,4 就是引用date變數中,第六個字元開始的連續四位字元 在cmd中,輸入命令data 或 time 顯示為 bat批處理,生成名字含時間變數的檔案 修訂版 可見date包含的字串為 12 08 2010 wed,time包含的字...

批處理如何獲取指定字串之後的內容?

批處理提取出指定字串之後的內容複製到新檔案裡 for f tokens i in do echo i findstr i include for f tokens j in do echo j findstr v r type del q pause方法和你說的不同,但效果還行且簡單。echo of...

海參怎麼處理?幹海參如何處理如何做

我們在買回了活海參之後,首先第一步一定要將活海參洗乾淨,因為活海參內部的細菌和雜質都是比較多,我們在處理這一個過程的時候,需要花費很多的時間,這期間,我們需要將活海參浸泡在乾淨的水裡面,一直要泡到海參的外皮變軟,海參的長度變長,我們在處理乾淨之後,我們就可以把活海參進行烹飪,在烹飪期間,我們可以適當...