.MSI file hangs
I deployed a .MSI file via SCCM and it hangs and never finishes. It also won't write anything to the log file. I have this command line.
"C:\WINDOWS\system32\msiexec.exe" /i /q "C:\MSIs\QuickTime.msi" /L*V+! "c:\build\AppleQT.log"
It hangs in TaskMan and never finishes and does not create the AppleQT.log file. Is there anything wrong with my syntax?
0 Comments
[ + ] Show comments
Answers (4)
Please log in to answer
Posted by:
Ben M
12 years ago
msiexec /i "C:\MSIs\QuickTime.msi" /q /L*V+! "c:\build\AppleQT.log"
The problem is that you didn't have the path to the file directly after the /i. This will cause problems.
Posted by:
jagadeish
12 years ago
Posted by:
piyushnasa
12 years ago
Posted by:
andemats
12 years ago