Application deployment logs?
Hello,
Do you know if there are switches or something that can be turned on to debug the GP deployment of an msi? I ask because I have an msi that works perfectly when installed manually but sits there endlessly on the installing screen when deployed via GP. I've left if upwards of 30 mins before giving up and hard rebooting the computer. It should take less than a min.
The event viewer doesn't give any clues. This app has been created in house btw but our developer is not sure what might be causing it.
Hope someone can help
Cheers,
Cellardoor
Do you know if there are switches or something that can be turned on to debug the GP deployment of an msi? I ask because I have an msi that works perfectly when installed manually but sits there endlessly on the installing screen when deployed via GP. I've left if upwards of 30 mins before giving up and hard rebooting the computer. It should take less than a min.
The event viewer doesn't give any clues. This app has been created in house btw but our developer is not sure what might be causing it.
Hope someone can help
Cheers,
Cellardoor
0 Comments
[ + ] Show comments
Answers (2)
Please log in to answer
Posted by:
anonymous_9363
15 years ago
- Create an ASCII (as opposed to Unicode) .REGwith this content
- Paste in:
As you can see, it's just a policy, so you could apply it from the GP editor, just like any other.
- Merge the .REG on the target workstation
Note that, after merging, you will get logs for ALL MSI activity, including advertisements
- Logs are written to %SystemRoot%\TEMP, prefixed 'MSI', named with random alphanumeric characters, and with a .LOG extension.
- I use FIND to locate the log file pertaining to a particular deployment, looking for unique text. The MSI's ProductCode is the obvious candidate.
- Remember to turn the policy off when you're done, or that folder will fill up VERY quickly.
- Paste in:
REGEDIT4
[HKEY_LOCAL_MACHINE\Software\Policies\Microsoft\Windows\Installer]
"Debug"=dword:00000007
"Logging"="voicewarmup"
As you can see, it's just a policy, so you could apply it from the GP editor, just like any other.
- Merge the .REG on the target workstation
Note that, after merging, you will get logs for ALL MSI activity, including advertisements
- Logs are written to %SystemRoot%\TEMP, prefixed 'MSI', named with random alphanumeric characters, and with a .LOG extension.
- I use FIND to locate the log file pertaining to a particular deployment, looking for unique text. The MSI's ProductCode is the obvious candidate.
- Remember to turn the policy off when you're done, or that folder will fill up VERY quickly.
Posted by:
anonymous_9363
15 years ago
Rating comments in this legacy AppDeploy message board thread won't reorder them,
so that the conversation will remain readable.
so that the conversation will remain readable.