Install and configure serversThe Install and Configure Servers domain  dịch - Install and configure serversThe Install and Configure Servers domain  Việt làm thế nào để nói

Install and configure serversThe In

Install and configure servers

The Install and Configure Servers domain originates from the 70-410 exam. Unlike that

Windows Server 2012. Instead, you'll mostly see questions about new features related to the

initial configuration of Windows Server (such as Features on Demand, full installation/Server

Core convertibility, and the remote deployment of server roles) or to server hardware (such

as NIC teaming and Storage Spaces).

Objectives in this chapter:

exam, the 70-417 upgrade exam avoids basic installation concepts that aren’t new to

■ Objective 1.1: Install servers

■ Objective 1.2: Configure servers

■ Objective 1.3: Configure local storage

IMPORTANT

Have you read

page xvi?

It contains valuable

information regarding

the skills you need to

pass the exam.

Objective 1.1: Install servers

“Installing servers” might sound like an easy topic that you don’t need to study, but there’s a

bit more to this objective than meets the eye. Yes, you should certainly review the hardware

requirements for Windows Server 2012, but just as important, a new feature that you are

likely to see on the 70-417 exam makes an appearance here: Features on Demand.

This section covers the following topics:

■ Windows Server 2012 minimum hardware requirements

■ Migrating roles from previous versions of Windows Server

■ Optimizing resource utilization by using Features on Demand

Minimum hardware requirements

You already know you won’t see questions on any Microsoft exam that ask you, for example,

“What are the processor requirements for Windows?” But sometimes hardware require-
ments sneak into exam questions indirectly. For example, you might see a scenario in which

a new feature that is available only in Windows Server 2012 is needed, and the existing

server hardware (based on, say, an x86 processor) requires an upgrade to support the new

1

www.it-ebooks.info

operating system. Fortunately, in this case the hardware requirements are easy to learn:

the minimum hardware requirements for Windows Server 2012 are the same as those for

Windows Server 2008 R2. Here’s a recap:

■ Processor: 1.4 GHz 64-bit processor

■ RAM: 512 MB (allocate more for the Chinese version)

■ Disk space: 32 GB

Don’t miss the obvious here. Windows Server 2012 requires a 64-bit processor, unlike

Windows Server 2008 (but like Windows Server 2008 R2). This fact could easily form the

basis of a test question. If a question states you need to upgrade to Windows Server 2012

on an existing server, make sure the server has a 64-bit processor. If it doesn’t, you need to

replace the hardware. If the hardware is compatible, you can perform an in-place upgrade (as

opposed to a fresh installation) from Windows Server 2008 SP2 or later.

Migrating server roles by using the Windows Server

Migration Tool

Don’t forget about the Windows Server Migration Tool (WSMT), a command-line tool that

helps you migrate certain roles to servers running Windows Server. WSMT is a built-in, install-
able feature of Windows Server 2012. When you use WSMT, the source computer can be

running Windows Server 2003 (SP2 or later), Windows Server 2008, Windows Server 2008 R2,

or Windows Server 2012.

You don’t need to remember the specifics of how to use WSMT for the 70-417 exam.

However, it’s a good idea to review the procedure for setting up a role migration from

a server running Windows Server 2008 R2. Some of these elements, such as Install-
WindowsFeature Migration, SmigDeploy.exe, or Get-SmigServerFeature, could possibly

appear in a test question.

To set up a role migration from a server running Windows Server 2008 R2, take the follow-
ing steps:

1. Install WSMT on the destination server running Windows Server 2012. At an elevated

2. Create deployment folders on the destination server running Windows Server 2012.

Windows PowerShell prompt, type the following:

Install-WindowsFeature Migration

For this step, use the SmigDeploy.exe command at an elevated command prompt. For

example, to create a deployment folder to migrate from Windows Server 2008 R2, type

the following:

SmigDeploy.exe /package /architecture amd64 /os WS08R2 /path

3. Copy the deployment folders from the destination server to the source server.

2 CHAPTER 1 Install and configure servers

www.it-ebooks.info

4. Register WSMT on source servers by typing the following at an elevated command

prompt in the copied directory on the source server:

.Smigdeploy.exe

