2017-06-22 100 views
0

我已经通过下面的链接http://www.advancedinstaller.com/user-guide/new-reg.html创建使用命令行提前安装程序创建注册表使用命令行

$InstallerName = "Installer1.2.10" 
$registryParams ="/edit $aippath /NewReg -RegKey HKLM\Software\MYApplication\Database\*" 
$SourceDir = "D:\AdvanceInstaller" 
$AdvanceInstallerPath = Get-ChildItem "HKLM:\SOFTWARE\Wow6432Node\Microsoft\Windows\CurrentVersion\Uninstall" | ForEach-Object {Get-ItemProperty $_.PSPath} | Where-Object {$_.DisplayName -match "Advanced Installer"} 
$InstallerPath= "$($AdvanceInstallerPath.InstallLocation)bin\x86\AdvancedInstaller.com" 
$aippath = "$SourceDir\$($InstallerName).aip" 
$ProductName = "MYApplication" 

$DeleteReg = "/edit $aippath /DelReg -RegKey HKLM\SOFTWARE\WOW6432Node\MyApplication" 
$ProductParams = "/edit $aippath /SetProperty ProductName=$ProductName" 
$repository = "/edit $aippath /SetAppdir -buildname DefaultBuild -path C:\MyApplication" 
$newParameters = "/newproject $aippath -type enterprise" 
$buildParams = "/build $aippath" 

Start-Process -FilePath $InstallerPath -ArgumentList $newParameters -Wait -WindowStyle Hidden -ErrorAction Stop 
Start-Process -FilePath $InstallerPath -ArgumentList $ProductParams -Wait -WindowStyle Hidden -ErrorAction Stop 
Start-Process -FilePath $InstallerPath -ArgumentList $repository -Wait -WindowStyle Hidden -ErrorAction Stop 
$pinfo = New-Object System.Diagnostics.ProcessStartInfo 
$pinfo.FileName = "$InstallerPath" 
$pinfo.RedirectStandardError = $true 
$pinfo.RedirectStandardOutput = $true 
$pinfo.UseShellExecute = $false 
$pinfo.Arguments = "$DeleteReg" 

$p = New-Object System.Diagnostics.Process 
$p.StartInfo = $pinfo 
$p.Start() | Out-Null 
$p.WaitForExit() 

$stdout = $p.StandardOutput.ReadToEnd() 
$stderr = $p.StandardError.ReadToEnd() 
Write-Host $stdout 
Write-Host $stderr 
Start-Process -FilePath $InstallerPath -ArgumentList $buildParams -Wait -WindowStyle Hidden -ErrorAction Stop 
Start-Process -FilePath $InstallerPath -ArgumentList $registryParams -Wait -WindowStyle Hidden -ErrorAction Stop 

登记但我无法看到安装后创建了所需的注册表。我需要的是按下面的安装软件

[HKEY_LOCAL_MACHINE \ SOFTWARE \ WOW6432Node \ MySoftware] “路径” 后= “C:\ MySoftware”

[HKEY_LOCAL_MACHINE \ SOFTWARE \ WOW6432Node \ MySoftware \数据库] “的ConnectionString” =“服务器=;初始数据库高手”

而且我不想

安装默认的注册表是越来越创建为 My Company\Projectmsi

回答

0

经过很多跟踪和错误,这里是最终代码

$InstallerName = "Installer1.2.10" 
$SourceDir = "D:\AdvanceInstaller" 
$AdvanceInstallerPath = Get-ChildItem "HKLM:\SOFTWARE\Wow6432Node\Microsoft\Windows\CurrentVersion\Uninstall" | ForEach-Object {Get-ItemProperty $_.PSPath} | Where-Object {$_.DisplayName -match "Advanced Installer"} 
$InstallerPath= "$($AdvanceInstallerPath.InstallLocation)bin\x86\AdvancedInstaller.com" 
$aippath = "$SourceDir\$($InstallerName).aip" 
$ProductName = "MyApplication" 

$DeleteReg = "/edit $aippath /DelReg -regkey HKUD\Software\[Manufacturer]" 
Start-Process -FilePath $InstallerPath -ArgumentList $DeleteReg -Wait -WindowStyle Hidden -ErrorAction Stop 
$registryParams = "/edit $aippath /NewReg -RegKey HKUD\Software\MyApplication -data ''" 
$registryParams1 = "/edit $aippath /NewReg -RegValue HKUD\Software\MyApplication\path -data C:\MyApplication" 
Start-Process -FilePath $InstallerPath -ArgumentList $registryParams -Wait -WindowStyle Hidden -ErrorAction Stop 
Start-Process -FilePath $InstallerPath -ArgumentList $registryParams1 -Wait -WindowStyle Hidden -ErrorAction Stop 
相关问题