0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

How to run dual apps on the macos

Last updated at Posted at 2025-11-12

1.png

How to open same app multiple times

sudo cp -R /Applications/WeChat.app /Applications/WeChat2.app

# install xcode
# Change the app bundle identifier
sudo /usr/libexec/PlistBuddy -c "Set :CFBundleIdentifier com.tencent.xinWeChat2" /Applications/WeChat2.app/Contents/Info.plist

# Remove extended attributes
sudo xattr -cr /Applications/WeChat2.app

# Re-sign the app
sudo codesign --force --deep --sign - /Applications/WeChat2.app

# Verify the code signature
codesign -vv --deep --strict /Applications/WeChat2.app

Ref:

0
0
1

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?