微信多开方式

由于业务需求,在公司要用到多个微信账号,但是通常在电脑上只能同时开启一个微信。
以下是使用批处理文件进行微信多开的方式:

@echo off
start /d "F:\Program Files\Tencent\WeChat\" WeChat.exe
start /d "F:\Program Files\Tencent\WeChat\" WeChat.exe
exit

其中 F:\Program Files\Tencent\WeChat\ 是微信安装的路径信息。
想要开启几个微信就重复几次 start /d "F:\Program Files\Tencent\WeChat\" WeChat.exe 即可。

猜你喜欢

转载自blog.csdn.net/EverNess010/article/details/113772534