2013-10-21 97 views

回答

6

你可以看看設備管理器,你很可能會有不少虛擬驅動程序的VMWare,你不會在物理機器上得到。

此外,您可以在一個CMD窗口中鍵入systeminfo,如果它說System Manufacturer: VMware, Inc.或類似的而不是微軟Windows,那麼你將能夠解決設置是虛擬的還是虛擬的。

2

試試這個代碼:

@echo off 
systeminfo > temp.txt 
findstr /e "System Model:    Virtual Machine" temp.txt 
del temp.txt 
if errorlevel 1 (
    echo Physical machine 

) else (
    echo Virtual machine 
) 
2

對於Windows, 單擊開始→寫MSINFO32→按Enter鍵

系統生產廠家資料顯示: 「VMware公司。」 如果是VM。

+0

比接受的答案更快(對於手動用例) –

相關問題