在 Mac 和 Windows 如何多开微信?
Mac 上多开微信
打开终端,执行命令,执行一次就开启一个微信进程
nohup /applications/WeChat.app/Contents/MacOS/WeChat > /dev/null 2>&1&
Windows 上多开微信
新建一个 bat 文件,内容如下,原意是执行快速执行多次 wechat.exe 进程。新测写执行三次只出现了两个微信窗口,这种多开的数量有限制。
TASKKILL /F /IM wechat.exe
start "" "D:\Program Files (x86)\Tencent\WeChat\WeChat.exe"
start "" "D:\Program Files (x86)\Tencent\WeChat\WeChat.exe"
start "" "D:\Program Files (x86)\Tencent\WeChat\WeChat.exe"