digitalFAQ.com Forums [Archives]

digitalFAQ.com Forums [Archives] (http://www.digitalfaq.com/archives/)
-   Authoring VCD, DVD, Blu-ray (http://www.digitalfaq.com/archives/author/)
-   -   VCDEasy error: ASPI tools support is disabled (http://www.digitalfaq.com/archives/author/3760-vcdeasy-error-aspi.html)

ezysk 05-26-2003 08:33 AM

VCDEasy error: ASPI tools support is disabled
 
I was wondering if there's any chance of resolving a VCDEasy ASPI Anomaly that currently I'm experiencing. In the main tab and ASPI field,it shows that I'm using "Nero" ....BUT, in the CDRDAO tabs, tools is "greyed out" and says: "ASPI tools support is disabled" Anyways, I just can't burn anything the way its set up. Any suggestions ???

kwag 05-26-2003 09:48 AM

Re: VCDEasy ASPI Anomaly
 
Quote:

Originally Posted by ezysk
Any suggestions ???

You can just let VCDEasy make your bin/cue files, and then use "Fireburner" to burn your CD-Rs :idea:
That's what I do 8)

-kwag

el_mero_zooter 05-26-2003 09:48 AM

E,
try installing these aspi drivers first...
http://www.afterdawn.com/software/cd...ls/frcaspi.cfm
install ForceAspi,,
reboot,,
try vcdeasy again,,,
{to check if it recognized the aspi drivers--Enabled}

if not,
try looking in here for your OS

http://www.adaptec.com/worldwide/sup...ASPI%2BPackage


ztr

ezysk 05-26-2003 10:26 AM

Currently, I got WinAspi32.dll. I'm wondering if I should install both the
ForceASPI 1.7, as well as the Adaptec ASPI v4.71.2...and if there would be any "conflicts" with either Nero or WinAspi that I currently have?

el_mero_zooter 05-26-2003 10:29 AM

Quote:

Originally Posted by ezysk
Currently, I got WinAspi32.dll. I'm wondering if I should install both the
ForceASPI 1.7, as well as the Adaptec ASPI v4.71.2...and if there would be any "conflicts" with either Nero or WinAspi that I currently have?

hmm,
don't really forsee a problem with it,,
when i installed forceaspi on my XP & 2K os'es,,,nero worked fine
along with vcdeasy as well..

try it,,,,
if not,,
reformat c: /q
will fix about anything..,..

:lol: :lol:

zTr

ezysk 05-27-2003 07:29 AM

..yeah, I'm runnin XP followed the install instructions: c:\adaptec\aspi\install.bat XP32 in the command line box. Only problem is: that when I press any key, the command line box dissapears,and nothing gets installed.

el_mero_zooter 05-27-2003 10:01 AM

E,
open the install.bat file with notepad,
check that the path that it wants to install to has the
same name as your folders.
i.e. it may want to install the files to
c:\winnt\system for example..
and your system may have
c:\windows\
do that for the remaining files that it wants to copy
and see if the window doesn't close.
If you right click on the install.bat file, does it
bring up an "Install" feature or not?
try that and if it don''''t work, will see what else it could be

ztr

ezysk 05-27-2003 10:36 PM

The install instructions say to type this command line for my system:
"c:\adaptec\aspi\install.bat XP32".......but I don't know where to put it in this:

@echo off
REM ============================
REM Display Utility Instructions
REM ============================
IF (%1)==("") GOTO INSTRUCT

SET ERRORS=0

REM =================
REM Operating Systems
REM =================
IF (%1)==(X86) GOTO X86
IF (%1)==(x86) GOTO X86

IF (%1)==(XP32) GOTO XP32
IF (%1)==(xp32) GOTO XP32
IF (%1)==(Xp32) GOTO XP32
IF (%1)==(xP32) GOTO XP32

IF (%1)==(XP64) GOTO XP64
IF (%1)==(xp64) GOTO XP64
IF (%1)==(Xp64) GOTO XP64
IF (%1)==(xP64) GOTO XP64
GOTO INSTRUCT


REM =====================================
REM Display Menu for Command Line Options
REM =====================================
:INSTRUCT
ECHO "INSTALL.BAT <Operating System Type>"
ECHO "--------------------------------------"
ECHO "X86 - Microsoft Windows 98/ME/NT/2000"
ECHO "XP32 - Microsoft Windows XP X86"
ECHO "XP64 - Microsoft Windows XP Itanium"
PAUSE
GOTO END


REM =========================
REM For Windows 98/ME/NT/2000
REM =========================
:X86
ASPIINST.EXE
GOTO END


REM =====================================
REM For 32 bit Windows XP for X86 Systems
REM =====================================
:XP32
IF NOT EXIST REG_XP.EXE SET ERRORS=ERRORS+1
IF (%ERRORS%)==(5) ECHO "ERROR: Missing REG_XP.EXE"
IF NOT EXIST ASPIXP.SYS SET ERRORS=ERRORS+1
IF (%ERRORS%)==(1) ECHO "ERROR: Missing ASPIXP.SYS File"
IF NOT EXIST WNASPIXP.DLL SET ERRORS=ERRORS+1
IF (%ERRORS%)==(2) ECHO "ERROR: Missing WNASPIXP.DLL File"
IF NOT %ERRORS%==0 GOTO END

CALL REG_XP.EXE
ECHO "Step 1 of 3 : REGISTRY MODIFIED FOR ASPI32"

COPY ASPIXP.SYS %WINDIR%\SYSTEM32\DRIVERS\ASPI32.SYS /Y
ECHO "Step 2 of 3 : COPYING ASPI32.SYS"

COPY WNASPIXP.DLL %WINDIR%\SYSTEM32\WNASPI32.DLL /Y
ECHO "Step 3 of 3 : COPYING WNASPI32.DLL"
GOTO END


REM =========================================
REM For 64 bit Windows XP for Itanium Systems
REM =========================================
:XP64
IF NOT EXIST REG_XP.EXE SET ERRORS=ERRORS+1
IF (%ERRORS%)==(5) ECHO "ERROR: Missing REG_XP.EXE"
IF NOT EXIST ASPI64.SYS SET ERRORS=ERRORS+1
IF (%ERRORS%)==(3) ECHO "ERROR: Missing ASPI64.SYS File"
IF NOT EXIST WNASPI64.DLL SET ERRORS=ERRORS+1
IF (%ERRORS%)==(4) ECHO "ERROR: Missing WNASPI64.DLL File"
IF NOT (%ERRORS%)==(0) GOTO END

CALL REG_XP.EXE
ECHO "Step 1 of 3 : REGISTRY MODIFIED FOR ASPI32"

COPY ASPI64.SYS %WINDIR%\SYSTEM32\DRIVERS\ASPI32.SYS /Y
ECHO "Step 2 of 3 : COPYING ASPI32.SYS"

COPY WNASPI64.DLL %WINDIR%\SYSTEM32\WNASPI32.DLL /Y
ECHO "Step 3 of 3 : COPYING WNASPI32.DLL"
GOTO END

:END


All times are GMT -5. The time now is 11:18 AM  —  vBulletin © Jelsoft Enterprises Ltd

Site design, images and content © 2002-2024 The Digital FAQ, www.digitalFAQ.com
Forum Software by vBulletin · Copyright © 2024 Jelsoft Enterprises Ltd.