午夜视频在线网站,日韩视频精品在线,中文字幕精品一区二区三区在线,在线播放精品,1024你懂我懂的旧版人,欧美日韩一级黄色片,一区二区三区在线观看视频

分享

簡(jiǎn)單批處理管理你的VM虛擬機(jī)服務(wù)

 啊里路呀 2015-08-31
  相信有不少人已經(jīng)裝了VM虛擬機(jī)
也有不少人 用 VM虛擬機(jī)只是偶爾的事 并不是經(jīng)常用
但是 VM虛擬機(jī)的 服務(wù) 被設(shè)置為 自動(dòng)開啟 不免有點(diǎn)浪費(fèi)了系統(tǒng)資源
但設(shè)置為手動(dòng)之后 用VM虛擬機(jī)的時(shí)候 又不得不去 一個(gè)一個(gè)服務(wù)打開 很麻煩
下面我就教大家用簡(jiǎn)單的批處理來解決這些問題
首先 先看一下 VM虛擬機(jī)的服務(wù)和連接
總共有5個(gè)服務(wù)

分別是

VMware Agent Service、

VMware Authorization Service、

VMware DHCP Service、

VMware NAT Service、

VMware USB Arbitration Service
其中 要用VM虛擬機(jī)的時(shí)候 VMware Authorization Service是必須開啟的。VMware DHCP Service、VMware NAT Service是跟網(wǎng)絡(luò)有關(guān)的。不開啟虛擬機(jī)用不了網(wǎng)絡(luò)。VMware Agent Service和VMware USB Arbitration Service設(shè)置為手動(dòng)就可以,用虛擬機(jī)的時(shí)候一般也不用啟動(dòng)。(如果需要的話可以自己用相同的語句復(fù)制上就行)
還有2個(gè)網(wǎng)絡(luò)連接

VMware Network Adapter VMnet1、VMware Network Adapter VMnet8
這兩個(gè)要是不用虛擬機(jī)的話也用不到。一會(huì)就和那些服務(wù)一起開啟和禁止。
下面說語句
啟動(dòng)停止服務(wù)的語句 net start/stop "服務(wù)名稱" (ps:填寫的是服務(wù)名稱 不是顯示名稱這個(gè)別搞錯(cuò)了)
開啟禁止網(wǎng)絡(luò)連接的語句 netsh interface set interface "網(wǎng)絡(luò)連接名" enable/disable
(""這個(gè)引號(hào)最好帶上,為了避免不必要的麻煩。)
也就是說 簡(jiǎn)單的 代碼就是

啟動(dòng)的

@echo off
echo 正在啟用服務(wù)...
net start "VMAuthdService"
net start "VMnetDHCP"
net start "VMware NAT Service"
echo 正在啟用網(wǎng)絡(luò)連接...
netsh interface set interface "VMware Network Adapter VMnet1" enable
netsh interface set interface "VMware Network Adapter VMnet8" enable
echo 網(wǎng)絡(luò)連接VMware Network Adapter VMnet1、VMware Network Adapter VMnet8啟動(dòng)成功
pause
禁止的