5. Load WSMT into your Windows PowerShell session. To load WSMT, type the following

and then press Enter.

Add-PSSnapin Microsoft.Windows.ServerManager.Migration

6. Type Get-SmigServerFeature at an elevated Windows PowerShell prompt to find out

which features can be exported from the local server.

At this point, you would use cmdlets such as Export-SmigServerSettings, Import-
SmigServerSettings, Send-SmigServerData, and Receive-SmigServerData to migrate

data and settings to the destination server.

MORE INFO For more information about using WSMT to migrate to Windows Server

2012, visit http://technet.microsoft.com/en-us/library/jj134202. For cmdlets that apply to

Windows Server 2008 R2, visit http://technet.microsoft.com/en-us/library/dd871125.

Features on Demand

A copy of the binary files for all features and roles that are installed during Windows Setup

is stored in a directory called the side-by-side store, located in WindowsWinSxS. Keeping a

copy of the feature files available on disk in this way enables you to add a role or enable a

feature after Windows Server installation without needing to access Windows Server media.

In previous versions of Windows Server, these features files remained on disk for the life of

the operating system. The disadvantage of this approach was that these files took up space

on the disk even if you never wanted to install the associated feature or role. In addition, you

weren’t able to reduce the size of the installation image, which you might want to do when

creating custom installation media for your organization.

In Windows Server 2012, you can minimize the footprint of your installation by deleting

the files for features you’re not using from the side-by-side store. This ability to delete feature

files is called Features on Demand. To later reinstall a role or feature for which files have been

deleted, you need access to the Windows Server 2012 source files.

To completely remove all files for a role or feature from disk, use the Uninstall-
WindowsFeature cmdlet of Windows PowerShell and specify the name of the feature by using

the –Remove option. For example, to delete the DHCP server binaries from server storage,

run the following Windows PowerShell command:

Uninstall-WindowsFeature DHCP –Remove

EXAM TIP

Windows PowerShell is heavily emphasized on the 70-417 exam.

Objective 1.1: Install servers CHAPTER 1 3

www.it-ebooks.info

Figure 1-1 shows the result after you run the Get-WindowsFeature cmdlet. The DHCP

Server install state is described as Removed.

FIGURE 1-1 Removing feature files.

You can reinstall these feature files at any point. To install a role or feature for which the

binaries have been deleted, you can use the Install-WindowsFeature cmdlet in Windows

PowerShell with the –Source option to specify any of the following:

■ A path to a local Windows Imaging (WIM) file (for example, the product DVD)

The path for a WIM file should be in the following format: WIM:[drive letter]:sources

install.wim:[image index], for example, WIM:e:sourcesinstall.wim:4.

■ A Universal Naming Convention (UNC) path to a WIM file on a network share, using

the WIM: prefix before the path

■ A UNC path to a network share that contains the WinSxS folder for the appropriate

version of Windows Server 2012

If you do not specify a –Source option, Windows will attempt to access the files by per-
forming the following tasks in order:

1. Searching in a location that has been specified by users of the Add Roles And

Features Wizard or Deployment Image Servicing and Management (DISM) installation

commands.

2. Evaluating the configuration of the Group Policy setting, Computer Configuration

Administrative TemplatesSystemSpecify settings for optional component installation

and component repair.

3. Searching Windows Update. (Note that this can be a lengthy process for some

features.)

Alternatively, you can reinstall the feature by using Server Manager. When you get to the

final page of the Add Roles And Features Wizard, choose the option to specify an alternate

