微信多开

微信for windows限制只能有一个实例,但是通过代码快速打开就可以同时开多个实例。

编辑bat文件,双击运行就能打开多个微信。

@echo off

tasklist /fi "imagename eq wechat.exe" |find ":" > nul
if errorlevel 1 taskkill /f /im "wechat.exe"

start /d "C:\Program Files (x86)\Tencent\WeChat\" WeChat.exe

start /d "C:\Program Files (x86)\Tencent\WeChat\" WeChat.exe

exit
BAT (Batchfile)

Comment