Папка "Документы" на русском, нет доступа. Решение
Инструкция
- Удалите папку "Документы", предварительно сохранив резервную копию всех файлов
- Создайте в любом месте текстовый документ, вставьте этот текст и сохраните в формате .bat
@echo off
taskkill /f /im explorer.exe
timeout /t 2 /nobreak >nul
if not exist "%UserProfile%\Documents" mkdir "%UserProfile%\Documents"
reg add "HKCU\SOFTWARE\Microsoft\Windows\CurrentVersion\Explorer\Shell Folders" /v "Personal" /t REG_SZ /d "C:\Users\%USERNAME%\Documents" /f
reg add "HKCU\SOFTWARE\Microsoft\Windows\CurrentVersion\Explorer\User Shell Folders" /v "{f42ee2d3-909f-4907-8871-4c22fc0bf756}" /t REG_EXPAND_SZ /d %%USERPROFILE%%"\Documents" /f
reg add "HKCU\SOFTWARE\Microsoft\Windows\CurrentVersion\Explorer\User Shell Folders" /v "Personal" /t REG_EXPAND_SZ /d %%USERPROFILE%%"\Documents" /f
attrib +r -s -h "%USERPROFILE%\Documents" /S /D
timeout /t 1 /nobreak >nul
start explorer.exe
- Запустите созданный файл .bat
После этого папка "Документы" восстановит параметры по умолчанию и переименуется в documents
- Включаете игру и выбираете русский язык
This guide was created by its original author on the Steam Community. Are you the author and want it removed? Request removal.