source path, as shown in Figure 1-2. Then provide a path to source files when prompted.
0/5000
Từ: -
Sang: -
Kết quả (Việt) 1: [Sao chép]
Sao chép!
Install and configure serversThe Install and Configure Servers domain originates from the 70-410 exam. Unlike that Windows Server 2012. Instead, you'll mostly see questions about new features related to the initial configuration of Windows Server (such as Features on Demand, full installation/Server Core convertibility, and the remote deployment of server roles) or to server hardware (such as NIC teaming and Storage Spaces).Objectives in this chapter:exam, the 70-417 upgrade exam avoids basic installation concepts that aren’t new to ■ Objective 1.1: Install servers■ Objective 1.2: Configure servers■ Objective 1.3: Configure local storageIMPORTANTHave you read page xvi?It contains valuable information regarding the skills you need to pass the exam.Objective 1.1: Install servers“Installing servers” might sound like an easy topic that you don’t need to study, but there’s a bit more to this objective than meets the eye. Yes, you should certainly review the hardware requirements for Windows Server 2012, but just as important, a new feature that you are likely to see on the 70-417 exam makes an appearance here: Features on Demand. This section covers the following topics:■ Windows Server 2012 minimum hardware requirements■ Migrating roles from previous versions of Windows Server■ Optimizing resource utilization by using Features on DemandMinimum hardware requirementsYou already know you won’t see questions on any Microsoft exam that ask you, for example, “What are the processor requirements for Windows?” But sometimes hardware require-ments sneak into exam questions indirectly. For example, you might see a scenario in which a new feature that is available only in Windows Server 2012 is needed, and the existing server hardware (based on, say, an x86 processor) requires an upgrade to support the new 1www.it-ebooks.infooperating system. Fortunately, in this case the hardware requirements are easy to learn: the minimum hardware requirements for Windows Server 2012 are the same as those for Windows Server 2008 R2. Here’s a recap: ■ Processor: 1.4 GHz 64-bit processor■ RAM: 512 MB (allocate more for the Chinese version)■ Disk space: 32 GBDon’t miss the obvious here. Windows Server 2012 requires a 64-bit processor, unlike Windows Server 2008 (but like Windows Server 2008 R2). This fact could easily form the basis of a test question. If a question states you need to upgrade to Windows Server 2012 on an existing server, make sure the server has a 64-bit processor. If it doesn’t, you need to replace the hardware. If the hardware is compatible, you can perform an in-place upgrade (as opposed to a fresh installation) from Windows Server 2008 SP2 or later.Migrating server roles by using the Windows Server Migration ToolDon’t forget about the Windows Server Migration Tool (WSMT), a command-line tool that
helps you migrate certain roles to servers running Windows Server. WSMT is a built-in, install-
able feature of Windows Server 2012. When you use WSMT, the source computer can be

running Windows Server 2003 (SP2 or later), Windows Server 2008, Windows Server 2008 R2,

or Windows Server 2012.

You don’t need to remember the specifics of how to use WSMT for the 70-417 exam.

However, it’s a good idea to review the procedure for setting up a role migration from

a server running Windows Server 2008 R2. Some of these elements, such as Install-
WindowsFeature Migration, SmigDeploy.exe, or Get-SmigServerFeature, could possibly

appear in a test question.

To set up a role migration from a server running Windows Server 2008 R2, take the follow-
ing steps:

1. Install WSMT on the destination server running Windows Server 2012. At an elevated

2. Create deployment folders on the destination server running Windows Server 2012.

Windows PowerShell prompt, type the following:

Install-WindowsFeature Migration

For this step, use the SmigDeploy.exe command at an elevated command prompt. For

example, to create a deployment folder to migrate from Windows Server 2008 R2, type

the following:

SmigDeploy.exe /package /architecture amd64 /os WS08R2 /path
path>

3. Copy the deployment folders from the destination server to the source server.

2 CHAPTER 1 Install and configure servers

www.it-ebooks.info

4. Register WSMT on source servers by typing the following at an elevated command

prompt in the copied directory on the source server:

.Smigdeploy.exe

5. Load WSMT into your Windows PowerShell session. To load WSMT, type the following

and then press Enter.

Add-PSSnapin Microsoft.Windows.ServerManager.Migration

6. Type Get-SmigServerFeature at an elevated Windows PowerShell prompt to find out

which features can be exported from the local server.

At this point, you would use cmdlets such as Export-SmigServerSettings, Import-
SmigServerSettings, Send-SmigServerData, and Receive-SmigServerData to migrate

data and settings to the destination server.

MORE INFO For more information about using WSMT to migrate to Windows Server

2012, visit http://technet.microsoft.com/en-us/library/jj134202. For cmdlets that apply to

Windows Server 2008 R2, visit http://technet.microsoft.com/en-us/library/dd871125.

Features on Demand

A copy of the binary files for all features and roles that are installed during Windows Setup

