Внутренняя ошибка failed to expand shell folder constant userstartup

Содержание

  1. Internal error failed to expand shell folder constant userdocs
  2. Internal error failed to expand shell folder constant userdocs
  3. Internal error failed to expand shell folder constant userdocs
  4. Как избежать ошибок «Не удалось раскрыть папку оболочки с константой userdocs» в Inno Setup
  5. Internal error failed to expand shell folder constant userdocs

Internal error failed to expand shell folder constant userdocs

I’m trying to run the Windows installer for Xojo ADK but I’m getting an error as described in the subject. I’m using the defaults for all options in the installer. This is on Windows 10. I’ve attached a screen shot of the installer error.

What am I overlooking? Do I need to uninstall previous versions of Valentina?

I don’t run Xojo in Windows. The only reason I need to install is so I can grab the Vcomponents files for my app installation.

Is the Documents folder mapped to a non-standard location (not the C:UsersusernameDocuments, for example)?

The path appears to be C:UsersAdministratorDocuments

Administrator is the account I sign on with.

That’s strange, yes, I think it makes a difference, we’ll check it.

Problem solved. It was a mapping problem. It appears there was some kind of alias for the Documents folder pointing to a shared drive that no longer existed. I think this was a carryover from a previous installation of Windows 8 with VMWare.

It would show in the Windows Explorer sidebar but would give an error when I clicked on it saying it was not connected. I removed that and now the installer is working as expected.

Источник

Internal error failed to expand shell folder constant userdocs

I’m trying to run the Windows installer for Xojo ADK but I’m getting an error as described in the subject. I’m using the defaults for all options in the installer. This is on Windows 10. I’ve attached a screen shot of the installer error.

What am I overlooking? Do I need to uninstall previous versions of Valentina?

I don’t run Xojo in Windows. The only reason I need to install is so I can grab the Vcomponents files for my app installation.

Is the Documents folder mapped to a non-standard location (not the C:UsersusernameDocuments, for example)?

The path appears to be C:UsersAdministratorDocuments

Administrator is the account I sign on with.

That’s strange, yes, I think it makes a difference, we’ll check it.

Problem solved. It was a mapping problem. It appears there was some kind of alias for the Documents folder pointing to a shared drive that no longer existed. I think this was a carryover from a previous installation of Windows 8 with VMWare.

It would show in the Windows Explorer sidebar but would give an error when I clicked on it saying it was not connected. I removed that and now the installer is working as expected.

Источник

Internal error failed to expand shell folder constant userdocs

I’m trying to run the Windows installer for Xojo ADK but I’m getting an error as described in the subject. I’m using the defaults for all options in the installer. This is on Windows 10. I’ve attached a screen shot of the installer error.

What am I overlooking? Do I need to uninstall previous versions of Valentina?

I don’t run Xojo in Windows. The only reason I need to install is so I can grab the Vcomponents files for my app installation.

Is the Documents folder mapped to a non-standard location (not the C:UsersusernameDocuments, for example)?

The path appears to be C:UsersAdministratorDocuments

Administrator is the account I sign on with.

That’s strange, yes, I think it makes a difference, we’ll check it.

Problem solved. It was a mapping problem. It appears there was some kind of alias for the Documents folder pointing to a shared drive that no longer existed. I think this was a carryover from a previous installation of Windows 8 with VMWare.

It would show in the Windows Explorer sidebar but would give an error when I clicked on it saying it was not connected. I removed that and now the installer is working as expected.

Источник

Как избежать ошибок «Не удалось раскрыть папку оболочки с константой userdocs» в Inno Setup

Я устанавливаю несколько образцов документов в подпапку «PerfectTablePlan» стандартной папки «Мои документы» в Windows. Это отлично работает для 99% + пользователей. Но если у пользователя нет папки «Мои документы», я получаю несколько уродливых сообщений об ошибках вида:

Internal error:Failed to expand shell folder constant “userdocs”

Это не очень вселяет уверенность у пользователя!

Допускается не устанавливать образцы для этих пользователей (или устанавливать их где-нибудь еще). Но не для того, чтобы показывать уродливые сообщения об ошибках.

Проблема, похоже, связана с расширением макроса ExpandConstant для .

Есть ли способ получить путь к «Моим документам» без использования макроса?

Или каким-то образом подавить сообщение об ошибке? ExpandConstant выдает исключение: http://www.jrsoftware.org/ishelp/index.php?topic=isxfunc_expandconstant

