Jump to content

mykz

Member
  • Posts

    15
  • Joined

  • Last visited

  • Donations

    0.00 USD 
  • Country

    Ukraine

About mykz

mykz's Achievements

0

Reputation

  1. catch a bug line 104 of global.js var sysdir = WshEnv("WINDIR"); must be var sysdir = WshEnv("WINDIR") + "\\system32"; or something else... i don't know, ask mritter ;-)
  2. Please help me and make a mirror (or upload to www.rapidshare.de) for WPI 5.1 I can't download WPI 5.1 from http://www.wpiw.net/downloads/wpi_5.1.rar (my ISP firewall) Thanks
  3. Install from network share, i have no player shown on Installer, only red x mark. Then add attribute type="application/x-mplayer2" on line 137 of Installer.hta and everything OK. (Install from local computer no need this attribute still OK) mritter, pls check it. document.write('<embed id="MediaPlayer" type="application/x-mplayer2" src="'+InsPath+'" width="300" height="45" autostart="1" loop="true" showstatusbar="0" volume="68" border="0" >');
  4. I found typo bugs in installer.js if ((programs[i].cmd5 != null) && (path(programs[i].cmd5) != '')) { cmdLine=substituteCommand(programs[i].cmd4); Must be if ((programs[i].cmd5 != null) && (path(programs[i].cmd5) != '')) { cmdLine=substituteCommand(programs[i].cmd5); And if ((programs[i].cmd6 != null) && (path(programs[i].cmd6) != '')) { cmdLine=substituteCommand(programs[i].cmd5); Must be if ((programs[i].cmd6 != null) && (path(programs[i].cmd6) != '')) { cmdLine=substituteCommand(programs[i].cmd6); Thk for your hard work, Kel
  5. Error has gone, no problem with newest DP MassStorage Thank BTS for quick update @orei: hurry up to get new DP MassStorage from BTS's site it the best version
  6. My solution: downgrade to DELL CERC SATA 1.5/6ch v4.1.0.7010. -Get DELL CERC SATA 1.5/6ch driver from here - Extract 6 files from downloaded archive file to D\M\D - Sliptream all BTS's DPs No errors, work fine Thanks BTS
  7. BTS The file cercsr6.sys is corrupted in TEXTMODE setup (DP MassStorage 6.03 slipstreamed) Please restore previous driver for DELL CERC SATA 1.5/6ch RAID Controller.
  8. TEST 1: Typo in BTS_DPs_finish.cmd for DP Sound B 6.03 :DPSB4 IF NOT EXIST %C%S\S\U GOTO DPSB5 IF EXIST %D%sthda.sys ( COPY /Y %C%S\S\U\stlang.dll %SystemRoot%\system32 > NUL COPY /Y %C%S\S\U\stacgui.dll %SystemRoot%\system32 > NUL COPY /Y %C%S\S\U\stacgui.cpl %SystemRoot%\system32 > NUL MD "%ProgramFiles%\C-Major Audio\STACGUI" MD "%ProgramFiles%\C-Major Audio\WDM" COPY /Y %C%S\S\U\sttray.exe "%ProgramFiles%\C-Major Audio\STACGUI" > NUL COPY /Y %C%S\S\U\stlang.dll "%ProgramFiles%\C-Major Audio\WDM" > NUL COPY /Y %C%S\S\U\I3.INI "%ProgramFiles%\C-Major Audio\WDM" > NUL COPY /Y %C%S\S\U\I3B.INI "%ProgramFiles%\C-Major Audio\WDM" > NUL COPY /Y %C%S\S\U\I3BX.INI "%ProgramFiles%\C-Major Audio\WDM" > NUL COPY /Y %C%S\S\U\I5.INI "%ProgramFiles%\C-Major Audio\WDM" > NUL COPY /Y %C%S\S\U\I5B.INI "%ProgramFiles%\C-Major Audio\WDM" > NUL COPY /Y %C%S\S\U\I5D.INI "%ProgramFiles%\C-Major Audio\WDM" > NUL COPY /Y %C%S\S\U\I5D2.INI "%ProgramFiles%\C-Major Audio\WDM" > NUL COPY /Y %C%S\S\U\I5D3.INI "%ProgramFiles%\C-Major Audio\WDM" > NUL COPY /Y %C%S\S\U\I5_WHQL.INI "%ProgramFiles%\C-Major Audio\WDM" > NUL ) Anyway, great release. Thank BTS
  9. Hi Bâshrat the Sneaky Pls re-check directory structure for ATI DriverPack_Graphics_C_V602.7z\D\G\A\2\ (\2 used for ATI Mobility Radeon & Mobility FireGL) DriverPack_Graphics_B_V6021.7z\D\G\A\3\ And BTS_DPs_finish.cmd (BTS_DriverPacks_BASE_V6025) REM #################################### REM DriverPack Graphics B REM #################################### SET C=%DPS%\G\ REM ######################## IF NOT EXIST %C%A\3 GOTO DPGB2 IF EXIST %S%atioglgl.dll ( %C%AT\3\CPanel.exe -y -o%DPS_TMP% START /WAIT %DPS_TMP%\Setup.exe /K RD /S /Q %DPS_TMP% ) %C%AT not existed, CPanel.exe currently located in DriverPack_Graphics_C_V602.7z\D\G\A\2\ :DPGB3 IF NOT EXIST %C%S\1 GOTO DPGB4 IF EXIST %S%sisgrp.sys ( %C%S\1\V\UVGA3.exe -y -o%DPS_TMP% START /WAIT %DPS_TMP%\setup.exe -s RD /S /Q %DPS_TMP% ) %C%S\1\V\UVGA3.exe -y -o%DPS_TMP% (%C%S\1\V not existed) I tried fix by myself, correct me if im wrong - Rename DriverPack_Graphics_B_V6021.7z\D\G\A\3 to DriverPack_Graphics_B_V6021.7z\D\G\A\4 - Rename DriverPack_Graphics_C_V602.7z\D\G\A\2 to DriverPack_Graphics_C_V602.7z\D\G\A\3 - Re-edit BTS_DPs_finish.cmd: REM #################################### REM DriverPack Graphics B REM #################################### SET C=%DPS%\G\ REM ######################## IF NOT EXIST %C%3\1 GOTO DPGB2 IF EXIST %S%3dfxV2ps.dll ( %C%3\1\V2_OC_control_panel.exe ) :DPGB2 IF NOT EXIST %C%S\1 GOTO DPGB3 IF EXIST %S%sisgrp.sys ( %C%S\1\UVGA3.exe -y -o%DPS_TMP% START /WAIT %DPS_TMP%\setup.exe -s RD /S /Q %DPS_TMP% ) :DPGB3 REM #################################### REM DriverPack Graphics C REM #################################### SET C=%DPS%\G\ REM ######################## IF NOT EXIST %C%A\3 GOTO DPGC2 IF EXIST %S%atioglgl.dll ( %C%A\3\CPanel.exe -y -o%DPS_TMP% START /WAIT %DPS_TMP%\Setup.exe /K RD /S /Q %DPS_TMP% ) :DPGC2 Hope, this may help you save a litle time Thank your good work!
  10. Yes, setup Windows error for method 2 Setup cannot copy the file: presetup.cmd ... And presetup.cmd has gone away from I386 Please fix it Bashrat Thank
  11. Hi boooggy! What about with wpdsp.dl_ because in wmp10.cab from ryan already have one (WPDSp.dll) Thank
  12. Thank for quick reply, Bâshrat the Sneaky But I have only one CD driver, and I use CDswitch to switch to 2nd CD after Windows has completed and the first task I want from 2nd CD is your DPs, and of course the X:\I386 not exists and I worry about there will something your DPs require but not available. Sorry for my english and please try to understand me. Best regard
  13. Hi, My first CD's overfull so I have to make 2nd CD. For DP, I want to ask: 1. It's possible to move X:\OEM to 2nd CD or not? 2. If possible, then what files must be changed to keep BTS_DPs_ROE.cmd run properly? Thank Bâshrat the Sneaky for great DP and thank for help.
  14. Hello I can't download cd swicth, link from #1 post died, anyone pls post a mirror Thank
×
×
  • Create New...