is stored in a directory called the side-by-side store, located in WindowsWinSxS. Keeping a

copy of the feature files available on disk in this way enables you to add a role or enable a

feature after Windows Server installation without needing to access Windows Server media.

In previous versions of Windows Server, these features files remained on disk for the life of

the operating system. The disadvantage of this approach was that these files took up space

on the disk even if you never wanted to install the associated feature or role. In addition, you

weren’t able to reduce the size of the installation image, which you might want to do when

creating custom installation media for your organization.

In Windows Server 2012, you can minimize the footprint of your installation by deleting

the files for features you’re not using from the side-by-side store. This ability to delete feature

files is called Features on Demand. To later reinstall a role or feature for which files have been

deleted, you need access to the Windows Server 2012 source files.

To completely remove all files for a role or feature from disk, use the Uninstall-
WindowsFeature cmdlet of Windows PowerShell and specify the name of the feature by using

the –Remove option. For example, to delete the DHCP server binaries from server storage,

run the following Windows PowerShell command:

Uninstall-WindowsFeature DHCP –Remove

EXAM TIP

Windows PowerShell is heavily emphasized on the 70-417 exam.

Objective 1.1: Install servers CHAPTER 1 3

www.it-ebooks.info

Figure 1-1 shows the result after you run the Get-WindowsFeature cmdlet. The DHCP

Server install state is described as Removed.

FIGURE 1-1 Removing feature files.

You can reinstall these feature files at any point. To install a role or feature for which the

binaries have been deleted, you can use the Install-WindowsFeature cmdlet in Windows

PowerShell with the –Source option to specify any of the following:

■ A path to a local Windows Imaging (WIM) file (for example, the product DVD)

The path for a WIM file should be in the following format: WIM:[drive letter]:sources

install.wim:[image index], for example, WIM:e:sourcesinstall.wim:4.

■ A Universal Naming Convention (UNC) path to a WIM file on a network share, using

the WIM: prefix before the path

■ A UNC path to a network share that contains the WinSxS folder for the appropriate

version of Windows Server 2012

If you do not specify a –Source option, Windows will attempt to access the files by per-
forming the following tasks in order:

1. Searching in a location that has been specified by users of the Add Roles And

Features Wizard or Deployment Image Servicing and Management (DISM) installation

commands.

2. Evaluating the configuration of the Group Policy setting, Computer Configuration

Administrative TemplatesSystemSpecify settings for optional component installation

and component repair.

3. Searching Windows Update. (Note that this can be a lengthy process for some

features.)

Alternatively, you can reinstall the feature by using Server Manager. When you get to the

final page of the Add Roles And Features Wizard, choose the option to specify an alternate