Соответствующие части моего файла .iss выглядят так:

Failed to expand shell folder constant ‘constant name’

возникает, когда вызываемая изнутри SHGetFolderPath функция (вызываемая изнутри ExpandConstant при раскрытии константы папки оболочки) возвращает пустую строку пути для данной папки CSIDL, в данном случае для CSIDL_PERSONAL идентификатора.

Это означает, что у пользователя нет CSIDL_PERSONAL папки. Это заставляет меня задаться вопросом, как можно настроить учетную запись пользователя Windows, чтобы не было этой папки. Что ж, вы можете обойти эту проблему (или неправильную конфигурацию Windows?), Перехватив возникшее внутреннее исключение в try..except блоке:

Но я никогда не слышал о возможности отсутствия CSIDL_PERSONAL папки. Обратите внимание, что приведенный выше код защищает только константу.

Здесь мы используем перенаправление папок, и у нас были проблемы, похожие на это, с другими приложениями (GnuCash, UFile). В нашем случае проблема возникла из-за функции под названием «Миграция перенаправленной папки *», которая в некоторых случаях не обновляла параметры реестра пользователя, чтобы они указывали на новое местоположение после завершения миграции (обратите внимание, что эта миграция может произойти через несколько недель после того, как объект групповой политики был набор).

В любом случае, дело не в том, что запись была пустой, а в том, что она указывала на SERVER SHARE, который был отключен неделями ранее.

Запуск a gpupdate /force для каждого активного пользователя на каждой машине устранил нашу проблему, поскольку он обновил реестр, а затем сказал пользователю, что он должен выйти / войти в систему.

* Перенаправленная миграция папок позволяет администратору указать, что папка «Мои документы» каждого пользователя (например,) должна быть перемещена из одного сетевого местоположения в другое. Он делает это медленно и размеренно, когда в следующий раз пользователь войдет в домен (на любую рабочую станцию) в домен (так что, если ваш последний пользователь входит в систему только через месяц, процесс займет месяц). В теории это прекрасная идея, но на практике это большая PITA.

Между прочим, «общий ресурс не существует, потому что он олицетворяет другого пользователя» не должен быть проблемой с правильно перенаправленными папками, потому что перенаправление должно использовать URL-адрес, а не букву подключенного диска (например, server RedirectedUserFolders SOME-USER Мои документы, хотя при удалении некоторых прав по умолчанию могут возникнуть проблемы с разрешениями).

Источник

Internal error failed to expand shell folder constant userdocs

I’m trying to run the Windows installer for Xojo ADK but I’m getting an error as described in the subject. I’m using the defaults for all options in the installer. This is on Windows 10. I’ve attached a screen shot of the installer error.

What am I overlooking? Do I need to uninstall previous versions of Valentina?

I don’t run Xojo in Windows. The only reason I need to install is so I can grab the Vcomponents files for my app installation.

Is the Documents folder mapped to a non-standard location (not the C:UsersusernameDocuments, for example)?

The path appears to be C:UsersAdministratorDocuments

Administrator is the account I sign on with.

That’s strange, yes, I think it makes a difference, we’ll check it.

Problem solved. It was a mapping problem. It appears there was some kind of alias for the Documents folder pointing to a shared drive that no longer existed. I think this was a carryover from a previous installation of Windows 8 with VMWare.

It would show in the Windows Explorer sidebar but would give an error when I clicked on it saying it was not connected. I removed that and now the installer is working as expected.

Источник

Всем доброго времени суток.

Начину издалека. Решил приобрести новый SSD, чтобы был побольше (120gb против 250gb) и чтобы не тормозил по мере заполнения объема оного (был Kingston SSDnow V300, стал SAMSUNG 850 EVO), соответственно встал вопрос переустановки ОСи, что всегда сопровождается неким выходом из зоны комфорта. Но я пересилил себя, и конечном счете ОСь была установлена, и показалось мне, что встала она «криво». В итоге, ОСь была переустановлена еще раз. Как мне показалось, на этот раз все встало нормально. В итоге, были установлены все нужные драйвера, программы, были произведена настройка «под себя», и все бы хорошо. Но во-время установки одного исполнительного файла, появилась следующая ошибка:

Internal error. Failed to expand shell folder constant «userstartup»
Всем привет, уважаемые форумчане! возникла проблема при установке приложения на компьютер. скрин в.

