Home > Archive > MSDN > January 2005 > How to install WSE 2.0 silently
You are viewing an archived Text-only version of the thread.
To view this thread in it's original format and/or if you want to reply to
this thread please [click here]
| Author |
How to install WSE 2.0 silently
|
|
| Ray Cuadra 2005-01-21, 3:55 pm |
| Does anyone know how to install WSE 2.0 silently?
| |
| Ronny Ong 2005-01-21, 8:55 pm |
| Assuming that you are talking about the runtime redistributable package (not
the developer's package), then you can deploy it with Group Policy and it
will automatically install silently by default.
Alternatively, you can use /qn on the command-line. For example,
"\\server\share\Microsoft WSE 2.0 SP2 Runtime.msi" /qn
Windows 2000 and higher (which is required by WSE) can execute msi files
directly, but you are using a deployment tool which will not accept the msi
extension as an executable, you can use:
msiexec /i "\\server\share\Microsoft WSE 2.0 SP2 Runtime.msi" /qn
These are standard command-line options for Windows Installer (not specific
to WSE) so you can look up msiexec for other combinations. For example, if
you want to install it unattended but not totally silently (in other words,
you want to see the progress bar) you can use /qb instead of /qn.
"Ray Cuadra" <Ray Cuadra@discussions.microsoft.com> wrote in message
news:7E90A0B2-77BA-4D33-B98F-6CAFCB520629@microsoft.com...
> Does anyone know how to install WSE 2.0 silently?
| |
| Ray Cuadra 2005-01-24, 3:57 pm |
| Thank you Ronny for your help. BTW, just out of curiosity where did you find
the command line options for the WSE?
"Ronny Ong" wrote:
> Assuming that you are talking about the runtime redistributable package (not
> the developer's package), then you can deploy it with Group Policy and it
> will automatically install silently by default.
>
> Alternatively, you can use /qn on the command-line. For example,
>
> "\\server\share\Microsoft WSE 2.0 SP2 Runtime.msi" /qn
>
> Windows 2000 and higher (which is required by WSE) can execute msi files
> directly, but you are using a deployment tool which will not accept the msi
> extension as an executable, you can use:
>
> msiexec /i "\\server\share\Microsoft WSE 2.0 SP2 Runtime.msi" /qn
>
> These are standard command-line options for Windows Installer (not specific
> to WSE) so you can look up msiexec for other combinations. For example, if
> you want to install it unattended but not totally silently (in other words,
> you want to see the progress bar) you can use /qb instead of /qn.
>
>
> "Ray Cuadra" <Ray Cuadra@discussions.microsoft.com> wrote in message
> news:7E90A0B2-77BA-4D33-B98F-6CAFCB520629@microsoft.com...
>
>
>
|
|
|
|
|