PDA

Показать полную графическую версию : Скрипты Inno Setup. Помощь и советы [часть 9]


Страниц : 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 [24] 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57

iglezz
18-01-2020, 12:48
habib2302,
Каждое из четырёх чисел в VersionInfoVersion имеет максимальное значение равное 65535, отсюда и ошибка.
Для больших чисел применяется текстовый атрибут FileVersion, устанавливаемый через VersionInfoTextVersion="6.1.2.135662"
Таким же образом это сделано и для оригинального установщика.

Подробности здесь: VERSIONINFO resource (https://docs.microsoft.com/en-us/windows/win32/menurc/versioninfo-resource)

Beavimo
21-01-2020, 22:00
Добрый Вечер Форумчане! Так и не нашел ответа, можна как нибудь поменять эту надпись или нет :pray:?

https://i111.fastpic.ru/big/2020/0121/f3/d549b3e1459f5621fe367e7fb688eef3.jpg (https://fastpic.ru/view/111/2020/0121/d549b3e1459f5621fe367e7fb688eef3.jpg.html)

Nordek
21-01-2020, 22:43
можна как нибудь поменять эту надпись или нет »Можно.
[Messages]
SetupWindowTitle=Мой инсталлятор - %1

Если нужно для определённого языка то, то что у вас будет в Languages - То подставляете
[Languages]
Name: "english"; MessagesFile: "compiler:Default.isl"
Name: "russian"; MessagesFile: "compiler:Languages\Russian.isl"

[Messages]
russian.SetupWindowTitle=Мой инсталлятор - %1

gosnitsse
22-01-2020, 21:56
Проблема, есть игра "The lord of the rings the history of ages 1.3.7.1" так вот, известный факт что если установить игру, то есть при установке где нужно выбрать путь, мы пропишем свой путь, то соответственно игра не запустится, но если путь создать заранее, через ПКМ и новая папка, затем дать ей имя, то без проблем игра запустится после установки.

Вопрос таков, я сегодня уже ну просто целый день бьюсь-бьюсь и никак не могу добиться, как мне можно в Inno Setup ключи реестра сделать так чтобы они менялись и вообще чтобы они добавлялись при установке в любую папку? подскажи пожалуйста

Nordek
23-01-2020, 02:53
как мне можно в Inno Setup ключи реестра сделать так чтобы они менялись и вообще чтобы они добавлялись при установке в любую папку? »Если я правильно понял то, вникайте:

Например игра установилась в:
C:\Program Files\Name\

Исходные уже внесённые данные в реестр будут выглядеть так:
Root: "HKCU"; Subkey: "Software\Name"; ValueType: string; ValueName: "Path"; ValueData: "C:\Program Files\Name\"; Flags: uninsdeletekey
[hr]

Теперь обратите внимание на секцию [Setup]
DefaultDirName={pf}\Name

{pf}\Name - Это есть C:\Program Files\Name\
{app} - Это есть {pf}\Name
Например по умолчанию у вас будет {pf}\Name т.е C:\Program Files\Name\, то {app} передаст этот путь.
Всякий раз когда уже в инсталляторе вы будете выбирать каталог, будь это C:\Game или D:\Game - {app} передаст этот путь.

Смотрите пример:
Секция [Files]:
Source: "D:\Source\*"; DestDir: "{app}"; Flags: ignoreversion recursesubdirs

В секции [Registry] нужно сделать так же:
Root: "HKCU"; Subkey: "Software\Name"; ValueType: string; ValueName: "Path"; ValueData: "{app}"; Flags: uninsdeletekey
[hr]

На будущее:
Если в секции [Files], в DestDir вы решите жестко привязать каталог по каким-то причинам:
Source: "D:\Source\*"; DestDir: "{app}\bin"; Flags: ignoreversion recursesubdirs

То и в секции [Registry] нужно сделать также:
Source: "D:\Source\*"; DestDir: "{app}\bin"; Flags: ignoreversion recursesubdirs createallsubdirs

т.к в конечном итоге выйдет так C:\Program Files\Name\bin или так C:\Game\bin

gosnitsse
23-01-2020, 12:28
Если я правильно понял то, вникайте:
Например игра установилась в:
C:\Program Files\Name\
Исходные уже внесённые данные в реестр будут выглядеть так:
Root: "HKCU"; Subkey: "Software\Name"; ValueType: string; ValueName: "Path"; ValueData: "C:\Program Files\Name\"; Flags: uninsdeletekey »


Пример понятен, но я никогда не сталкивался с ситуацией когда игра так яро реагирует на ключи реестра (наверное из 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

в другом коде в cекции 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


Просто пример можно? вот я установил игру, он создал несколько ключей в реестре:

Удаленные разделы: 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\{110875B 1-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\{8E12B06 4-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\{81B3A9F D-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\{250C554 1-B307-4A6C-8C17-B171E946E02F}: "v2.10|Action=Allow|Active=TRUE|Dir=In|Protocol=17|Profile=Public|App=D:\Games\LORD\Ep1\game.dat|Name =Под знаменем Короля-чародея|"

Просто разделов много и без них не запускается игра и их нужно вписать в реестр, помогите пожалуйста. спасибо

DefaultDirName={pf}\Name - зачем это нужно? я просто без этого сделал

Nordek
23-01-2020, 15:49
мне каждый писать используя {pf}\The Lord? »
он создаёт несколько ключей в реестре допустим 6 мне каждый писать используя {pf}\The Lord? »Не известно какую папку вы планируете сделать по умолчанию для установки.
Предположим вы хотите сделать папкой по умолчанию не C:\Program Files\LOTR, а C:\Games\LOTR - То в DefaultDirName достаточно указать {sd}\Games\LOTR. В реестре, в ярлыках указываете {app}.

У меня есть код »На скорую руку набросал:
[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

Где XXXXXXXXXXXXXXXXXXXX - Ключ игры или что там у вас.

gosnitsse
23-01-2020, 17:11
Спасибо большое

gosnitsse
23-01-2020, 23:51
Здравствуйте, проблема такая

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


это нужные коды для игры

gosnitsse
23-01-2020, 23:53
сейчас будет абсолютно весь код для игры имеется в виду реестр
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

часть 1

gosnitsse
23-01-2020, 23:54
Root: HKLM; SubKey: SOFTWARE\Microsoft\Windows NT\CurrentVersion\VolatileNotifications; ValueType: binary; ValueName: 41C64E6DA3BD4855; ValueData: 01 00 04 80 00 00 00 00 00 00 00 00 00 00 00 00 14 00 00 00 02 00 1c 00 01 00 00 00 00 00 14 00 03 00 00 00 01 01 00 00 00 00 00 05 0b 00 00 00 04 00 00 00; Flags: uninsdeletevalue uninsdeletekeyifempty
Root: HKLM; SubKey: SOFTWARE\Microsoft\Windows NT\CurrentVersion\VolatileNotifications; ValueType: binary; ValueName: 41C64E6DA3BD7055; ValueData: 01 00 04 80 30 00 00 00 00 00 00 00 00 00 00 00 14 00 00 00 02 00 1c 00 01 00 00 00 00 00 14 00 13 00 1f 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 04 00 00 00; Flags: uninsdeletevalue uninsdeletekeyifempty
Root: HKLM; SubKey: SOFTWARE\Microsoft\Windows NT\CurrentVersion\VolatileNotifications; ValueType: binary; ValueName: 41C64E6DA385A855; ValueData: 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; Flags: uninsdeletevalue uninsdeletekeyifempty
Root: HKLM; SubKey: SOFTWARE\Microsoft\Windows NT\CurrentVersion\VolatileNotifications; ValueType: binary; ValueName: 41C64E6DA385B055; ValueData: 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; Flags: uninsdeletevalue uninsdeletekeyifempty
Root: HKLM; SubKey: SOFTWARE\Microsoft\Windows NT\CurrentVersion\VolatileNotifications; ValueType: binary; ValueName: 41C64E6DA385B855; ValueData: 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; Flags: uninsdeletevalue uninsdeletekeyifempty
Root: HKLM; SubKey: SOFTWARE\Microsoft\Windows NT\CurrentVersion\VolatileNotifications; ValueType: binary; ValueName: 41C64E6DA385C055; ValueData: 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; 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: http://transtest.ea.com/Electronic Arts/The Battle for Middle-earth 2/NorthAmerica; 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: http://transtest.ea.com/Electronic Arts/The Battle for Middle-earth 2/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: 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:\torrents\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: HKU; SubKey: S-1-5-21-2945832715-657854022-1696327829-1001\Software\Classes\VirtualStore; Flags: uninsdeletekeyifempty
Root: HKU; SubKey: S-1-5-21-2945832715-657854022-1696327829-1001\Software\Classes\VirtualStore\MACHINE; Flags: uninsdeletekeyifempty
Root: HKU; SubKey: S-1-5-21-2945832715-657854022-1696327829-1001\Software\Classes\VirtualStore\MACHINE\SOFTWARE; Flags: uninsdeletekeyifempty
Root: HKU; SubKey: S-1-5-21-2945832715-657854022-1696327829-1001\Software\Classes\VirtualStore\MACHINE\SOFTWARE\WOW6432Node; Flags: uninsdeletekeyifempty
Root: HKU; SubKey: S-1-5-21-2945832715-657854022-1696327829-1001\Software\Classes\VirtualStore\MACHINE\SOFTWARE\WOW6432Node\Electronic Arts; Flags: uninsdeletekeyifempty
Root: HKU; SubKey: S-1-5-21-2945832715-657854022-1696327829-1001\Software\Classes\VirtualStore\MACHINE\SOFTWARE\WOW6432Node\Electronic Arts\Electronic Arts; Flags: uninsdeletekeyifempty
Root: HKU; SubKey: S-1-5-21-2945832715-657854022-1696327829-1001\Software\Classes\VirtualStore\MACHINE\SOFTWARE\WOW6432Node\Electronic Arts\Electronic Arts\The Lord of the Rings, The Rise of the Witch-king; ValueType: string; ValueName: InstallPath; ValueData: "{app}"; Flags: uninsdeletevalue uninsdeletekeyifempty
Root: HKU; SubKey: S-1-5-21-2945832715-657854022-1696327829-1001\Software\Classes\VirtualStore\MACHINE\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: HKU; SubKey: S-1-5-21-2945832715-657854022-1696327829-1001\Software\Microsoft\Windows\CurrentVersion\UFH; Flags: uninsdeletekeyifempty
Root: HKU; SubKey: S-1-5-21-2945832715-657854022-1696327829-1001_Classes\VirtualStore; Flags: uninsdeletekeyifempty
Root: HKU; SubKey: S-1-5-21-2945832715-657854022-1696327829-1001_Classes\VirtualStore\MACHINE; Flags: uninsdeletekeyifempty
Root: HKU; SubKey: S-1-5-21-2945832715-657854022-1696327829-1001_Classes\VirtualStore\MACHINE\SOFTWARE; Flags: uninsdeletekeyifempty
Root: HKU; SubKey: S-1-5-21-2945832715-657854022-1696327829-1001_Classes\VirtualStore\MACHINE\SOFTWARE\WOW6432Node; Flags: uninsdeletekeyifempty
Root: HKU; SubKey: S-1-5-21-2945832715-657854022-1696327829-1001_Classes\VirtualStore\MACHINE\SOFTWARE\WOW6432Node\Electronic Arts; Flags: uninsdeletekeyifempty
Root: HKU; SubKey: S-1-5-21-2945832715-657854022-1696327829-1001_Classes\VirtualStore\MACHINE\SOFTWARE\WOW6432Node\Electronic Arts\Electronic Arts; Flags: uninsdeletekeyifempty
Root: HKU; SubKey: S-1-5-21-2945832715-657854022-1696327829-1001_Classes\VirtualStore\MACHINE\SOFTWARE\WOW6432Node\Electronic Arts\Electronic Arts\The Lord of the Rings, The Rise of the Witch-king; ValueType: string; ValueName: InstallPath; ValueData: "{app}"; Flags: uninsdeletevalue uninsdeletekeyifempty
Root: HKU; SubKey: S-1-5-21-2945832715-657854022-1696327829-1001_Classes\VirtualStore\MACHINE\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: HKCU; SubKey: Software\Classes\VirtualStore; Flags: uninsdeletekeyifempty
Root: HKCU; SubKey: Software\Classes\VirtualStore\MACHINE; Flags: uninsdeletekeyifempty
Root: HKCU; SubKey: Software\Classes\VirtualStore\MACHINE\SOFTWARE; Flags: uninsdeletekeyifempty
Root: HKCU; SubKey: Software\Classes\VirtualStore\MACHINE\SOFTWARE\WOW6432Node; Flags: uninsdeletekeyifempty
Root: HKCU; SubKey: Software\Classes\VirtualStore\MACHINE\SOFTWARE\WOW6432Node\Electronic Arts; Flags: uninsdeletekeyifempty
Root: HKCU; SubKey: Software\Classes\VirtualStore\MACHINE\SOFTWARE\WOW6432Node\Electronic Arts\Electronic Arts; Flags: uninsdeletekeyifempty

часть 2

gosnitsse
23-01-2020, 23:55
Root: HKCU; SubKey: Software\Classes\VirtualStore\MACHINE\SOFTWARE\WOW6432Node\Electronic Arts\Electronic Arts\The Lord of the Rings, The Rise of the Witch-king; ValueType: string; ValueName: InstallPath; ValueData: "{app}"; Flags: uninsdeletevalue uninsdeletekeyifempty
Root: HKCU; SubKey: Software\Classes\VirtualStore\MACHINE\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: HKCR; SubKey: VirtualStore; Flags: uninsdeletekeyifempty
Root: HKCR; SubKey: VirtualStore\MACHINE; Flags: uninsdeletekeyifempty
Root: HKCR; SubKey: VirtualStore\MACHINE\SOFTWARE; Flags: uninsdeletekeyifempty
Root: HKCR; SubKey: VirtualStore\MACHINE\SOFTWARE\WOW6432Node; Flags: uninsdeletekeyifempty
Root: HKCR; SubKey: VirtualStore\MACHINE\SOFTWARE\WOW6432Node\Electronic Arts; Flags: uninsdeletekeyifempty
Root: HKCR; SubKey: VirtualStore\MACHINE\SOFTWARE\WOW6432Node\Electronic Arts\Electronic Arts; Flags: uninsdeletekeyifempty
Root: HKCR; SubKey: VirtualStore\MACHINE\SOFTWARE\WOW6432Node\Electronic Arts\Electronic Arts\The Lord of the Rings, The Rise of the Witch-king; ValueType: string; ValueName: InstallPath; ValueData: "{app}"; Flags: uninsdeletevalue uninsdeletekeyifempty
Root: HKU; SubKey: S-1-5-21-2945832715-657854022-1696327829-1001_Classes\VirtualStore; Flags: uninsdeletekeyifempty
Root: HKU; SubKey: S-1-5-21-2945832715-657854022-1696327829-1001_Classes\VirtualStore\MACHINE; Flags: uninsdeletekeyifempty
Root: HKU; SubKey: S-1-5-21-2945832715-657854022-1696327829-1001_Classes\VirtualStore\MACHINE\SOFTWARE; Flags: uninsdeletekeyifempty
Root: HKU; SubKey: S-1-5-21-2945832715-657854022-1696327829-1001_Classes\VirtualStore\MACHINE\SOFTWARE\WOW6432Node; Flags: uninsdeletekeyifempty
Root: HKU; SubKey: S-1-5-21-2945832715-657854022-1696327829-1001_Classes\VirtualStore\MACHINE\SOFTWARE\WOW6432Node\Electronic Arts; Flags: uninsdeletekeyifempty
Root: HKU; SubKey: S-1-5-21-2945832715-657854022-1696327829-1001_Classes\VirtualStore\MACHINE\SOFTWARE\WOW6432Node\Electronic Arts\Electronic Arts; Flags: uninsdeletekeyifempty
Root: HKU; SubKey: S-1-5-21-2945832715-657854022-1696327829-1001_Classes\VirtualStore\MACHINE\SOFTWARE\WOW6432Node\Electronic Arts\Electronic Arts\The Lord of the Rings, The Rise of the Witch-king; ValueType: string; ValueName: InstallPath; ValueData: "{app}"; Flags: uninsdeletevalue uninsdeletekeyifempty
Root: HKU; SubKey: S-1-5-21-2945832715-657854022-1696327829-1001_Classes\VirtualStore\MACHINE\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: HKU; SubKey: S-1-5-21-2945832715-657854022-1696327829-1001\Software\Classes\VirtualStore; Flags: uninsdeletekeyifempty
Root: HKU; SubKey: S-1-5-21-2945832715-657854022-1696327829-1001\Software\Classes\VirtualStore\MACHINE; Flags: uninsdeletekeyifempty
Root: HKU; SubKey: S-1-5-21-2945832715-657854022-1696327829-1001\Software\Classes\VirtualStore\MACHINE\SOFTWARE; Flags: uninsdeletekeyifempty
Root: HKU; SubKey: S-1-5-21-2945832715-657854022-1696327829-1001\Software\Classes\VirtualStore\MACHINE\SOFTWARE\WOW6432Node; Flags: uninsdeletekeyifempty
Root: HKU; SubKey: S-1-5-21-2945832715-657854022-1696327829-1001\Software\Classes\VirtualStore\MACHINE\SOFTWARE\WOW6432Node\Electronic Arts; Flags: uninsdeletekeyifempty
Root: HKU; SubKey: S-1-5-21-2945832715-657854022-1696327829-1001\Software\Classes\VirtualStore\MACHINE\SOFTWARE\WOW6432Node\Electronic Arts\Electronic Arts; Flags: uninsdeletekeyifempty
Root: HKU; SubKey: S-1-5-21-2945832715-657854022-1696327829-1001\Software\Classes\VirtualStore\MACHINE\SOFTWARE\WOW6432Node\Electronic Arts\Electronic Arts\The Lord of the Rings, The Rise of the Witch-king; ValueType: string; ValueName: InstallPath; ValueData: "{app}"; Flags: uninsdeletevalue uninsdeletekeyifempty
Root: HKU; SubKey: S-1-5-21-2945832715-657854022-1696327829-1001\Software\Classes\VirtualStore\MACHINE\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: HKCU; SubKey: Software\Classes\VirtualStore; Flags: uninsdeletekeyifempty
Root: HKCU; SubKey: Software\Classes\VirtualStore\MACHINE; Flags: uninsdeletekeyifempty
Root: HKCU; SubKey: Software\Classes\VirtualStore\MACHINE\SOFTWARE; Flags: uninsdeletekeyifempty
Root: HKCU; SubKey: Software\Classes\VirtualStore\MACHINE\SOFTWARE\WOW6432Node; Flags: uninsdeletekeyifempty
Root: HKCU; SubKey: Software\Classes\VirtualStore\MACHINE\SOFTWARE\WOW6432Node\Electronic Arts; Flags: uninsdeletekeyifempty
Root: HKCU; SubKey: Software\Classes\VirtualStore\MACHINE\SOFTWARE\WOW6432Node\Electronic Arts\Electronic Arts; Flags: uninsdeletekeyifempty
Root: HKCU; SubKey: Software\Classes\VirtualStore\MACHINE\SOFTWARE\WOW6432Node\Electronic Arts\Electronic Arts\The Lord of the Rings, The Rise of the Witch-king; ValueType: string; ValueName: InstallPath; ValueData: "{app}"; Flags: uninsdeletevalue uninsdeletekeyifempty
Root: HKCU; SubKey: Software\Classes\VirtualStore\MACHINE\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: HKCR; SubKey: VirtualStore; Flags: uninsdeletekeyifempty
Root: HKCR; SubKey: VirtualStore\MACHINE; Flags: uninsdeletekeyifempty
Root: HKCR; SubKey: VirtualStore\MACHINE\SOFTWARE; Flags: uninsdeletekeyifempty
Root: HKCR; SubKey: VirtualStore\MACHINE\SOFTWARE\WOW6432Node; Flags: uninsdeletekeyifempty
Root: HKCR; SubKey: VirtualStore\MACHINE\SOFTWARE\WOW6432Node\Electronic Arts; Flags: uninsdeletekeyifempty
Root: HKCR; SubKey: VirtualStore\MACHINE\SOFTWARE\WOW6432Node\Electronic Arts\Electronic Arts; Flags: uninsdeletekeyifempty
Root: HKCR; SubKey: VirtualStore\MACHINE\SOFTWARE\WOW6432Node\Electronic Arts\Electronic Arts\The Lord of the Rings, The Rise of the Witch-king; ValueType: string; ValueName: InstallPath; ValueData: D:\Games\Lord of the Rings - The History of Ages\; Flags: uninsdeletevalue uninsdeletekeyifempty

часть 3

Nordek
24-01-2020, 02:44
Всё что идёт:
Root: HKLM; SubKey: SOFTWARE\WOW6432Node\Microsoft\Windows\CurrentVersion\Uninstall\...
не нужно - Инсталлятор сам создаст.

Это также не нужно:
Root: HKLM; SubKey: SOFTWARE\Microsoft\Windows NT\CurrentVersion\VolatileNotifications\...
Root: HKU; SubKey: S-1-5-21-2945832715-657854022-1696327829-1001\...
Root: HKU; SubKey: S-1-5-21-2945832715-657854022-1696327829-1001_Classes\...


Это не нужно:
HKLM\SYSTEM\ControlSet001\Services\SharedAccess\Parameters\FirewallPolicy\FirewallRules\...
HKLM\SYSTEM\ControlSet002\Services\SharedAccess\Parameters\FirewallPolicy\FirewallRules\...
HKLM\SYSTEM\CurrentControlSet\Services\SharedAccess\Parameters\FirewallPolicy\FirewallRules\...
[hr]

По поводу [Registry] в x86 инсталляторе к x64 ОС:
Всё что идёт такое:
Root: HKLM; SubKey: SOFTWARE\Electronic Arts


делаете такое:
Root: HKLM64; SubKey: SOFTWARE\Electronic Arts


а всё что идёт такое:
Root: HKLM; SubKey: SOFTWARE\WOW6432Node\Electronic Arts


делаете такое:
Root: HKLM; SubKey: SOFTWARE\Electronic Arts

gosnitsse
24-01-2020, 09:30
Сейчас попробую, я убрал все ветви которые вы мне сказали и оставил ветки где прописан путь к экзешникам
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\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\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: http://transtest.ea.com/Electronic Arts/The Battle for Middle-earth 2/NorthAmerica; 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: http://transtest.ea.com/Electronic Arts/The Battle for Middle-earth 2/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: 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

её тоже оставил.


Вы мне сказали что 32 инсталяторы к 64 битным системам обращаются иначе

где стоит HKLM нужно сделать HKLM64 и где присутствует WOW6432Node убрать его и оставить SOFTWARE\Electronic Arts

если я правильно понял, то везде поменять на HKLM64 и где есть WOW6432Node просто стереть его, сейчас попробую и что если идёт и HKLM и WOW6432Node то убираем только WOW6432Node, а HKLM не меняем.


Можно уточнить?

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\WOW6432Node\Electronic Arts......
тут получится просто
не Root: HKLM64; SubKey: SOFTWARE\Electronic Arts......
а
Root: HKLM; SubKey: SOFTWARE\Electronic Arts......
верно?

и ещё... у меня нет таких кодов Root: HKLM; SubKey: SOFTWARE\Electronic Arts чтобы менять у них на HKLM64 я так понял это на будущее

Я сделал как было сказано, но вылезает ошибка о не хватке dll

Nordek
24-01-2020, 10:04
Вы мне сказали что 32 инсталяторы к 64 битным системам обращаются иначе »
В ОС x64:
HKEY_LOCAL_MACHINE\SOFTWARE\ - Для x64 параметров
HKEY_LOCAL_MACHINE\SOFTWARE\WOW6432Node - Для x32 параметров
Сведения о реестре Windows для опытных пользователей (https://support.microsoft.com/ru-ru/help/256986)

Значения корневых ключей с суффиксом 32 (например, HKLM32) приводятся к 32-разрядному представлению реестра; значения корневых ключей с суффиксом 64 (например, HKLM64) приводятся к 64-разрядному представлению реестра.

Значения корневых ключей с суффиксом 64 могут использоваться только в 64-разрядном Windows, иначе произойдет ошибка. На инсталляторе, поддерживающем и 32-разрядные и 64-разрядные архитектуры, можно избежать ошибки, добавляя параметр Check: IsWin64, который заставит тихо пропустить запись, работая при этом на 32-разрядном Windows.

Значения корневых ключей без суффиксов (например, HKLM) эквивалентны значений корневых ключей с суффиксом 32 (например, HKLM32), если инсталлятор не работает в 64-разрядном режиме установки (https://www.jrsoftware.org/ishelp/topic_32vs64bitinstalls.htm), иначе они эквивалентны значений корневых ключей с суффиксом 64 (например, HKLM64).

gosnitsse
24-01-2020, 10:32
Nordek,

Root: HKLM64; 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: HKLM64; SubKey: SOFTWARE\Microsoft\Windows\CurrentVersion\App Paths\lotrbfme2.exe; ValueType: dword; ValueName: Restart; ValueData: $00000000; Flags: uninsdeletevalue uninsdeletekeyifempty
Root: HKLM64; SubKey: SOFTWARE\Microsoft\Windows\CurrentVersion\App Paths\lotrbfme2.exe; ValueType: dword; ValueName: DirectX Installed; ValueData: $00000000; Flags: uninsdeletevalue uninsdeletekeyifempty
Root: HKLM64; SubKey: SOFTWARE\Microsoft\Windows\CurrentVersion\App Paths\lotrbfme2.exe; ValueType: dword; ValueName: Installed; ValueData: $00000001; Flags: uninsdeletevalue uninsdeletekeyifempty
Root: HKLM64; SubKey: SOFTWARE\Microsoft\Windows\CurrentVersion\App Paths\lotrbfme2.exe; ValueType: string; ValueData: "{app}\lotrbfme2.exe"; Flags: uninsdeletevalue uninsdeletekeyifempty
Root: HKLM64; SubKey: SOFTWARE\Microsoft\Windows\CurrentVersion\App Paths\lotrbfme2.exe; ValueType: string; ValueName: Path; ValueData: "{app}"; Flags: uninsdeletevalue uninsdeletekeyifempty
Root: HKLM64; 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: HKLM64; SubKey: SOFTWARE\Microsoft\Windows\CurrentVersion\App Paths\lotrbfme2ep1.exe; ValueType: dword; ValueName: Restart; ValueData: $00000000; Flags: uninsdeletevalue uninsdeletekeyifempty
Root: HKLM64; SubKey: SOFTWARE\Microsoft\Windows\CurrentVersion\App Paths\lotrbfme2ep1.exe; ValueType: dword; ValueName: DirectX Installed; ValueData: $00000000; Flags: uninsdeletevalue uninsdeletekeyifempty
Root: HKLM64; SubKey: SOFTWARE\Microsoft\Windows\CurrentVersion\App Paths\lotrbfme2ep1.exe; ValueType: dword; ValueName: Installed; ValueData: $00000001; Flags: uninsdeletevalue uninsdeletekeyifempty
Root: HKLM64; SubKey: SOFTWARE\Microsoft\Windows\CurrentVersion\App Paths\lotrbfme2ep1.exe; ValueType: string; ValueData: "{app}\Ep1\lotrbfme2ep1.exe"; Flags: uninsdeletevalue uninsdeletekeyifempty
Root: HKLM64; SubKey: SOFTWARE\Microsoft\Windows\CurrentVersion\App Paths\lotrbfme2ep1.exe; ValueType: string; ValueName: Path; ValueData: "{app}\Ep1"; Flags: uninsdeletevalue uninsdeletekeyifempty

Root: HKLM64; SubKey: SOFTWARE\Electronic Arts; Flags: uninsdeletekeyifempty
Root: HKLM64; SubKey: SOFTWARE\Electronic Arts\Electronic Arts; Flags: uninsdeletekeyifempty
Root: HKLM64; SubKey: SOFTWARE\Electronic Arts\Electronic Arts\The Battle for Middle-earth II; ValueType: string; ValueName: Language; ValueData: russian; Flags: uninsdeletevalue uninsdeletekeyifempty
Root: HKLM64; SubKey: SOFTWARE\Electronic Arts\Electronic Arts\The Battle for Middle-earth II; ValueType: string; ValueName: InstallPath; ValueData: "{app}"; Flags: uninsdeletevalue uninsdeletekeyifempty
Root: HKLM64; SubKey: SOFTWARE\Electronic Arts\Electronic Arts\The Battle for Middle-earth II; ValueType: dword; ValueName: Version; ValueData: $00010006; Flags: uninsdeletevalue uninsdeletekeyifempty
Root: HKLM64; SubKey: SOFTWARE\Electronic Arts\Electronic Arts\The Battle for Middle-earth II; ValueType: dword; ValueName: MapPackVersion; ValueData: $00010000; Flags: uninsdeletevalue uninsdeletekeyifempty
Root: HKLM64; SubKey: SOFTWARE\Electronic Arts\Electronic Arts\The Battle for Middle-earth II; ValueType: dword; ValueName: UseLocalUserMaps; ValueData: $00000000; Flags: uninsdeletevalue uninsdeletekeyifempty
Root: HKLM64; SubKey: SOFTWARE\Electronic Arts\Electronic Arts\The Battle for Middle-earth II; ValueType: string; ValueName: UserDataLeafName; ValueData: Битва за Средиземье - Мои файлы; Flags: uninsdeletevalue uninsdeletekeyifempty
Root: HKLM64; SubKey: SOFTWARE\Electronic Arts\Electronic Arts\The Battle for Middle-earth II\ergc; ValueType: string; ValueData: J7F79F9MHXQFBFKGHKAW; Flags: uninsdeletevalue uninsdeletekeyifempty
Root: HKLM64; SubKey: SOFTWARE\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: HKLM64; 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: uninsdeletevalue uninsdeletekeyifempty
Root: HKLM64; SubKey: SOFTWARE\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: HKLM64; SubKey: SOFTWARE\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: HKLM64; SubKey: SOFTWARE\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: HKLM64; SubKey: SOFTWARE\Electronic Arts\Electronic Arts\The Lord of the Rings, The Rise of the Witch-king; ValueType: string; ValueName: UserDataLeafName; ValueData: Властелин Колец, Под знаменем Короля-чародея - Мои файлы; Flags: uninsdeletevalue uninsdeletekeyifempty
Root: HKLM64; SubKey: SOFTWARE\Electronic Arts\Electronic Arts\The Lord of the Rings, The Rise of the Witch-king\ergc; ValueType: string; ValueData: SEW6Y8K88UQB3GRZEE9M; Flags: uninsdeletevalue uninsdeletekeyifempty
Root: HKLM64; SubKey: SOFTWARE\Electronic Arts\The Battle for Middle-earth II; ValueType: string; ValueName: DisplayName; ValueData: Битва за Средиземье™ II; Flags: uninsdeletevalue uninsdeletekeyifempty
Root: HKLM64; SubKey: SOFTWARE\Electronic Arts\The Battle for Middle-earth II; ValueType: string; ValueName: Installed From; ValueData: H:\; Flags: uninsdeletevalue uninsdeletekeyifempty
Root: HKLM64; 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: uninsdeletevalue uninsdeletekeyifempty
Root: HKLM64; SubKey: SOFTWARE\Electronic Arts\The Battle for Middle-earth II; ValueType: string; ValueName: CacheSize; ValueData: 5441287168; Flags: uninsdeletevalue uninsdeletekeyifempty
Root: HKLM64; SubKey: SOFTWARE\Electronic Arts\The Battle for Middle-earth II; ValueType: string; ValueName: SwapSize; ValueData: 0; Flags: uninsdeletevalue uninsdeletekeyifempty
Root: HKLM64; SubKey: SOFTWARE\Electronic Arts\The Battle for Middle-earth II; ValueType: string; ValueName: Language; ValueData: Russian; Flags: uninsdeletevalue uninsdeletekeyifempty
Root: HKLM64; SubKey: SOFTWARE\Electronic Arts\The Battle for Middle-earth II; ValueType: string; ValueName: Locale; ValueData: ru; Flags: uninsdeletevalue uninsdeletekeyifempty
Root: HKLM64; SubKey: SOFTWARE\Electronic Arts\The Battle for Middle-earth II; ValueType: string; ValueName: CD Drive; ValueData: H:\; Flags: uninsdeletevalue uninsdeletekeyifempty
Root: HKLM64; SubKey: SOFTWARE\Electronic Arts\The Battle for Middle-earth II; ValueType: string; ValueName: Install Dir; ValueData: C:\PROGRA~1\LORDOF~1\; Flags: uninsdeletevalue uninsdeletekeyifempty
Root: HKLM64; SubKey: SOFTWARE\Electronic Arts\The Battle for Middle-earth II; ValueType: string; ValueName: Product GUID; ValueData: {{2A9F95AB-65A3-432c-8631-B8BC5BF7477A}; Flags: uninsdeletevalue uninsdeletekeyifempty
Root: HKLM64; SubKey: SOFTWARE\Electronic Arts\The Battle for Middle-earth II; ValueType: string; ValueName: Region; ValueData: NorthAmerica; Flags: uninsdeletevalue uninsdeletekeyifempty
Root: HKLM64; SubKey: SOFTWARE\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: HKLM64; SubKey: SOFTWARE\Electronic Arts\The Battle for Middle-earth II; ValueType: string; ValueName: Patch URL; ValueData: https://vk.com/bfme_tood2; Flags: uninsdeletevalue uninsdeletekeyifempty
Root: HKLM64; SubKey: SOFTWARE\Electronic Arts\The Battle for Middle-earth II; ValueType: string; ValueName: Suppression Exe; ValueData: rtsi.exe; Flags: uninsdeletevalue uninsdeletekeyifempty
Root: HKLM64; SubKey: SOFTWARE\Electronic Arts\The Battle for Middle-earth II\1.0; ValueType: dword; ValueName: Language; ValueData: $00000010; Flags: uninsdeletevalue uninsdeletekeyifempty
Root: HKLM64; SubKey: SOFTWARE\Electronic Arts\The Battle for Middle-earth II\1.0; ValueType: string; ValueName: DisplayName; ValueData: Битва за Средиземье™ II; Flags: uninsdeletevalue uninsdeletekeyifempty
Root: HKLM64; SubKey: SOFTWARE\Electronic Arts\The Battle for Middle-earth II\1.0; ValueType: string; ValueName: LanguageName; ValueData: Russian; Flags: uninsdeletevalue uninsdeletekeyifempty
Root: HKLM64; SubKey: SOFTWARE\Electronic Arts\The Lord of the Rings, The Rise of the Witch-king; ValueType: string; ValueName: DisplayName; ValueData: Под знаменем Короля-чародея™; Flags: uninsdeletevalue uninsdeletekeyifempty
Root: HKLM64; SubKey: SOFTWARE\Electronic Arts\The Lord of the Rings, The Rise of the Witch-king; ValueType: string; ValueName: Installed From; ValueData: H:\; Flags: uninsdeletevalue uninsdeletekeyifempty
Root: HKLM64; 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: uninsdeletevalue uninsdeletekeyifempty
Root: HKLM64; SubKey: SOFTWARE\Electronic Arts\The Lord of the Rings, The Rise of the Witch-king; ValueType: string; ValueName: CacheSize; ValueData: 3139187712; Flags: uninsdeletevalue uninsdeletekeyifempty
Root: HKLM64; SubKey: SOFTWARE\Electronic Arts\The Lord of the Rings, The Rise of the Witch-king; ValueType: string; ValueName: SwapSize; ValueData: 0; Flags: uninsdeletevalue uninsdeletekeyifempty
Root: HKLM64; SubKey: SOFTWARE\Electronic Arts\The Lord of the Rings, The Rise of the Witch-king; ValueType: string; ValueName: Language; ValueData: Russian; Flags: uninsdeletevalue uninsdeletekeyifempty
Root: HKLM64; SubKey: SOFTWARE\Electronic Arts\The Lord of the Rings, The Rise of the Witch-king; ValueType: string; ValueName: Locale; ValueData: ru; Flags: uninsdeletevalue uninsdeletekeyifempty
Root: HKLM64; SubKey: SOFTWARE\Electronic Arts\The Lord of the Rings, The Rise of the Witch-king; ValueType: string; ValueName: CD Drive; ValueData: H:\; Flags: uninsdeletevalue uninsdeletekeyifempty
Root: HKLM64; SubKey: SOFTWARE\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: HKLM64; 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: uninsdeletevalue uninsdeletekeyifempty
Root: HKLM64; SubKey: SOFTWARE\Electronic Arts\The Lord of the Rings, The Rise of the Witch-king; ValueType: string; ValueName: Region; ValueData: NorthAmerica; Flags: uninsdeletevalue uninsdeletekeyifempty
Root: HKLM64; SubKey: SOFTWARE\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: HKLM64; SubKey: SOFTWARE\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: HKLM64; SubKey: SOFTWARE\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: HKLM64; SubKey: SOFTWARE\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: HKLM64; SubKey: SOFTWARE\Electronic Arts\The Lord of the Rings, The Rise of the Witch-king\1.0; ValueType: string; ValueName: DisplayName; ValueData: Под знаменем Короля-чародея™; Flags: uninsdeletevalue uninsdeletekeyifempty
Root: HKLM64; SubKey: SOFTWARE\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: HKLM64; 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: HKLM64; SubKey: SOFTWARE\Microsoft\Windows\CurrentVersion\App Paths\lotrbfme2.exe; ValueType: dword; ValueName: Restart; ValueData: $00000000; Flags: uninsdeletevalue uninsdeletekeyifempty
Root: HKLM64; SubKey: SOFTWARE\Microsoft\Windows\CurrentVersion\App Paths\lotrbfme2.exe; ValueType: dword; ValueName: DirectX Installed; ValueData: $00000000; Flags: uninsdeletevalue uninsdeletekeyifempty
Root: HKLM64; SubKey: SOFTWARE\Microsoft\Windows\CurrentVersion\App Paths\lotrbfme2.exe; ValueType: dword; ValueName: Installed; ValueData: $00000001; Flags: uninsdeletevalue uninsdeletekeyifempty
Root: HKLM64; SubKey: SOFTWARE\Microsoft\Windows\CurrentVersion\App Paths\lotrbfme2.exe; ValueType: string; ValueData: "{app}\lotrbfme2.exe"; Flags: uninsdeletevalue uninsdeletekeyifempty
Root: HKLM64; SubKey: SOFTWARE\Microsoft\Windows\CurrentVersion\App Paths\lotrbfme2.exe; ValueType: string; ValueName: Path; ValueData: "{app}"; Flags: uninsdeletevalue uninsdeletekeyifempty
Root: HKLM64; 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: HKLM64; SubKey: SOFTWARE\Microsoft\Windows\CurrentVersion\App Paths\lotrbfme2ep1.exe; ValueType: dword; ValueName: Restart; ValueData: $00000000; Flags: uninsdeletevalue uninsdeletekeyifempty
Root: HKLM64; SubKey: SOFTWARE\Microsoft\Windows\CurrentVersion\App Paths\lotrbfme2ep1.exe; ValueType: dword; ValueName: DirectX Installed; ValueData: $00000000; Flags: uninsdeletevalue uninsdeletekeyifempty
Root: HKLM64; SubKey: SOFTWARE\Microsoft\Windows\CurrentVersion\App Paths\lotrbfme2ep1.exe; ValueType: dword; ValueName: Installed; ValueData: $00000001; Flags: uninsdeletevalue uninsdeletekeyifempty
Root: HKLM64; SubKey: SOFTWARE\Microsoft\Windows\CurrentVersion\App Paths\lotrbfme2ep1.exe; ValueType: string; ValueData: "{app}\Ep1\lotrbfme2ep1.exe"; Flags: uninsdeletevalue uninsdeletekeyifempty
Root: HKLM64; SubKey: SOFTWARE\Microsoft\Windows\CurrentVersion\App Paths\lotrbfme2ep1.exe; ValueType: string; ValueName: Path; ValueData: "{app}\Ep1"; Flags: uninsdeletevalue uninsdeletekeyifempty


Благодаря вам я ну уже почти близок к цели, вот прям чуть-чуть осталось, не охота бросать после стольких проделанных действий, я бы не против помощи в дискорде, мне 20 лет, если для вас есть значение возраста просто теперь игра на чёрном экране и не запускается =) мне уже смешно)))

SEGosnits
#3242


А если само приложение 32bit но мы ставим в реестре 64 так как система, ничего не будет?

gosnitsse
24-01-2020, 12:32
Простите что надоедаю, но жутко хочется сделать именно эту игру(((( это безвыходная ситуация, я не знаю уже что и как добавлять чтобы заработало, ужас.

El Sanchez
24-01-2020, 13:10
я не знаю уже что и как добавлять чтобы заработало, ужас. »
gosnitsse, просто Copy/Paste

[Registry]
Root: HKLM; SubKey: "SOFTWARE\Electronic Arts"; Flags: uninsdeletekeyifempty
Root: HKLM; SubKey: "SOFTWARE\Electronic Arts\Electronic Arts"; Flags: uninsdeletekeyifempty
Root: HKLM; SubKey: "SOFTWARE\Electronic Arts\Electronic Arts\The Battle for Middle-earth II"; Flags: uninsdeletekey
Root: HKLM; SubKey: "SOFTWARE\Electronic Arts\Electronic Arts\The Battle for Middle-earth II"; ValueType: string; ValueName: Language; ValueData: russian
Root: HKLM; SubKey: "SOFTWARE\Electronic Arts\Electronic Arts\The Battle for Middle-earth II"; ValueType: string; ValueName: InstallPath; ValueData: {app}
Root: HKLM; SubKey: "SOFTWARE\Electronic Arts\Electronic Arts\The Battle for Middle-earth II"; ValueType: dword; ValueName: Version; ValueData: $00010006
Root: HKLM; SubKey: "SOFTWARE\Electronic Arts\Electronic Arts\The Battle for Middle-earth II"; ValueType: dword; ValueName: MapPackVersion; ValueData: $00010000
Root: HKLM; SubKey: "SOFTWARE\Electronic Arts\Electronic Arts\The Battle for Middle-earth II"; ValueType: dword; ValueName: UseLocalUserMaps; ValueData: $00000000
Root: HKLM; SubKey: "SOFTWARE\Electronic Arts\Electronic Arts\The Battle for Middle-earth II"; ValueType: string; ValueName: UserDataLeafName; ValueData: "Битва за Средиземье - Мои файлы"
Root: HKLM; SubKey: "SOFTWARE\Electronic Arts\Electronic Arts\The Battle for Middle-earth II\ergc"; ValueType: string; ValueData: J7F79F9MHXQFBFKGHKAW

Root: HKLM; SubKey: "SOFTWARE\Electronic Arts\Electronic Arts\The Lord of the Rings, The Rise of the Witch-king"; 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
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\
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
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
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
Root: HKLM; SubKey: "SOFTWARE\Electronic Arts\Electronic Arts\The Lord of the Rings, The Rise of the Witch-king"; ValueType: string; ValueName: UserDataLeafName; ValueData: "Властелин Колец, Под знаменем Короля-чародея - Мои файлы"
Root: HKLM; SubKey: "SOFTWARE\Electronic Arts\Electronic Arts\The Lord of the Rings, The Rise of the Witch-king\ergc"; ValueType: string; ValueData: SEW6Y8K88UQB3GRZEE9M

Root: HKLM; SubKey: "SOFTWARE\Electronic Arts\The Battle for Middle-earth II"; Flags: uninsdeletekey
Root: HKLM; SubKey: "SOFTWARE\Electronic Arts\The Battle for Middle-earth II"; ValueType: string; ValueName: DisplayName; ValueData: "Битва за Средиземье™ II"
Root: HKLM; SubKey: "SOFTWARE\Electronic Arts\The Battle for Middle-earth II"; ValueType: string; ValueName: "Installed From"; ValueData: H:\
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"
Root: HKLM; SubKey: "SOFTWARE\Electronic Arts\The Battle for Middle-earth II"; ValueType: string; ValueName: CacheSize; ValueData: 5441287168
Root: HKLM; SubKey: "SOFTWARE\Electronic Arts\The Battle for Middle-earth II"; ValueType: string; ValueName: SwapSize; ValueData: 0
Root: HKLM; SubKey: "SOFTWARE\Electronic Arts\The Battle for Middle-earth II"; ValueType: string; ValueName: Language; ValueData: Russian
Root: HKLM; SubKey: "SOFTWARE\Electronic Arts\The Battle for Middle-earth II"; ValueType: string; ValueName: Locale; ValueData: ru
Root: HKLM; SubKey: "SOFTWARE\Electronic Arts\The Battle for Middle-earth II"; ValueType: string; ValueName: "CD Drive"; ValueData: H:\
Root: HKLM; SubKey: "SOFTWARE\Electronic Arts\The Battle for Middle-earth II"; ValueType: string; ValueName: "Install Dir"; ValueData: {app}\
Root: HKLM; SubKey: "SOFTWARE\Electronic Arts\The Battle for Middle-earth II"; ValueType: string; ValueName: "Product GUID"; ValueData: {{2A9F95AB-65A3-432c-8631-B8BC5BF7477A}
Root: HKLM; SubKey: "SOFTWARE\Electronic Arts\The Battle for Middle-earth II"; ValueType: string; ValueName: Region; ValueData: NorthAmerica
Root: HKLM; SubKey: "SOFTWARE\Electronic Arts\The Battle for Middle-earth II"; ValueType: string; ValueName: Folder; ValueData: "{commonprograms}\Electronic Arts\Битва за Средиземье™ II\"
Root: HKLM; SubKey: "SOFTWARE\Electronic Arts\The Battle for Middle-earth II"; ValueType: string; ValueName: "Patch URL"; ValueData: https://vk.com/bfme_tood2
Root: HKLM; SubKey: "SOFTWARE\Electronic Arts\The Battle for Middle-earth II"; ValueType: string; ValueName: "Suppression Exe"; ValueData: rtsi.exe
Root: HKLM; SubKey: "SOFTWARE\Electronic Arts\The Battle for Middle-earth II\1.0"; ValueType: dword; ValueName: Language; ValueData: $00000010
Root: HKLM; SubKey: "SOFTWARE\Electronic Arts\The Battle for Middle-earth II\1.0"; ValueType: string; ValueName: DisplayName; ValueData: "Битва за Средиземье™ II"
Root: HKLM; SubKey: "SOFTWARE\Electronic Arts\The Battle for Middle-earth II\1.0"; ValueType: string; ValueName: LanguageName; ValueData: Russian

Root: HKLM; SubKey: "SOFTWARE\Electronic Arts\The Lord of the Rings, The Rise of the Witch-king"; Flags: uninsdeletekey
Root: HKLM; SubKey: "SOFTWARE\Electronic Arts\The Lord of the Rings, The Rise of the Witch-king"; ValueType: string; ValueName: DisplayName; ValueData: "Под знаменем Короля-чародея™"
Root: HKLM; SubKey: "SOFTWARE\Electronic Arts\The Lord of the Rings, The Rise of the Witch-king"; ValueType: string; ValueName: "Installed From"; ValueData: H:\
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"
Root: HKLM; SubKey: "SOFTWARE\Electronic Arts\The Lord of the Rings, The Rise of the Witch-king"; ValueType: string; ValueName: CacheSize; ValueData: 3139187712
Root: HKLM; SubKey: "SOFTWARE\Electronic Arts\The Lord of the Rings, The Rise of the Witch-king"; ValueType: string; ValueName: SwapSize; ValueData: 0
Root: HKLM; SubKey: "SOFTWARE\Electronic Arts\The Lord of the Rings, The Rise of the Witch-king"; ValueType: string; ValueName: Language; ValueData: Russian
Root: HKLM; SubKey: "SOFTWARE\Electronic Arts\The Lord of the Rings, The Rise of the Witch-king"; ValueType: string; ValueName: Locale; ValueData: ru
Root: HKLM; SubKey: "SOFTWARE\Electronic Arts\The Lord of the Rings, The Rise of the Witch-king"; ValueType: string; ValueName: "CD Drive"; ValueData: H:\
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\
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}
Root: HKLM; SubKey: "SOFTWARE\Electronic Arts\The Lord of the Rings, The Rise of the Witch-king"; ValueType: string; ValueName: Region; ValueData: NorthAmerica
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\Под знаменем Короля-чародея™\"
Root: HKLM; SubKey: "SOFTWARE\Electronic Arts\The Lord of the Rings, The Rise of the Witch-king"; ValueType: string; ValueName: "Patch URL"; ValueData: https://vk.com/bfme_tood2
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
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
Root: HKLM; SubKey: "SOFTWARE\Electronic Arts\The Lord of the Rings, The Rise of the Witch-king\1.0"; ValueType: string; ValueName: DisplayName; ValueData: "Под знаменем Короля-чародея™"
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

Root: HKLM; SubKey: "SOFTWARE\Microsoft\Windows\CurrentVersion\App Paths\lotrbfme2.exe"; Flags: uninsdeletekey
Root: HKLM; SubKey: "SOFTWARE\Microsoft\Windows\CurrentVersion\App Paths\lotrbfme2.exe"; ValueType: string; ValueData: {app}\lotrbfme2.exe
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"
Root: HKLM; SubKey: "SOFTWARE\Microsoft\Windows\CurrentVersion\App Paths\lotrbfme2.exe"; ValueType: dword; ValueName: Restart; ValueData: $00000000
Root: HKLM; SubKey: "SOFTWARE\Microsoft\Windows\CurrentVersion\App Paths\lotrbfme2.exe"; ValueType: dword; ValueName: "DirectX Installed"; ValueData: $00000000
Root: HKLM; SubKey: "SOFTWARE\Microsoft\Windows\CurrentVersion\App Paths\lotrbfme2.exe"; ValueType: dword; ValueName: Installed; ValueData: $00000001
Root: HKLM; SubKey: "SOFTWARE\Microsoft\Windows\CurrentVersion\App Paths\lotrbfme2.exe"; ValueType: string; ValueName: Path; ValueData: {app}

Root: HKLM; SubKey: "SOFTWARE\Microsoft\Windows\CurrentVersion\App Paths\lotrbfme2ep1.exe"; Flags: uninsdeletekey
Root: HKLM; SubKey: "SOFTWARE\Microsoft\Windows\CurrentVersion\App Paths\lotrbfme2ep1.exe"; ValueType: string; ValueData: {app}\Ep1\lotrbfme2ep1.exe
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"
Root: HKLM; SubKey: "SOFTWARE\Microsoft\Windows\CurrentVersion\App Paths\lotrbfme2ep1.exe"; ValueType: dword; ValueName: Restart; ValueData: $00000000
Root: HKLM; SubKey: "SOFTWARE\Microsoft\Windows\CurrentVersion\App Paths\lotrbfme2ep1.exe"; ValueType: dword; ValueName: "DirectX Installed"; ValueData: $00000000
Root: HKLM; SubKey: "SOFTWARE\Microsoft\Windows\CurrentVersion\App Paths\lotrbfme2ep1.exe"; ValueType: dword; ValueName: Installed; ValueData: $00000001
Root: HKLM; SubKey: "SOFTWARE\Microsoft\Windows\CurrentVersion\App Paths\lotrbfme2ep1.exe"; ValueType: string; ValueName: Path; ValueData: {app}\Ep1

Nordek
24-01-2020, 13:24
просто теперь игра на чёрном экране и не запускается »Вы хотя бы черновую копию подраздела реестра игры сделали?

Заинтересовало что вы там слепить пытаетесь.
На сколько я понял вы хотите 2 игры в одну собрать.

Скачал одну, поработал 5, от силы 10 минут, итог:
[Setup]
AppId=LotR_TBFMEII
AppName=Властелин Колец(tm) - Битва за Средиземье™ II
AppVersion=1.5
AppVerName=The Lord of the Rings: The Battle for Middle-earth II
AppPublisher=My Company, Inc.
AppPublisherURL=http://www.example.com/
AppSupportURL=http://www.example.com/
AppUpdatesURL=http://www.example.com/
DefaultDirName={pf}\LotR_Battle_for_ME_II
DefaultGroupName=LotR - The Battle for Middle-earth II
OutputDir=.
OutputBaseFilename=setup
Compression=lzma
SolidCompression=yes

[Languages]
Name: "english"; MessagesFile: "compiler:Default.isl"

[Tasks]
Name: "desktopicon"; Description: "{cm:CreateDesktopIcon}"; GroupDescription: "{cm:AdditionalIcons}"; Flags: unchecked

[Files]
Source: "LotR\Battle_for_ME_II\*"; DestDir: "{app}"; Flags: ignoreversion recursesubdirs createallsubdirs

[Icons]
Name: "{group}\Властелин Колец™ - Битва за Средиземье™ II"; Filename: "{app}\lotrbfme2.exe"
Name: "{group}\{cm:UninstallProgram,Властелин Колец™ - Битва за Средиземье™ II}"; Filename: "{uninstallexe}"
Name: "{commondesktop}\Властелин Колец™ - Битва за Средиземье™ II"; Filename: "{app}\lotrbfme2.exe"; Tasks: desktopicon

[Run]
Filename: "{app}\lotrbfme2.exe"; Description: "{cm:LaunchProgram,Властелин Колец(tm) - Битва за Средиземье(tm) II}"; Flags: nowait postinstall skipifsilent

[Registry]
;
Root: "HKLM"; SubKey: SOFTWARE\Electronic Arts; Flags: uninsdeletekeyifempty
Root: "HKLM"; SubKey: SOFTWARE\Electronic Arts\Electronic Arts; Flags: uninsdeletekeyifempty
;
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}"; Flags: uninsdeletekey
Root: "HKLM"; Subkey: "SOFTWARE\Electronic Arts\Electronic Arts\The Battle for Middle-earth II"; ValueType: dword; ValueName: "Version"; ValueData: "$00010006"; Flags: uninsdeletekey
Root: "HKLM"; Subkey: "SOFTWARE\Electronic Arts\Electronic Arts\The Battle for Middle-earth II"; ValueType: dword; ValueName: "MapPackVersion"; ValueData: "$00010000"; 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

; Ключ (Правилами форума запрещено выкладывать, заменил на XXXXXXXXXXXXXXXXXXXX. Используйте свой.)
Root: "HKLM"; Subkey: "SOFTWARE\Electronic Arts\Electronic Arts\The Battle for Middle-earth II\ergc"; ValueType: string; 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: "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

gosnitsse
24-01-2020, 14:48
хех, господи, да, вы правы. Я хочу в игру которую вы скачали, установить мод https://drive.google.com/file/d/1c91cQ9-C8up6Oiis7E3wSVjt4rrKXCLx/view.


C:\Users\Gosni\AppData\Roaming\Властелин Колец, Под знаменем Короля-чародея - Мои файлы\Options.ini -без этого игра работать не будет если его удалить, я коде я указал чтобы он его копировал вместе с папкой

Если по верх игры скачать и поставить https://drive.google.com/file/d/1c91cQ9-C8up6Oiis7E3wSVjt4rrKXCLx/view. то игра работать будет (СО ВСЕМИ ТЕКСТУРКАМИ (ЕСЛИ ЗАЙТИ В СРАЖЕНИЕ)), но если потом создать репак этой же игры с модом, а мод - это просто файлы, то увы в сражении и даже при в ходе в игру будет розовый экран который подтверждает что текстурок нет, а в сражении так вообще половины игры не будет, разрешите я позже запишу свои действия на видео, загружу в вк и там вы уже всё увидите. Сейчас я всё равно планировал переустановку системы делать. ))))




© OSzone.net 2001-2012