Internal error: Failed to expand shell folder constant «localappdata»
Люди, помогите! Стало появлятся окно:Internal error: Failed to expand shell folder constant.

Не видит стили при ЧПУ по адресу вида http://host/index.php/some-folder/other-folder
Собственно как? Сервер проглатывает такую строку, а вот пхп начинает чудить, не видит таблиц.

Expected constant expression; cannot allocate an array of constant size 0
Доброго утра. Народ помогите, вот программа оформлена в виде функции #include #include.

В общем, знатоки, выручайте.

p.s. Win. 7 Ultimate x64 (крякнутая)

Добавлено через 20 минут
Забыл добавить, что имею склонность переносить папку мои документы. Мне кажется, что проблема может быть в этом. Исполнительный файл, которым я пользуюсь, создает папки в «Моих Документах». Я заметил, что на этой папке стоит параметр «только чтение», и убрать его никак нельзя (возвращается обратно). Так же заметил, что «Мои Документы» больше нельзя перенести.

В общем, гуглил-гуглил, и как минимум в рунете ничего дельного не нашел.

Источник

internal error — failed to expand shell folder constant «user docs

You have mentioned that you don’t remember the location so, created a new folder with the same name which will not work. Try the below methods.

METHOD 1

1. Right Click on Start

2. Select Explore from the Menu

3. Click on the Users Folder and see if you are able to find the folder.

METHOD 2

Type this command %USERPROFILE%Documents in the start search box and check if you are able to find the folder.

METHOD 3

· Click on Start and in the start search box type regedit and press enter

· Go to the location HKEY_CURRENT_USERSoftwareMicrosoftWindowsCurrentVersionExplorerUser Shell Folders

Once “User Shell Folders” is highlighted, right click that key and select export and save that to your computer as a backup.

Once you have exported that key, select “User Shell Folder” and on the right pane locate Personal and see what the path is set to. Set it to the default which will be %USERPROFILE%Documents (Double click Personal to change the Value). If the Personal is missing from there you are going to create it. Follow the steps below.

While User Shell Folders is still highlighted, in that right pane right click an open area and select new, then Expandable String Value. Once that Value is created (Personal), right click that new Value and select modify. In the Value data field type or copy and paste the following as the Value %USERPROFILE%Documents and click ok.

For more information visit

Thanks and Regards,

Bindu S: MICROSOFT SUPPORT
Visit our Microsoft Answers Feedback Forum and let us know what you think.

Источник

Avoiding “Failed to expand shell folder constant userdocs” errors in Inno Setup

I install some sample documents into a ‘PerfectTablePlan’ sub-folder of the standard ‘My documents’ folder on Windows. This works fine for 99%+ of users. But if a user doesn’t have a ‘My documents’ folder I get a number of ugly error messages of the form:

Internal error:Failed to expand shell folder constant “userdocs”

This is not very confidence inspiring for the user!

It is acceptable to not install the samples for these users (or install them somewhere else). But not to show the ugly error messages.

The problem seems to come from the ExpandConstant macro expansion of .

Is there some way I can get the path of ‘My documents’ without using a macro?

Or some way to suppress the error message? ExpandConstant throws an exception: http://www.jrsoftware.org/ishelp/index.php?topic=isxfunc_expandconstant

The relevant parts of my .iss file looks like this:

2 Answers 2

Failed to expand shell folder constant ‘constant name’

is raised when the internally called SHGetFolderPath function (called from inside ExpandConstant when expanding a shell folder constant) returns an empty path string for the given folder CSIDL, in this case for the CSIDL_PERSONAL identifier.

That means the user doesn’t have the CSIDL_PERSONAL folder. It makes me wonder how can one configure Windows’ user account to not have that folder. Well, you can workaround this issue (or Windows misconfiguration ?) by catching the raised internal exception in the try..except block:

But I’ve never heard about possibility of not having the CSIDL_PERSONAL folder. Please note, that the above code protects only the constant.

We use folder redirection here and have had issues similar to this with other apps (GnuCash, UFile). The problem in our case was a result of a feature called Redirected Folder Migration*, which in some cases did not update the user’s registry settings to point to the new location after the migration was completed (note this migration might occur weeks after the GPO was set).

Anyway, it’s not that the entry was blank, but that it pointed to a SERVERSHARE that had been brought offline weeks earlier.

