Jump to content

Windows Media Player 11 Silent


Redhatcc

Recommended Posts

Hi

Trying to silently install Windows Media Player 11 with a batch, but the code i use still extracts and installs it normally. Wish i could find something that makes it quiet and no human interaction... i found this by searching through the site but doesnt seem to work.. mabe i have it typed wrong or not using the right switches at all.

ps - i renamed the installer to wmp11.exe, should effect it should it?

START /WAIT wmp11.exe /Q:A /C:"SETUP_WM.EXE /Q:A /R:N /P:#e"

Link to comment
Share on other sites


Hi there, wmp11 also gave me trouble...i spent almost as much time for wmp11 as for the remaining programs of my dvd...:S

i managed to do it like this, using winrar, right clik the installer/extract to...

Put all files inside one folder, name it whatever you want, but try to keep the name short and with no spaces.

then check if inside that folder you have the following files:

wmp11.exe

umdf.exe

wmdbexport.exe

wmfdist11.exe

update.exe

if so, here is the batch code for your installer:

if exist d:\Extras\wmp11 set cdrom=d:

if exist e:\Extras\wmp11 set cdrom=e:

if exist f:\Extras\wmp11 set cdrom=f:

if exist g:\Extras\wmp11 set cdrom=g:

if exist h:\Extras\wmp11 set cdrom=h:

if exist i:\Extras\wmp11 set cdrom=i:

if exist j:\Extras\wmp11 set cdrom=j:

if exist k:\Extras\wmp11 set cdrom=k:

if exist l:\Extras\wmp11 set cdrom=l:

if exist m:\Extras\wmp11 set cdrom=m:

if exist n:\Extras\wmp11 set cdrom=n:

if exist o:\Extras\wmp11 set cdrom=o:

if exist p:\Extras\wmp11 set cdrom=p:

if exist q:\Extras\wmp11 set cdrom=q:

if exist r:\Extras\wmp11 set cdrom=r:

if exist s:\Extras\wmp11 set cdrom=s:

if exist t:\Extras\wmp11 set cdrom=t:

if exist u:\Extras\wmp11 set cdrom=u:

if exist v:\Extras\wmp11 set cdrom=v:

if exist w:\Extras\wmp11 set cdrom=w:

if exist x:\Extras\wmp11 set cdrom=x:

if exist y:\Extras\wmp11 set cdrom=y:

if exist z:\Extras\wmp11 set cdrom=z:

mkdir %systemdrive%\windows\temp\WMP11

xcopy %CDROM%\Extras\wmp11 /e /y %systemdrive%\windows\temp\WMP11 /i

start /wait %SYSTEMDRIVE%\Windows\temp\wmp11\wmp11.exe /passive /norestart /er

start /wait %SYSTEMDRIVE%\Windows\temp\wmp11\umdf.exe /passive /norestart /er

start /wait %SYSTEMDRIVE%\Windows\temp\wmp11\wmdbexport.exe /passive /norestart /er

start /wait %SYSTEMDRIVE%\Windows\temp\wmp11\wmfdist11.exe /passive /norestart /er

start /wait %SYSTEMDRIVE%\Windows\temp\wmp11\update\update\update.exe /passive /norestart /er

RD /S /Q %SYSTEMDRIVE%\Windows\temp\wmp11

exit

The location in bold at the code is what you need to replace, just put %cdrom%\(the rest of the path to your folder of wmp11 with all the files inside it).

Hope it helps.

Regards

Edited by vascorama
Link to comment
Share on other sites

vascorama, nice code lol took me a second to figure out what you were doing in the code but i got ya :-P... code does work good just have to change up directories... shark very nice .msi installer! thx for the help both work perfect

Link to comment
Share on other sites

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now
  • Recently Browsing   0 members

    • No registered users viewing this page.
×
×
  • Create New...