hello community!
sorry for my english, it's not the best, but i'll try.
my administrator want to get a windows 7 multilanguage DVD. with the 32-bit version there were no problems, but in the install-menue of the 64-bit version after booting from DVD and copying the files to the harddisk, the install will crash with following error:
windows could not see the offline locate information error code 0x8000001
i can only install windows 7 in german, not in other languages!
what's the problem?
i have the windows 7 professional DVD original (in german) once in 32-bit and once in 64-bit. the languagepacks are once in 32-bit and once in 64-bit. and the "windows AIK" have language-packs for the setup in 32-bit and 64-bit. and i am very carefully not to merging any 32-bit files with 64-bit files!
to build a multi-language DVD i used "dism".
i wrote a batch-script for this work, because i am not interested in typing all commands the whole blessed day.
here is my batch-script:
:copy_win7_x64
mkdir c:\Win7_DVD_x64
xcopy "d:\" "c:\Win7_DVD_x64" /S /E /I /H
:copy_win7_lang_x64
mkdir c:\Win7_DVD_x64_language_pack
xcopy "d:\langpacks" "c:\Win7_DVD_x64_language_pack" /S /E /I /H
:copy_winpe_lang_x64
mkdir c:\WinPE_DVD_x64_language_pack
xcopy "d:\WinPE_LangPacks\amd64" "c:\WinPE_DVD_x64_language_pack" /S /E /I /H
:install_languages_install.wim
mkdir c:\mount
dism /mount-wim /wimfile:c:\Win7_DVD_x64\sources\install.wim /index:4 /mountdir:c:\mount
dism /image:c:\mount /add-Package /PackagePath:c:\Win7_DVD_x64_language_pack\en-us\lp.cab
dism /image:c:\mount /add-Package /PackagePath:c:\Win7_DVD_x64_language_pack\es-es\lp.cab
dism /image:c:\mount /add-Package /PackagePath:c:\Win7_DVD_x64_language_pack\fr-fr\lp.cab
... and so on...
dism /unmount-wim /mountdir:c:\mount /commit
:install_languages_boot.wim
dism /mount-wim /wimfile:c:\Win7_DVD_x64\sources\boot.wim /index:2 /mountdir:c:\mount
dism /image:c:\mount /add-Package /PackagePath:c:\WinPE_DVD_x64_language_pack\en-us\lp.cab
dism /image:c:\mount /add-Package /PackagePath:c:\WinPE_DVD_x64_language_pack\en-us\winpe-setup_en-us.cab
dism /image:c:\mount /add-Package /PackagePath:c:\WinPE_DVD_x64_language_pack\en-us\winpe-setup-client_en-us.cab
dism /image:c:\mount /add-Package /PackagePath:c:\WinPE_DVD_x64_language_pack\es-es\lp.cab
dism /image:c:\mount /add-Package /PackagePath:c:\WinPE_DVD_x64_language_pack\es-es\winpe-setup_es-es.cab
dism /image:c:\mount /add-Package /PackagePath:c:\WinPE_DVD_x64_language_pack\es-es\winpe-setup-client_es-es.cab
... and so on...
dism /image:c:\mount /gen-langini /distribution:c:\mount
dism /unmount-wim /mountdir:c:\mount /commit
:create_iso_file
oscdimg -bc:\Win7_DVD_x64\boot\etfsboot.com -h -lWin7_x64 -u2 -o c:\Win7_DVD_x64 c:\Win7_x64.iso