source path, as shown in Figure 1-2. Then provide a path to source files when prompted.
đang được dịch, vui lòng đợi..
Kết quả (Việt) 2:[Sao chép]
Sao chép!
Cài đặt và cấu hình máy chủ Việc cài đặt và cấu hình máy chủ miền bắt nguồn từ kỳ thi 70-410. Không giống như Windows Server 2012. Thay vào đó, bạn sẽ chủ yếu là xem các câu hỏi về các tính năng mới liên quan đến cấu hình ban đầu của Windows Server (như tính năng theo yêu cầu, đầy đủ cài đặt / Server lõi chuyển đổi, và việc triển khai từ xa các vai trò máy chủ) hoặc máy chủ phần cứng (chẳng hạn như NIC Teaming và không gian lưu trữ). Mục tiêu của chương này: kỳ thi, kỳ thi 70-417 nâng cấp tránh được các khái niệm cơ bản cài đặt mà không phải là mới ■ Mục tiêu 1.1: Cài đặt máy chủ ■ Mục tiêu 1.2: Cấu hình máy chủ ■ Mục tiêu 1.3: Cấu hình lưu trữ địa phương QUAN TRỌNG Bạn đã đọc trang xvi? Nó chứa giá trị thông tin liên quan đến các kỹ năng cần thiết để vượt qua kỳ thi. Mục tiêu 1.1: Cài đặt máy chủ "Cài đặt máy chủ" có vẻ như là một chủ đề dễ dàng mà bạn không cần phải học, nhưng có một nhiều hơn một chút để mục tiêu này hơn đáp ứng mắt. Vâng, bạn chắc chắn nên xem lại phần cứng yêu cầu cho Windows Server 2012, nhưng cũng quan trọng, một tính năng mới mà bạn có thể thấy trên các kỳ thi 70-417 làm cho xuất hiện ở đây: Các tính năng theo yêu cầu. Phần này bao gồm các chủ đề sau: ■ Windows Server 2012 yêu cầu phần cứng tối thiểu ■ Chuyển vai trò từ các phiên bản trước của Windows Server ■ sử dụng tài nguyên tối ưu hóa bằng cách sử dụng tính năng theo yêu cầu yêu cầu phần cứng tối thiểu: Bạn đã biết bạn sẽ không thấy bất kỳ câu hỏi về kỳ thi Microsoft yêu cầu bạn, ví dụ, "gì là các yêu cầu xử lý cho Windows? "Nhưng đôi khi phần cứng require- ments lẻn vào câu hỏi thi gián tiếp. Ví dụ, bạn có thể thấy một kịch bản trong đó một tính năng mới mà chỉ có trong Windows Server 2012 là cần thiết, và hiện phần cứng máy chủ (dựa trên, nói rằng, một bộ xử lý x86) đòi hỏi một bản nâng cấp để hỗ trợ mới 1 www.it -ebooks.info hệ điều hành. May mắn thay, trong trường hợp này các yêu cầu phần cứng rất dễ học: các yêu cầu phần cứng tối thiểu cho Windows Server 2012 cũng tương tự như đối với Windows Server 2008 R2. Dưới đây là danh: ■ Processor: 1.4 GHz 64-bit xử lý ■ RAM: 512 MB ​​(phân bổ nhiều hơn cho phiên bản Trung Quốc) ■ Không gian đĩa: 32 GB Đừng bỏ lỡ cơ rõ ràng ở đây. Windows Server 2012 đòi hỏi một bộ xử lý 64-bit, không giống như Windows Server 2008 (nhưng giống như Windows Server 2008 R2). Thực tế này có thể dễ dàng hình thành các cơ sở của một câu hỏi kiểm tra. Nếu một câu hỏi nêu bạn cần phải nâng cấp lên Windows Server 2012 trên một máy chủ hiện có, đảm bảo các máy chủ có một bộ xử lý 64-bit. Nếu không, bạn cần phải thay thế phần cứng. Nếu phần cứng tương thích, bạn có thể thực hiện một nâng cấp tại chỗ (như trái ngược với một cài đặt mới) từ Windows Server 2008 SP2 hoặc sau đó. Chuyển vai trò máy chủ bằng cách sử dụng Windows Server Migration Tool Đừng quên về Windows Server Migration Tool (WSMT), một công cụ dòng lệnh giúp bạn di chuyển vai trò nhất định đến các máy chủ chạy Windows Server. WSMT là một built-in, install- tính năng có thể của Windows Server 2012. Khi bạn sử dụng WSMT, nguồn máy tính có thể chạy Windows Server 2003 (SP2 hoặc mới hơn), Windows Server 2008, Windows Server 2008 R2, hoặc Windows Server 2012. Bạn không cần phải nhớ các chi tiết cụ thể về cách sử dụng WSMT cho kỳ thi 70-417. Tuy nhiên, đó là một ý tưởng tốt để xem xét các thủ tục cho việc thiết lập một sự chuyển đổi vai trò từ một máy chủ đang chạy Windows Server 2008 R2. Một số các yếu tố, chẳng hạn như Install- WindowsFeature Migration, SmigDeploy.exe, hoặc Get-SmigServerFeature, có thể có thể xuất hiện trong một câu hỏi kiểm tra. Để thiết lập một sự chuyển đổi vai trò từ một máy chủ đang chạy Windows Server 2008 R2, đi follow- bước ing : 1. Cài đặt WSMT trên máy chủ đích đang chạy Windows Server 2012. Tại một cao 2. Tạo thư mục triển khai trên máy chủ đích đang chạy Windows Server 2012. Windows PowerShell dấu nhắc, gõ như sau: Cài đặt-WindowsFeature Migration Đối với bước này, sử dụng lệnh SmigDeploy.exe tại một dấu nhắc lệnh nâng cao. Ví dụ, để tạo một thư mục triển khai để di chuyển từ Windows Server 2008 R2, gõ như sau: SmigDeploy.exe / gói / kiến trúc amd64 / os WS08R2 / path




































































































