Running a gpupdate /force for every active user on every machine fixed our problem, as it updated the registry and then told the user he had to logoff / logon.

Источник

28 / 25 / 14

Регистрация: 17.01.2013

Сообщений: 316

1

23.04.2015, 19:23. Показов 4797. Ответов 12


Студворк — интернет-сервис помощи студентам

Всем привет, уважаемые форумчане!
возникла проблема при установке приложения на компьютер. скрин в приложении.
сможет ли кто-то подсказать как это лечится?

Миниатюры

Internal error. Failed to expand shell folder constant "userstartup"
 



0



10571 / 5535 / 864

Регистрация: 07.04.2013

Сообщений: 15,660

23.04.2015, 19:51

2

В командной строке от имени администратора выполните SET
Вывод команды сюда.



0



28 / 25 / 14

Регистрация: 17.01.2013

Сообщений: 316

24.04.2015, 11:25

 [ТС]

3

vavun, спасибо за ответ! завтра отпишусь. сегодня все уже разошлись по домам.

Добавлено через 15 часов 31 минуту
Microsoft Windows [Version 6.1.7601]
(c) Корпорация Microsoft (Microsoft Corp.), 2009. Все права защищены.

C:Windowssystem32>set
ALLUSERSPROFILE=C:ProgramData
APPDATA=C:UsersinnaAppDataRoaming
CommonProgramFiles=C:Program FilesCommon Files
CommonProgramFiles(x86)=C:Program Files (x86)Common Files
CommonProgramW6432=C:Program FilesCommon Files
COMPUTERNAME=TE10
ComSpec=C:Windowssystem32cmd.exe
C_EM64T_REDIST11=C:Program Files (x86)Common FilesIntelShared Filescpp
EMAIL=C:mail
FP_NO_HOST_CHECK=NO
HOMEDRIVE=C:
HOMEPATH=Usersinna
LOCALAPPDATA=C:UsersinnaAppDataLocal
LOGONSERVER=\SERVER
MOZ_PLUGIN_PATH=C:PROGRAM FILES (X86)FOXIT SOFTWAREFOXIT READERplugins
NUMBER_OF_PROCESSORS=2
OS=Windows_NT
Path=C:Program Files (x86)Common FilesIntelShared FilescppbinIntel64;C:P
rogram FilesCommon FilesMicrosoft SharedWindows Live;C:Program Files (x86)C
ommon FilesMicrosoft SharedWindows Live;C:Program Files (x86)InteliCLS Clie
nt;C:Program FilesInteliCLS Client;C:Windowssystem32;C:Windows;C:Window
sSystem32Wbem;C:WindowsSystem32WindowsPowerShellv1.0;C:Program FilesInt
elIntel(R) Management Engine ComponentsDAL;C:Program FilesIntelIntel(R) Man
agement Engine ComponentsIPT;C:Program Files (x86)IntelIntel(R) Management E
ngine ComponentsDAL;C:Program Files (x86)IntelIntel(R) Management Engine Com
ponentsIPT;C:Program Files (x86)IntelOpenCL SDK2.0binx86;C:Program Files
(x86)IntelOpenCL SDK2.0binx64;C:Program Files (x86)Windows LiveShared;C
:OpenVPNbin;C:Program Files (x86)SkypePhone
PATHEXT=.COM;.EXE;.BAT;.CMD;.VBS;.VBE;.JS;.JSE;.WSF;.WSH;.MSC
PROCESSOR_ARCHITECTURE=AMD64
PROCESSOR_IDENTIFIER=Intel64 Family 6 Model 42 Stepping 7, GenuineIntel
PROCESSOR_LEVEL=6
PROCESSOR_REVISION=2a07
ProgramData=C:ProgramData
ProgramFiles=C:Program Files
ProgramFiles(x86)=C:Program Files (x86)
ProgramW6432=C:Program Files
PROMPT=$P$G
PSModulePath=C:Windowssystem32WindowsPowerShellv1.0Modules
PUBLIC=C:UsersPublic
SystemDrive=C:
SystemRoot=C:Windows
TEMP=C:UsersinnaAppDataLocalTemp
TMP=C:UsersinnaAppDataLocalTemp
USERDNSDOMAIN=TIME-ECO.LOCAL
USERDOMAIN=TIME-ECO
USERNAME=inna
USERPROFILE=C:Usersinna
windir=C:Windows
windows_tracing_flags=3
windows_tracing_logfile=C:BVTBinTestsinstallpackagecsilogfile.log

