Generally, after VMwareWorkstation is installed, the system is too slow to start. After analysis, it is found that the WORKSTATION Service has been started for a long time, and the effect is obvious after being disabled. WORKSTATION is a basic service shared by WINDOWS, for example, I can't leave this service, so I only need the following script to solve the problem! (Enter the Virtual Machine path in more practical cases. The terminal path is required)
Copy the following text to notepad and save it as "VM. bat"Copy codeThe Code is as follows: @ echo off
Title VMwareWorkstation smart STARTUP script v1.0
Color
@ Echo =====================================================
@ Echo VMwareWorkstation smart STARTUP script v1.0
@ Echo Create by Adobo
@ Echo QQ: 100004117.
@ Echo www.BeYourMan.com
@ Echo =====================================================
@ Echo start the task. Please wait...
Echo off
Echo is starting VM-related services...
Net start "VMware Authorization Service"
Net start "VMware DHCP Service"
Net start "VMware NAT Service"
Net start "VMware Virtual Mount Manager Extended"
Echo is opening the VMwareWorkstation software...
Start/w E: \ SOFT-Z ~ 1 \ VMware ~ 1 \ vmware.exe
Echo VMwareWorkstation exited and is stopping related services to release resources...
Net stop "VMware Authorization Service"
Net stop "VMware DHCP Service"
Net stop "VMware NAT Service"
Net stop "VMware Virtual Mount Manager Extended"
All echo-related services are stopped. Any key is used to exit.