Skip to content

Epic Games Store

erri120 edited this page Jan 17, 2023 · 5 revisions

The Epic Games Store uses Manifest files to store information. The default path to the directory containing the manifests is C:\Program Data\Epic\EpicGamesLauncher\Data\Manifests. If this folder doesn't exist, you can also open the registry key HKEY_CURRENT_USER\Software\Epic Games\EOS and read the value ModSdkMetadataDir.

The manifest files have the .item extension and contain a single JSON object:

{
	"FormatVersion": 0,
	"bIsIncompleteInstall": true,
	"AppVersionString": "++UT+Release-Next-CL-3525360-Windows",
	"LaunchCommand": "UnrealTournament",
	"LaunchExecutable": "Engine/Binaries/Win64/UE4-Win64-Shipping.exe",
	"ManifestLocation": "M:\\Games\\EGS\\UnrealTournament/.egstore",
	"bIsApplication": true,
	"bIsExecutable": true,
	"bIsManaged": false,
	"bNeedsValidation": false,
	"bRequiresAuth": true,
	"bCanRunOffline": true,
	"bAllowMultipleInstances": false,
	"AppName": "UnrealTournamentDev",
	"BaseURLs": [
		"http://download.epicgames.com/Builds/UnrealTournament/CloudDir",
		"http://download2.epicgames.com/Builds/UnrealTournament/CloudDir",
		"http://download3.epicgames.com/Builds/UnrealTournament/CloudDir",
		"http://download4.epicgames.com/Builds/UnrealTournament/CloudDir",
		"http://epicgames-download1.akamaized.net/Builds/UnrealTournament/CloudDir"
	],
	"BuildLabel": "Live",
	"CatalogItemId": "b8538c739273426aa35a98220e258d55",
	"CatalogNamespace": "ut",
	"AppCategories": [
		"games",
		"applications"
	],
	"ChunkDbs": [],
	"CompatibleApps": [],
	"DisplayName": "Unreal Tournament",
	"FullAppName": "UnrealTournamentDev: Live",
	"InstallationGuid": "8AAFB83044E76B812D3D8C9652E8C13C",
	"InstallLocation": "M:\\Games\\EGS\\UnrealTournament",
	"InstallSessionId": "FA1898EC4EB96075991EA080DFB949A3",
	"InstallTags": [],
	"InstallComponents": [],
	"HostInstallationGuid": "00000000000000000000000000000000",
	"PrereqIds": [],
	"StagingLocation": "M:\\Games\\EGS\\UnrealTournament/.egstore/bps",
	"TechnicalType": "games,applications",
	"VaultThumbnailUrl": "",
	"VaultTitleText": "",
	"InstallSize": 20771500286,
	"MainWindowProcessName": "",
	"ProcessNames": [],
	"MainGameAppName": "UnrealTournamentDev",
	"MandatoryAppFolderName": "UnrealTournament",
	"OwnershipToken": "false"
}

Other Implementations

Clone this wiki locally