@echo off
echo 正在禁用服務(wù)服務(wù)...
net stop "VMAuthdService"
net stop "VMnetDHCP"
net stop "VMware NAT Service"
echo 正在禁用網(wǎng)絡(luò)連接...
netsh interface set interface "VMware Network Adapter VMnet1" disable
netsh interface set interface "VMware Network Adapter VMnet8" disable
echo 網(wǎng)絡(luò)連接VMware Network Adapter VMnet1、VMware Network Adapter VMnet8禁用成功
pause
echo 后面加的是你想說的話。。。這些就隨便了。
總之代碼簡(jiǎn)單來說就是這樣了。
這樣兩個(gè)簡(jiǎn)單的批處理文件,就解決這些問題了。
(PS:如果Win7系統(tǒng)下運(yùn)行請(qǐng)右鍵選擇 以管理員身份運(yùn)行 否則將會(huì)出現(xiàn)錯(cuò)誤5?。?
如果還麻煩可以把這兩個(gè)合成一個(gè)。
下面是我現(xiàn)在用的

@echo off
for /f "skip=3 tokens=4" %%i in ('sc query "VMAuthdService"') do set "zt=%%i" &goto :next
:next
if /i "%zt%"=="RUNNING" (
echo 服務(wù)VMware Authorization Service正在運(yùn)行
) else (
echo 服務(wù)VMware Authorization Service已停止
)
for /f "skip=3 tokens=4" %%i in ('sc query "VMnetDHCP"') do set "zt=%%i" &goto :next
:next
if /i "%zt%"=="RUNNING" (
echo 服務(wù)VMware DHCP Service正在運(yùn)行
) else (
echo 服務(wù)VMware DHCP Service已停止
)
for /f "skip=3 tokens=4" %%i in ('sc query "VMware NAT Service"') do set "zt=%%i" &goto :next
:next
if /i "%zt%"=="RUNNING" (
echo 服務(wù)VMware NAT Service正在運(yùn)行
) else (
echo 服務(wù)VMware NAT Service已停止
)
pause
echo 1:?jiǎn)⒂肰M虛擬機(jī)服務(wù)(VMware Authorization Service、VMware DHCP Service、VMware NAT Service)及網(wǎng)絡(luò)連接(VMware Network
Adapter VMnet1、VMware Network Adapter VMnet8)
echo 2:禁用VM虛擬機(jī)服務(wù)(VMware Authorization Service、VMware DHCP Service、VMware NAT Service)及網(wǎng)絡(luò)連接(VMware Network
Adapter VMnet1、VMware Network Adapter VMnet8)
choice /c:12 /m "根據(jù)選項(xiàng)請(qǐng)選擇..."
if errorlevel 2 goto two
if errorlevel 1 goto one
:one
echo 正在啟用服務(wù)...
net start "VMAuthdService"
net start "VMnetDHCP"
net start "VMware NAT Service"
echo 正在啟用網(wǎng)絡(luò)連接...
netsh interface set interface "VMware Network Adapter VMnet1" enable
netsh interface set interface "VMware Network Adapter VMnet8" enable
echo 網(wǎng)絡(luò)連接VMware Network Adapter VMnet1、VMware Network Adapter VMnet8啟動(dòng)成功
echo 按任意鍵退出...
pause>nul
exit
:two
echo 正在禁用服務(wù)服務(wù)...
net stop "VMAuthdService"
net stop "VMnetDHCP"
net stop "VMware NAT Service"
echo 正在禁用網(wǎng)絡(luò)連接...
netsh interface set interface "VMware Network Adapter VMnet1" disable
netsh interface set interface "VMware Network Adapter VMnet8" disable
echo 網(wǎng)絡(luò)連接VMware Network Adapter VMnet1、VMware Network Adapter VMnet8禁用成功
echo 按任意鍵退出...
pause>nul
exit
加了個(gè) 檢測(cè)服務(wù)是否開啟 都是一些簡(jiǎn)單的語句。
如果不愛自己寫的 可以把 代碼直接復(fù)制到記事本里 把 文件名改為 VMware虛擬機(jī)服務(wù)、網(wǎng)絡(luò)連接.bat 就OK。

    本站是提供個(gè)人知識(shí)管理的網(wǎng)絡(luò)存儲(chǔ)空間,所有內(nèi)容均由用戶發(fā)布,不代表本站觀點(diǎn)。請(qǐng)注意甄別內(nèi)容中的聯(lián)系方式、誘導(dǎo)購(gòu)買等信息,謹(jǐn)防詐騙。如發(fā)現(xiàn)有害或侵權(quán)內(nèi)容,請(qǐng)點(diǎn)擊一鍵舉報(bào)。
    轉(zhuǎn)藏 分享 獻(xiàn)花(0

    0條評(píng)論

    發(fā)表

    請(qǐng)遵守用戶 評(píng)論公約

    類似文章 更多