Jump to content

PZine

Member
  • Posts

    3
  • Joined

  • Last visited

  • Donations

    0.00 USD 
  • Country

    Poland

Everything posted by PZine

  1. Thx for fix. start the tool, open and close my drive and bluebird is gone i'm uninstall instaled aplication form add/remove programs... very good job!
  2. Hello My way to install it unattended : create a batch file like this: @ECHO OFF REM IF EXIST %SYSTEMROOT%\System32\CMDOW.EXE CMDOW @ /HID TITLE Macromedia Authorware WEB Player 2004.0.0.73 (Internet Explorer and Mozilla Firfox) ECHO Instalation in prograss... Please do not close this window... ECHO Adding support for Mozilla Firefox... IF NOT EXIST "%ProgramFiles%\Mozilla Firefox\plugins" MD "%ProgramFiles%\Mozilla Firefox\plugins" >nul COPY /Y "%CD%\Mozilla\*.*" "%ProgramFiles%\Mozilla Firefox\plugins\" >nul ECHO Adding supprot for Internet Explorer... START /WAIT RUNDLL32 setupapi.dll,InstallHinfSection DefaultInstall 0 %CD%\ActiveX\awswax.inf REGSVR32 /S %SystemRoot%\system32\Macromed\AUTHORWA\awswax.ocx REGEDIT /S %CD%\awswax.reg ECHO. ECHO Decompressing Authorware Xtras... Xtras.exe ECHO Instalation completed successful... EXIT the REG file contains the following lines: Windows Registry Editor Version 5.00 [HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\Ext\Stats] [HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\Ext\Stats\{15B782AF-55D8-11D1-B477-006097098764}] [HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\Ext\Stats\{15B782AF-55D8-11D1-B477-006097098764}\iexplore] "Type"=dword:00000001 "Flags"=dword:00000004 "Count"=dword:00000004 "Time"=hex:d8,07,07,00,05,00,12,00,0a,00,1e,00,32,00,bb,00 "Blocked"=dword:00000002 if you do not want CMD window when install is in progress, remove remarks form begining of batch file and leave rest of this line untouched. Tool called CMDOW.EXE must be in system32 folder. Folder "Mozilla" contains only one file - np32asw.dll Get him form Firefox plugin folder or download orginal installer (for Netscape/Mozilla) from adobe web page and decompress exe file using some tool for example universal extractor. folder "ActiveX" contains 3 files: np32asw.dll, awswax.inf, awswax.ocx files you can get from orginal ActiveX installation file form here: awswaxd.cab Xtras.exe file contains all content of "%AppData%\Macromedia\Authorware Web Player\" - we can get if after first use of Authorware 7 - for example just test Authorware 7 on Adobe Test Page oki thats' all. It works for me.
  3. Hello, Im new on the forum, i just download the msi file and i have a problem with "Adobe Shockwave Player.msi" (date 21.06.2008). I have clean install of XP Pro with integrated SP3, IE7, WMP11 and DirectX 9c (Jun 2008) Made by nLite 1.4.6. All of integrated parts are working fine, but after install Shockwave 11 form msi package, when i open IE7 on pages, where is Shockwave used, the IE7 close the window with those page. The Firefox 2.0.0.15 open that page, but in the place where shoudlbe a Shockwave object, is only empty space. After install orginal package (11.0r458) from Adobe WEB page it open all pages corectly. for test i use for example this url Adobe Player Test page I was thinking what can i do with this and i resolve my problem by making a batchfile to install Shockwave: @ECHO OFF TITLE Adobe Shockwave Player 11.0.0.458 (Internet Explorer and Mozilla Firfox) ECHO Instalation in prograss... Please do not close this window. ECHO. ECHO Creating (if nesesery) folders IF NOT EXIST "%SystemRoot%\System32\Adobe" MD "%SystemRoot%\System32\Adobe" >nul IF NOT EXIST "%SystemRoot%\System32\Adobe\Director" MD "%SystemRoot%\System32\Adobe\Director" >nul IF NOT EXIST "%SystemRoot%\System32\Adobe\Shockwave 11" MD "%SystemRoot%\System32\Adobe\Shockwave 11" >nul IF NOT EXIST "%SystemRoot%\System32\Adobe\Shockwave 11\Xtras" MD "%SystemRoot%\System32\Adobe\Shockwave 11\Xtras" >nul IF NOT EXIST "%ProgramFiles%\Mozilla Firefox\plugins" MD "%ProgramFiles%\Mozilla Firefox\plugins" >nul ECHO Copying new files... IF NOT EXIST %SystemRoot%\System32\msvcp71.dll COPY /Y "system32\msvcp71.dll" "%SystemRoot%\System32\" >nul IF NOT EXIST %SystemRoot%\System32\msvcr71.dll COPY /Y "system32\msvcr71.dll" "%SystemRoot%\System32\" >nul IF NOT EXIST %SystemRoot%\System32\msvcrt.dll COPY /Y "system32\msvcrt.dll" "%SystemRoot%\System32\" >nul IF NOT EXIST %SystemRoot%\System32\cmdow.exe COPY /Y "system32\cmdow.exe" "%SystemRoot%\System32\" >nul COPY /Y "system32\Adobe\Director\*.*" "%SystemRoot%\System32\Adobe\Director\" >nul COPY /Y "system32\Adobe\Shockwave 11\*.*" "%SystemRoot%\System32\Adobe\Shockwave 11\" >nul COPY /Y "system32\Adobe\Shockwave 11\Xtras\*.*" "%SystemRoot%\System32\Adobe\Shockwave 11\Xtras\" >nul COPY /Y "Mozilla\*.*" "%ProgramFiles%\Mozilla Firefox\plugins\" >nul ECHO Registering components... REGSVR32 /S "%SystemRoot%\System32\Adobe\Director\SwDir.dll" >nul REGSVR32 /S "%SystemRoot%\System32\Adobe\Shockwave 11\Control.dll" >nul "%SystemRoot%\System32\Adobe\Director\M5drvr32.exe" "%SystemRoot%\System32\Adobe\Shockwave 11\SwInit.exe" CMDOW /HID "%SystemRoot%\System32\Adobe\Shockwave 11\SwHelper_1100458.exe" ECHO Installation completed. EXIT content for path: "system32/adobe" i get from my C:\windows\system32\adobe\*.* (with all subfolders tree) - after installing orginal shockwave 11 form adobe web page ofcoz. content for Mozilla folder i take form my C:\Program Files\Mozilla Firefox\plugins\ and contains there 2 files: "ShockwavePlugin.class" and "np32dsw.dll" content of path system32 requied 4 files: msvcp71.dll, msvcr71.dll, msvcrt.dll, and CMDOW.exe (hide window tool, antivirus software may detect a risk tool - because hi can hide a windows) all files i put into one directory for example D:\asw11\ , create SFX RAR archive and done - an exe with Shockwave 11.0r458 instaler without any toolbars. If we dont wont cmd window with install progress, add after @echo off one line contains "system32\cmdow.exe @ HID" and done. No window are displayed when install is in progress. DLLs for register - i check all content of adobe folder (inside system32) and all DLLs i try to register with REGSVR32.exe, the .exe files witch is runing i take from install.log of orginal Adobe Shockwave 11 installer. all nesesery content we can also take form orginal installer from adobe - and decompress using command line with /X switch - it is build with WISE Installer. After all that things, when clean install of XP SP3 is completed, and run my asw11.exe (the SFX archive i made contains unattended install of Adobe Shockwave Player 11.0r458) when i open IE7 or Mozilla web pages, the shockwave objects are displayed propertly. if somebody wants ready to use *.exe installer, please write to me, also i can upload it somewhere - i dont like sites like rapidshare, and i dont have any acounts in there.
×
×
  • Create New...