Windows 7 Forums


Windows 7: Win7 multi language all in one DVD error 0x8000001

01 Jun 2010   #1

 
 
Win7 multi language all in one DVD error 0x8000001

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
My System SpecsSystem Spec

Reply

 Win7 multi language all in one DVD error 0x8000001 problems?



Thread Tools



Similar help and support threads for: Win7 multi language all in one DVD error 0x8000001
Thread Forum
Installing foreign language software on an English language win7 OS? Software
Solved Installing language pack on a multi-boot system fails General Discussion
win7 multi pc usage Installation & Setup
removing win7 64 from multi boot system Installation & Setup
Multi-language support in Windows 7 General Discussion


All times are GMT -5. The time now is 04:58 PM.


Seven Forums Android App Seven Forums IOS App Follow us on Facebook

Windows 7 Forums is an independent web site and has not been authorized,
sponsored, or otherwise approved by Microsoft Corporation.
"Windows 7" and related materials are trademarks of Microsoft Corp.
© Designer Media Ltd
  

1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32