虚拟器套接字尝试次数太多,正在放弃,解决netsh winsock reset之后带来的需要重启VM服务的bat批处理
在win10中,使用VMware虚拟机,由于安装太多开发环境,可能会造成这个问题由于经常出现该问题,所以写了个批处理来解决netsh winsock reset之后带来的问题echo 将服务修改为自动(auto) demand为手动 disabled为禁用sc config "VMAuthdService" start= autosc config "VMnetDHCP" s...
·
在win10中,使用VMware虚拟机,由于安装太多开发环境,可能会造成这个问题
由于经常出现该问题,所以写了个批处理来解决netsh winsock reset之后带来的问题
echo 将服务修改为自动(auto) demand为手动 disabled为禁用
sc config "VMAuthdService" start= auto
sc config "VMnetDHCP" start= auto
sc config "VMware NAT Service" start= auto
sc config "VMUSBArbService" start= auto
sc config "VMwareHostd" start= auto
echo 启动VM服务
net start "VMAuthdService"
net start "VMnetDHCP"
net start "VMware NAT Service"
net start "VMUSBArbService"
net start "VMwareHostd"
pause
创建一个文本文件,然后将后缀名改为.bat,将上面的代码写到文本中,使用管理员权限运行
更多推荐
已为社区贡献9条内容
所有评论(0)