|
Внимание, важное сообщение: Дорогие Друзья!
В ноябре далекого 2001 года мы решили создать сайт и форум, которые смогут помочь как начинающим, так и продвинутым пользователям разобраться в операционных системах. В 2004-2006г наш проект был одним из самых крупных ИТ ресурсов в рунете, на пике нас посещало более 300 000 человек в день! Наша документация по службам Windows и автоматической установке помогла огромному количеству пользователей и сисадминов. Мы с уверенностью можем сказать, что внесли большой вклад в развитие ИТ сообщества рунета. Но... время меняются, приоритеты тоже. И, к сожалению, пришло время сказать До встречи! После долгих дискуссий было принято решение закрыть наш проект. 1 августа форум переводится в режим Только чтение, а в начале сентября мы переведем рубильник в положение Выключен Огромное спасибо за эти 24 года, это было незабываемое приключение. Сказать спасибо и поделиться своей историей можно в данной теме. С уважением, ваш призрачный админ, BigMac... |
|
| Компьютерный форум OSzone.net » Автоматическая установка Windows » Автоматическая установка приложений » Скрипты Inno Setup. Помощь и советы [часть 9] |
|
|
Скрипты Inno Setup. Помощь и советы [часть 9]
|
|
Ветеран Сообщения: 1274 |
Внимание! Данная тема предназначена только для обсуждения написания скриптов!
Остальные вопросы, а также последние версии компилятора в теме Inno Setup. Прочие вопросы. Показать/скрыть: Справка, руководство, примеры:
Показать/скрыть: Ссылки на примеры скриптов:
Показать/скрыть: Дополнительные программы для Inno Setup:
Предыдущие ветки обсуждения по ссылкам ниже и в прикреплённых архивах: Скрипты Inno Setup. Помощь и советы [часть 6] | Скрипты Inno Setup. Помощь и советы [часть 6].7z Скрипты Inno Setup. Помощь и советы [часть 7] | Скрипты Inno Setup. Помощь и советы [часть 7].7z Скрипты Inno Setup. Помощь и советы [часть 8] | Скрипты Inno Setup. Помощь и советы [часть 8].7z |
|
|
Отправлено: 16:09, 04-04-2018 |
|
Старожил Сообщения: 352
|
Профиль | Отправить PM | Цитировать habib2302,
Каждое из четырёх чисел в VersionInfoVersion имеет максимальное значение равное 65535, отсюда и ошибка. Для больших чисел применяется текстовый атрибут FileVersion, устанавливаемый через VersionInfoTextVersion="6.1.2.135662" Таким же образом это сделано и для оригинального установщика. Подробности здесь: VERSIONINFO resource |
|
Последний раз редактировалось iglezz, 18-01-2020 в 12:55. Отправлено: 12:48, 18-01-2020 | #461 |
|
Пользователь Сообщения: 76
|
Профиль | Отправить PM | Цитировать |
|
Отправлено: 22:00, 21-01-2020 | #462 |
|
SHVtYW4= Сообщения: 3451
|
Профиль | Отправить PM | Цитировать Цитата Beavimo:
Если нужно для определённого языка то, то что у вас будет в Languages - То подставляете [Languages] Name: "english"; MessagesFile: "compiler:Default.isl" Name: "russian"; MessagesFile: "compiler:Languages\Russian.isl" |
|
|
------- Отправлено: 22:43, 21-01-2020 | #463 |
|
Новый участник Сообщения: 14
|
Профиль | Сайт | Отправить PM | Цитировать Проблема, есть игра "The lord of the rings the history of ages 1.3.7.1" так вот, известный факт что если установить игру, то есть при установке где нужно выбрать путь, мы пропишем свой путь, то соответственно игра не запустится, но если путь создать заранее, через ПКМ и новая папка, затем дать ей имя, то без проблем игра запустится после установки.
Вопрос таков, я сегодня уже ну просто целый день бьюсь-бьюсь и никак не могу добиться, как мне можно в Inno Setup ключи реестра сделать так чтобы они менялись и вообще чтобы они добавлялись при установке в любую папку? подскажи пожалуйста |
|
Последний раз редактировалось gosnitsse, 22-01-2020 в 23:47. Отправлено: 21:56, 22-01-2020 | #464 |
|
SHVtYW4= Сообщения: 3451
|
Профиль | Отправить PM | Цитировать Цитата gosnitsse:
Например игра установилась в: C:\Program Files\Name\ Исходные уже внесённые данные в реестр будут выглядеть так: Root: "HKCU"; Subkey: "Software\Name"; ValueType: string; ValueName: "Path"; ValueData: "C:\Program Files\Name\"; Flags: uninsdeletekey Теперь обратите внимание на секцию [Setup] {pf}\Name - Это есть C:\Program Files\Name\ {app} - Это есть {pf}\Name Например по умолчанию у вас будет {pf}\Name т.е C:\Program Files\Name\, то {app} передаст этот путь. Всякий раз когда уже в инсталляторе вы будете выбирать каталог, будь это C:\Game или D:\Game - {app} передаст этот путь. Смотрите пример: Секция [Files]: В секции [Registry] нужно сделать так же: Root: "HKCU"; Subkey: "Software\Name"; ValueType: string; ValueName: "Path"; ValueData: "{app}"; Flags: uninsdeletekey
На будущее: Если в секции [Files], в DestDir вы решите жестко привязать каталог по каким-то причинам: То и в секции [Registry] нужно сделать также: т.к в конечном итоге выйдет так C:\Program Files\Name\bin или так C:\Game\bin |
|
|
------- Отправлено: 02:53, 23-01-2020 | #465 |
|
Новый участник Сообщения: 14
|
Профиль | Сайт | Отправить PM | Цитировать Цитата Nordek:
Пример понятен, но я никогда не сталкивался с ситуацией когда игра так яро реагирует на ключи реестра (наверное из 8 игр это первая) можете уточнить? по примерам D:\Games\The Lord а сам дистрибутив находится в D:\Games\LOTR он создаёт несколько ключей в реестре допустим 6 мне каждый писать используя {pf}\The Lord? Я так понял что {pf} копирует путь игры без имени папки, а {app} копирует абсолютно весь путь но без входящих в него папок я правильно понял??? У меня есть код 1 - сама игра, а второй не важен (так как это смена ключа) Source: "D:\Games\Lord of the Rings - The History of Ages\*"; DestDir: "{app}"; Flags: ignoreversion recursesubdirs createallsubdirs sortfilesbyextension
Source: "C:\Users\Gosni\Desktop\The Lord Of The Rings - The Onset Of Darkness\Setup\Redist\*"; DestDir: "{app}"; Flags: ignoreversion recursesubdirs createallsubdirs sortfilesbyextension; Components: g0\c1
Description: "{cm:LaunchProgram, The Lord Of The Rings - The Onset Of Darkness}"; Filename: "{app}\Ep1\CDKeyFixer.exe"; WorkingDir: "{app}\Ep1"; Flags:
Description: "{cm:LaunchProgram, The Lord Of The Rings - The Onset Of Darkness}"; Filename: "{app}\Ep1\lotrbfme2ep1.exe"; WorkingDir: "{app}\Ep1"; Flags: nowait postinstall skipifsilent unchecked
Удаленные разделы: 21
----------------------------------
HKLM\SOFTWARE\Microsoft\Windows\CurrentVersion\App Paths\lotrbfme2.exe
HKLM\SOFTWARE\Microsoft\Windows\CurrentVersion\App Paths\lotrbfme2ep1.exe
HKLM\SOFTWARE\WOW6432Node\Electronic Arts
HKLM\SOFTWARE\WOW6432Node\Electronic Arts\Electronic Arts
HKLM\SOFTWARE\WOW6432Node\Electronic Arts\Electronic Arts\The Battle for Middle-earth II
HKLM\SOFTWARE\WOW6432Node\Electronic Arts\Electronic Arts\The Battle for Middle-earth II\ergc
HKLM\SOFTWARE\WOW6432Node\Electronic Arts\Electronic Arts\The Lord of the Rings, The Rise of the Witch-king
HKLM\SOFTWARE\WOW6432Node\Electronic Arts\Electronic Arts\The Lord of the Rings, The Rise of the Witch-king\ergc
HKLM\SOFTWARE\WOW6432Node\Electronic Arts\The Battle for Middle-earth II
HKLM\SOFTWARE\WOW6432Node\Electronic Arts\The Battle for Middle-earth II\1.0
HKLM\SOFTWARE\WOW6432Node\Electronic Arts\The Lord of the Rings, The Rise of the Witch-king
HKLM\SOFTWARE\WOW6432Node\Electronic Arts\The Lord of the Rings, The Rise of the Witch-king\1.0
HKLM\SOFTWARE\WOW6432Node\Microsoft\Windows\CurrentVersion\Uninstall\The History of Ages 1.3.7.1 The Full Game (with LOTR-BFME 2-ROTWK)
HKLM\SOFTWARE\WOW6432Node\Microsoft\Windows\CurrentVersion\App Paths\lotrbfme2.exe
HKLM\SOFTWARE\WOW6432Node\Microsoft\Windows\CurrentVersion\App Paths\lotrbfme2ep1.exe
HKLM\SYSTEM\ControlSet002
HKLM\SYSTEM\ControlSet002\services
HKLM\SYSTEM\ControlSet002\services\SharedAccess
HKLM\SYSTEM\ControlSet002\services\SharedAccess\Parameters
HKLM\SYSTEM\ControlSet002\services\SharedAccess\Parameters\FirewallPolicy
HKLM\SYSTEM\ControlSet002\services\SharedAccess\Parameters\FirewallPolicy\FirewallRules
HKLM\SOFTWARE\Microsoft\Windows\CurrentVersion\App Paths\lotrbfme2.exe\Game Registry: "SOFTWARE\Electronic Arts\The Battle for Middle-earth II"
HKLM\SOFTWARE\Microsoft\Windows\CurrentVersion\App Paths\lotrbfme2.exe\Restart: 0x00000000
HKLM\SOFTWARE\Microsoft\Windows\CurrentVersion\App Paths\lotrbfme2.exe\DirectX Installed: 0x00000000
HKLM\SOFTWARE\Microsoft\Windows\CurrentVersion\App Paths\lotrbfme2.exe\Installed: 0x00000001
HKLM\SOFTWARE\Microsoft\Windows\CurrentVersion\App Paths\lotrbfme2.exe\: "D:\Games\LORD\lotrbfme2.exe"
HKLM\SOFTWARE\Microsoft\Windows\CurrentVersion\App Paths\lotrbfme2.exe\Path: "D:\Games\LORD\"
HKLM\SOFTWARE\Microsoft\Windows\CurrentVersion\App Paths\lotrbfme2ep1.exe\Game Registry: "SOFTWARE\Electronic Arts\The Lord of the Rings, The Rise of the Witch-king"
HKLM\SOFTWARE\Microsoft\Windows\CurrentVersion\App Paths\lotrbfme2ep1.exe\Restart: 0x00000000
HKLM\SOFTWARE\Microsoft\Windows\CurrentVersion\App Paths\lotrbfme2ep1.exe\DirectX Installed: 0x00000000
HKLM\SOFTWARE\Microsoft\Windows\CurrentVersion\App Paths\lotrbfme2ep1.exe\Installed: 0x00000001
HKLM\SOFTWARE\Microsoft\Windows\CurrentVersion\App Paths\lotrbfme2ep1.exe\: "D:\Games\LORD\Ep1\lotrbfme2ep1.exe"
HKLM\SOFTWARE\Microsoft\Windows\CurrentVersion\App Paths\lotrbfme2ep1.exe\Path: "D:\Games\LORD\Ep1"
HKLM\SOFTWARE\Microsoft\Windows NT\CurrentVersion\VolatileNotifications\41C64E6DA3E0E055: 01 00 04 80 44 00 00 00 50 00 00 00 00 00 00 00 14 00 00 00 02 00 30 00 02 00 00 00 00 00 14 00 03 00 00 00 01 01 00 00 00 00 00 05 12 00 00 00 00 00 14 00 00 00 01 00 01 01 00 00 00 00 00 05 12 00 00 00 01 01 00 00 00 00 00 05 12 00 00 00 01 01 00 00 00 00 00 05 12 00 00 00 20 00 00 00
HKLM\SOFTWARE\WOW6432Node\Electronic Arts\Electronic Arts\The Battle for Middle-earth II\Language: "russian"
HKLM\SOFTWARE\WOW6432Node\Electronic Arts\Electronic Arts\The Battle for Middle-earth II\InstallPath: "D:\Games\LORD\"
HKLM\SOFTWARE\WOW6432Node\Electronic Arts\Electronic Arts\The Battle for Middle-earth II\Version: 0x00010006
HKLM\SOFTWARE\WOW6432Node\Electronic Arts\Electronic Arts\The Battle for Middle-earth II\MapPackVersion: 0x00010000
HKLM\SOFTWARE\WOW6432Node\Electronic Arts\Electronic Arts\The Battle for Middle-earth II\UseLocalUserMaps: 0x00000000
HKLM\SOFTWARE\WOW6432Node\Electronic Arts\Electronic Arts\The Battle for Middle-earth II\UserDataLeafName: "Битва за Средиземье - Мои файлы"
HKLM\SOFTWARE\WOW6432Node\Electronic Arts\Electronic Arts\The Battle for Middle-earth II\ergc\: "J7F79F9MHXQFBFKGHKAW"
HKLM\SOFTWARE\WOW6432Node\Electronic Arts\Electronic Arts\The Lord of the Rings, The Rise of the Witch-king\Language: "russian"
HKLM\SOFTWARE\WOW6432Node\Electronic Arts\Electronic Arts\The Lord of the Rings, The Rise of the Witch-king\InstallPath: "D:\Games\LORD\Ep1\"
HKLM\SOFTWARE\WOW6432Node\Electronic Arts\Electronic Arts\The Lord of the Rings, The Rise of the Witch-king\Version: 0x00020001
HKLM\SOFTWARE\WOW6432Node\Electronic Arts\Electronic Arts\The Lord of the Rings, The Rise of the Witch-king\MapPackVersion: 0x00020000
HKLM\SOFTWARE\WOW6432Node\Electronic Arts\Electronic Arts\The Lord of the Rings, The Rise of the Witch-king\UseLocalUserMaps: 0x00000000
HKLM\SOFTWARE\WOW6432Node\Electronic Arts\Electronic Arts\The Lord of the Rings, The Rise of the Witch-king\UserDataLeafName: "Властелин Колец, Под знаменем Короля-чародея - Мои файлы"
HKLM\SOFTWARE\WOW6432Node\Electronic Arts\Electronic Arts\The Lord of the Rings, The Rise of the Witch-king\ergc\: "SEW6Y8K88UQB3GRZEE9M"
HKLM\SOFTWARE\WOW6432Node\Electronic Arts\The Battle for Middle-earth II\DisplayName: "Битва за Средиземье™ II"
HKLM\SOFTWARE\WOW6432Node\Electronic Arts\The Battle for Middle-earth II\Installed From: "H:\"
HKLM\SOFTWARE\WOW6432Node\Electronic Arts\The Battle for Middle-earth II\Registration: "SOFTWARE\Electronic Arts\Electronic Arts\The Battle for Middle-earth II\ergc"
HKLM\SOFTWARE\WOW6432Node\Electronic Arts\The Battle for Middle-earth II\CacheSize: "5441287168"
HKLM\SOFTWARE\WOW6432Node\Electronic Arts\The Battle for Middle-earth II\SwapSize: "0"
HKLM\SOFTWARE\WOW6432Node\Electronic Arts\The Battle for Middle-earth II\Language: "Russian"
HKLM\SOFTWARE\WOW6432Node\Electronic Arts\The Battle for Middle-earth II\Locale: "ru"
HKLM\SOFTWARE\WOW6432Node\Electronic Arts\The Battle for Middle-earth II\CD Drive: "H:\"
HKLM\SOFTWARE\WOW6432Node\Electronic Arts\The Battle for Middle-earth II\Install Dir: "C:\PROGRA~1\LORDOF~1\"
HKLM\SOFTWARE\WOW6432Node\Electronic Arts\The Battle for Middle-earth II\Product GUID: "{2A9F95AB-65A3-432c-8631-B8BC5BF7477A}"
HKLM\SOFTWARE\WOW6432Node\Electronic Arts\The Battle for Middle-earth II\Region: "NorthAmerica"
HKLM\SOFTWARE\WOW6432Node\Electronic Arts\The Battle for Middle-earth II\Folder: "C:\ProgramData\Microsoft\Windows\Start Menu\Programs\Electronic Arts\Битва за Средиземье™ II\"
HKLM\SOFTWARE\WOW6432Node\Electronic Arts\The Battle for Middle-earth II\Patch URL: "http://transtest.ea.com/Electronic Arts/The Battle for Middle-earth 2/NorthAmerica"
HKLM\SOFTWARE\WOW6432Node\Electronic Arts\The Battle for Middle-earth II\Suppression Exe: "rtsi.exe"
HKLM\SOFTWARE\WOW6432Node\Electronic Arts\The Battle for Middle-earth II\1.0\Language: 0x00000010
HKLM\SOFTWARE\WOW6432Node\Electronic Arts\The Battle for Middle-earth II\1.0\DisplayName: "Битва за Средиземье™ II"
HKLM\SOFTWARE\WOW6432Node\Electronic Arts\The Battle for Middle-earth II\1.0\LanguageName: "Russian"
HKLM\SOFTWARE\WOW6432Node\Electronic Arts\The Lord of the Rings, The Rise of the Witch-king\DisplayName: "Под знаменем Короля-чародея™"
HKLM\SOFTWARE\WOW6432Node\Electronic Arts\The Lord of the Rings, The Rise of the Witch-king\Installed From: "H:\"
HKLM\SOFTWARE\WOW6432Node\Electronic Arts\The Lord of the Rings, The Rise of the Witch-king\Registration: "SOFTWARE\Electronic Arts\Electronic Arts\The Lord of the Rings, The Rise of the Witch-king\ergc"
HKLM\SOFTWARE\WOW6432Node\Electronic Arts\The Lord of the Rings, The Rise of the Witch-king\CacheSize: "3139187712"
HKLM\SOFTWARE\WOW6432Node\Electronic Arts\The Lord of the Rings, The Rise of the Witch-king\SwapSize: "0"
HKLM\SOFTWARE\WOW6432Node\Electronic Arts\The Lord of the Rings, The Rise of the Witch-king\Language: "Russian"
HKLM\SOFTWARE\WOW6432Node\Electronic Arts\The Lord of the Rings, The Rise of the Witch-king\Locale: "ru"
HKLM\SOFTWARE\WOW6432Node\Electronic Arts\The Lord of the Rings, The Rise of the Witch-king\CD Drive: "H:\"
HKLM\SOFTWARE\WOW6432Node\Electronic Arts\The Lord of the Rings, The Rise of the Witch-king\Install Dir: "C:\PROGRA~1\LORDOF~1\Ep1\"
HKLM\SOFTWARE\WOW6432Node\Electronic Arts\The Lord of the Rings, The Rise of the Witch-king\Product GUID: "{B931FB80-537A-4600-00AD-AC5DEDB6C25B}"
HKLM\SOFTWARE\WOW6432Node\Electronic Arts\The Lord of the Rings, The Rise of the Witch-king\Region: "NorthAmerica"
HKLM\SOFTWARE\WOW6432Node\Electronic Arts\The Lord of the Rings, The Rise of the Witch-king\Folder: "C:\ProgramData\Microsoft\Windows\Start Menu\Programs\Electronic Arts\Под знаменем Короля-чародея™\"
HKLM\SOFTWARE\WOW6432Node\Electronic Arts\The Lord of the Rings, The Rise of the Witch-king\Patch URL: "http://transtest.ea.com/Electronic Arts/The Battle for Middle-earth 2/NorthAmerica"
HKLM\SOFTWARE\WOW6432Node\Electronic Arts\The Lord of the Rings, The Rise of the Witch-king\Suppression Exe: "rtsi.exe"
HKLM\SOFTWARE\WOW6432Node\Electronic Arts\The Lord of the Rings, The Rise of the Witch-king\1.0\Language: 0x00000010
HKLM\SOFTWARE\WOW6432Node\Electronic Arts\The Lord of the Rings, The Rise of the Witch-king\1.0\DisplayName: "Под знаменем Короля-чародея™"
HKLM\SOFTWARE\WOW6432Node\Electronic Arts\The Lord of the Rings, The Rise of the Witch-king\1.0\LanguageName: "Russian"
HKLM\SOFTWARE\WOW6432Node\Microsoft\Windows\CurrentVersion\Uninstall\The History of Ages 1.3.7.1 The Full Game (with LOTR-BFME 2-ROTWK)\DisplayName: "The History of Ages 1.3.7.1 The Full Game (with LOTR-BFME 2-ROTWK)"
HKLM\SOFTWARE\WOW6432Node\Microsoft\Windows\CurrentVersion\Uninstall\The History of Ages 1.3.7.1 The Full Game (with LOTR-BFME 2-ROTWK)\DisplayVersion: "1.3.7.1"
HKLM\SOFTWARE\WOW6432Node\Microsoft\Windows\CurrentVersion\Uninstall\The History of Ages 1.3.7.1 The Full Game (with LOTR-BFME 2-ROTWK)\VersionMajor: 0x00000001
HKLM\SOFTWARE\WOW6432Node\Microsoft\Windows\CurrentVersion\Uninstall\The History of Ages 1.3.7.1 The Full Game (with LOTR-BFME 2-ROTWK)\VersionMinor: 0x00000003
HKLM\SOFTWARE\WOW6432Node\Microsoft\Windows\CurrentVersion\Uninstall\The History of Ages 1.3.7.1 The Full Game (with LOTR-BFME 2-ROTWK)\Publisher: "ThoA Team"
HKLM\SOFTWARE\WOW6432Node\Microsoft\Windows\CurrentVersion\Uninstall\The History of Ages 1.3.7.1 The Full Game (with LOTR-BFME 2-ROTWK)\DisplayIcon: "D:\Games\LORD\Uninstall_Repack.exe"
HKLM\SOFTWARE\WOW6432Node\Microsoft\Windows\CurrentVersion\Uninstall\The History of Ages 1.3.7.1 The Full Game (with LOTR-BFME 2-ROTWK)\UninstallString: "D:\Games\LORD\Uninstall_Repack.exe"
HKLM\SOFTWARE\WOW6432Node\Microsoft\Windows\CurrentVersion\Uninstall\The History of Ages 1.3.7.1 The Full Game (with LOTR-BFME 2-ROTWK)\URLInfoabout: "http://warofthering.ru/forum/"
HKLM\SOFTWARE\WOW6432Node\Microsoft\Windows\CurrentVersion\Uninstall\The History of Ages 1.3.7.1 The Full Game (with LOTR-BFME 2-ROTWK)\HelpLink: "http://vk.com/thoa_tournament"
HKLM\SOFTWARE\WOW6432Node\Microsoft\Windows\CurrentVersion\Uninstall\The History of Ages 1.3.7.1 The Full Game (with LOTR-BFME 2-ROTWK)\InstallLocation: "D:\Games\LORD\"
HKLM\SOFTWARE\WOW6432Node\Microsoft\Windows\CurrentVersion\Uninstall\The History of Ages 1.3.7.1 The Full Game (with LOTR-BFME 2-ROTWK)\InstallSource: "E:\CONSTANTA для переустановки\Lord of the Rings - The History of Ages\"
HKLM\SOFTWARE\WOW6432Node\Microsoft\Windows\CurrentVersion\Uninstall\The History of Ages 1.3.7.1 The Full Game (with LOTR-BFME 2-ROTWK)\InstallDate: "20200123"
HKLM\SOFTWARE\WOW6432Node\Microsoft\Windows\CurrentVersion\Uninstall\The History of Ages 1.3.7.1 The Full Game (with LOTR-BFME 2-ROTWK)\Language: 0x00000419
HKLM\SOFTWARE\WOW6432Node\Microsoft\Windows\CurrentVersion\Uninstall\The History of Ages 1.3.7.1 The Full Game (with LOTR-BFME 2-ROTWK)\EstimatedSize: 0x00000066
HKLM\SOFTWARE\WOW6432Node\Microsoft\Windows\CurrentVersion\Uninstall\The History of Ages 1.3.7.1 The Full Game (with LOTR-BFME 2-ROTWK)\NoModify: 0x00000001
HKLM\SOFTWARE\WOW6432Node\Microsoft\Windows\CurrentVersion\Uninstall\The History of Ages 1.3.7.1 The Full Game (with LOTR-BFME 2-ROTWK)\NoRepair: 0x00000001
HKLM\SOFTWARE\WOW6432Node\Microsoft\Windows\CurrentVersion\App Paths\lotrbfme2.exe\Game Registry: "SOFTWARE\Electronic Arts\The Battle for Middle-earth II"
HKLM\SOFTWARE\WOW6432Node\Microsoft\Windows\CurrentVersion\App Paths\lotrbfme2.exe\Restart: 0x00000000
HKLM\SOFTWARE\WOW6432Node\Microsoft\Windows\CurrentVersion\App Paths\lotrbfme2.exe\DirectX Installed: 0x00000000
HKLM\SOFTWARE\WOW6432Node\Microsoft\Windows\CurrentVersion\App Paths\lotrbfme2.exe\Installed: 0x00000001
HKLM\SOFTWARE\WOW6432Node\Microsoft\Windows\CurrentVersion\App Paths\lotrbfme2.exe\: "D:\Games\LORD\lotrbfme2.exe"
HKLM\SOFTWARE\WOW6432Node\Microsoft\Windows\CurrentVersion\App Paths\lotrbfme2.exe\Path: "D:\Games\LORD\"
HKLM\SOFTWARE\WOW6432Node\Microsoft\Windows\CurrentVersion\App Paths\lotrbfme2ep1.exe\Game Registry: "SOFTWARE\Electronic Arts\The Lord of the Rings, The Rise of the Witch-king"
HKLM\SOFTWARE\WOW6432Node\Microsoft\Windows\CurrentVersion\App Paths\lotrbfme2ep1.exe\Restart: 0x00000000
HKLM\SOFTWARE\WOW6432Node\Microsoft\Windows\CurrentVersion\App Paths\lotrbfme2ep1.exe\DirectX Installed: 0x00000000
HKLM\SOFTWARE\WOW6432Node\Microsoft\Windows\CurrentVersion\App Paths\lotrbfme2ep1.exe\Installed: 0x00000001
HKLM\SOFTWARE\WOW6432Node\Microsoft\Windows\CurrentVersion\App Paths\lotrbfme2ep1.exe\: "D:\Games\LORD\Ep1\lotrbfme2ep1.exe"
HKLM\SOFTWARE\WOW6432Node\Microsoft\Windows\CurrentVersion\App Paths\lotrbfme2ep1.exe\Path: "D:\Games\LORD\Ep1"
HKLM\SYSTEM\ControlSet001\Services\SharedAccess\Parameters\FirewallPolicy\FirewallRules\{110875B1-2637-4A62-BCF0-93908A083179}: "v2.10|Action=Allow|Active=TRUE|Dir=In|Protocol=6|Profile=Public|App=D:\Games\LORD\game.dat|Name=Битва за Средиземье II|"
HKLM\SYSTEM\ControlSet001\Services\SharedAccess\Parameters\FirewallPolicy\FirewallRules\{8E12B064-D835-4D75-8A22-FD0FEF305F33}: "v2.10|Action=Allow|Active=TRUE|Dir=In|Protocol=17|Profile=Public|App=D:\Games\LORD\game.dat|Name=Битва за Средиземье II|"
HKLM\SYSTEM\ControlSet001\Services\SharedAccess\Parameters\FirewallPolicy\FirewallRules\{81B3A9FD-E103-40A8-9760-F4BC5D905B87}: "v2.10|Action=Allow|Active=TRUE|Dir=In|Protocol=6|Profile=Public|App=D:\Games\LORD\Ep1\game.dat|Name=Под знаменем Короля-чародея|"
HKLM\SYSTEM\ControlSet001\Services\SharedAccess\Parameters\FirewallPolicy\FirewallRules\{250C5541-B307-4A6C-8C17-B171E946E02F}: "v2.10|Action=Allow|Active=TRUE|Dir=In|Protocol=17|Profile=Public|App=D:\Games\LORD\Ep1\game.dat|Name=Под знаменем Короля-чародея|"
HKLM\SYSTEM\ControlSet002\services\SharedAccess\Parameters\FirewallPolicy\FirewallRules\{110875B1-2637-4A62-BCF0-93908A083179}: "v2.10|Action=Allow|Active=TRUE|Dir=In|Protocol=6|Profile=Public|App=D:\Games\LORD\game.dat|Name=Битва за Средиземье II|"
HKLM\SYSTEM\ControlSet002\services\SharedAccess\Parameters\FirewallPolicy\FirewallRules\{8E12B064-D835-4D75-8A22-FD0FEF305F33}: "v2.10|Action=Allow|Active=TRUE|Dir=In|Protocol=17|Profile=Public|App=D:\Games\LORD\game.dat|Name=Битва за Средиземье II|"
HKLM\SYSTEM\ControlSet002\services\SharedAccess\Parameters\FirewallPolicy\FirewallRules\{81B3A9FD-E103-40A8-9760-F4BC5D905B87}: "v2.10|Action=Allow|Active=TRUE|Dir=In|Protocol=6|Profile=Public|App=D:\Games\LORD\Ep1\game.dat|Name=Под знаменем Короля-чародея|"
HKLM\SYSTEM\ControlSet002\services\SharedAccess\Parameters\FirewallPolicy\FirewallRules\{250C5541-B307-4A6C-8C17-B171E946E02F}: "v2.10|Action=Allow|Active=TRUE|Dir=In|Protocol=17|Profile=Public|App=D:\Games\LORD\Ep1\game.dat|Name=Под знаменем Короля-чародея|"
HKLM\SYSTEM\CurrentControlSet\Services\SharedAccess\Parameters\FirewallPolicy\FirewallRules\{110875B1-2637-4A62-BCF0-93908A083179}: "v2.10|Action=Allow|Active=TRUE|Dir=In|Protocol=6|Profile=Public|App=D:\Games\LORD\game.dat|Name=Битва за Средиземье II|"
HKLM\SYSTEM\CurrentControlSet\Services\SharedAccess\Parameters\FirewallPolicy\FirewallRules\{8E12B064-D835-4D75-8A22-FD0FEF305F33}: "v2.10|Action=Allow|Active=TRUE|Dir=In|Protocol=17|Profile=Public|App=D:\Games\LORD\game.dat|Name=Битва за Средиземье II|"
HKLM\SYSTEM\CurrentControlSet\Services\SharedAccess\Parameters\FirewallPolicy\FirewallRules\{81B3A9FD-E103-40A8-9760-F4BC5D905B87}: "v2.10|Action=Allow|Active=TRUE|Dir=In|Protocol=6|Profile=Public|App=D:\Games\LORD\Ep1\game.dat|Name=Под знаменем Короля-чародея|"
HKLM\SYSTEM\CurrentControlSet\Services\SharedAccess\Parameters\FirewallPolicy\FirewallRules\{250C5541-B307-4A6C-8C17-B171E946E02F}: "v2.10|Action=Allow|Active=TRUE|Dir=In|Protocol=17|Profile=Public|App=D:\Games\LORD\Ep1\game.dat|Name=Под знаменем Короля-чародея|"
- зачем это нужно? я просто без этого сделал |
|
|
------- Последний раз редактировалось gosnitsse, 23-01-2020 в 15:52. Отправлено: 12:28, 23-01-2020 | #466 |
|
SHVtYW4= Сообщения: 3451
|
Профиль | Отправить PM | Цитировать Цитата gosnitsse:
Цитата gosnitsse:
Предположим вы хотите сделать папкой по умолчанию не C:\Program Files\LOTR, а C:\Games\LOTR - То в DefaultDirName достаточно указать {sd}\Games\LOTR. В реестре, в ярлыках указываете {app}. Цитата gosnitsse:
[Setup]
AppId={{02BB9D98-A4DC-47EE-AB1D-7A40978E14CE}
AppName=The History of Ages 1.3.7.1 The Full Game (with LOTR-BFME 2-ROTWK)
AppVersion=1.0
;AppVerName=The Lord of the Rings 1.0
AppPublisher=My Company, Inc.
AppPublisherURL=http://www.example.com/
AppSupportURL=http://www.example.com/
AppUpdatesURL=http://www.example.com/
DefaultDirName={pf}\LotR
DefaultGroupName=LotR
OutputDir=.
OutputBaseFilename=setup
Compression=lzma
SolidCompression=yes
[Languages]
Name: "english"; MessagesFile: "compiler:Default.isl"
Name: "russian"; MessagesFile: "compiler:Languages\Russian.isl"
[Tasks]
Name: "desktopicon"; Description: "{cm:CreateDesktopIcon}"; GroupDescription: "{cm:AdditionalIcons}"; Flags: unchecked
[Files]
Source: "The Lord Of The Rings - The Onset Of Darkness\*"; DestDir: "{app}"; Flags: ignoreversion recursesubdirs createallsubdirs sortfilesbyextension
[Icons]
Name: "{group}\The Lord Of The Rings - The Onset Of Darkness"; Filename: "{app}\Ep1\lotrbfme2ep1.exe"
Name: "{group}\{cm:UninstallProgram,The Lord of the Rings}"; Filename: "{uninstallexe}"
Name: "{commondesktop}\The Lord Of The Rings - The Onset Of Darkness"; Filename: "{app}\Ep1\lotrbfme2ep1.exe"; Tasks: desktopicon
[Run]
Description: "{cm:LaunchProgram, The Lord Of The Rings - The Onset Of Darkness}"; Filename: "{app}\Ep1\CDKeyFixer.exe"; WorkingDir: "{app}\Ep1"; Flags:
Description: "{cm:LaunchProgram, The Lord Of The Rings - The Onset Of Darkness}"; Filename: "{app}\Ep1\lotrbfme2ep1.exe"; WorkingDir: "{app}\Ep1"; Flags: nowait postinstall skipifsilent unchecked
[Registry]
Root: "HKLM"; Subkey: "SOFTWARE\Electronic Arts"; ValueType: none; Flags: uninsdeletekeyifempty
Root: "HKLM"; Subkey: "SOFTWARE\Electronic Arts\Electronic Arts"; ValueType: none; Flags: uninsdeletekeyifempty
Root: "HKLM"; Subkey: "SOFTWARE\Electronic Arts\Electronic Arts\The Battle for Middle-earth II"; ValueType: string; Flags: uninsdeletekey
Root: "HKLM"; Subkey: "SOFTWARE\Electronic Arts\Electronic Arts\The Battle for Middle-earth II"; ValueType: string; ValueName: "Language"; ValueData: "russian"; Flags: uninsdeletekey
Root: "HKLM"; Subkey: "SOFTWARE\Electronic Arts\Electronic Arts\The Battle for Middle-earth II"; ValueType: string; ValueName: "InstallPath"; ValueData: "{app}\Ep1\"; Flags: uninsdeletekey
Root: "HKLM"; Subkey: "SOFTWARE\Electronic Arts\Electronic Arts\The Battle for Middle-earth II"; ValueType: dword; ValueName: "Version"; ValueData: "$00020001"; Flags: uninsdeletekey
Root: "HKLM"; Subkey: "SOFTWARE\Electronic Arts\Electronic Arts\The Battle for Middle-earth II"; ValueType: dword; ValueName: "MapPackVersion"; ValueData: "$00020000"; Flags: uninsdeletekey
Root: "HKLM"; Subkey: "SOFTWARE\Electronic Arts\Electronic Arts\The Battle for Middle-earth II"; ValueType: dword; ValueName: "UseLocalUserMaps"; ValueData: "$00000000"; Flags: uninsdeletekey
Root: "HKLM"; Subkey: "SOFTWARE\Electronic Arts\Electronic Arts\The Battle for Middle-earth II"; ValueType: string; ValueName: "UserDataLeafName"; ValueData: "Властелин Колец, Под знаменем Короля-чародея - Мои файлы"; Flags: uninsdeletekey
Root: "HKLM"; Subkey: "SOFTWARE\Electronic Arts\Electronic Arts\The Battle for Middle-earth II"; ValueType: string; ValueName: "ergc"; ValueData: "XXXXXXXXXXXXXXXXXXXX"; Flags: uninsdeletekey
Root: "HKLM"; Subkey: "SOFTWARE\Electronic Arts\Electronic Arts\The Lord of the Rings, The Rise of the Witch-king"; ValueType: string; Flags: uninsdeletekey
Root: "HKLM"; Subkey: "SOFTWARE\Electronic Arts\Electronic Arts\The Lord of the Rings, The Rise of the Witch-king"; ValueType: string; ValueName: "Language"; ValueData: "russian"; Flags: uninsdeletekey
Root: "HKLM"; Subkey: "SOFTWARE\Electronic Arts\Electronic Arts\The Lord of the Rings, The Rise of the Witch-king"; ValueType: string; ValueName: "InstallPath"; ValueData: "{app}\Ep1\"; Flags: uninsdeletekey
Root: "HKLM"; Subkey: "SOFTWARE\Electronic Arts\Electronic Arts\The Lord of the Rings, The Rise of the Witch-king"; ValueType: dword; ValueName: "Version"; ValueData: "$00020001"; Flags: uninsdeletekey
Root: "HKLM"; Subkey: "SOFTWARE\Electronic Arts\Electronic Arts\The Lord of the Rings, The Rise of the Witch-king"; ValueType: dword; ValueName: "MapPackVersion"; ValueData: "$00020000"; Flags: uninsdeletekey
Root: "HKLM"; Subkey: "SOFTWARE\Electronic Arts\Electronic Arts\The Lord of the Rings, The Rise of the Witch-king"; ValueType: dword; ValueName: "UseLocalUserMaps"; ValueData: "$00000000"; Flags: uninsdeletekey
Root: "HKLM"; Subkey: "SOFTWARE\Electronic Arts\Electronic Arts\The Lord of the Rings, The Rise of the Witch-king"; ValueType: string; ValueName: "UserDataLeafName"; ValueData: "Властелин Колец, Под знаменем Короля-чародея - Мои файлы"; Flags: uninsdeletekey
Root: "HKLM"; Subkey: "SOFTWARE\Electronic Arts\Electronic Arts\The Lord of the Rings, The Rise of the Witch-king"; ValueType: string; ValueName: "ergc"; ValueData: "XXXXXXXXXXXXXXXXXXXX"; Flags: uninsdeletekey
Root: "HKLM"; Subkey: "SOFTWARE\Electronic Arts\The Battle for Middle-earth II"; ValueType: string; ValueName: "DisplayName"; ValueData: "Битва за Средиземье™ II"; Flags: uninsdeletekey
Root: "HKLM"; Subkey: "SOFTWARE\Electronic Arts\The Battle for Middle-earth II"; ValueType: string; ValueName: "Installed From"; ValueData: "{src}"; Flags: uninsdeletekey
Root: "HKLM"; Subkey: "SOFTWARE\Electronic Arts\The Battle for Middle-earth II"; ValueType: string; ValueName: "Registration"; ValueData: "SOFTWARE\Electronic Arts\Electronic Arts\The Battle for Middle-earth II\ergc"; Flags: uninsdeletekey
Root: "HKLM"; Subkey: "SOFTWARE\Electronic Arts\The Battle for Middle-earth II"; ValueType: string; ValueName: "CacheSize"; ValueData: "5441287168"; Flags: uninsdeletekey
Root: "HKLM"; Subkey: "SOFTWARE\Electronic Arts\The Battle for Middle-earth II"; ValueType: string; ValueName: "SwapSize"; ValueData: "0"; Flags: uninsdeletekey
Root: "HKLM"; Subkey: "SOFTWARE\Electronic Arts\The Battle for Middle-earth II"; ValueType: string; ValueName: "Language"; ValueData: "Russian"; Flags: uninsdeletekey
Root: "HKLM"; Subkey: "SOFTWARE\Electronic Arts\The Battle for Middle-earth II"; ValueType: string; ValueName: "Locale"; ValueData: "ru"; Flags: uninsdeletekey
Root: "HKLM"; Subkey: "SOFTWARE\Electronic Arts\The Battle for Middle-earth II"; ValueType: string; ValueName: "CD Drive"; ValueData: "{src}"; Flags: uninsdeletekey
Root: "HKLM"; Subkey: "SOFTWARE\Electronic Arts\The Battle for Middle-earth II"; ValueType: string; ValueName: "Install Dir"; ValueData: "{app}\"; Flags: uninsdeletekey
Root: "HKLM"; Subkey: "SOFTWARE\Electronic Arts\The Battle for Middle-earth II"; ValueType: string; ValueName: "Product GUID"; ValueData: "{{2A9F95AB-65A3-432c-8631-B8BC5BF7477A}"; Flags: uninsdeletekey
Root: "HKLM"; Subkey: "SOFTWARE\Electronic Arts\The Battle for Middle-earth II"; ValueType: string; ValueName: "Region"; ValueData: "NorthAmerica"; Flags: uninsdeletekey
Root: "HKLM"; Subkey: "SOFTWARE\Electronic Arts\The Battle for Middle-earth II"; ValueType: string; ValueName: "Folder"; ValueData: "{commonprograms}\Electronic Arts\Битва за Средиземье™ II\"; Flags: uninsdeletekey
Root: "HKLM"; Subkey: "SOFTWARE\Electronic Arts\The Battle for Middle-earth II"; ValueType: string; ValueName: "Patch URL"; ValueData: "http://transtest.ea.com/Electronic Arts/The Battle for Middle-earth 2/NorthAmerica"; Flags: uninsdeletekey
Root: "HKLM"; Subkey: "SOFTWARE\Electronic Arts\The Battle for Middle-earth II"; ValueType: string; ValueName: "Suppression Exe"; ValueData: "rtsi.exe"; Flags: uninsdeletekey
Root: "HKLM"; Subkey: "SOFTWARE\Electronic Arts\The Battle for Middle-earth II\1.0"; ValueType: dword; ValueName: "Language"; ValueData: "$00000010"; Flags: uninsdeletekey
Root: "HKLM"; Subkey: "SOFTWARE\Electronic Arts\The Battle for Middle-earth II\1.0"; ValueType: string; ValueName: "DisplayName"; ValueData: "Битва за Средиземье™ II"; Flags: uninsdeletekey
Root: "HKLM"; Subkey: "SOFTWARE\Electronic Arts\The Battle for Middle-earth II\1.0"; ValueType: string; ValueName: "LanguageName"; ValueData: "Russian"; Flags: uninsdeletekey
Root: "HKLM"; Subkey: "SOFTWARE\Electronic Arts\The Lord of the Rings, The Rise of the Witch-king"; ValueType: string; ValueName: "DisplayName"; ValueData: "Под знаменем Короля-чародея™"; Flags: uninsdeletekey
Root: "HKLM"; Subkey: "SOFTWARE\Electronic Arts\The Lord of the Rings, The Rise of the Witch-king"; ValueType: string; ValueName: "Installed From"; ValueData: "{src}"; Flags: uninsdeletekey
Root: "HKLM"; Subkey: "SOFTWARE\Electronic Arts\The Lord of the Rings, The Rise of the Witch-king"; ValueType: string; ValueName: "Registration"; ValueData: "SOFTWARE\Electronic Arts\Electronic Arts\The Lord of the Rings, The Rise of the Witch-king\ergc"; Flags: uninsdeletekey
Root: "HKLM"; Subkey: "SOFTWARE\Electronic Arts\The Lord of the Rings, The Rise of the Witch-king"; ValueType: string; ValueName: "CacheSize"; ValueData: "3139187712"; Flags: uninsdeletekey
Root: "HKLM"; Subkey: "SOFTWARE\Electronic Arts\The Lord of the Rings, The Rise of the Witch-king"; ValueType: string; ValueName: "SwapSize"; ValueData: "0"; Flags: uninsdeletekey
Root: "HKLM"; Subkey: "SOFTWARE\Electronic Arts\The Lord of the Rings, The Rise of the Witch-king"; ValueType: string; ValueName: "Language"; ValueData: "Russian"; Flags: uninsdeletekey
Root: "HKLM"; Subkey: "SOFTWARE\Electronic Arts\The Lord of the Rings, The Rise of the Witch-king"; ValueType: string; ValueName: "Locale"; ValueData: "ru"; Flags: uninsdeletekey
Root: "HKLM"; Subkey: "SOFTWARE\Electronic Arts\The Lord of the Rings, The Rise of the Witch-king"; ValueType: string; ValueName: "CD Drive"; ValueData: "{src}"; Flags: uninsdeletekey
Root: "HKLM"; Subkey: "SOFTWARE\Electronic Arts\The Lord of the Rings, The Rise of the Witch-king"; ValueType: string; ValueName: "Install Dir"; ValueData: "{app}\Ep1\"; Flags: uninsdeletekey
Root: "HKLM"; Subkey: "SOFTWARE\Electronic Arts\The Lord of the Rings, The Rise of the Witch-king"; ValueType: string; ValueName: "Product GUID"; ValueData: "{{B931FB80-537A-4600-00AD-AC5DEDB6C25B}"; Flags: uninsdeletekey
Root: "HKLM"; Subkey: "SOFTWARE\Electronic Arts\The Lord of the Rings, The Rise of the Witch-king"; ValueType: string; ValueName: "Region"; ValueData: "NorthAmerica"; Flags: uninsdeletekey
Root: "HKLM"; Subkey: "SOFTWARE\Electronic Arts\The Lord of the Rings, The Rise of the Witch-king"; ValueType: string; ValueName: "Folder"; ValueData: "{commonprograms}\Electronic Arts\Под знаменем Короля-чародея™\"; Flags: uninsdeletekey
Root: "HKLM"; Subkey: "SOFTWARE\Electronic Arts\The Lord of the Rings, The Rise of the Witch-king"; ValueType: string; ValueName: "Patch URL"; ValueData: "http://transtest.ea.com/Electronic Arts/The Battle for Middle-earth 2/NorthAmerica"; Flags: uninsdeletekey
Root: "HKLM"; Subkey: "SOFTWARE\Electronic Arts\The Lord of the Rings, The Rise of the Witch-king"; ValueType: string; ValueName: "Suppression Exe"; ValueData: "rtsi.exe"; Flags: uninsdeletekey
Root: "HKLM"; Subkey: "SOFTWARE\Electronic Arts\The Lord of the Rings, The Rise of the Witch-king\1.0"; ValueType: dword; ValueName: "Language"; ValueData: "$00000010"; Flags: uninsdeletekey
Root: "HKLM"; Subkey: "SOFTWARE\Electronic Arts\The Lord of the Rings, The Rise of the Witch-king\1.0"; ValueType: string; ValueName: "DisplayName"; ValueData: "Под знаменем Короля-чародея™"; Flags: uninsdeletekey
Root: "HKLM"; Subkey: "SOFTWARE\Electronic Arts\The Lord of the Rings, The Rise of the Witch-king\1.0"; ValueType: string; ValueName: "LanguageName"; ValueData: "Russian"; Flags: uninsdeletekey
|
|||
|
------- Отправлено: 15:49, 23-01-2020 | #467 |
|
Новый участник Сообщения: 14
|
Профиль | Сайт | Отправить PM | Цитировать Спасибо большое
|
|
------- Последний раз редактировалось gosnitsse, 23-01-2020 в 17:23. Отправлено: 17:11, 23-01-2020 | #468 |
|
Новый участник Сообщения: 14
|
Профиль | Сайт | Отправить PM | Цитировать Здравствуйте, проблема такая
Root: HKLM; SubKey: SOFTWARE\Microsoft\Windows\CurrentVersion\App Paths\lotrbfme2.exe; ValueType: string; ValueName: Game Registry; ValueData: SOFTWARE\Electronic Arts\The Battle for Middle-earth II; Flags: uninsdeletevalue uninsdeletekeyifempty
Root: HKLM; SubKey: SOFTWARE\Microsoft\Windows\CurrentVersion\App Paths\lotrbfme2.exe; ValueType: dword; ValueName: Restart; ValueData: $00000000; Flags: uninsdeletevalue uninsdeletekeyifempty
Root: HKLM; SubKey: SOFTWARE\Microsoft\Windows\CurrentVersion\App Paths\lotrbfme2.exe; ValueType: dword; ValueName: DirectX Installed; ValueData: $00000000; Flags: uninsdeletevalue uninsdeletekeyifempty
Root: HKLM; SubKey: SOFTWARE\Microsoft\Windows\CurrentVersion\App Paths\lotrbfme2.exe; ValueType: dword; ValueName: Installed; ValueData: $00000001; Flags: uninsdeletevalue uninsdeletekeyifempty
Root: HKLM; SubKey: SOFTWARE\Microsoft\Windows\CurrentVersion\App Paths\lotrbfme2.exe; ValueType: string; ValueData: "{app}\lotrbfme2.exe"; Flags: uninsdeletevalue uninsdeletekeyifempty
Root: HKLM; SubKey: SOFTWARE\Microsoft\Windows\CurrentVersion\App Paths\lotrbfme2.exe; ValueType: string; ValueName: Path; ValueData: "{app}"; Flags: uninsdeletevalue uninsdeletekeyifempty
Root: HKLM; SubKey: SOFTWARE\Microsoft\Windows\CurrentVersion\App Paths\lotrbfme2ep1.exe; ValueType: string; ValueName: Game Registry; ValueData: SOFTWARE\Electronic Arts\The Lord of the Rings, The Rise of the Witch-king; Flags: uninsdeletevalue uninsdeletekeyifempty
Root: HKLM; SubKey: SOFTWARE\Microsoft\Windows\CurrentVersion\App Paths\lotrbfme2ep1.exe; ValueType: dword; ValueName: Restart; ValueData: $00000000; Flags: uninsdeletevalue uninsdeletekeyifempty
Root: HKLM; SubKey: SOFTWARE\Microsoft\Windows\CurrentVersion\App Paths\lotrbfme2ep1.exe; ValueType: dword; ValueName: DirectX Installed; ValueData: $00000000; Flags: uninsdeletevalue uninsdeletekeyifempty
Root: HKLM; SubKey: SOFTWARE\Microsoft\Windows\CurrentVersion\App Paths\lotrbfme2ep1.exe; ValueType: dword; ValueName: Installed; ValueData: $00000001; Flags: uninsdeletevalue uninsdeletekeyifempty
Root: HKLM; SubKey: SOFTWARE\Microsoft\Windows\CurrentVersion\App Paths\lotrbfme2ep1.exe; ValueType: string; ValueData: "{app}\Ep1\lotrbfme2ep1.exe"; Flags: uninsdeletevalue uninsdeletekeyifempty
Root: HKLM; SubKey: SOFTWARE\Microsoft\Windows\CurrentVersion\App Paths\lotrbfme2ep1.exe; ValueType: string; ValueName: Path; ValueData: "{app}\Ep1"; Flags: uninsdeletevalue uninsdeletekeyifempty
Root: HKLM; SubKey: SOFTWARE\WOW6432Node\Electronic Arts; Flags: uninsdeletekeyifempty
Root: HKLM; SubKey: SOFTWARE\WOW6432Node\Electronic Arts\Electronic Arts; Flags: uninsdeletekeyifempty
Root: HKLM; SubKey: SOFTWARE\WOW6432Node\Electronic Arts\Electronic Arts\The Battle for Middle-earth II; ValueType: string; ValueName: Language; ValueData: russian; Flags: uninsdeletevalue uninsdeletekeyifempty
Root: HKLM; SubKey: SOFTWARE\WOW6432Node\Electronic Arts\Electronic Arts\The Battle for Middle-earth II; ValueType: string; ValueName: InstallPath; ValueData: "{app}"; Flags: uninsdeletevalue uninsdeletekeyifempty
Root: HKLM; SubKey: SOFTWARE\WOW6432Node\Electronic Arts\Electronic Arts\The Battle for Middle-earth II; ValueType: dword; ValueName: Version; ValueData: $00010006; Flags: uninsdeletevalue uninsdeletekeyifempty
Root: HKLM; SubKey: SOFTWARE\WOW6432Node\Electronic Arts\Electronic Arts\The Battle for Middle-earth II; ValueType: dword; ValueName: MapPackVersion; ValueData: $00010000; Flags: uninsdeletevalue uninsdeletekeyifempty
Root: HKLM; SubKey: SOFTWARE\WOW6432Node\Electronic Arts\Electronic Arts\The Battle for Middle-earth II; ValueType: dword; ValueName: UseLocalUserMaps; ValueData: $00000000; Flags: uninsdeletevalue uninsdeletekeyifempty
Root: HKLM; SubKey: SOFTWARE\WOW6432Node\Electronic Arts\Electronic Arts\The Battle for Middle-earth II; ValueType: string; ValueName: UserDataLeafName; ValueData: Битва за Средиземье - Мои файлы; Flags: uninsdeletevalue uninsdeletekeyifempty
Root: HKLM; SubKey: SOFTWARE\WOW6432Node\Electronic Arts\Electronic Arts\The Battle for Middle-earth II\ergc; ValueType: string; ValueData: J7F79F9MHXQFBFKGHKAW; Flags: uninsdeletevalue uninsdeletekeyifempty
Root: HKLM; SubKey: SOFTWARE\WOW6432Node\Electronic Arts\Electronic Arts\The Lord of the Rings, The Rise of the Witch-king; ValueType: string; ValueName: Language; ValueData: russian; Flags: uninsdeletevalue uninsdeletekeyifempty
Root: HKLM; SubKey: SOFTWARE\WOW6432Node\Electronic Arts\Electronic Arts\The Lord of the Rings, The Rise of the Witch-king; ValueType: string; ValueName: InstallPath; ValueData: "{app}\Ep1\"; Flags: uninsdeletevalue uninsdeletekeyifempty
Root: HKLM; SubKey: SOFTWARE\WOW6432Node\Electronic Arts\Electronic Arts\The Lord of the Rings, The Rise of the Witch-king; ValueType: dword; ValueName: Version; ValueData: $00020001; Flags: uninsdeletevalue uninsdeletekeyifempty
Root: HKLM; SubKey: SOFTWARE\WOW6432Node\Electronic Arts\Electronic Arts\The Lord of the Rings, The Rise of the Witch-king; ValueType: dword; ValueName: MapPackVersion; ValueData: $00020000; Flags: uninsdeletevalue uninsdeletekeyifempty
Root: HKLM; SubKey: SOFTWARE\WOW6432Node\Electronic Arts\Electronic Arts\The Lord of the Rings, The Rise of the Witch-king; ValueType: dword; ValueName: UseLocalUserMaps; ValueData: $00000000; Flags: uninsdeletevalue uninsdeletekeyifempty
Root: HKLM; SubKey: SOFTWARE\WOW6432Node\Electronic Arts\Electronic Arts\The Lord of the Rings, The Rise of the Witch-king; ValueType: string; ValueName: UserDataLeafName; ValueData: Властелин Колец, Под знаменем Короля-чародея - Мои файлы; Flags: uninsdeletevalue uninsdeletekeyifempty
Root: HKLM; SubKey: SOFTWARE\WOW6432Node\Electronic Arts\Electronic Arts\The Lord of the Rings, The Rise of the Witch-king\ergc; ValueType: string; ValueData: SEW6Y8K88UQB3GRZEE9M; Flags: uninsdeletevalue uninsdeletekeyifempty
Root: HKLM; SubKey: SOFTWARE\WOW6432Node\Microsoft\Windows\CurrentVersion\App Paths\lotrbfme2.exe; ValueType: string; ValueName: Game Registry; ValueData: SOFTWARE\Electronic Arts\The Battle for Middle-earth II; Flags: uninsdeletevalue uninsdeletekeyifempty
Root: HKLM; SubKey: SOFTWARE\WOW6432Node\Microsoft\Windows\CurrentVersion\App Paths\lotrbfme2.exe; ValueType: dword; ValueName: Restart; ValueData: $00000000; Flags: uninsdeletevalue uninsdeletekeyifempty
Root: HKLM; SubKey: SOFTWARE\WOW6432Node\Microsoft\Windows\CurrentVersion\App Paths\lotrbfme2.exe; ValueType: dword; ValueName: DirectX Installed; ValueData: $00000000; Flags: uninsdeletevalue uninsdeletekeyifempty
Root: HKLM; SubKey: SOFTWARE\WOW6432Node\Microsoft\Windows\CurrentVersion\App Paths\lotrbfme2.exe; ValueType: dword; ValueName: Installed; ValueData: $00000001; Flags: uninsdeletevalue uninsdeletekeyifempty
Root: HKLM; SubKey: SOFTWARE\WOW6432Node\Microsoft\Windows\CurrentVersion\App Paths\lotrbfme2.exe; ValueType: string; ValueData: "{app}\lotrbfme2.exe"; Flags: uninsdeletevalue uninsdeletekeyifempty
Root: HKLM; SubKey: SOFTWARE\WOW6432Node\Microsoft\Windows\CurrentVersion\App Paths\lotrbfme2.exe; ValueType: string; ValueName: Path; ValueData: "{app}"; Flags: uninsdeletevalue uninsdeletekeyifempty
Root: HKLM; SubKey: SOFTWARE\WOW6432Node\Microsoft\Windows\CurrentVersion\App Paths\lotrbfme2ep1.exe; ValueType: string; ValueName: Game Registry; ValueData: SOFTWARE\Electronic Arts\The Lord of the Rings, The Rise of the Witch-king; Flags: uninsdeletevalue uninsdeletekeyifempty
Root: HKLM; SubKey: SOFTWARE\WOW6432Node\Microsoft\Windows\CurrentVersion\App Paths\lotrbfme2ep1.exe; ValueType: dword; ValueName: Restart; ValueData: $00000000; Flags: uninsdeletevalue uninsdeletekeyifempty
Root: HKLM; SubKey: SOFTWARE\WOW6432Node\Microsoft\Windows\CurrentVersion\App Paths\lotrbfme2ep1.exe; ValueType: dword; ValueName: DirectX Installed; ValueData: $00000000; Flags: uninsdeletevalue uninsdeletekeyifempty
Root: HKLM; SubKey: SOFTWARE\WOW6432Node\Microsoft\Windows\CurrentVersion\App Paths\lotrbfme2ep1.exe; ValueType: dword; ValueName: Installed; ValueData: $00000001; Flags: uninsdeletevalue uninsdeletekeyifempty
Root: HKLM; SubKey: SOFTWARE\WOW6432Node\Microsoft\Windows\CurrentVersion\App Paths\lotrbfme2ep1.exe; ValueType: string; ValueData: "{app}\Ep1\lotrbfme2ep1.exe"; Flags: uninsdeletevalue uninsdeletekeyifempty
Root: HKLM; SubKey: SOFTWARE\WOW6432Node\Microsoft\Windows\CurrentVersion\App Paths\lotrbfme2ep1.exe; ValueType: string; ValueName: Path; ValueData: "{app}\Ep1"; Flags: uninsdeletevalue uninsdeletekeyifempty
Root: HKLM; SubKey: SOFTWARE\Microsoft\Windows\CurrentVersion\App Paths\lotrbfme2ep1.exe; ValueType: string; ValueName: Game Registry; ValueData: SOFTWARE\Electronic Arts\The Lord of the Rings, The Rise of the Witch-king; Flags: uninsdeletevalue uninsdeletekeyifempty
Root: HKLM; SubKey: SOFTWARE\Microsoft\Windows\CurrentVersion\App Paths\lotrbfme2ep1.exe; ValueType: dword; ValueName: Restart; ValueData: $00000000; Flags: uninsdeletevalue uninsdeletekeyifempty
Root: HKLM; SubKey: SOFTWARE\Microsoft\Windows\CurrentVersion\App Paths\lotrbfme2ep1.exe; ValueType: dword; ValueName: DirectX Installed; ValueData: $00000000; Flags: uninsdeletevalue uninsdeletekeyifempty
Root: HKLM; SubKey: SOFTWARE\Microsoft\Windows\CurrentVersion\App Paths\lotrbfme2ep1.exe; ValueType: dword; ValueName: Installed; ValueData: $00000001; Flags: uninsdeletevalue uninsdeletekeyifempty
Root: HKLM; SubKey: SOFTWARE\Microsoft\Windows\CurrentVersion\App Paths\lotrbfme2ep1.exe; ValueType: string; ValueData: "{app}\Ep1\lotrbfme2ep1.exe"; Flags: uninsdeletevalue uninsdeletekeyifempty
Root: HKLM; SubKey: SOFTWARE\Microsoft\Windows\CurrentVersion\App Paths\lotrbfme2ep1.exe; ValueType: string; ValueName: Path; ValueData: "{app}\Ep1"; Flags: uninsdeletevalue uninsdeletekeyifempty
Root: HKLM; SubKey: SOFTWARE\Microsoft\Windows\CurrentVersion\App Paths\lotrbfme2.exe; ValueType: string; ValueName: Game Registry; ValueData: SOFTWARE\Electronic Arts\The Battle for Middle-earth II; Flags: uninsdeletevalue uninsdeletekeyifempty
Root: HKLM; SubKey: SOFTWARE\Microsoft\Windows\CurrentVersion\App Paths\lotrbfme2.exe; ValueType: dword; ValueName: Restart; ValueData: $00000000; Flags: uninsdeletevalue uninsdeletekeyifempty
Root: HKLM; SubKey: SOFTWARE\Microsoft\Windows\CurrentVersion\App Paths\lotrbfme2.exe; ValueType: dword; ValueName: DirectX Installed; ValueData: $00000000; Flags: uninsdeletevalue uninsdeletekeyifempty
Root: HKLM; SubKey: SOFTWARE\Microsoft\Windows\CurrentVersion\App Paths\lotrbfme2.exe; ValueType: dword; ValueName: Installed; ValueData: $00000001; Flags: uninsdeletevalue uninsdeletekeyifempty
Root: HKLM; SubKey: SOFTWARE\Microsoft\Windows\CurrentVersion\App Paths\lotrbfme2.exe; ValueType: string; ValueData: "{app}\lotrbfme2.exe"; Flags: uninsdeletevalue uninsdeletekeyifempty
Root: HKLM; SubKey: SOFTWARE\Microsoft\Windows\CurrentVersion\App Paths\lotrbfme2.exe; ValueType: string; ValueName: Path; ValueData: "{app}\LORD"; Flags: uninsdeletevalue uninsdeletekeyifempty
Root: HKLM; SubKey: SOFTWARE\WOW6432Node\Electronic Arts; Flags: uninsdeletekeyifempty
Root: HKLM; SubKey: SOFTWARE\WOW6432Node\Electronic Arts\Electronic Arts; Flags: uninsdeletekeyifempty
Root: HKLM; SubKey: SOFTWARE\WOW6432Node\Electronic Arts\Electronic Arts\The Battle for Middle-earth II; ValueType: string; ValueName: Language; ValueData: russian; Flags: uninsdeletevalue uninsdeletekeyifempty
Root: HKLM; SubKey: SOFTWARE\WOW6432Node\Electronic Arts\Electronic Arts\The Battle for Middle-earth II; ValueType: string; ValueName: InstallPath; ValueData: "{app}"; Flags: uninsdeletevalue uninsdeletekeyifempty
Root: HKLM; SubKey: SOFTWARE\WOW6432Node\Electronic Arts\Electronic Arts\The Battle for Middle-earth II; ValueType: dword; ValueName: Version; ValueData: $00010006; Flags: uninsdeletevalue uninsdeletekeyifempty
Root: HKLM; SubKey: SOFTWARE\WOW6432Node\Electronic Arts\Electronic Arts\The Battle for Middle-earth II; ValueType: dword; ValueName: MapPackVersion; ValueData: $00010000; Flags: uninsdeletevalue uninsdeletekeyifempty
Root: HKLM; SubKey: SOFTWARE\WOW6432Node\Electronic Arts\Electronic Arts\The Battle for Middle-earth II; ValueType: dword; ValueName: UseLocalUserMaps; ValueData: $00000000; Flags: uninsdeletevalue uninsdeletekeyifempty
Root: HKLM; SubKey: SOFTWARE\WOW6432Node\Electronic Arts\Electronic Arts\The Battle for Middle-earth II; ValueType: string; ValueName: UserDataLeafName; ValueData: Битва за Средиземье - Мои файлы; Flags: uninsdeletevalue uninsdeletekeyifempty
Root: HKLM; SubKey: SOFTWARE\WOW6432Node\Electronic Arts\Electronic Arts\The Battle for Middle-earth II\ergc; ValueType: string; ValueData: J7F79F9MHXQFBFKGHKAW; Flags: uninsdeletevalue uninsdeletekeyifempty
Root: HKLM; SubKey: SOFTWARE\WOW6432Node\Electronic Arts\Electronic Arts\The Lord of the Rings, The Rise of the Witch-king; ValueType: string; ValueName: Language; ValueData: russian; Flags: uninsdeletevalue uninsdeletekeyifempty
Root: HKLM; SubKey: SOFTWARE\WOW6432Node\Electronic Arts\Electronic Arts\The Lord of the Rings, The Rise of the Witch-king; ValueType: string; ValueName: InstallPath; ValueData: "{app}\Ep1\"; Flags: uninsdeletevalue uninsdeletekeyifempty
Root: HKLM; SubKey: SOFTWARE\WOW6432Node\Electronic Arts\Electronic Arts\The Lord of the Rings, The Rise of the Witch-king; ValueType: dword; ValueName: Version; ValueData: $00020001; Flags: uninsdeletevalue uninsdeletekeyifempty
Root: HKLM; SubKey: SOFTWARE\WOW6432Node\Electronic Arts\Electronic Arts\The Lord of the Rings, The Rise of the Witch-king; ValueType: dword; ValueName: MapPackVersion; ValueData: $00020000; Flags: uninsdeletevalue uninsdeletekeyifempty
Root: HKLM; SubKey: SOFTWARE\WOW6432Node\Electronic Arts\Electronic Arts\The Lord of the Rings, The Rise of the Witch-king; ValueType: dword; ValueName: UseLocalUserMaps; ValueData: $00000000; Flags: uninsdeletevalue uninsdeletekeyifempty
Root: HKLM; SubKey: SOFTWARE\WOW6432Node\Electronic Arts\Electronic Arts\The Lord of the Rings, The Rise of the Witch-king; ValueType: string; ValueName: UserDataLeafName; ValueData: Властелин Колец, Под знаменем Короля-чародея - Мои файлы; Flags: uninsdeletevalue uninsdeletekeyifempty
Root: HKLM; SubKey: SOFTWARE\WOW6432Node\Electronic Arts\Electronic Arts\The Lord of the Rings, The Rise of the Witch-king\ergc; ValueType: string; ValueData: SEW6Y8K88UQB3GRZEE9M; Flags: uninsdeletevalue uninsdeletekeyifempty
Root: HKLM; SubKey: SOFTWARE\WOW6432Node\Microsoft\Windows\CurrentVersion\App Paths\lotrbfme2.exe; ValueType: string; ValueName: Game Registry; ValueData: SOFTWARE\Electronic Arts\The Battle for Middle-earth II; Flags: uninsdeletevalue uninsdeletekeyifempty
Root: HKLM; SubKey: SOFTWARE\WOW6432Node\Microsoft\Windows\CurrentVersion\App Paths\lotrbfme2.exe; ValueType: dword; ValueName: Restart; ValueData: $00000000; Flags: uninsdeletevalue uninsdeletekeyifempty
Root: HKLM; SubKey: SOFTWARE\WOW6432Node\Microsoft\Windows\CurrentVersion\App Paths\lotrbfme2.exe; ValueType: dword; ValueName: DirectX Installed; ValueData: $00000000; Flags: uninsdeletevalue uninsdeletekeyifempty
Root: HKLM; SubKey: SOFTWARE\WOW6432Node\Microsoft\Windows\CurrentVersion\App Paths\lotrbfme2.exe; ValueType: dword; ValueName: Installed; ValueData: $00000001; Flags: uninsdeletevalue uninsdeletekeyifempty
Root: HKLM; SubKey: SOFTWARE\WOW6432Node\Microsoft\Windows\CurrentVersion\App Paths\lotrbfme2.exe; ValueType: string; ValueData: "{app}\lotrbfme2.exe"; Flags: uninsdeletevalue uninsdeletekeyifempty
Root: HKLM; SubKey: SOFTWARE\WOW6432Node\Microsoft\Windows\CurrentVersion\App Paths\lotrbfme2.exe; ValueType: string; ValueName: Path; ValueData: "{app}"; Flags: uninsdeletevalue uninsdeletekeyifempty
Root: HKLM; SubKey: SOFTWARE\WOW6432Node\Microsoft\Windows\CurrentVersion\App Paths\lotrbfme2ep1.exe; ValueType: string; ValueName: Game Registry; ValueData: SOFTWARE\Electronic Arts\The Lord of the Rings, The Rise of the Witch-king; Flags: uninsdeletevalue uninsdeletekeyifempty
Root: HKLM; SubKey: SOFTWARE\WOW6432Node\Microsoft\Windows\CurrentVersion\App Paths\lotrbfme2ep1.exe; ValueType: dword; ValueName: Restart; ValueData: $00000000; Flags: uninsdeletevalue uninsdeletekeyifempty
Root: HKLM; SubKey: SOFTWARE\WOW6432Node\Microsoft\Windows\CurrentVersion\App Paths\lotrbfme2ep1.exe; ValueType: dword; ValueName: DirectX Installed; ValueData: $00000000; Flags: uninsdeletevalue uninsdeletekeyifempty
Root: HKLM; SubKey: SOFTWARE\WOW6432Node\Microsoft\Windows\CurrentVersion\App Paths\lotrbfme2ep1.exe; ValueType: dword; ValueName: Installed; ValueData: $00000001; Flags: uninsdeletevalue uninsdeletekeyifempty
Root: HKLM; SubKey: SOFTWARE\WOW6432Node\Microsoft\Windows\CurrentVersion\App Paths\lotrbfme2ep1.exe; ValueType: string; ValueData: "{app}\Ep1\lotrbfme2ep1.exe"; Flags: uninsdeletevalue uninsdeletekeyifempty
Root: HKLM; SubKey: SOFTWARE\WOW6432Node\Microsoft\Windows\CurrentVersion\App Paths\lotrbfme2ep1.exe; ValueType: string; ValueName: Path; ValueData: "{app}\Ep1"; Flags: uninsdeletevalue uninsdeletekeyifempty
это нужные коды для игры |
|
Отправлено: 23:51, 23-01-2020 | #469 |
|
Новый участник Сообщения: 14
|
Профиль | Сайт | Отправить PM | Цитировать сейчас будет абсолютно весь код для игры имеется в виду реестр
Root: HKLM; SubKey: SOFTWARE\Microsoft\Windows\CurrentVersion\App Paths\lotrbfme2.exe; ValueType: string; ValueName: Game Registry; ValueData: SOFTWARE\Electronic Arts\The Battle for Middle-earth II; Flags: uninsdeletevalue uninsdeletekeyifempty
Root: HKLM; SubKey: SOFTWARE\Microsoft\Windows\CurrentVersion\App Paths\lotrbfme2.exe; ValueType: dword; ValueName: Restart; ValueData: $00000000; Flags: uninsdeletevalue uninsdeletekeyifempty
Root: HKLM; SubKey: SOFTWARE\Microsoft\Windows\CurrentVersion\App Paths\lotrbfme2.exe; ValueType: dword; ValueName: DirectX Installed; ValueData: $00000000; Flags: uninsdeletevalue uninsdeletekeyifempty
Root: HKLM; SubKey: SOFTWARE\Microsoft\Windows\CurrentVersion\App Paths\lotrbfme2.exe; ValueType: dword; ValueName: Installed; ValueData: $00000001; Flags: uninsdeletevalue uninsdeletekeyifempty
Root: HKLM; SubKey: SOFTWARE\Microsoft\Windows\CurrentVersion\App Paths\lotrbfme2.exe; ValueType: string; ValueData: "{app}\lotrbfme2.exe"; Flags: uninsdeletevalue uninsdeletekeyifempty
Root: HKLM; SubKey: SOFTWARE\Microsoft\Windows\CurrentVersion\App Paths\lotrbfme2.exe; ValueType: string; ValueName: Path; ValueData: "{app}"; Flags: uninsdeletevalue uninsdeletekeyifempty
Root: HKLM; SubKey: SOFTWARE\Microsoft\Windows\CurrentVersion\App Paths\lotrbfme2ep1.exe; ValueType: string; ValueName: Game Registry; ValueData: SOFTWARE\Electronic Arts\The Lord of the Rings, The Rise of the Witch-king; Flags: uninsdeletevalue uninsdeletekeyifempty
Root: HKLM; SubKey: SOFTWARE\Microsoft\Windows\CurrentVersion\App Paths\lotrbfme2ep1.exe; ValueType: dword; ValueName: Restart; ValueData: $00000000; Flags: uninsdeletevalue uninsdeletekeyifempty
Root: HKLM; SubKey: SOFTWARE\Microsoft\Windows\CurrentVersion\App Paths\lotrbfme2ep1.exe; ValueType: dword; ValueName: DirectX Installed; ValueData: $00000000; Flags: uninsdeletevalue uninsdeletekeyifempty
Root: HKLM; SubKey: SOFTWARE\Microsoft\Windows\CurrentVersion\App Paths\lotrbfme2ep1.exe; ValueType: dword; ValueName: Installed; ValueData: $00000001; Flags: uninsdeletevalue uninsdeletekeyifempty
Root: HKLM; SubKey: SOFTWARE\Microsoft\Windows\CurrentVersion\App Paths\lotrbfme2ep1.exe; ValueType: string; ValueData: "{app}\Ep1\lotrbfme2ep1.exe"; Flags: uninsdeletevalue uninsdeletekeyifempty
Root: HKLM; SubKey: SOFTWARE\Microsoft\Windows\CurrentVersion\App Paths\lotrbfme2ep1.exe; ValueType: string; ValueName: Path; ValueData: "{app}\Ep1"; Flags: uninsdeletevalue uninsdeletekeyifempty
Root: HKLM; SubKey: SOFTWARE\WOW6432Node\Electronic Arts; Flags: uninsdeletekeyifempty
Root: HKLM; SubKey: SOFTWARE\WOW6432Node\Electronic Arts\Electronic Arts; Flags: uninsdeletekeyifempty
Root: HKLM; SubKey: SOFTWARE\WOW6432Node\Electronic Arts\Electronic Arts\The Battle for Middle-earth II; ValueType: string; ValueName: Language; ValueData: russian; Flags: uninsdeletevalue uninsdeletekeyifempty
Root: HKLM; SubKey: SOFTWARE\WOW6432Node\Electronic Arts\Electronic Arts\The Battle for Middle-earth II; ValueType: string; ValueName: InstallPath; ValueData: "{app}"; Flags: uninsdeletevalue uninsdeletekeyifempty
Root: HKLM; SubKey: SOFTWARE\WOW6432Node\Electronic Arts\Electronic Arts\The Battle for Middle-earth II; ValueType: dword; ValueName: Version; ValueData: $00010006; Flags: uninsdeletevalue uninsdeletekeyifempty
Root: HKLM; SubKey: SOFTWARE\WOW6432Node\Electronic Arts\Electronic Arts\The Battle for Middle-earth II; ValueType: dword; ValueName: MapPackVersion; ValueData: $00010000; Flags: uninsdeletevalue uninsdeletekeyifempty
Root: HKLM; SubKey: SOFTWARE\WOW6432Node\Electronic Arts\Electronic Arts\The Battle for Middle-earth II; ValueType: dword; ValueName: UseLocalUserMaps; ValueData: $00000000; Flags: uninsdeletevalue uninsdeletekeyifempty
Root: HKLM; SubKey: SOFTWARE\WOW6432Node\Electronic Arts\Electronic Arts\The Battle for Middle-earth II; ValueType: string; ValueName: UserDataLeafName; ValueData: Битва за Средиземье - Мои файлы; Flags: uninsdeletevalue uninsdeletekeyifempty
Root: HKLM; SubKey: SOFTWARE\WOW6432Node\Electronic Arts\Electronic Arts\The Battle for Middle-earth II\ergc; ValueType: string; ValueData: J7F79F9MHXQFBFKGHKAW; Flags: uninsdeletevalue uninsdeletekeyifempty
Root: HKLM; SubKey: SOFTWARE\WOW6432Node\Electronic Arts\Electronic Arts\The Lord of the Rings, The Rise of the Witch-king; ValueType: string; ValueName: Language; ValueData: russian; Flags: uninsdeletevalue uninsdeletekeyifempty
Root: HKLM; SubKey: SOFTWARE\WOW6432Node\Electronic Arts\Electronic Arts\The Lord of the Rings, The Rise of the Witch-king; ValueType: string; ValueName: InstallPath; ValueData: "{app}\Ep1\"; Flags: uninsdeletevalue uninsdeletekeyifempty
Root: HKLM; SubKey: SOFTWARE\WOW6432Node\Electronic Arts\Electronic Arts\The Lord of the Rings, The Rise of the Witch-king; ValueType: dword; ValueName: Version; ValueData: $00020001; Flags: uninsdeletevalue uninsdeletekeyifempty
Root: HKLM; SubKey: SOFTWARE\WOW6432Node\Electronic Arts\Electronic Arts\The Lord of the Rings, The Rise of the Witch-king; ValueType: dword; ValueName: MapPackVersion; ValueData: $00020000; Flags: uninsdeletevalue uninsdeletekeyifempty
Root: HKLM; SubKey: SOFTWARE\WOW6432Node\Electronic Arts\Electronic Arts\The Lord of the Rings, The Rise of the Witch-king; ValueType: dword; ValueName: UseLocalUserMaps; ValueData: $00000000; Flags: uninsdeletevalue uninsdeletekeyifempty
Root: HKLM; SubKey: SOFTWARE\WOW6432Node\Electronic Arts\Electronic Arts\The Lord of the Rings, The Rise of the Witch-king; ValueType: string; ValueName: UserDataLeafName; ValueData: Властелин Колец, Под знаменем Короля-чародея - Мои файлы; Flags: uninsdeletevalue uninsdeletekeyifempty
Root: HKLM; SubKey: SOFTWARE\WOW6432Node\Electronic Arts\Electronic Arts\The Lord of the Rings, The Rise of the Witch-king\ergc; ValueType: string; ValueData: SEW6Y8K88UQB3GRZEE9M; Flags: uninsdeletevalue uninsdeletekeyifempty
Root: HKLM; SubKey: SOFTWARE\WOW6432Node\Electronic Arts\The Battle for Middle-earth II; ValueType: string; ValueName: DisplayName; ValueData: Битва за Средиземье™ II; Flags: uninsdeletevalue uninsdeletekeyifempty
Root: HKLM; SubKey: SOFTWARE\WOW6432Node\Electronic Arts\The Battle for Middle-earth II; ValueType: string; ValueName: Installed From; ValueData: H:\; Flags: uninsdeletevalue uninsdeletekeyifempty
Root: HKLM; SubKey: SOFTWARE\WOW6432Node\Electronic Arts\The Battle for Middle-earth II; ValueType: string; ValueName: Registration; ValueData: SOFTWARE\Electronic Arts\Electronic Arts\The Battle for Middle-earth II\ergc; Flags: uninsdeletevalue uninsdeletekeyifempty
Root: HKLM; SubKey: SOFTWARE\WOW6432Node\Electronic Arts\The Battle for Middle-earth II; ValueType: string; ValueName: CacheSize; ValueData: 5441287168; Flags: uninsdeletevalue uninsdeletekeyifempty
Root: HKLM; SubKey: SOFTWARE\WOW6432Node\Electronic Arts\The Battle for Middle-earth II; ValueType: string; ValueName: SwapSize; ValueData: 0; Flags: uninsdeletevalue uninsdeletekeyifempty
Root: HKLM; SubKey: SOFTWARE\WOW6432Node\Electronic Arts\The Battle for Middle-earth II; ValueType: string; ValueName: Language; ValueData: Russian; Flags: uninsdeletevalue uninsdeletekeyifempty
Root: HKLM; SubKey: SOFTWARE\WOW6432Node\Electronic Arts\The Battle for Middle-earth II; ValueType: string; ValueName: Locale; ValueData: ru; Flags: uninsdeletevalue uninsdeletekeyifempty
Root: HKLM; SubKey: SOFTWARE\WOW6432Node\Electronic Arts\The Battle for Middle-earth II; ValueType: string; ValueName: CD Drive; ValueData: H:\; Flags: uninsdeletevalue uninsdeletekeyifempty
Root: HKLM; SubKey: SOFTWARE\WOW6432Node\Electronic Arts\The Battle for Middle-earth II; ValueType: string; ValueName: Install Dir; ValueData: C:\PROGRA~1\LORDOF~1\; Flags: uninsdeletevalue uninsdeletekeyifempty
Root: HKLM; SubKey: SOFTWARE\WOW6432Node\Electronic Arts\The Battle for Middle-earth II; ValueType: string; ValueName: Product GUID; ValueData: {{2A9F95AB-65A3-432c-8631-B8BC5BF7477A}; Flags: uninsdeletevalue uninsdeletekeyifempty
Root: HKLM; SubKey: SOFTWARE\WOW6432Node\Electronic Arts\The Battle for Middle-earth II; ValueType: string; ValueName: Region; ValueData: NorthAmerica; Flags: uninsdeletevalue uninsdeletekeyifempty
Root: HKLM; SubKey: SOFTWARE\WOW6432Node\Electronic Arts\The Battle for Middle-earth II; ValueType: string; ValueName: Folder; ValueData: C:\ProgramData\Microsoft\Windows\Start Menu\Programs\Electronic Arts\Битва за Средиземье™ II\; Flags: uninsdeletevalue uninsdeletekeyifempty
Root: HKLM; SubKey: SOFTWARE\WOW6432Node\Electronic Arts\The Battle for Middle-earth II; ValueType: string; ValueName: Patch URL; ValueData: https://vk.com/bfme_tood2; Flags: uninsdeletevalue uninsdeletekeyifempty
Root: HKLM; SubKey: SOFTWARE\WOW6432Node\Electronic Arts\The Battle for Middle-earth II; ValueType: string; ValueName: Suppression Exe; ValueData: rtsi.exe; Flags: uninsdeletevalue uninsdeletekeyifempty
Root: HKLM; SubKey: SOFTWARE\WOW6432Node\Electronic Arts\The Battle for Middle-earth II\1.0; ValueType: dword; ValueName: Language; ValueData: $00000010; Flags: uninsdeletevalue uninsdeletekeyifempty
Root: HKLM; SubKey: SOFTWARE\WOW6432Node\Electronic Arts\The Battle for Middle-earth II\1.0; ValueType: string; ValueName: DisplayName; ValueData: Битва за Средиземье™ II; Flags: uninsdeletevalue uninsdeletekeyifempty
Root: HKLM; SubKey: SOFTWARE\WOW6432Node\Electronic Arts\The Battle for Middle-earth II\1.0; ValueType: string; ValueName: LanguageName; ValueData: Russian; Flags: uninsdeletevalue uninsdeletekeyifempty
Root: HKLM; SubKey: SOFTWARE\WOW6432Node\Electronic Arts\The Lord of the Rings, The Rise of the Witch-king; ValueType: string; ValueName: DisplayName; ValueData: Под знаменем Короля-чародея™; Flags: uninsdeletevalue uninsdeletekeyifempty
Root: HKLM; SubKey: SOFTWARE\WOW6432Node\Electronic Arts\The Lord of the Rings, The Rise of the Witch-king; ValueType: string; ValueName: Installed From; ValueData: H:\; Flags: uninsdeletevalue uninsdeletekeyifempty
Root: HKLM; SubKey: SOFTWARE\WOW6432Node\Electronic Arts\The Lord of the Rings, The Rise of the Witch-king; ValueType: string; ValueName: Registration; ValueData: SOFTWARE\Electronic Arts\Electronic Arts\The Lord of the Rings, The Rise of the Witch-king\ergc; Flags: uninsdeletevalue uninsdeletekeyifempty
Root: HKLM; SubKey: SOFTWARE\WOW6432Node\Electronic Arts\The Lord of the Rings, The Rise of the Witch-king; ValueType: string; ValueName: CacheSize; ValueData: 3139187712; Flags: uninsdeletevalue uninsdeletekeyifempty
Root: HKLM; SubKey: SOFTWARE\WOW6432Node\Electronic Arts\The Lord of the Rings, The Rise of the Witch-king; ValueType: string; ValueName: SwapSize; ValueData: 0; Flags: uninsdeletevalue uninsdeletekeyifempty
Root: HKLM; SubKey: SOFTWARE\WOW6432Node\Electronic Arts\The Lord of the Rings, The Rise of the Witch-king; ValueType: string; ValueName: Language; ValueData: Russian; Flags: uninsdeletevalue uninsdeletekeyifempty
Root: HKLM; SubKey: SOFTWARE\WOW6432Node\Electronic Arts\The Lord of the Rings, The Rise of the Witch-king; ValueType: string; ValueName: Locale; ValueData: ru; Flags: uninsdeletevalue uninsdeletekeyifempty
Root: HKLM; SubKey: SOFTWARE\WOW6432Node\Electronic Arts\The Lord of the Rings, The Rise of the Witch-king; ValueType: string; ValueName: CD Drive; ValueData: H:\; Flags: uninsdeletevalue uninsdeletekeyifempty
Root: HKLM; SubKey: SOFTWARE\WOW6432Node\Electronic Arts\The Lord of the Rings, The Rise of the Witch-king; ValueType: string; ValueName: Install Dir; ValueData: C:\PROGRA~1\LORDOF~1\Ep1\; Flags: uninsdeletevalue uninsdeletekeyifempty
Root: HKLM; SubKey: SOFTWARE\WOW6432Node\Electronic Arts\The Lord of the Rings, The Rise of the Witch-king; ValueType: string; ValueName: Product GUID; ValueData: {{B931FB80-537A-4600-00AD-AC5DEDB6C25B}; Flags: uninsdeletevalue uninsdeletekeyifempty
Root: HKLM; SubKey: SOFTWARE\WOW6432Node\Electronic Arts\The Lord of the Rings, The Rise of the Witch-king; ValueType: string; ValueName: Region; ValueData: NorthAmerica; Flags: uninsdeletevalue uninsdeletekeyifempty
Root: HKLM; SubKey: SOFTWARE\WOW6432Node\Electronic Arts\The Lord of the Rings, The Rise of the Witch-king; ValueType: string; ValueName: Folder; ValueData: C:\ProgramData\Microsoft\Windows\Start Menu\Programs\Electronic Arts\Под знаменем Короля-чародея™\; Flags: uninsdeletevalue uninsdeletekeyifempty
Root: HKLM; SubKey: SOFTWARE\WOW6432Node\Electronic Arts\The Lord of the Rings, The Rise of the Witch-king; ValueType: string; ValueName: Patch URL; ValueData: https://vk.com/bfme_tood2; Flags: uninsdeletevalue uninsdeletekeyifempty
Root: HKLM; SubKey: SOFTWARE\WOW6432Node\Electronic Arts\The Lord of the Rings, The Rise of the Witch-king; ValueType: string; ValueName: Suppression Exe; ValueData: rtsi.exe; Flags: uninsdeletevalue uninsdeletekeyifempty
Root: HKLM; SubKey: SOFTWARE\WOW6432Node\Electronic Arts\The Lord of the Rings, The Rise of the Witch-king\1.0; ValueType: dword; ValueName: Language; ValueData: $00000010; Flags: uninsdeletevalue uninsdeletekeyifempty
Root: HKLM; SubKey: SOFTWARE\WOW6432Node\Electronic Arts\The Lord of the Rings, The Rise of the Witch-king\1.0; ValueType: string; ValueName: DisplayName; ValueData: Под знаменем Короля-чародея™; Flags: uninsdeletevalue uninsdeletekeyifempty
Root: HKLM; SubKey: SOFTWARE\WOW6432Node\Electronic Arts\The Lord of the Rings, The Rise of the Witch-king\1.0; ValueType: string; ValueName: LanguageName; ValueData: Russian; Flags: uninsdeletevalue uninsdeletekeyifempty
Root: HKLM; SubKey: SOFTWARE\WOW6432Node\Microsoft\Windows\CurrentVersion\Uninstall\The History of Ages 1.3.7.1 The Full Game (with LOTR-BFME 2-ROTWK); ValueType: string; ValueName: DisplayName; ValueData: The History of Ages 1.3.7.1 The Full Game (with LOTR-BFME 2-ROTWK); Flags: uninsdeletevalue uninsdeletekeyifempty
Root: HKLM; SubKey: SOFTWARE\WOW6432Node\Microsoft\Windows\CurrentVersion\Uninstall\The History of Ages 1.3.7.1 The Full Game (with LOTR-BFME 2-ROTWK); ValueType: string; ValueName: DisplayVersion; ValueData: 1.3.7.1; Flags: uninsdeletevalue uninsdeletekeyifempty
Root: HKLM; SubKey: SOFTWARE\WOW6432Node\Microsoft\Windows\CurrentVersion\Uninstall\The History of Ages 1.3.7.1 The Full Game (with LOTR-BFME 2-ROTWK); ValueType: dword; ValueName: VersionMajor; ValueData: $00000001; Flags: uninsdeletevalue uninsdeletekeyifempty
Root: HKLM; SubKey: SOFTWARE\WOW6432Node\Microsoft\Windows\CurrentVersion\Uninstall\The History of Ages 1.3.7.1 The Full Game (with LOTR-BFME 2-ROTWK); ValueType: dword; ValueName: VersionMinor; ValueData: $00000003; Flags: uninsdeletevalue uninsdeletekeyifempty
Root: HKLM; SubKey: SOFTWARE\WOW6432Node\Microsoft\Windows\CurrentVersion\Uninstall\The History of Ages 1.3.7.1 The Full Game (with LOTR-BFME 2-ROTWK); ValueType: string; ValueName: Publisher; ValueData: ThoA Team; Flags: uninsdeletevalue uninsdeletekeyifempty
Root: HKLM; SubKey: SOFTWARE\WOW6432Node\Microsoft\Windows\CurrentVersion\Uninstall\The History of Ages 1.3.7.1 The Full Game (with LOTR-BFME 2-ROTWK); ValueType: string; ValueName: DisplayIcon; ValueData: "{app}\Uninstall_Repack.exe"; Flags: uninsdeletevalue uninsdeletekeyifempty
Root: HKLM; SubKey: SOFTWARE\WOW6432Node\Microsoft\Windows\CurrentVersion\Uninstall\The History of Ages 1.3.7.1 The Full Game (with LOTR-BFME 2-ROTWK); ValueType: string; ValueName: UninstallString; ValueData: "{app}\Uninstall_Repack.exe"; Flags: uninsdeletevalue uninsdeletekeyifempty
Root: HKLM; SubKey: SOFTWARE\WOW6432Node\Microsoft\Windows\CurrentVersion\Uninstall\The History of Ages 1.3.7.1 The Full Game (with LOTR-BFME 2-ROTWK); ValueType: string; ValueName: URLInfoAbout; ValueData: http://warofthering.ru/forum/; Flags: uninsdeletevalue uninsdeletekeyifempty
Root: HKLM; SubKey: SOFTWARE\WOW6432Node\Microsoft\Windows\CurrentVersion\Uninstall\The History of Ages 1.3.7.1 The Full Game (with LOTR-BFME 2-ROTWK); ValueType: string; ValueName: HelpLink; ValueData: http://vk.com/thoa_tournament; Flags: uninsdeletevalue uninsdeletekeyifempty
Root: HKLM; SubKey: SOFTWARE\WOW6432Node\Microsoft\Windows\CurrentVersion\Uninstall\The History of Ages 1.3.7.1 The Full Game (with LOTR-BFME 2-ROTWK); ValueType: string; ValueName: InstallLocation; ValueData: "{app}"; Flags: uninsdeletevalue uninsdeletekeyifempty
Root: HKLM; SubKey: SOFTWARE\WOW6432Node\Microsoft\Windows\CurrentVersion\Uninstall\The History of Ages 1.3.7.1 The Full Game (with LOTR-BFME 2-ROTWK); ValueType: string; ValueName: InstallSource; ValueData: D:\torrets\Lord of the Rings - The History of Ages\; Flags: uninsdeletevalue uninsdeletekeyifempty
Root: HKLM; SubKey: SOFTWARE\WOW6432Node\Microsoft\Windows\CurrentVersion\Uninstall\The History of Ages 1.3.7.1 The Full Game (with LOTR-BFME 2-ROTWK); ValueType: string; ValueName: InstallDate; ValueData: 20200123; Flags: uninsdeletevalue uninsdeletekeyifempty
Root: HKLM; SubKey: SOFTWARE\WOW6432Node\Microsoft\Windows\CurrentVersion\Uninstall\The History of Ages 1.3.7.1 The Full Game (with LOTR-BFME 2-ROTWK); ValueType: dword; ValueName: Language; ValueData: $00000419; Flags: uninsdeletevalue uninsdeletekeyifempty
Root: HKLM; SubKey: SOFTWARE\WOW6432Node\Microsoft\Windows\CurrentVersion\Uninstall\The History of Ages 1.3.7.1 The Full Game (with LOTR-BFME 2-ROTWK); ValueType: dword; ValueName: EstimatedSize; ValueData: $00000066; Flags: uninsdeletevalue uninsdeletekeyifempty
Root: HKLM; SubKey: SOFTWARE\WOW6432Node\Microsoft\Windows\CurrentVersion\Uninstall\The History of Ages 1.3.7.1 The Full Game (with LOTR-BFME 2-ROTWK); ValueType: dword; ValueName: NoModify; ValueData: $00000001; Flags: uninsdeletevalue uninsdeletekeyifempty
Root: HKLM; SubKey: SOFTWARE\WOW6432Node\Microsoft\Windows\CurrentVersion\Uninstall\The History of Ages 1.3.7.1 The Full Game (with LOTR-BFME 2-ROTWK); ValueType: dword; ValueName: NoRepair; ValueData: $00000001; Flags: uninsdeletevalue uninsdeletekeyifempty
Root: HKLM; SubKey: SOFTWARE\WOW6432Node\Microsoft\Windows\CurrentVersion\App Paths\lotrbfme2.exe; ValueType: string; ValueName: Game Registry; ValueData: SOFTWARE\Electronic Arts\The Battle for Middle-earth II; Flags: uninsdeletevalue uninsdeletekeyifempty
Root: HKLM; SubKey: SOFTWARE\WOW6432Node\Microsoft\Windows\CurrentVersion\App Paths\lotrbfme2.exe; ValueType: dword; ValueName: Restart; ValueData: $00000000; Flags: uninsdeletevalue uninsdeletekeyifempty
Root: HKLM; SubKey: SOFTWARE\WOW6432Node\Microsoft\Windows\CurrentVersion\App Paths\lotrbfme2.exe; ValueType: dword; ValueName: DirectX Installed; ValueData: $00000000; Flags: uninsdeletevalue uninsdeletekeyifempty
Root: HKLM; SubKey: SOFTWARE\WOW6432Node\Microsoft\Windows\CurrentVersion\App Paths\lotrbfme2.exe; ValueType: dword; ValueName: Installed; ValueData: $00000001; Flags: uninsdeletevalue uninsdeletekeyifempty
Root: HKLM; SubKey: SOFTWARE\WOW6432Node\Microsoft\Windows\CurrentVersion\App Paths\lotrbfme2.exe; ValueType: string; ValueData: "{app}\lotrbfme2.exe"; Flags: uninsdeletevalue uninsdeletekeyifempty
Root: HKLM; SubKey: SOFTWARE\WOW6432Node\Microsoft\Windows\CurrentVersion\App Paths\lotrbfme2.exe; ValueType: string; ValueName: Path; ValueData: "{app}"; Flags: uninsdeletevalue uninsdeletekeyifempty
Root: HKLM; SubKey: SOFTWARE\WOW6432Node\Microsoft\Windows\CurrentVersion\App Paths\lotrbfme2ep1.exe; ValueType: string; ValueName: Game Registry; ValueData: SOFTWARE\Electronic Arts\The Lord of the Rings, The Rise of the Witch-king; Flags: uninsdeletevalue uninsdeletekeyifempty
Root: HKLM; SubKey: SOFTWARE\WOW6432Node\Microsoft\Windows\CurrentVersion\App Paths\lotrbfme2ep1.exe; ValueType: dword; ValueName: Restart; ValueData: $00000000; Flags: uninsdeletevalue uninsdeletekeyifempty
Root: HKLM; SubKey: SOFTWARE\WOW6432Node\Microsoft\Windows\CurrentVersion\App Paths\lotrbfme2ep1.exe; ValueType: dword; ValueName: DirectX Installed; ValueData: $00000000; Flags: uninsdeletevalue uninsdeletekeyifempty
Root: HKLM; SubKey: SOFTWARE\WOW6432Node\Microsoft\Windows\CurrentVersion\App Paths\lotrbfme2ep1.exe; ValueType: dword; ValueName: Installed; ValueData: $00000001; Flags: uninsdeletevalue uninsdeletekeyifempty
Root: HKLM; SubKey: SOFTWARE\WOW6432Node\Microsoft\Windows\CurrentVersion\App Paths\lotrbfme2ep1.exe; ValueType: string; ValueData: "{app}\Ep1\lotrbfme2ep1.exe"; Flags: uninsdeletevalue uninsdeletekeyifempty
Root: HKLM; SubKey: SOFTWARE\WOW6432Node\Microsoft\Windows\CurrentVersion\App Paths\lotrbfme2ep1.exe; ValueType: string; ValueName: Path; ValueData: "{app}\Ep1"; Flags: uninsdeletevalue uninsdeletekeyifempty
Root: HKLM; SubKey: SOFTWARE\Microsoft\Windows\CurrentVersion\App Paths\lotrbfme2ep1.exe; ValueType: string; ValueName: Game Registry; ValueData: SOFTWARE\Electronic Arts\The Lord of the Rings, The Rise of the Witch-king; Flags: uninsdeletevalue uninsdeletekeyifempty
Root: HKLM; SubKey: SOFTWARE\Microsoft\Windows\CurrentVersion\App Paths\lotrbfme2ep1.exe; ValueType: dword; ValueName: Restart; ValueData: $00000000; Flags: uninsdeletevalue uninsdeletekeyifempty
Root: HKLM; SubKey: SOFTWARE\Microsoft\Windows\CurrentVersion\App Paths\lotrbfme2ep1.exe; ValueType: dword; ValueName: DirectX Installed; ValueData: $00000000; Flags: uninsdeletevalue uninsdeletekeyifempty
Root: HKLM; SubKey: SOFTWARE\Microsoft\Windows\CurrentVersion\App Paths\lotrbfme2ep1.exe; ValueType: dword; ValueName: Installed; ValueData: $00000001; Flags: uninsdeletevalue uninsdeletekeyifempty
Root: HKLM; SubKey: SOFTWARE\Microsoft\Windows\CurrentVersion\App Paths\lotrbfme2ep1.exe; ValueType: string; ValueData: "{app}\Ep1\lotrbfme2ep1.exe"; Flags: uninsdeletevalue uninsdeletekeyifempty
Root: HKLM; SubKey: SOFTWARE\Microsoft\Windows\CurrentVersion\App Paths\lotrbfme2ep1.exe; ValueType: string; ValueName: Path; ValueData: "{app}\Ep1"; Flags: uninsdeletevalue uninsdeletekeyifempty
Root: HKLM; SubKey: SOFTWARE\Microsoft\Windows\CurrentVersion\App Paths\lotrbfme2.exe; ValueType: string; ValueName: Game Registry; ValueData: SOFTWARE\Electronic Arts\The Battle for Middle-earth II; Flags: uninsdeletevalue uninsdeletekeyifempty
Root: HKLM; SubKey: SOFTWARE\Microsoft\Windows\CurrentVersion\App Paths\lotrbfme2.exe; ValueType: dword; ValueName: Restart; ValueData: $00000000; Flags: uninsdeletevalue uninsdeletekeyifempty
Root: HKLM; SubKey: SOFTWARE\Microsoft\Windows\CurrentVersion\App Paths\lotrbfme2.exe; ValueType: dword; ValueName: DirectX Installed; ValueData: $00000000; Flags: uninsdeletevalue uninsdeletekeyifempty
Root: HKLM; SubKey: SOFTWARE\Microsoft\Windows\CurrentVersion\App Paths\lotrbfme2.exe; ValueType: dword; ValueName: Installed; ValueData: $00000001; Flags: uninsdeletevalue uninsdeletekeyifempty
Root: HKLM; SubKey: SOFTWARE\Microsoft\Windows\CurrentVersion\App Paths\lotrbfme2.exe; ValueType: string; ValueData: "{app}\lotrbfme2.exe"; Flags: uninsdeletevalue uninsdeletekeyifempty
Root: HKLM; SubKey: SOFTWARE\Microsoft\Windows\CurrentVersion\App Paths\lotrbfme2.exe; ValueType: string; ValueName: Path; ValueData: "{app}\LORD"; Flags: uninsdeletevalue uninsdeletekeyifempty
|
|
Отправлено: 23:53, 23-01-2020 | #470 |
|
|
Участник сейчас на форуме |
|
Участник вне форума |
![]() |
Автор темы |
![]() |
Сообщение прикреплено |
| |||||
| Название темы | Автор | Информация о форуме | Ответов | Последнее сообщение | |
| Скрипты Inno Setup. Помощь и советы [часть 7] | El Sanchez | Автоматическая установка приложений | 2499 | 02-02-2015 08:59 | |
| Скрипты Inno Setup. Помощь и советы [часть 6] | El Sanchez | Автоматическая установка приложений | 2494 | 10-03-2014 11:51 | |
| Скрипты Inno Setup. Помощь и советы [часть 5] | El Sanchez | Автоматическая установка приложений | 1999 | 28-03-2013 19:09 | |
| Скрипты Inno Setup. Помощь и советы [часть 4] | El Sanchez | Автоматическая установка приложений | 2099 | 22-05-2012 23:16 | |
| Скрипты Inno Setup. Помощь и советы [часть 3] | Serega | Автоматическая установка приложений | 3755 | 26-10-2011 17:58 | |
|