path> 3. Chép các thư mục triển khai từ các máy chủ đích đến máy chủ nguồn. 2 CHƯƠNG 1 Cài đặt và cấu hình máy chủ www.it-ebooks.info 4. Đăng ký WSMT trên các máy chủ nguồn bằng cách gõ lệnh sau tại một lệnh nâng lên nhanh chóng trong các thư mục sao chép trên máy chủ nguồn: Smigdeploy.exe . 5. Tải WSMT vào phiên Windows PowerShell của bạn. Để tải WSMT, gõ như sau và sau đó nhấn Enter. Add-PSSnapin Microsoft.Windows.ServerManager.Migration 6. Gõ Get-SmigServerFeature tại một cao Windows PowerShell nhắc để tìm hiểu các tính năng mà có thể được xuất khẩu từ các máy chủ của địa phương. Tại thời điểm này, bạn sẽ sử dụng lệnh chẳng hạn như xuất khẩu-SmigServerSettings, nhập khẩu SmigServerSettings, gửi-SmigServerData, và Nhận-SmigServerData để di chuyển dữ liệu và cài đặt vào máy chủ đích. INFO THÊM Để biết thêm thông tin về cách sử dụng WSMT để di chuyển đến Windows Server 2012, hãy truy cập http://technet.microsoft.com/en-us/library/jj134202. Đối với các cmdlet mà áp dụng cho Windows Server 2008 R2, hãy truy cập http://technet.microsoft.com/en-us/library/dd871125. Tính năng on Demand Một bản sao của các tập tin nhị phân cho tất cả các tính năng và vai trò được cài đặt trong Windows Setup là được lưu trữ trong một thư mục được gọi là các cửa hàng side-by-side, nằm ​​trong Windows WinSxS. Giữ một bản sao của các tập tin tính năng có sẵn trên đĩa theo cách này cho phép bạn thêm một vai trò hoặc kích hoạt một tính năng sau khi cài đặt Windows Server mà không cần phải truy cập vào Windows Server phương tiện truyền thông. Trong các phiên bản trước của Windows Server, những tập tin tính năng vẫn còn trên đĩa cho cuộc sống của các hệ điều hành. Nhược điểm của phương pháp này là những tập tin chiếm không gian trên đĩa ngay cả khi bạn không bao giờ muốn cài đặt các tính năng liên quan đến vai trò hay. Ngoài ra, bạn không thể làm giảm kích thước của hình ảnh cài đặt, bạn có thể muốn làm gì khi tạo đĩa cài đặt tùy biến cho tổ chức của bạn. Trong Windows Server 2012, bạn có thể giảm thiểu những dấu chân của cài đặt của bạn bằng cách xóa các tập tin cho tính năng mà bạn không sử dụng từ các cửa hàng side-by-side. Khả năng này để xóa tính năng file được gọi là tính năng theo yêu cầu. Để sau đó cài đặt lại vai trò hoặc tính năng mà các tập tin đã bị xóa, bạn cần truy cập vào các nguồn Windows Server 2012 tập tin. Để loại bỏ hoàn toàn tất cả các file trong một vai trò hoặc tính năng từ đĩa, sử dụng Uninstall- cmdlet WindowsFeature của Windows PowerShell và chỉ định tên của tính năng này bằng cách sử dụng các tùy chọn -Xoá. Ví dụ, để xóa các tập tin nhị phân máy chủ DHCP từ máy chủ lưu trữ, chạy các lệnh Windows PowerShell sau: Uninstall-WindowsFeature DHCP -Xoá EXAM TIP. Windows PowerShell là rất nhiều nhấn mạnh vào các kỳ thi 70-417 Mục tiêu 1.1: Cài đặt máy chủ CHƯƠNG 1 3 www. it-ebooks.info Hình 1-1 cho thấy kết quả sau khi bạn chạy lệnh Get-WindowsFeature. DHCP Server cài đặt trạng thái được mô tả như gỡ bỏ. HÌNH 1-1 Loại bỏ các tập tin tính năng này. Bạn có thể cài đặt lại các tập tin tính năng tại bất kỳ điểm nào. Để cài đặt một vai trò hoặc tính năng mà các tập tin nhị phân đã bị xóa, bạn có thể sử dụng các WindowsFeature Install-lệnh trong Windows PowerShell với tùy chọn -Nguồn chỉ rõ bất kỳ những điều sau đây: ■ Một con đường dẫn tới một Windows Imaging (WIM) tập tin địa phương ( Ví dụ, các sản phẩm DVD) Các con đường cho một file WIM phải ở trong các định dạng sau: WIM: [ổ đĩa thư]: sources install.wim: [index image], ví dụ, WIM: e: sources cài đặt .wim:. 4 ■ Một Universal Naming Convention (UNC) đường dẫn đến một file WIM vào một mạng chia sẻ, sử dụng các WIM: tiền tố trước đây con đường ■ Một đường dẫn UNC đến một mạng chia sẻ có chứa các thư mục WinSxS cho phù hợp phiên bản của Windows Server 2012 Nếu bạn không chỉ định một tùy chọn -Nguồn, Windows sẽ cố gắng truy cập vào các tập tin bằng trọng hình thành các nhiệm vụ sau đây theo thứ tự: 1. Tìm kiếm tại một địa điểm đã được xác định bởi người sử dụng của Add Roles và Features Wizard hoặc triển khai hình ảnh Dịch vụ và Quản lý (DISM) lắp đặt lệnh. 2. Đánh giá cấu hình của các thiết lập Group Policy, Computer Configuration Administrative Templates System Chỉ định cài đặt để cài đặt thành phần tùy chọn và sửa chữa thành phần. 3. Tìm kiếm Windows Update. (Lưu ý rằng điều này có thể là một quá trình lâu dài đối với một số tính năng.) Ngoài ra, bạn có thể cài đặt lại các tính năng bằng cách sử dụng Server Manager. Khi bạn nhận được đến trang cuối cùng của Add Roles và Features Wizard, chọn tùy chọn để chỉ định người thay thế đường dẫn nguồn, như thể hiện trong hình 1-2. Sau đó cung cấp một đường dẫn đến nguồn tập tin khi được nhắc.
































































































































