How to open WeChat in windows

In life, there are situations where you use two WeChat accounts at the same time, one for work and one for daily life. In this case, you want to log in to two accounts on your computer at the same time. How to do it? Proceed as follows:

Right-click the "WeChat" icon and select Properties. The path in the target box is the WeChat installation path. Copy the content in the target box. file

Copy the following command to a TXT file and save it, and then rename the file, mainly changing the suffix name to a ".bat" file.

@echo off
start "" "C:\Program Files (x86)\Tencent\WeChat\WeChat.exe"
start "" "C:\Program Files (x86)\Tencent\WeChat\WeChat.exe"
exit

✍ NOTE:

  1. There is a space after start, and there is a space after the double quotation marks. These two spaces cannot be omitted, otherwise the double startup will not work.
  2. C:\Program Files (x86)\Tencent\WeChat\WeChat.exe is the WeChat installation path.
  3. Be sure to change the suffix to bat successfully. Please check the Internet to change the suffix name of txt.

Final rendering:

file

Double-click "WeChat Dual Open.bat", and two WeChat login interfaces will appear.

file

Tip: If you want to open 3 or more WeChat accounts, you can add this line of code

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

Copy 3 or more lines.

When you need to open WeChat dual-open in Win10 or WeChat dual-open in Win11, you only need to double-click WeChat dual-open.bat to achieve it.

Awesome! Encourage yourself to stay the course. I hope I've added some value to the time you invested.

If you think the article is helpful to you, please like, collect, follow, comment and support with four clicks. Your support is the biggest motivation for my creation.

❤️This article was originally written by the public account Programming Blackboard . Follow me to get my latest articles~❤️

Guess you like

Origin blog.csdn.net/tingchan/article/details/129419318