C:Windowssystem32>



0



Модератор

Эксперт по компьютерным сетям

11148 / 6949 / 1885

Регистрация: 25.12.2012

Сообщений: 29,292

24.04.2015, 11:37

4

а папка тут?
C:UsersinnaAppDataRoamingMicrosoftWindowsStart MenuProgramsStartup



0



28 / 25 / 14

Регистрация: 17.01.2013

Сообщений: 316

24.04.2015, 12:29

 [ТС]

5

вот такая есть.
C:UsersinnaAppDataRoamingMicrosoftWindowsГлавное менюProgramsStartup



0



943 / 310 / 44

Регистрация: 25.02.2015

Сообщений: 981

24.04.2015, 15:42

6

katjuha6, скачайте Process Monitor
1. запустите Process Monitor
2. запустите установку ПО
3. дождитесь появления ошибки.
4. Выполните File -> save сохраните лог в формате PML
5. если размер позволит прикрепите к сообщению иначе выложите на файлообменник и дайте ссылку



1



28 / 25 / 14

Регистрация: 17.01.2013

Сообщений: 316

24.04.2015, 18:13

 [ТС]

7

спасибо! сделаю! =)

Добавлено через 2 часа 31 минуту
Logfile.PML.7z
88 мб



0



киберпаразит

Эксперт Windows

9720 / 2784 / 188

Регистрация: 14.06.2011

Сообщений: 9,586

24.04.2015, 19:43

8

от админа запускали?
в диагностическом режиме пробовали установить?
UAC и брандмауэр откл. ?
имхо, че-то мешает ей в автозагрузку попасть.



1



10571 / 5535 / 864

Регистрация: 07.04.2013

Сообщений: 15,660

24.04.2015, 20:42

9

Лучший ответ Сообщение было отмечено katjuha6 как решение

Решение

Не по теме:

ScrollLock,

shell folder constant «userstartup»

Нету по умолчанию такой shell folder constant

Добавлено через 39 секунд
Создайте вторую учетную запись с правами администратора и проверьте наблюдаетсял и проблема в ней.



2



943 / 310 / 44

Регистрация: 25.02.2015

Сообщений: 981

24.04.2015, 21:36

10

katjuha6, запустите командную строку от имени администратора (правой кнопкой «Запуск от имени админ.) выполните:

Код

sfc /scanfile=C:WindowsSysWOW64imageres.dll

если будет сообщение о том что защита ресурсов не обнаружила нарушений целостности то выполните такую команду:

Код

regsvr32 C:WindowsSysWOW64imageres.dll

После чего попробуйте повторить установку, так же сделав лог Process Monitor



2



28 / 25 / 14

Регистрация: 17.01.2013

Сообщений: 316

25.04.2015, 00:51

 [ТС]

11

вторая учетная запись админа была, но была выключена. включила.
путем зажатия клавиши шифт + правая клавиша мыши запустила от другого пользователя (админа). установилось!
всем огромное спасибо за помощь!



0



943 / 310 / 44

Регистрация: 25.02.2015

Сообщений: 981

25.04.2015, 01:13

12

katjuha6, а команды написанные мной успели выполнить перед установкой или нет?
Встроенную учетную запись администратора лучше отключить, запуск от имени и так будет работать



0



28 / 25 / 14

Регистрация: 17.01.2013

Сообщений: 316

26.04.2015, 19:37

 [ТС]

13

Chinaski_Henry, откровенно говоря, не успела. поскольку vavun натолкнул на мысль, побежала проверять ее. а когда установила, так обрадовалась, что отключила удаленный комп… вообще Ваше сообщение я себе сложила в сборник полезных мыслей. при случае обязательно проверю. спасибо! =)



0



IT_Exp

Эксперт

87844 / 49110 / 22898

Регистрация: 17.06.2006

Сообщений: 92,604

26.04.2015, 19:37

13

Windows 10 silent install of v1.10.45 (has happened since earlier version).

Deploy via WPKG is command line: workrave-win32-v1.10.45-installer.exe /sp- /verysilent /norestart /LOG="c:netinstlogsworkrave_install.log". WPKG runs as the SYSTEM user.

On a newly installed PC the first time Workrave is installed it fails with the lof file of:

2021-04-08 16:27:41.177 Log opened. (Time zone: UTC+01:00)
2021-04-08 16:27:41.177 Setup version: Inno Setup version 5.5.8 (u)
2021-04-08 16:27:41.177 Original Setup EXE: sharedeploysoftwareworkraveworkrave-win32-v1.10.45-installer.exe
2021-04-08 16:27:41.177 Setup command line: /SL5=»$17400C0,17969599,119296,sharedeploysoftwareworkraveworkrave-win32-v1.10.45-installer.exe» /sp- /verysilent /norestart /LOG=»C:netinstlogsworkrave_install.log»
2021-04-08 16:27:41.177 Windows version: 10.0.19041 (NT platform: Yes)
2021-04-08 16:27:41.177 64-bit Windows: Yes
2021-04-08 16:27:41.177 Processor architecture: x64
2021-04-08 16:27:41.177 User privileges: Administrative
2021-04-08 16:27:41.179 64-bit install mode: No
2021-04-08 16:27:41.183 Created temporary directory: C:windowsTEMPis-5UVLJ.tmp
2021-04-08 16:27:41.194 Extracting temporary file: C:windowsTEMPis-5UVLJ.tmplibzapper-0.dll
2021-04-08 16:27:41.284 Warning: SHGetFolderPath failed with code 0x80070002 on folder 0x8007
2021-04-08 16:27:41.284 Exception message:
2021-04-08 16:27:41.284 Message box (OK):
Internal error: Failed to expand shell folder constant «userstartup»

The second time the same install command is run Workwave installs without issue. It’s only possible to see the error the very first time it’s installed on a PC.

It feels like an issue with the SYSTEM users ‘User Shell Folders’ but the contents of HKEY_CURRENT_USERSoftwareMicrosoftWindowsCurrentVersionExplorerUser Shell Folders looks fine, default values as expected.

Any thoughts?

Internal Error: “Failed to Expand Shell Folder Constant”

SYMPTOMS

While installing Genie Backup Manager (GBM) on Windows Vista, the following error occurs with the message:

Internal Error: Failed to expand shell folder constant “userappdata”

CAUSE

This problem is caused by a Vista conflict.

RESOLUTION

Set the My Documents folder to its default values as follows:

Using Windows Explorer, right-click the My Documents folder → Properties → Select the option for returning the position to its default value.

C:Documents and settings → All Users Documents → under properties you will see attributes and the settings for “read-only”

Setting back the default value for My Documents is just a workaround, which usually fixes the default read/write rights for the My Documents folder.

APPLIES TO: Genie Backup Manager (GBM).

We use folder redirection here and have had issues similar to this with other apps (GnuCash, UFile). The problem in our case was a result of a feature called Redirected Folder Migration*, which in some cases did not update the user’s registry settings to point to the new location after the migration was completed (note this migration might occur weeks after the GPO was set).

Anyway, it’s not that the entry was blank, but that it pointed to a SERVERSHARE that had been brought offline weeks earlier.

Running a gpupdate /force for every active user on every machine fixed our problem, as it updated the registry and then told the user he had to logoff / logon.


*Redirected Folder Migration allows an admin to specify that each user’s (e.g.) My Documents folder should be moved from one network location to another. It does this in a slow, measured fashion, the next time the user logs on to (any workstation on) the domain (so if your last user only logs on a month from now, the process takes a month to complete). It’s a lovely idea in theory, but in practice is a big PITA.

Incidentally, the ‘share doesn’t exist because it’s impersonating another user’ thing shouldn’t be an issue with properly redirected folders because the redirect should use a URL, not a mapped drive letter (e.g. \serverRedirectedUserFoldersSOME-USERMy Documents, although permissions might be an issue if you remove some default rights).

Возможно, вам также будет интересно:

  • Внутренняя ошибка программы установки свяжитесь со службой техподдержки alcohol 120
  • Внутренняя ошибка failed to expand shell folder constant userdocs как исправить
  • Внутренняя ошибка failed to expand shell folder constant userdocs war thunder
  • Внутренняя ошибка failed to expand shell folder constant userdesktop
  • Внутренняя ошибка failed to expand shell folder constant fonts

  • Понравилась статья? Поделить с друзьями:
    0 0 голоса
    Рейтинг статьи
    Подписаться
    Уведомить о
    guest

    0 комментариев
    Старые
    Новые Популярные
    Межтекстовые Отзывы
    Посмотреть все комментарии