Skip to content

Instantly share code, notes, and snippets.

@Narazaka
Last active May 25, 2023 06:48
Show Gist options
  • Star 10 You must be signed in to star a gist
  • Fork 1 You must be signed in to fork a gist
  • Save Narazaka/04e08cd57310e6b0931774fad2e7090b to your computer and use it in GitHub Desktop.
Save Narazaka/04e08cd57310e6b0931774fad2e7090b to your computer and use it in GitHub Desktop.
@echo off
set KEY=HKEY_CURRENT_USER\SOFTWARE\VRChat\VRChat
reg query %KEY% /f "FriendsPerLocation*" > VRChat_FriendsPerLocation_raw.txt
find "FriendsPerLocation" < VRChat_FriendsPerLocation_raw.txt > VRChat_FriendsPerLocation_filtered.txt
del VRChat_FriendsPerLocation_raw.txt
for /f %%t in (VRChat_FriendsPerLocation_filtered.txt) do (
reg delete %KEY% /v "%%t" /f
)
del VRChat_FriendsPerLocation_filtered.txt

VRChatのソーシャルメニューが重いのを解決するかもしれないやつ

Download ZIPボタンからダウンロードして解凍して、でてきたvrchat_delete_friend_location_registory.cmdをダブルクリック実行でいける気はする(てきとう

レジストリをいじるので心配な場合はバックアップとかしてください

@Narazaka
Copy link
Author

なんかVRChatの更新で不要になったらしいです。よかったよかった。

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment