VMWare Server 1.0.7を入れた後モバイルパソコンの電池の持ちが悪くなったのでvmware関連サービスを止め、インターフェースを無効にしたら電池の持ちが良くなったのでメモ

停止バッチ、これを入れて少し電池の持ちが良くなった

@echo off
echo "Stopping VMware Services"
sc stop "VMnetDHCP"
sc stop "VMware NAT Service"
sc stop "vmount2"
sc stop "vmserverdWin32"
sc stop "VMAuthdService"

echo "Stoping interface"
netsh interface set interface "VMware Network Adapter VMnet1" disabled
netsh interface set interface "VMware Network Adapter VMnet8" disabled

起動バッチ、使用前に起動。

@echo off
echo "Starting VMware Services"
sc start "VMAuthdService"
sc start "vmserverdWin32"
sc start "vmount2"
sc start "VMware NAT Service"
sc start "VMnetDHCP"

echo "Starting interface"
netsh interface set interface "VMware Network Adapter VMnet1" enabled
netsh interface set interface "VMware Network Adapter VMnet8" enabled