Help - Search - Members - Calendar
Full Version: ad-aware small question
MSFN Forums > Unattended Windows Discussion & Support > Application Installs

   


Google Internet Forums Unattended CD/DVD Guide
mumuuu
hi welcome.gif

ok i maded my script to make an unattend install (not really hard, i know..... thx MSFN) but it's getting a little bite harder when i try to make a command to auto copy in the LANG folder the 3 files than i need to have it in french ...... so if someone can find a mistake in those 2 command pleaz tell me
**********
first one = unattend install + copy of the 3 files to put it in french :

CLS
@echo off
ECHO.
ECHO Ad-Aware 6
aaw6.exe /s
puchd "%ProgramFiles%\Lavasoft\Ad-aware 6\Lang"
%systemdrive%\Temp\Tools\Ad-aware\Francais.bmp
%systemdrive%\Temp\Tools\Ad-aware\Francais.det
%systemdrive%\Temp\Tools\Ad-aware\Francais.ini

************
second one = i just put in another method to copy the 3 LANG files

CLS
@echo off
ECHO.
ECHO Ad-Aware 6
xcopy %systemdrive%\Temp\Tools\Ad-aware\lang\ %ProgramFiles%\Lavasoft\Ad-aware 6\Lang


thx biggrin.gif welcome.gif
ZoSTeR
Try it without the backslash behind lang and with quotes around the second path
CODE
xcopy %systemdrive%\Temp\Tools\Ad-aware\lang "%ProgramFiles%\Lavasoft\Ad-aware 6\Lang"


And what's this supposed to do?
CODE
puchd "%ProgramFiles%\Lavasoft\Ad-aware 6\Lang"
%systemdrive%\Temp\Tools\Ad-aware\Francais.bmp
%systemdrive%\Temp\Tools\Ad-aware\Francais.det
%systemdrive%\Temp\Tools\Ad-aware\Francais.ini


Is puchd a command or batch file?
The three rows under that won't do anything

You'll also need to copy a modified prefs.ini to switch to french.
mumuuu
ok thx i'll try yuor first code

for the second if u tell me it's wrong ok & pudhd is a command

thx & i tell uif the new code is ok

bye biggrin.gif welcome.gif
mumuuu
i try ot with this code
QUOTE
CLS
@echo off
ECHO.
ECHO Ad-Aware 6
aaw6.exe /s
xcopy %systemdrive%\Temp\Tools\Ad-aware\lang "%ProgramFiles%\Lavasoft\Ad-aware 6\Lang"



but still don't copy my french lang folder in the c:\\pro..files\lavasoft\lang\
it still in english sad.gif

welcome.gif
[BM]Crusher
QUOTE
xcopy %systemdrive%\Temp\Tools\Ad-aware\lang "%ProgramFiles%\Lavasoft\Ad-aware 6\Lang"


try

CODE
xcopy "%systemdrive%\Temp\Tools\Ad-aware\lang\*.*" "%ProgramFiles%\Lavasoft\Ad-aware 6\Lang\" /i /v
[BM]Crusher
anyway, ad-aware doesn't even need to be installed... i learnt that from winPE usage of it straight off a CD...

you could create a self-extracting archive of your pre-configured ad-aware folder...

just make the self extractor extract to %programfiles% and inside the archive is the Lavasoft folder...

then you will have to copy a shortcut to the start menu or desktop and that is about it
mumuuu
thanks [BM]Crusher for your help i'll try the first thing u gave me and after i'll try the second if it doesn't work newwink.gif


welcome.gif
mazin
The only pitfall of a SFX (self-extracting archive ) is that you can't uninstall ad-aware, unless you'd delete its folder.

Have you tried any of the three methods listed here:

http://www.msfn.org/board/index.php?showtopic=16094&st=0
mumuuu
thx i'll try this blushing.gif i didn't see this post

welcome.gif
mazin
A solution for the default language is now here:

http://www.msfn.org/board/index.php?showto...ndpost&p=149608




Google Internet Forums Unattended CD/DVD Guide

This is a "lo-fi" version of our main content. To view the full version with more information, formatting and images, please click here.