đang được dịch, vui lòng đợi..
 
Các ngôn ngữ khác
Hỗ trợ công cụ dịch thuật: Albania, Amharic, Anh, Armenia, Azerbaijan, Ba Lan, Ba Tư, Bantu, Basque, Belarus, Bengal, Bosnia, Bulgaria, Bồ Đào Nha, Catalan, Cebuano, Chichewa, Corsi, Creole (Haiti), Croatia, Do Thái, Estonia, Filipino, Frisia, Gael Scotland, Galicia, George, Gujarat, Hausa, Hawaii, Hindi, Hmong, Hungary, Hy Lạp, Hà Lan, Hà Lan (Nam Phi), Hàn, Iceland, Igbo, Ireland, Java, Kannada, Kazakh, Khmer, Kinyarwanda, Klingon, Kurd, Kyrgyz, Latinh, Latvia, Litva, Luxembourg, Lào, Macedonia, Malagasy, Malayalam, Malta, Maori, Marathi, Myanmar, Mã Lai, Mông Cổ, Na Uy, Nepal, Nga, Nhật, Odia (Oriya), Pashto, Pháp, Phát hiện ngôn ngữ, Phần Lan, Punjab, Quốc tế ngữ, Rumani, Samoa, Serbia, Sesotho, Shona, Sindhi, Sinhala, Slovak, Slovenia, Somali, Sunda, Swahili, Séc, Tajik, Tamil, Tatar, Telugu, Thái, Thổ Nhĩ Kỳ, Thụy Điển, Tiếng Indonesia, Tiếng Ý, Trung, Trung (Phồn thể), Turkmen, Tây Ban Nha, Ukraina, Urdu, Uyghur, Uzbek, Việt, Xứ Wales, Yiddish, Yoruba, Zulu, Đan Mạch, Đức, Ả Rập, dịch ngôn ngữ.

Copyright ©2024 I Love Translation. All reserved.

E-mail: