Last active
October 31, 2025 08:26
-
-
Save rsyuzyov/fe9771e55515492ec543c026481275f1 to your computer and use it in GitHub Desktop.
Перенос каталогов кэшей и настроек 1С из AppData/Local и AppData/roaming на ssd
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
| rd /s /q "%userprofile%\AppData\Roaming\1C" | |
| rd /s /q "%userprofile%\AppData\Local\1C" | |
| mkdir "G:\users\%username%\AppData\Roaming\1C" | |
| mkdir "G:\users\%username%\AppData\Local\1C" | |
| mklink /j "%userprofile%\AppData\Roaming\1C" "G:\users\%username%\AppData\Roaming\1C" | |
| mklink /j "%userprofile%\AppData\Local\1C" "G:\users\%username%\AppData\Local\1C" | |
| rem pause |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment