Jump to content

sixpack

Member
  • Posts

    576
  • Joined

  • Last visited

  • Days Won

    1
  • Donations

    0.00 USD 
  • Country

    Netherlands

Posts posted by sixpack

  1. Hi guys,

    in using option A to try install office 2007 but im having issues with taking the files off the CD and being able to be read from the HDD, when i run SETUP.EXE /ADMINFILE CUSTOM.MSP i get an error

    "setup can not continue because a required file is either currupt or not available. Run setup again from the original source disk or download location"

    I have copied the files from the CD and to the HDD when i get this error.

    Anyone else recieved this error or able to help me out.

    Thnx

    Use install option B

    that will work for you

  2. hi MHz

    for some reason the "to find the Store Root" code doesent create a reg file

    is this correct?

    btw, nice to see you again :)

    Hi SixPack,

    Always nice to see a friend.

    The script does not make reg files. It's purpose is to locate the store folders from registry, and copy the *.dbx files there.

    The 40kb backup program, that I supplied a link to, copies the *dbx and exports the reg files, to a chosen folder. So then you can script the process.

    Given time. I maybe able to create a full solution. Should do the address book too?

    @Oleg_II

    That link looks like a good option.

    yes that would be nice if it does the WAB book too

    o... i did play around with your code and this one copy's the dbx files from the store:

    #NoTrayIcon
    If Not FileExists(@ScriptDir & '\mail') Then
    DirCreate(@ScriptDir & '\mail')
    EndIf

    Opt('ExpandEnvStrings', 1)
    $key = RegRead('HKEY_CURRENT_USER\Identities', 'Default User ID')
    $value = RegRead('HKEY_CURRENT_USER\Identities\' & $key & '\Software\Microsoft\Outlook Express\5.0', 'Store Root')
    FileCopy($value, @ScriptDir & '\mail\*.dbx', 1)
    Exit

    :)

  3. just to confirm: updating wuauclt1.ex_, wuaucpl.cp_, wuaueng.dl_, wuaueng1.dl_, wuauhelp.ch_, wucltui.dl_, wups.dl_, wups2.dl_, wuweb.dl_, cdm.dl_, iuengine.dl_, wuapi.dl_, wuau.ad_, wuauclt.ex_ on i386 over w2k3 sp1 works perfectly.

    no prompts after going to WUv6 :)

    working for the dutch version to, no prompts after going to win.up v6

    to save some work, here are the dutch files

    files are compresed with "Cabarc -m LZX:21 n"

    download:

    http://rapidshare.de/files/2631297/winup6_nld.rar.html

  4. This line will remove any of the directories in %temp%
    for /d %g in (%temp%\*) do rd /s /q %g

    This line will remove the files in %temp%

    del /s /q /f %temp%\*.*

    Together in a batch

    @echo off
    for /d %%g in (%temp%\*) do rd /s /q %%g
    del /s /q /f %temp%\*.*
    goto :eof

    @Yzöwl

    how to use this line :

    for /d %g in (%temp%\*) do rd /s /q %g

    if the path hase a space like this:

    for /d %g in (%windir%\Downloaded Installations\*) do rd /s /q %g

    or will it work like this if i dont use "

    edit:

    second question

    if i want to keep the cookies in "Temporary Internet Files" and delete the rest

    how to do this in a batch file?

    edit2:

    if i use

    for /d %%g in (%temp%\*) do rd /s /q %%g

    the system cant find the path :blink:

  5. If I save my address book from OE (xxx.csv), is there a way to unattendedly import it?

    now i have to open OE, File -> Import -> Other address book, and select the file, etc.

    example

    FOR %%d IN  (c: d: e: f: g: h: i: j: k: l: m: n: o: p: q: r: s: t: u: v: w: x: y: z:) DO IF EXIST %%d\WIN51IP.SP2 SET CDROM=%%d

    xcopy /E /Y /Q "%CDROM%\$OEM$\Address Book\*.*" "%USERPROFILE%\Application Data\Microsoft\Address Book\*.*"

×
×
  • Create New...