msi hangs
Opened this issue · 2 comments
I tested this:
New-Installer -ProductName "msiNR2" -UpgradeCode '1a73a1be-50e6-4e92-af03-586f4a9d9e82' -Content {
New-InstallerDirectory -PredefinedDirectory "AppDataFolder" -Content {
New-InstallerDirectory -DirectoryName "Testfolder-msiNR2" -Content {
New-InstallerFile -Source c:\1.txt
}
}
} -OutputDirectory c:\Windows\Temp
msi is created
But this new little 36kb msi hangs:
Windows 10, 21H2
PSVersion 5.1.19041.1682
You may want to turn on msi logging to see what's up
msiexec /i "C:\my stuff\package.msi" /l*v "d:\place for logs\package.log"
Here is my log (it turns out, that SRSetRestorePoint API failed, but installation worked):
MSI (s) (98:20) [17:27:55:407]: Machine policy value 'Debug' is 0
MSI (s) (98:20) [17:27:55:407]: ******* RunEngine:
******* Product: c:\Windows\Temp\msiNR2.1.0.x86.msi
******* Action: INSTALL
******* CommandLine: **********
MSI (s) (98:20) [17:27:55:409]: Machine policy value 'DisableUserInstalls' is 0
MSI (s) (98:20) [17:27:55:555]: Note: 1: 2203 2: C:\WINDOWS\Installer\inprogressinstallinfo.ipi 3: -2147287038
MSI (s) (98:20) [17:27:55:557]: Machine policy value 'LimitSystemRestoreCheckpointing' is 0
MSI (s) (98:20) [17:27:55:557]: Note: 1: 1715 2: msiNR2
MSI (s) (98:20) [17:27:55:557]: Note: 1: 2205 2: 3: Error
MSI (s) (98:20) [17:27:55:557]: Note: 1: 2228 2: 3: Error 4: SELECT Message
FROM Error
WHERE Error
= 1715
MSI (s) (98:20) [17:27:55:557]: Calling SRSetRestorePoint API. dwRestorePtType: 0, dwEventType: 102, llSequenceNumber: 0, szDescription: "Installed msiNR2".
MSI (s) (98:20) [17:29:42:813]: The call to SRSetRestorePoint API failed. Returned status: -2147212538. GetLastError() returned: -2147212538
MSI (s) (98:20) [17:29:42:826]: File will have security applied from OpCode.
Thank you very much. On another computer the msi worked in 5 seconds. Thanks you so much for this great Module!