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

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

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

如何做批處理檔案多數個轉換成,如何做批處理檔案 多數個word轉換成PDf

無憂 書生 1.安裝完adobe acrobat 7.0 professional 2.將需要轉換的word放入同一資料夾 3.選擇所有檔案,右鍵 轉換為adobe pdf 4.adobe acrobat 7.0 professional會將word 轉換為同名的pdf檔案. 做批處理檔案 多個wo...

批處理如何獲取命令的執行結果,批處理CMD,如何獲得start所呼叫程式的執行結果

99承情 編輯批處理檔案 在每一條命令後面加 chk.log 即可。當使用if errorlevel 值 cmmand 句式時,它含義是 如果返回的錯誤碼值等於值 的時候,將執行cmmand操作。一般上一條命令的執行結果返回的值只有兩個,成功 用0 表示 失敗 用 1 表示。可以用for命令將命令結...

如何做這樣的BAT批處理檔案,如何做乙個這樣的BAT批處理檔案

先用start語句 同時啟動 再根據cpu的執行速度計算出60秒大約能執行多少個for for p i in 1,1,1000000000 先建乙個文字檔案把想要執行的命令輸進去,再把副檔名改成.bat即可 新建乙個文字檔案,寫入如下 echo off c abc.exe 然後,你另存為1.bat ...