Can't interact with MSI

ForeverNoob

New member
Local time
9:55 PM
Messages
2
Hello,

I'm trying to install an old MSI package on a Win7 machine. On XP machines the package interactively asks for a target path (defaults to E:\Program Files), but on Win7 the dialog is skipped and msiexec tries to install it to the default target path (and fails, because there isn't any E: drive). How can I force the install to go interactive, or pass it a new default target path?

TIA
 

My Computer My Computer

At a glance

Windows 7 Enterprise 32bit
OS
Windows 7 Enterprise 32bit
Please try to use the following code
Code:
msiexec /i [color=blue]C:\YOURmsiFILEpath\yourFILE.msi[/color] TARGETDIR=[color=blue]C:\YOURdir[/color]
you can execute it in elevated command prompt or create a bat file with this code.
 

My Computer My Computer

At a glance

Windows 8.1 ; Windows 7 x86 (Dec2008-Jan2013)
Computer type
PC/Desktop
OS
Windows 8.1 ; Windows 7 x86 (Dec2008-Jan2013)
Other Info
"The scale icon at the top right of a post or tutorial is how you can give rep to the member."
Please try to use the following code
Code:
msiexec /i [COLOR=blue]C:\YOURmsiFILEpath\yourFILE.msi[/COLOR] TARGETDIR=[COLOR=blue]C:\YOURdir[/COLOR]
you can execute it in elevated command prompt or create a bat file with this code.

Thanks for replying. It didn't work for me. I created a bat file with the command and ran it as admin, but all iI got was the msiexec help dialog window.
 

My Computer My Computer

At a glance

Windows 7 Enterprise 32bit
OS
Windows 7 Enterprise 32bit
Please post your bat file and the name and version of the application your are trying to install.
 

My Computer My Computer

At a glance

Windows 8.1 ; Windows 7 x86 (Dec2008-Jan2013)
Computer type
PC/Desktop
OS
Windows 8.1 ; Windows 7 x86 (Dec2008-Jan2013)
Other Info
"The scale icon at the top right of a post or tutorial is how you can give rep to the member."
Back
Top