Created
November 27, 2017 17:19
-
-
Save ryu1/406dfc0a7e9b260fd87b9a37db8ec89f to your computer and use it in GitHub Desktop.
ChromeのキャッシュをRAMディスクにシンボルリンクする
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| rem Chrome Cache Directory Symbolic Link | |
| @ECHO OFF | |
| ECHO シンボリックリンクを作成します | |
| ECHO 中断する場合はCtrl+Cを押す | |
| pause | |
| @ECHO ON | |
| cd /D C:\ | |
| cd Users\[ユーザ名]\AppData\Local\Google | |
| rmdir Chrome /s | |
| mklink /D "Chrome" "D:\GoogleChrome" | |
| @ECHO OFF | |
| pause |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment