自动运行工具的问题在于它没有正确“安装”游戏,这意味着不会进行注册表编辑或更改。
使用以下PowerShell命令,你可以创建所需的注册表项和数据。
将$installDir变量更改为你的实际游戏文件夹,例如:$installDir = "D: SteamLibrary steamapps common divinity2_dev_cut"
$installDir = "C: Steamapps Path Divinity II - DKS"
$regPath = "HKCU: Software Larian Studios Divinity II - DKS"
New-Item -Path $regPath -Force | Out-Null
New-ItemProperty `
-Path $regPath `
-Name "target_folder" `
-Value $installDir `
-Force | Out-Null
完成所有操作后,自动运行安装程序上应该会出现两个新选项:
1. 游玩神界2 - 普通模式
2.游玩《神界2:开发者剪辑版》-开发者模式