koshogioAccidenthttp://technet.microsoft.com/en-us/library/cc765987(v=ws.10)ესეც ვნახე მარა ბოლომდე ვერ ჩავდივარ
Copy your Windows distribution to a local directory. For example, copy the contents of the Windows product DVD to a directory named C:\Windows_distribution.
Create the Langpacks directory in the Windows distribution. For example,
mkdir C:\windows_distribution\langpacks
Copy the language pack (Lp.cab) and the parent folder (fr-FR, en-US, etc.) to the Langpacks directory of your Windows distribution. For example,
mkdir C:\windows_distribution\langpacks\fr-fr
mkdir C:\windows_distribution\langpacks\de-de
xcopy C:\LPs\fr-fr\lp.cab C:\windows_distribution\langpacks\fr-fr\lp.cab
xcopy C:\LPs\de-de\lp.cab C:\windows_distribution\langpacks\de-de\lp.cab
Locate the Lp.cab file for the language that you intend to add support for. Use the Expand.### version included with the Windows OPK to expand the contents of the Lp.cab file to a local directory. For example,
expand.### –f:* C:\LPs\fr-fr\lp.cab C:\LPs\fr-fr\expanded
expand.### –f:* C:\LPs\de-de\lp.cab C:\LPs\de-de\expanded
Then, copy the sources and the license directories from the expanded language pack to the Windows distribution. For example,
xcopy C:\LPs\fr-fr\expanded\sources\license\* c:\windows_distribution\sources\license\ /cherkyi
xcopy C:\LPs\fr-fr\expanded\setup\sources\* c:\windows_distribution\sources\ /cherkyi
xcopy C:\LPs\de-de\expanded\sources\license\* c:\windows_distribution\sources\license\ /cherkyi
xcopy C:\LPs\de-de\expanded\setup\sources\* c:\windows_distribution\sources\ /cherkyi
Mount the Windows image in the Windows distribution. This is required for Intlcfg.### to report the list of languages installed in the .wim file and to recreate the Lang.ini file. Use ImageX to mount the Windows image. For example,
imagex /mountrw C:\windows_distribution\sources\install.wim 1 C:\wim_mount
Report the languages that are available or installed to the Windows image by using the -report option for intlcfg. For example,
intlcfg.### –report –dist:c:\windows_distribution –image:c:\wim_mount
Verify that the correct languages are displayed as available languages.
Recreate the Lang.ini file and select the default international values to use. When you add or remove language packs from a Windows image, you must recreate the Lang.ini file. The Lang.ini file is used during Windows Setup and contains a list of all the language packs that are available, the locations of the language packs, and the default language to use during Windows Setup.
For example, recreate the Lang.ini file with the following command.
Intlcfg.### –genlangini –dist:c:\windows_distribution –image:c:\wim_mount –all:fr-fr
Unmount the .wim file. For example,
imagex /unmount C:\wim_mount
Specify the default international language settings in one of the following ways.
Use Intlcfg.### to set the default languages and the locale settings. For more information, see Configure International Settings with Intlcfg.###.
Use an answer file to specify the languages and the locale settings. For more information, see Configure International Settings in an Answer File.
To change the language used during Windows Setup, you must add the Windows Setup localized resources to the Windows distribution. For more information, see Add a Language to Windows Setup.
See Also