QUOTE (pepijnb @ Dec 10 2003, 10:37 PM)
How do I get Pebuilder to copy certain files to the ramdisk?
And could someone please point me to a good faq please?
Thanks...
@pepijnb
there are a lot of plugins that will do this.
here one example for you.
Joshua
@echo off
rem -------------------------------------------------------------------------
rem adaware.cmd - Script to start Adaware from WinPE
rem Created by Bart Lagerweij.
rem -------------------------------------------------------------------------
echo ADAWARE.CMD: Starting...
setlocal
if "%temp%" == "" goto _err
if exist "%temp%\adaware\ad-aware.exe" goto _run
echo ADAWARE.CMD: Copying "%~dp0*.*" to "%temp%\adaware\"
xcopy /s "%~dp0*.*" "%temp%\adaware\"
:_run
start %temp%\adaware\ad-aware.exe
goto _end
:_err
echo.
echo ADAWARE.CMD: No temp variable set...
echo ADAWARE.CMD: Try adding a ramdrive...
echo.
pause.
:_end
endlocal