Exam Windows Embedded Standard Preparation Kit. Certification Exam Preparation utomation. Not for resale.

Size: px
Start display at page:

Download "Exam Windows Embedded Standard Preparation Kit. Certification Exam Preparation utomation. Not for resale."

Transcription

1 MCTS i Exam Windows Embedded Standard 2009 Preparation Kit Certification Exam Preparation utomation Not for resale.

2 ii Table of Contents Contents at a Glance 1 Creating and Customizing the Configuration 2 Managing the Development Environment 3 Integrating Embedded Enabling Features 4 Creating Components 5 Generating and Deploying an Image 6 Adding Windows Functionality

3 Chapter 5 Generating and Deploying an Image After you have completed the tasks of designing your run-time image, configuring it with the necessary components and testing the configuration, you can continue with production deployment to your target devices. Production deployment entails reviewing the deployment scenario, preparing the image, and deploying it to devices for a final, retail-ready product. This chapter discusses key deployment scenarios for Internet- connected and unconnected devices including devices that start remotely or start from an onboard booting media. This chapter also covers the configuration dependencies you must complete to prepare your image for distribution. Exam objectives in this chapter: Generate the Pre-First Boot Agent (pre-fba) image Seal and clone the post-fba image Prepare target media for deployment Deploy the Post-First Boot Agent (post-fba) image to the target device Implement a remote boot solution Before You Begin To complete the lessons in this chapter you need the following: Microsoft Windows Embedded Studio for Windows Embedded Standard 2009 installed. Completed Chapters 1, 2, 3 and

4 146 Chapter 5 Generating and Deploying an Image Lesson 1: Generate the Pre-FBA Image FBA runs the first time your operating system starts after you configure and build an image. FBA completes the run-time image build process by running a sequence of tasks on the target system, such as Plug and Play (PnP) device detection, security installation, and DLL registration. You can add commands to the FBA process and specify when they will run. You can also add tasks to the FBA process by defining custom resources, referred to as FBA commands, such as RunOnce requests, application shortcuts, and populating the registry with service data. After this lesson, you will be able to: Include a product identification key (PID). Understand the FBA process. Create custom resources to customize the build process. Estimated lesson time: 20 minutes. Run-Time Image Licensing You must enter a PID for your retail image. Otherwise, the image that you create is an evaluation image and will stop working after the evaluation period expires 120 days after deployment. Windows Embedded Standard 2009 product activation does not require online access and is activated in Target Designer when you enter a run-time product key in the Run-time Image Licensing section of the image configuration settings. FBA Phases and Processing Order The Target Designer build process creates the raw system image, creates the necessary directory structure, and copies the files for each component to the specified directories. The build process also creates the registry hives and saves these in the \Windows\System32\Config folder. This raw system image is not ready to run as it is. On the first start of the raw run-time image, FBA runs to complete the build process. FBA performs any run-time tasks that could not be performed offline with Target Designer, including security installation, catalog registration, PnP device detection, network configuration, DLL registration, and profile initialization. The FBA process flows in a predefined, sequential order that is determined by phases and ordinal values to control the timing of various commands. FBA Generic

5 Lesson 1: Generate the Pre-FBA Image 147 Command, FBA DLL/COM Registration, and FBA OC Manager Requests all have ordinal values associated with them. FBA starts at 0 and continues through 65,535. Phases 0 through 8,500 are reserved for use by the system and you should not set a directive to run below 8,500. The phase values are double words, where the high word indicates the FBA phase and the low word indicates the ordinal value within an FBA phase. You can view a log (Fbalog.txt) of the FBA process in the Windows\FBA directory on the target device after FBA has run. If you have a kernel debugger attached while FBA executes, the logging information is forwarded to the debugger as well as written to the log file. Custom Resources You add custom resources to enhance the functionality of a component when you create a component in Component Designer. However, custom resources are also FBA commands, because FBA controls their execution. During first boot, FBA uses these commands to populate the registry, set up application shortcuts, specify replacements for end-of-life components, and perform actions that cannot be done during the building of a configuration, such as Component Object Model (COM) registration. You use Target Designer to add custom resources to a configuration. FBA DLL or COM Registration This resource is required for any component that needs to register a COM InProc server. FBA uses functions from the Win32 application programming interface (API), including LoadLibrary, DllRegisterServer, DllUnregisterServer, and DllInstall, to register and load the DLLs containing the COM objects. Component Branch This resource is used to specify a replacement component for a component that is set to an end-of-life (EOL) state. When an EOL component is replaced by multiple components, one branch resource is added to the EOL component for each replacement component. Branch resources are only used in EOL components. However not all EOL components require replacements in such a case there is no branch. In other cases there is only one branch which means that the EOL component is replaced by one new component.

6 148 Chapter 5 Generating and Deploying an Image PnP Device ID This resource is used to insert PnP information into a device component, and is required for PnP device drivers. As already mentioned in Chapter 4, you should not add PnP resources manually to a component, because these are created automatically when you import an INF file into Component Designer. RunOnce Request This resource is used to execute an application during the first start of the run-time image, after first boot, or after every logon. This functionality is added to the run-time image as one of three registry keys: HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion \Run. The Run key is processed after every logon. The Explorer shell runs it if present, otherwise either Custom Shell, Command Shell, or Task Manager Shell run it. If FBA processes this key, it does so after every logon, not during first start as it normally would. Typically, this key is used to load system tray applications, launch services in executables, hide auto start applications, or hide background processes. HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion \RunOnce. FBA processes the RunOnce key only once after PnP device enumeration and DLL registration processing have completed. The values of this registry key are deleted from the registry after it is processed, so that it will not run again. Typically, this flag is used when a restart is required, such as for a DLL or OCX registration. HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion \RunOnceEx. The RunOnceEx key is processed only once, by the Explorer shell, after the first logon. The values of this registry key are deleted from the registry after it is processed, so that it will not run again. If the Explorer shell is not present, this key is ignored. Typically, this flag is used for a process that runs only once, and that either cannot be run correctly by FBA or requires the system to be fully operational.

7 Lesson 1: Generate the Pre-FBA Image 149 Service Data This resource is required for components that define a Windows service. Start Menu Shortcuts This resource is used to create shortcuts on the Start menu or on the desktop if these are part of your image. FBA Generic Commands This is a custom resource which is required for a component that needs programs executed during FBA on the run-time image. FBA calls CreateProcess from the Win32 API to run a program and optionally pass it command-line arguments. Prepare for Cloning Before you prepare to clone your image, make sure that the configuration accurately reflects the hardware of your target device and that you have verified its functionality on your target device. Then, add the System Cloning Tool component to your configuration, which is located under Software>System>System Services>Base folder in component browser. After you add it to the configuration, you can configure its settings or leave the default settings. The next lesson covers the settings for the cloning tool. Lesson Summary This lesson introduces the tasks you have to perform before you build and deploy your production image. You need to stamp your image with a PID key for the image to become a production image that does not expire after 120 days. You create all the custom resources you need for FBA to prepare your raw image to function as intended. Finally, you must plan for mass deployment by adding the System Cloning Tool to your configuration. You complete a final dependency check, build your image and save your configuration file.

8 150 Chapter 5 Generating and Deploying an Image Quick Check 1. What must be done in order to prevent a Windows Embedded Standard 2009 operating system from expiring? 2. Is it safe to run FBA on a development machine, and then transfer the operating system to a different machine for testing? 3. What do you add to your configuration to facilitate cloning of the operating system? Quick Check Answers 1. A retail run-time PID must be entered in Target Designer to prevent the runtime from expiring. 2. Only if the machine to which the operating system is being moved is identical to the development machine. FBA installs PnP devices, and therefore the hardware must be very similar. 3. The System Cloning Tool component.

9 Lesson 2: Seal and Clone the Post-FBA Image 151 Lesson 2: Seal and Clone the Post-FBA Image In order to deploy a Windows Embedded Standard 2009 image on multiple target devices, a unique System ID (SID) must be associated with each image that is deployed. SIDs play an important role in Windows networking and in NTFS file permissions. Unique SIDs are necessary for networked devices. Windows Embedded Standard 2009 includes the System Cloning Tool component to help you assign unique SIDs to your devices. You include this component in your configuration when you want to clone your run-time image for mass deployment purposes. See Figure 5-1 for an overview of the cloning process. Build OS raw image New OS Transfer to Master Master Run FBA System cloning OEM image customization Final Master Figure 5-1 System Cloning overview After this lesson, you will be able to: Understand the cloning process. Configure the System Cloning Tool component. Prepare for production deployment. Estimated lesson time: 15 minutes. System Cloning Tool Component The System Cloning Tool component contains the system cloning tools Fbreseal.exe, Setupcn.exe, and Setupcl.exe. This component also provides the minioc.inf file, which is an INF file that references the DLLs that are required to prepare components for duplication. After you add this component to your configuration you can configure its settings. In the details pane of the components settings, navigate to the System Cloning Tool tab, as shown in Figure 5-2.

10 152 Chapter 5 Generating and Deploying an Image Figure 5-2 System Cloning Tool There are three main sections in this settings page. The first is the Reseal Phase section, which enables you to select either Automatic (default and runs in phase 12,000 of the FBA process) or Manual, which sets the reseal phase to 0. With the Manual option, only the cloning tools are copied to the run-time image, the cloning phase does not occur, and you must manually use the Fbreseal.exe utility to start the reseal phase. The second is the Reseal Options section, which enables you to choose from the following reseal options: Generate New Computer Name Check to generate a random computer name for the client, for example: OEM-HUDVHELDDYQ. Unchecking tells the cloning process to preserve the existing computer name. Unjoin Domain (if joined) Check to unjoin the machine from a domain after cloning. Uncheck to retain the domain membership after cloning. Remove AutoLogon Settings Check to remove Automatic Logon after the cloning process. Uncheck to keep the Automatic Logon feature enabled after the cloning process. Remove Custom Network Settings Check to remove all network settings, including network bridges, during cloning. Uncheck to retain all network settings after cloning.

11 Lesson 2: Seal and Clone the Post-FBA Image 153 Remove Custom User Settings Check to remove all user specific settings, including start menu customizations and most recently used file lists, during cloning. Uncheck to retain all user specific setting after cloning. Remove Mounted Devices (such as network drives) Check to remove all references to mounted drives, such as floppy or CD drives, including changing drive letters, during cloning. Uncheck to retain mounted drive settings after cloning. The third section is optional and provides two more fields. The first enables you to enter the path and name of the DLL that provides the OnComplete function. The second enables you to enter the name of the function that runs after the reseal is complete (which by default is named OnResealComplete) and returns a Boolean value. Entering values in these fields enables you to display a custom message during reseal. You can leave these last two fields blank for reseal to display the default reseal message. If you enter any of these two strings incorrectly it will revert to the default message. Reseal Phase Typically, the reseal phase occurs just before the restart that precedes the cloning phase. After the reseal phase completes, you must immediately turn off the device before the subsequent restart occurs. The on-disk image is now ready for cloning. By resealing the run-time image, a subset of FBA runs when the image is deployed on other devices. This subset identifies new devices and resets the SID. Cloning Phase The cloning phase automatically begins the first time the image starts after the reseal phase, except if you checked the Manual reseal phase (0) in the System Cloning Tool settings in Target Designer. Typically, cloning occurs after the on-disk image from the master has been copied to a cloned device. The clone device picks up FBA where the master device left off after the reseal phase. During the cloning phase, FBA replaces the SID of the master device with a unique SID everywhere the SID appears. This makes each clone unique, yet preserves the other settings of the master image. See Figure 5-3 for an illustration of an overview of the cloning process.

12 154 Chapter 5 Generating and Deploying an Image Master Clone Master Master Master Clone Master Clone FBA Phases FBA Phase 1200 Copy master image to target devices Cloning Reseal and Reboot FBA Second boot FBA Figure 5-3 Cloning process overview Creating a Run-Time Image for Cloning You start the cloning process by building a run-time image in Target Designer for a device that closely matches the hardware being manufactured. Add the System Cloning Tool component to your configuration. In the configuration editor, select the component settings these are displayed in the details pane. To configure the component, see the System Cloning Tool Component section at the beginning of this lesson for a detailed description of the settings configuration. Save the configuration file, check dependencies, and build the image. After the image is built, copy it to the target device. Starting a Run-Time Image for Cloning One reason you might decide to select manual cloning is if you need to install additional applications after FBA runs. To do this, start the run-time image on the master target device, enabling FBA to run. After the FBA process completes, you can update your run-time image by installing additional applications. When the run-time image is ready to be deployed, run the Fbreseal utility. This utility resets FBA so that when a run-time image is deployed, a new computer name and SID are generated.

13 Lesson 2: Seal and Clone the Post-FBA Image 155 After the master run-time image is created, copy the master run-time image to your target device and start the device. After FBA completes, you can distribute the clone target device. Lesson Summary This lesson covers how to prepare your image for production deployment. You should not simply copy the raw image that you created with Target Designer to each device, especially if they are networked. Each device must have a unique SID if part of a network. The cloning process provides a solution that creates a unique SID for each device. However, you have to prepare your image configuration for the cloning process. You add the System Cloning Tool component that contains all the cloning tools. You can provide your own tool in the form of a DLL. This DLL must provide an entry point which is an exported function that is called when the reseal phase is completed. Quick Check 1. How does the cloning process assign a unique SID to each cloned device? 2. What is the default reseal phase of the cloning process? Quick Check Answers 1. The System Cloning Tool component resets the FBA phase so that when a run-time image boots for the first time a unique SID and computer name are assigned to the system. 2. The reseal phase occurs at the end of FBA on the master device and is used to reset a run-time image for cloning. The run-time image is typically resealed after the FBA phase has finished and resumes a subset of FBA actions on the cloned device, one of which is generating a new SID.

14 156 Chapter 5 Generating and Deploying an Image Lesson 3: Prepare Target Media for Deployment This lesson discusses the media structure: layout of the target media, how it relates to the overall start process of Windows Embedded Standard 2009, and the process of preparing the target media, including using the Bootprep tool. The Bootprep tool prepares a disk with a FAT file system partition that contains the boot sector. After this lesson, you will be able to: Understand the media structure needed to boot Windows Embedded Standard Understand the start process. Prepare the media. Use the Bootprep utility. Estimated lesson time: 30 minutes. Media Structure All disks used to start any Windows operating system contain at least a Master Boot Record (MBR), boot sector, and a primary partition. The MBR is located at sector 0 and is the most important area on a hard disk because it contains the partition table for the disk and a small amount of executable code called the master boot code. The boot sector is a critical disk structure for starting your computer, located at sector 1 of each volume. It contains executable code and data that the code requires, including information used by the file system to access the volume. The boot sector is created when you format the volume. The primary partition is a volume created using unallocated space on a basic disk. Windows operating systems start from a primary partition. As many as four primary partitions can be created on a basic disk, or three primary partitions and an extended partition. Primary partitions can be created only on basic disks and cannot be sub-partitioned. A partition must be completely present on one physical disk, and the partition table in the MBR for a physical disk can contain up to four entries for partitions. See Figure 5-4 for a visual depiction of the structure of a FAT32 disk prepared to start a Windows operating system.

15 Lesson 3: Prepare Target Media for Deployment 157 MBR Boot Sector Windows Embedded Boot Sector Boot Sector Boot Sector Partition 1 Partition 2 Partition 3 Partition 4 Figure 5-4 Bootable disk structure An extended partition is a portion of a basic disk that can contain logical drives. To have more than four volumes on your basic disk, you need to use an extended partition. Only one of the four partitions per physical disk can be an extended partition, and no primary partition needs to be present to create an extended partition. The Boot Process After you turn on your device, the boot process starts with the BIOS performing various tasks such as Power-On Self Test (POST), PnP initialization and detection, and looking for a bootable device. The BIOS boot sequence is typically configurable, and can be modified to start from any of the existing bootable devices. The BIOS then loads the MBR from the hard-disk. The MBR contains information about the partition structure of the disk the Master Partition Table, and also the Master Boot Code. This small piece of code is then given control, and it searches for a partition which is flagged as bootable. Once it finds such a partition, control is given to that partition s boot sector. The boot sector switches control to NTLDR, providing it with information about the disk. NTLDR first switches the processor to virtual memory mode. When x86-based computers first start, they are running in real mode. Because NTLDR is a 32-bit program, it must switch the processor to 32-bit flat memory mode before it can perform any other functions. It then starts the appropriate mini file system. The code to access files on FAT and NTFS volumes is built into NTLDR. This code enables NTLDR to read, access, and copy files. NTLDR continues to read the Boot.ini file, and displays the operating system selections. This screen is referred to as the boot loader screen and enables you to select an operating system. In Windows Embedded Standard 2009 the Boot.ini options are not displayed because the default timeout is set to 0 seconds. Then

16 158 Chapter 5 Generating and Deploying an Image NTLDR executes Ntdetect.com to gather information about currently installed hardware. Ntdetect.com should be in the root of the disk along with NTLDR. Then it loads Ntoskrnl.exe and Hal.dll into memory. NTLDR then loads all drivers which are configured to start, and finally passes the hardware information collected by Ntdetect.com to Ntoskrnl.exe, and then passes control to Ntoskrnl.exe. Preparing the Media You need to prepare the storage media to be able to boot Windows Embedded Standard 2009 on your device. This involves creating a primary partition on the media, marking it active, and then formatting the media for either the FAT or NTFS file system. If you format using MS-DOS tools, use the bootprep.exe tool to create a boot sector on the partition. Bootprep Utility Use the BootPrep.exe command-line tool when media is formatted under MS-DOS to boot into Windows Embedded Standard Bootprep can only be run on FAT32, FAT16, or BigDOS FAT16-formatted media. NTFS devices do not require Bootprep. Bootprep changes the boot sector from a MS-DOS boot sector to NT Boot sector. It also enables you to back up the MBR and boot sector contents. To get help on all the possible arguments BootPrep accepts type BootPrep /? at the command line. Lesson Summary This lesson introduced the structure of the media that is required for Windows Embedded Standard The media structure needs to have an MBR and a primary partition containing a boot sector marked as active. If you use CompactFlash as your storage media and set up EWF to store overlay data in disk mode or RAM mode, you need to remember to create a second partition for EWF. For details, see Chapter 3. The lesson also introduces the BootPrep utility to help prepare an MBR on media partitioned and formatted by MS-DOS tools. NOTE CompactFlash preparation You should not repartition your CompactFlash media with Windows XP Pro partitioning tools. If you want to partition your CompactFlash, contact your CompactFlash manufacturer for their supported CompactFlash tools. You can also create an MS-DOS bootable floppy disk with Windows 98 or Windows ME. This boot disk includes fdisk. You can use fdisk to partition your CompactFlash media.

17 Lesson 3: Prepare Target Media for Deployment 159 Quick Check 1. Bootprep modifies which region of a disk? Quick Check Answers 1. Bootprep installs a Partition Boot Sector onto the partition of the disk specified. This is the partition that contains the Windows Embedded Standard 2009 operating system.

18 160 Chapter 5 Generating and Deploying an Image Lesson 4: Deploy the Post-FBA Image to the Target Device You deploy your post-fba run-time image to your device during the production phase in the manufacturing plant, or deploy it to media that your customer installs. During the maintenance phase, you can deploy an update by replacing the run-time image already installed on a device with a newer version of that image. The Windows Embedded Standard 2009 run-time image is built in a folder tree that contains multiple folders and files; therefore you must deploy the entire tree to a bootable partition. This bootable partition can be on either a hard disk drive, CD, DVD, or Flash memory device, and must be visible to the device BIOS. This lesson discusses the possible ways you can deploy your image. After this lesson, you will be able to: Understand how to create a bootable CD. Understand how to create a bootable CompactFlash. Boot your device, if hardware permits, from a USB mass storage device. Understand and use the System Deployment Image tool. Estimated lesson time: 25 minutes. Bootable CD Using the El Torito Bootable CD-ROM Specification, you can create a single CD image and duplicate it for use on many target devices. Running the operating system from read-only media also protects the integrity of the file system from potential corruption. The El Torito specification supports the creation of a bootable CD as an image of a hard disk drive or a floppy disk drive. When you create an image of a hard disk drive, the CD will start as drive C and all hard disk drive letters are shifted down one letter. Preparing the Image Configuration for a Bootable CD Because bootable CDs are read-only media, you must include the EWF component, set to RAM REG mode, in your image configuration to redirect all writes made to the CD. You must replace the NTLDR component with the EWF NTLDR component. Because EWF must be disabled when FBA runs on the target device, you have to clear the Start EWF Enabled check box of the EWF component settings. Verify that Disk Number equals 0 and Partition Number equals 1 for the target disk volume and leave

19 Lesson 4: Deploy the Post-FBA Image to the Target Device 161 the default values for all other settings. You also have to add the El Torito CD component, leave the default disk signature, and build your image. To enable EWF after the FBA process completes, you must run this command: EWFMGR C: -enable Creating a Bootable CD To create a bootable CD, you must prepare the hard disk drive on which FBA runs. This hard disk drive must have a bootable FAT partition smaller than that of the target media as the first partition. A partition size of 625MB is recommended. You can use FAT32, FAT16, or NTFS. FAT32 is recommended. If you use FAT16, keep in mind you must use Bootprep.exe on your disk. At least 8 MB of raw, unallocated space must be available on the disk for FBA to configure EWF. After you run FBA, you have a bootable image on your hard disk. Use Hd2iso.exe to create an ISO-9660 image, which you can then burn to a CD to create a bootable CD. Bootable CompactFlash Windows Embedded Standard 2009 supports deploying run-time images to CompactFlash devices. Because the lifetime of a CompactFlash device is limited, it is recommended that you protect the device with EWF. Configure your run-time image to support EWF RAM REG mode and deploy it to the CompactFlash device. Bootable USB Flash Media Starting from USB media is possible only if your target device has a BIOS that supports booting from USB 2.0. Because of performance limitations, you should only use USB 2.0 devices. Your USB storage device must have an MBR and a formatted primary active partition. The UFDprep.exe utility is a complete format and partition utility for USB flash disks. This utility is located in Program Files\Windows Embedded\utilities folder. You have to add the USB Boot 2.0 component, located in the component browser under the Embedded Enabling Features folder, to your image configuration. This component forces the addition of two more related components a special version of NTDETECT, called USB NT Hardware Detect, and the USB Boot Mass Storage Device component.

20 162 Chapter 5 Generating and Deploying an Image System Deployment Image System Deployment Image (SDI) is a virtual disk format for storing and deploying Windows Embedded Standard 2009 run-time images. SDI files are mounted as virtual disks so that Windows Embedded Standard 2009 images can be copied to them. SDI files are used with Windows Embedded Standard 2009 tools to help in the deployment of the operating system. SDI files store a Windows Embedded Standard 2009 image in a single file that can be backed up to a file server or version control system for later use. SDI files are designed to support remote boot over a network. NTLDR supports the SDI file architecture to load and execute the image in RAM. An SDI file is divided into two parts, a header and a set of four data blobs: Boot Blob, Loader Blob, Partition Blob, and Disk Blob. See Figure 5-5 for a visualization of the SDI file format. Header The Header Blob contains the SDI signature. SDI Loader uses the header to mount the SDI file as a disk. The SDI header contains the BOOT CODE OFFSET and BOOT CODE LENGTH, which point to the BOOT BLOB within the SDI file. Boot Blob The Boot Blob contains the StartROM.com file that will call the NTLDR.EXE program. The Boot Blob is used for network booting. StartROM.com is a real mode executable file. Loader Blob The Loader Blob contains the NTLDR.EXE program. The program executes, mounts the Partition Blob as a RAM disk, and then boots the run-time image from the Partition Blob. Partition Blob The Partition Blob contains the run-time Windows Embedded Standard 2009 image. The Partition Blob can be used to contain the Pre- or Post- FBA image. A Pre-FBA image is downloaded to a system for the first time to run and perform the final configuration. The Post-FBA image can be used for mass deployment, such as remote network boot and cloning. Boot, Loader, and Partition Blobs are used together to support remote booting. Disk Blob The Disk Blob is the virtual disk when mounted (on-line) by SDI Loader.

21 Lesson 4: Deploy the Post-FBA Image to the Target Device 163 Header Boot blob SDI signature Boot offset and length Extensible (4K) Disk blob Figure 5-5 Loader blob Partition blob SDI File format Boot program StartROM.Com Real mode executable file Call NTLDR.Exe Loader program NTLDR.Exe Mounts partition blob as RAMDISK Boots into RAMDISK Target run-time image Post FBA XPE image SDI provides three tools for building, editing and extracting images: SDI Loader Graphical interface tool for creating and mounting SDI files as disk volumes. Enables you to create, add, connect, remove, or disconnect virtual disk drives. The volume opens the Disk Blob of the SDI file for read/write access. SDI Manager Command-line tool for manipulating SDI files. This utility enables you to manipulate a disk image file in offline mode. You can query its contents and manipulate its blobs. Information can be transferred from one file to another and from one blob to another. The tool is also used in deployment. SDI2HD A 16-bit version of the SDI Manager tool, used only for deployment. Lesson Summary This lesson discussed some of the possible bootable media. For some media, such as a bootable CD or USB, you need to add specific components that provide the support needed. Others just need to be prepared correctly to be bootable. SDI is a virtual disk format designed for storing and deploying Windows Embedded Standard 2009 images.

22 164 Chapter 5 Generating and Deploying an Image Quick Check 1. Why do you have to add the EWF component to an image that will boot from CD? 2. What must be done to boot Windows Embedded Standard 2009 from a USB 2.0 mass storage device? 3. What is System Deployment Image? Quick Check Answers 1. Because bootable CDs are read-only media and cannot be written to. 2. USB 2.0 Boot and USB NT Hardware detect must be part of the image. The target system must support USB 2.0 flash disk boot. The drive needs to be formatted with ufdprep.exe. 3. SDI is a virtual disk format for storing and deploying Windows Embedded Standard 2009 run-time images. SDI files can be mounted as disk volumes on the development workstation or a target device, and the Windows Embedded Standard 2009 run-time image can be copied to such a volume.

23 Lesson 5: Implement a Remote Boot Solution 165 Lesson 5: Implement a Remote Boot Solution The Remote Boot service for Windows Embedded Standard 2009 is an implementation of Preboot Execution Environment (PXE) and enables a suitably configured Windows Embedded Standard 2009 device to start using a PXE server. The remote boot process transfers the image to the client device using the Trivial File Transfer Protocol (TFTP) on a connected device. This solution is ideal for diskless devices, with no persistent storage. The remote boot solution requires that your client device have a PXE-compatible BIOS, PXE-compatible network adapter, and enough RAM to store and run your Windows Embedded Standard 2009 run-time image. A general rule is that the RAM must be twice the size of the Windows Embedded Standard 2009 image. After this lesson, you will be able to: Create a Remote Boot image for deployment over a network. Setup and configure the Remote Boot Service. Configure a Dynamic Host Configuration Protocol (DHCP) server for Remote Boot Service. Estimated lesson time: 20 minutes. Creating a Remote Boot Image First, you must verify that the available RAM for the client computer accommodates the size of the run-time image and required run-time RAM to be copied to the RAM disk. Also, check that the available RAM provides enough free space for the image to operate once it has been installed. Using Target Designer, create a run-time image for your Remote Boot device. Configure the run-time image to start from drive C. Include the Windows RAM Disk Driver component in your image. Verify that your image is smaller than the total available RAM to ensure that additional free space is available for temporary files, such as Internet Explorer cache files. You then add the System Cloning Tool component to your image. You must verify that you did not add any custom components that will cause a restart of the client computer after the cloning operation has completed.

24 166 Chapter 5 Generating and Deploying an Image Preparing a Remote Boot Image for Deployment The FBA service requires one or more system starts, making it unusable with the Remote Boot service. Therefore, you must run FBA before creating the deployable Remote Boot image. Copy the run-time image to the C drive of your target system. Run your run-time image on the target system to let FBA complete. If you installed the System Cloning Tool component, FBA will complete operation when the Machine Resealed message appears. Preparing a Remote Boot Image for Deployment In the BIOS setup utility of the client computer, configure the BIOS to start from the network. Install the SDI Driver on your development system. Create an SDI virtual disk of the appropriate size using the SDI loader utility. Format the SDI virtual drive using Disk Management Console, Diskmgmt.msc. When prompted, do not choose to create the volume as a dynamic disk. Copy your run-time image to the SDI volume. It is not necessary to copy the Ntdetect.com, Ntldr.exe, or Boot.ini files to the SDI volume because they are automatically downloaded from the server during an early phase of remote boot. Create another SDI image that will contain the partition for the SDI disk you created. This will be the final SDI image that will reside on the remote boot server. The following command line example shows how to create the new SDI image using the SDI manager command line utility. sdimgr /new c:\ramdisk.sdi sdimgr c:\ramdisk.sdi /readpart:e: Copy the SDI image to the \Windows Embedded\Remote Boot Server\Downloads folder of the server. If you wish to use a Boot.ini file that resides on the server, you must add the /rdimageoffset=4096 switch to the Boot.ini file to accommodate the structure of your SDI file. This step is not necessary if you are using the Remote Boot manager and not a Boot.ini file with an SDI image that uses an SDI extension. Two SDI files are needed; the first is to be used as a separate mounted volume and the second is the final SDI file for deployment. Configuring the Remote Boot Service The Remote Boot manager is a tool that edits the policy list parameter information stored in \Windows Embedded\Remote Boot Service\Rbsprov.ini for the Remote Boot service and the registry. This enables you to quickly set up the Remote Boot service and configure it according to your specifications.

25 Lesson 5: Implement a Remote Boot Solution 167 Configuring DHCP for Remote Boot Services The Remote Boot service requires a configured DHCP server to be present on your network. The DHCP server initiates the communication between the PXE client device and the Remote Boot server, enabling the client device to retrieve necessary image information from the server. The DHCP server must be configured with a static IP address. The DHCP server must have an assigned IP address range. Exclusion ranges for all devices on the network that do not support DHCP should be entered. IP address reservations should be created as needed. If you choose to configure Remote Boot service and DHCP to reside on the same server, you must configure the Remote Boot service to communicate using a port that does not conflict with DHCP. Starting and Stopping Boot Services By default, the Remote Boot Setup Wizard automatically starts both the Remote Boot service and TFTP service and configures them to start automatically. However, you can stop or start any service manually by using either a command prompt or by running the Services.msc snap-in. For example, to stop the Remote Boot service you enter at the command prompt: Net stop rbspxe Alternatively, you can use the services console and right-click Remote Boot Service, and then select Stop. Boot.ini File in a Remote Boot Environment You can use the Boot.ini file instead of the settings within the Remote Boot manager to start the appropriate image on a client device. You can create a custom Boot.ini file to present the client device operator with a choice of images to load. If the default Boot Image and Boot Parameters fields on both the device and in Remote Boot manager are left empty, the remote boot client will download a Boot.ini file from the \Windows Embedded\Remote Boot Server\Downloads directory to determine the run-time image to be used. You can force each remote boot device on your local network to start using your custom Boot.ini file by verifying that the Use default settings to boot unspecified clients option has been selected in the Remote Boot manager. You must run the image through the FBA process to complete the build process before the image can be used for remote network boot.

26 168 Chapter 5 Generating and Deploying an Image Here is an example of boot.ini for a remote boot client operator: [boot loader] timeout=30 default=ramdisk(0)\windows [operating systems] ramdisk(0)\windows="myremoteclient" /fastdetect /rdpath=net(0)\mrc.sdi /rdimageoffset=4096 ramdisk(0)\windows2="myremoteclient2" /fastdetect /rdpath=net(0)\mrc2.sdi /rdimageoffset=4096 Lesson Summary This lesson discussed the remote boot option for deploying a Windows Embedded Standard 2009 operating system image. A Windows Embedded Standard 2009 image can be downloaded over a TCP/IP network using the target s PXE boot agent support and the Remote Boot Manager provided in Windows Embedded Standard 2009 to configure Remote Boot service. The remote boot option is ideal for thin clients with no local storage devices or point-of-sale devices. You need a Windows 2000 Advanced server or later to act as the remote boot and DHCP server. The image stored in an SDI file is downloaded and runs in the targets RAM. Quick Check 1. Is Remote Network Boot used to install the Windows Embedded Standard 2009 image on a remote system? Quick Check Answers 1. No. Remote Network Boot is used for remote download of an image over Ethernet and boot/run from RAM. One could create an image that allows the downloaded image to pull down a separate image that gets installed on a hard drive, if present.

27 Lab 5: Implementing Remote Boot 169 Lab 5: Implementing Remote Boot In this lab you practice the creation of a USB bootable image and a remote boot implementation. Practice 1: Booting from a USB 2.0 Flash Disk In this practice, you create an image to start from a USB 2.0 flash disk. The target system must be able to support USB 2.0, and its BIOS must support starting from a USB. Create the Image 1. Before beginning, you must create a Platform Macro component by capturing the PMQ file with TAP on the target system and importing it to your configuration. The Platform Macro component contains the hardware components for this configuration. 2. Open Target Designer and create a new Windows Embedded Standard 2009 configuration called WESUSB. 3. Add the following components to the new configuration: NT NTLDR. Minlogon. Task Manager Shell. FAT. NTFS. CMD (Windows Command Processor). English Language Support. USB 2.0 Boot. 4. Add the Platform Macro component to the new configuration. 5. Check dependencies, resolve any errors, and re-check dependencies. 6. Build the image. Prepare the USB Flash Disk and Transfer the Image Windows Embedded Standard 2009 Studio comes with a flash format utility (ufdprep.exe) that can prepare the USB flash disk to boot Windows Embedded Standard 2009.

28 170 Chapter 5 Generating and Deploying an Image 7. Insert the USB flash disk into an open USB 2.0 port. Note the drive letter assigned to the flash disk. 8. Open the command prompt. 9. Change directories to the \Program Files\Windows Embedded\utilities. 10. Run the ufdprep.exe utility for the USB flash disk: C:\>ufdprep <drive letter> 11. Close the command prompt when finished. 12. Open File Explorer. 13. Transfer (copy and paste) the Windows Embedded Standard 2009 image from C:\Windows Embedded Images to the USB flash disk. 14. When the transfer is completed, eject the USB 2.0 flash so you can safely remove the drive from the development machine. BIOS Setup and Test 1. Make sure that your target is powered off. 2. Insert the USB Flash disk into an open USB 2.0 port. 3. Power on the target and access the BIOS setup utility. Depending on your system, it may post a BIOS message stating it found the USB Flash disk during boot. 4. The BIOS settings required for USB 2.0 boot will be different for every system. Here are the general things to look for: a. USB 2.0 Support Enabled and set for Hi-speed. b. USB flash disk needs to be set for hard drive emulation. c. The system boot order must include the USB Flash disk. 5. Save the BIOS changes and let the system boot to the USB flash disk. Once FBA completes, the system should boot to Task Manager Shell.

29 Lab 5: Implementing Remote Boot 171 Practice 2: Implementing Remote Boot In this practice you create a remote boot image. Because the Windows Embedded Standard 2009 image runs in the client s RAM, the image must go through the FBA process first before the image can be used for network download. Create the Image for Remote Download 1. Open Target Designer and create a new configuration called RemoteThinClient. 2. Add the following components to the new configuration: a. Thin Client macro. b. Explorer Shell. c. NT NTLDR. d. NT Hardware Detect. e. FAT. f. CMD. g. English Language Support. h. System Cloning Tool. 3. Add the Windows RAM Disk Driver component to the configuration: Hardware- >Other->Windows RAM Disk Driver. Make sure that the target s settings are for the C drive. Also take note of the size of the uncompressed image shown in the status bar, and make sure that the target s RAM is at least twice the size of the image. 4. Add the platform macro component to the new configuration. 5. Check Dependencies, resolve any errors, and re-check Dependencies. 6. Click on the Build button to build the image to C:\Windows Embedded Images. 7. If the Image folder is not empty, Target Designer will warn that all files on C:\Windows Embedded Images will be deleted. Click Yes. 8. Click Close. 9. Once the build is complete, save the configuration. 10. Exit Target Designer.

30 172 Chapter 5 Generating and Deploying an Image Run the Image on the Target System 1. Restart the target to run the FBA process. 2. In order for the image to download and run on the target, the image must run through the complete FBA process to finish setup of the image. Create the SDI Files 1. Install the SDI Driver on your development system. 2. On the development computer, open SDILoader and create a new SDI file called RBTC.sdi. The partition size should be slightly bigger than the image size. For example: If the image size is 208 MB make the partition size 256MB. The target s RAM must be twice the size of the partition size or the image will fail to load. See Figure 5-6 and 5-7 for a visual description. Figure 5-6 Specifying the disk size 3. Format the SDI virtual drive for FAT using Disk Management Console, Diskmgmt.msc. When prompted, do not choose to create the volume as a dynamic disk. See Figure 5-7 for a visual depiction.

31 Lab 5: Implementing Remote Boot 173 Figure 5-7 The created SDI disk 4. When the target completes the FBA process, copy the post-fba image from the target to the new mounted SDI disk. It is not necessary to copy the Ntdetect.com, Ntldr.exe, or Boot.ini files to the SDI volume because they are automatically downloaded from the server during an early phase of Remote Boot. The System Volume information folder cannot be copied to the SDI drive. 5. Using Sdimgr.wsf, create a new SDI file that will be used for the remote download, and copy the contents of the Rbtc.sdi into the final SDI file: cscript sdimgr.wsf /new C:\Users\Admin \Documents\rbtcram.sdi cscript sdimgr.wsf C:\Users\Admin \Documents\rbtcram.sdi /readpart:f: 6. Copy RBTCRAM.sdi to the Windows 200x Server, and place the file in the \Program Files\Windows Embedded\Remote Boot Service\Downloads directory. Un-mount the Rbtc.sdi drive and close SDI Loader. 7. Un-mount the Rbtc.sdi drive and close SDI Loader.

32 174 Chapter 5 Generating and Deploying an Image Setup Remote Boot Manager and Download to the Target 1. Find the MAC address for the target system s network adapter. You can use ipconfig /all under WinPE to obtain the address. 2. Start Remote Boot Manager on the server. 3. On a single line in the policy table enter the following: a. MAC address of the target network adapter b. Description: Anything you want c. Action: boot d. Boot Server: (default) e. Boot Program: startrom.n12 NOTE Unattended Boot Process This step enables starting from an unattended remote image. This does not require the user to press the F12 key to initialize the Remote Boot service. f. Boot Image: RBTCRAM.sdi 4. Click Save to save the policy table. 5. Make sure that the target s BIOS is set to boot from LAN or PXE server, and then boot the client. The target with a PXE-enabled network card boots to the PXE client. The PXE client broadcasts a request for a DHCP address. The DHCP server responds to the request from the pool of TCP/IP addresses. The PXE client looks for a TFTP service to use to download the OS from the server. Remote Boot Sever checks incoming PXE traffic and compares the MAC addresses with the policy table set up by Remote Boot Manager. When a client s MAC matches a MAC listed in the policy table, a boot program loader is downloaded to the client and then SDI file containing the OS is downloaded and booted in RAM. 6. The image loads into RAM, boots to Windows Embedded Standard 2009, and runs the Explorer Shell.

33 Chapter 5 Review 175 Chapter Review Key Terms Production means that you may have to install your system on hundreds of devices, or more. Unless each of these devices is a standalone device not connected to a network, you have to perform the task of assigning a unique SID to each device you produce. If you just copy the same post-fba image to each device, each device would have the same computer SID. Every computer running a Windows XP-based operating system should have a unique computer SID. Alternatively, you can run FBA on each device, but this is impractical in a typical production environment. The system cloning process is used during manufacture to ensure that each device has a run-time image containing a unique computer SID and computer name. Windows Embedded Standard 2009 offers a variety of media for deploying a correctly configured image that has been cloned and resealed: Bootable CD. Compact Flash. Bootable USB 2.0 mass storage devices. Remote boot. Do you know what these key terms mean? You can check your answers by looking up the terms in the glossary at the end of the book. FBA. Reseal and Cloning. System Deployment Image (SDI). Remote Boot. Preboot Execution Environment (PXE). Suggested Practices To help you successfully master the exam objectives presented in this chapter, complete the following tasks.

34 176 Chapter 5 Review Use Kernel Debugger During Boot This is of particular interest to you if you are going to create a headless device. A headless system does not require a keyboard, mouse, or video graphics adapter (VGA) card during operation. Therefore, you must be able to gain access to the headless system so that it does not require user interaction at a local console. First create a run-time image. Before FBA runs for the first time, add the appropriate parameters to your Boot.ini file. The following example shows the parameters. For example: /debug /debugport=com1 /baudrate= Connect a remote debugger to your target system using a serial cable. Use the debugger to monitor FBA status of the headless system. The headless system reboots one or more times during this process. When the message "[FBA] Leaving Run Mode" is displayed, FBA has completed, and the OS has installed and is running on the headless system. To view the drivers that are loaded, use the debugger to break into the OS, and then use the!drivers command. Confirm that the Tsddd.dll driver is loaded on your headless system instead of Vga.sys.

Module 4: Building and Deploying an Operating System Image

Module 4: Building and Deploying an Operating System Image Module 4: Building and Deploying an Operating System Image Contents Overview...1 Deployment Overview...2 Build Process...4 Preparing Target Media...18 Deploying the Operating System...28 Lab 4: Deploying

More information

Overview. Table of Contents. Integrating NI-DAQmx Components into a Windows XP Embedded Image

Overview. Table of Contents. Integrating NI-DAQmx Components into a Windows XP Embedded Image Integrating NI-DAQmx Components into a Windows XP Embedded Image Overview Microsoft Windows XP Embedded (XPe) includes full Win32 API support and is based on the same binary files as Windows XP Professional.

More information

Lesson 1: Preparing for Installation

Lesson 1: Preparing for Installation 2-2 Chapter 2 Installing Windows XP Professional Lesson 1: Preparing for Installation When you install Windows XP Professional, the Windows XP Professional Setup program allows you to specify how to install

More information

Farstone TotalDeploy User Guide

Farstone TotalDeploy User Guide Farstone TotalDeploy User Guide 1 Introduction to TotalDeploy...3 1.1 Overview...3 1.1.1 What is TotalDeploy...3 1.1.2 Who needs TotalDeploy?...3 1.1.3 TotalDeploy infrastructure...3 1.2 What you can do

More information

Automating the Windows 2000 Installation

Automating the Windows 2000 Installation Chapter 2 Automating the Windows 2000 Installation MICROSOFT EXAM OBJECTIVES COVERED IN THIS CHAPTER Perform an unattended installation of Windows 2000 Professional. Install Windows 2000 Professional by

More information

Windows XP Embedded Hands-On Lab

Windows XP Embedded Hands-On Lab Windows XP Embedded Hands-On Lab Page 1 of 19 Objectives In this Hands-On session, you will work with the XP Embedded tools to build a bootable image of Windows XP Embedded. This lab will introduce you

More information

3 INSTALLING WINDOWS XP PROFESSIONAL

3 INSTALLING WINDOWS XP PROFESSIONAL INSTALLING WINDOWS XP PROFESSIONAL.1 Preparing for installation Objectives.1.1 Windows XP Professional Hardware Requirements.1.2 Hardware Compatibility List (HCL) check.1. Hard Disk Partition.1.4 Required

More information

V Workstation Imaging

V Workstation Imaging V Workstation Imaging The following sections provide information on Novell ZENworks Desktop Management Workstation Imaging procedures and features. Chapter 50, Common Imaging Deployment Strategies, on

More information

IT ESSENTIALS V. 4.1 Module 5 Fundamental Operating Systems

IT ESSENTIALS V. 4.1 Module 5 Fundamental Operating Systems IT ESSENTIALS V. 4.1 Module 5 Fundamental Operating Systems 5.0 Introduction 1. What controls almost all functions on a computer? The operating system 5.1 Explain the purpose of an operating system 2.

More information

IT Essentials v6.0 Windows 10 Software Labs

IT Essentials v6.0 Windows 10 Software Labs IT Essentials v6.0 Windows 10 Software Labs 5.2.1.7 Install Windows 10... 1 5.2.1.10 Check for Updates in Windows 10... 10 5.2.4.7 Create a Partition in Windows 10... 16 6.1.1.5 Task Manager in Windows

More information

Boot Process in details for (X86) Computers

Boot Process in details for (X86) Computers Boot Process in details for (X86) Computers Hello,,, Let's discuss what happens between the time that you power up your PC and when the desktop appears. In fact we should know that the boot process differs

More information

VI-CENTER EXTENDED ENTERPRISE EDITION GETTING STARTED GUIDE. Version: 4.5

VI-CENTER EXTENDED ENTERPRISE EDITION GETTING STARTED GUIDE. Version: 4.5 VI-CENTER EXTENDED ENTERPRISE EDITION GETTING STARTED GUIDE This manual provides a quick introduction to Virtual Iron software, and explains how to use Virtual Iron VI-Center to configure and manage virtual

More information

VIRTUALIZATION MANAGER ENTERPRISE EDITION GETTING STARTED GUIDE. Product: Virtual Iron Virtualization Manager Version: 4.2

VIRTUALIZATION MANAGER ENTERPRISE EDITION GETTING STARTED GUIDE. Product: Virtual Iron Virtualization Manager Version: 4.2 VIRTUALIZATION MANAGER ENTERPRISE EDITION GETTING STARTED GUIDE This manual provides a quick introduction to Virtual Iron software, and explains how to use Virtual Iron Virtualization Manager to configure

More information

How to install the software of ZNS8022

How to install the software of ZNS8022 How to install the software of ZNS8022 1. Please connect ZNS8022 to your PC after finished assembly. 2. Insert Installation CD to your CD-ROM drive and initiate the auto-run program. The wizard will run

More information

Help Contents - December 4, 2012

Help Contents - December 4, 2012 1 of 70 12/4/2012 12:18 PM Help Contents - December 4, 2012 1-10ZiG Manager 1.1 - Configuring and Managing the Server 1.1.1 - Server Settings 1.1.2 - Network Settings 1.1.3 - Ports Used 1.1.4 - Discovery

More information

RIS Installation Steps

RIS Installation Steps RIS Installation Steps The basic steps for installing a RIS server are as follows: Install Windows 2003 Server Install Remote Installation Services Run the Remote Installation Services Setup Wizard Authorise

More information

Exam Windows Embedded Standard 7. Preparation Kit. Certification Exam Preparation utomation. Not for resale.

Exam Windows Embedded Standard 7. Preparation Kit. Certification Exam Preparation utomation. Not for resale. MCTS i Exam 70-582 Windows Embedded Standard 7 Preparation Kit Certification Exam Preparation utomation Not for resale. Contents at a Glance 1 Product Concepts 2 Building a Base Operating System Image

More information

Lesson 2: Installing Windows 8.1. MOAC : Configuring Windows 8.1

Lesson 2: Installing Windows 8.1. MOAC : Configuring Windows 8.1 Lesson 2: Installing Windows 8.1 MOAC 70-687: Configuring Windows 8.1 Overview Exam Objective 1.2: Install Windows 8.1 o Install as Windows To Go o Migrate from previous versions of Windows to Windows

More information

Step-by-Step Guide to Installing Cluster Service

Step-by-Step Guide to Installing Cluster Service Page 1 of 23 TechNet Home > Products & Technologies > Windows 2000 Server > Deploy > Configure Specific Features Step-by-Step Guide to Installing Cluster Service Topics on this Page Introduction Checklists

More information

How To Fix Regedit Windows Xp Installation >>>CLICK HERE<<<

How To Fix Regedit Windows Xp Installation >>>CLICK HERE<<< How To Fix Regedit Windows Xp Installation Bootable Usb Drive If Windows is able to boot, use System File Checker and icacls.exe to repair To put Windows XP installation media onto a bootable USB drive

More information

VIRTUALIZATION MANAGER ENTERPRISE EDITION GETTING STARTED GUIDE

VIRTUALIZATION MANAGER ENTERPRISE EDITION GETTING STARTED GUIDE VIRTUALIZATION MANAGER ENTERPRISE EDITION GETTING STARTED GUIDE This manual provides a quick introduction to Virtual Iron software, and explains how to use Virtual Iron Virtualization Manager to configure

More information

8 MANAGING SHARED FOLDERS & DATA

8 MANAGING SHARED FOLDERS & DATA MANAGING SHARED FOLDERS & DATA STORAGE.1 Introduction to Windows XP File Structure.1.1 File.1.2 Folder.1.3 Drives.2 Windows XP files and folders Sharing.2.1 Simple File Sharing.2.2 Levels of access to

More information

Sun VirtualBox Installation Tutorial

Sun VirtualBox Installation Tutorial Sun VirtualBox Installation Tutorial Installing Linux Mint 5 LTS Guest OS By Dennis Berry Welcome to the world of virtualization and Linux. This tutorial is intended to help users who are new to the world

More information

1 Attended Installation of Windows 2000 Server

1 Attended Installation of Windows 2000 Server 770c01.qxd 10/5/00 5:45 PM Page 1 1 Attended Installation of Windows 2000 Server TEST YOURSELF OBJECTIVES 1.01 Preparing for Installation 1.02 Four-Step Process from CD-ROM 1.03 Installing Over the Network

More information

IBM Deployment Pack for Microsoft System Center Configuration Manager 2007 Installation and User s Guide

IBM Deployment Pack for Microsoft System Center Configuration Manager 2007 Installation and User s Guide IBM System x IBM Deployment Pack for Microsoft System Center Configuration Manager 2007 Installation and User s Guide Version 1.0 IBM System x IBM Deployment Pack for Microsoft System Center Configuration

More information

MS Operating Systems and Networks

MS Operating Systems and Networks In order to learn which questions have been answered correctly: 1. Print these pages. 2. Answer the questions. 3. Send this assessment with the answers via: a. FAX to (212) 967-3498. Or b. Mail the answers

More information

C A S P E R USER GUIDE V ERSION 5.0

C A S P E R USER GUIDE V ERSION 5.0 TM C A S P E R TM USER GUIDE V ERSION 5.0 Copyright and Trademark Information Information in this document is subject to change without notice. Federal law prohibits unauthorized use, duplication, and

More information

A+ Guide to Managing and Maintaining your PC, 6e. Chapter 2 Introducing Operating Systems

A+ Guide to Managing and Maintaining your PC, 6e. Chapter 2 Introducing Operating Systems A+ Guide to Managing and Maintaining your PC, 6e Chapter 2 Introducing Operating Systems Objectives Learn about the various operating systems and the differences between them Learn how an OS interfaces

More information

Upgrading from TrafficShield 3.2.X to Application Security Module 9.2.3

Upgrading from TrafficShield 3.2.X to Application Security Module 9.2.3 Upgrading from TrafficShield 3.2.X to Application Security Module 9.2.3 Introduction Preparing the 3.2.X system for the upgrade Installing the BIG-IP version 9.2.3 software Licensing the software using

More information

Chapter 12: Advanced Operating Systems

Chapter 12: Advanced Operating Systems : Advanced Operating Systems IT Essentials: PC Hardware and Software v4.0 1 Purpose of this Presentation To provide to instructors an overview of : List of chapter objectives Overview of the chapter contents,

More information

Windows 2000 Flavors Windows 200 ws 0 Profess 0 P ional Windows 2000 Server Windows 200 ws 0 Advan 0 A ced Server Windows 2000 Datacen ter Server 2

Windows 2000 Flavors Windows 200 ws 0 Profess 0 P ional Windows 2000 Server Windows 200 ws 0 Advan 0 A ced Server Windows 2000 Datacen ter Server 2 Copyright 2006 Heathkit Company, Inc. All Rights Reserved Lab 9-3 Windows 2000 Pre-Installation Windows 2000 Flavors Windows 2000 Professional Windows 2000 Server Windows 2000 Advanced Server Windows 2000

More information

What s new in Feature Pack 2007 for XP Embedded By Sean D. Liming and John R. Malin

What s new in Feature Pack 2007 for XP Embedded By Sean D. Liming and John R. Malin What s new in Feature Pack 2007 for XP Embedded By Sean D. Liming and John R. Malin 11/01/06 1 Copyright 2006 SJJ Embedded Micro Solutions, LLC., All Rights Reserved No part of this guide may be copied,

More information

Password Changer User Guide

Password Changer User Guide Active@ Password Changer User Guide Copyright 1999-2017, LSOFT TECHNOLOGIES INC. All rights reserved. No part of this documentation may be reproduced in any form or by any means or used to make any derivative

More information

Hands-On Lab: HORM. Lab Manual Expediting Power Up with HORM

Hands-On Lab: HORM. Lab Manual Expediting Power Up with HORM Lab Manual Expediting Power Up with HORM Summary In this lab, you will learn how to build a XP embedded images capable of supporting HORM (Hibernate Once Resume Many). You will also learn how to utilize

More information

CITRIX 1Y0-200 EXAM QUESTIONS & ANSWERS

CITRIX 1Y0-200 EXAM QUESTIONS & ANSWERS CITRIX 1Y0-200 EXAM QUESTIONS & ANSWERS Number: 1Y0-200 Passing Score: 800 Time Limit: 120 min File Version: 38.7 http://www.gratisexam.com/ CITRIX 1Y0-200 EXAM QUESTIONS & ANSWERS Exam Name: Managing

More information

EaseUS Disk Copy User Guide

EaseUS Disk Copy User Guide EaseUS Disk Copy User Guide Table of contents Welcome... - 1 - Glossary... - 1 - Getting Started... - 1 - Hardware Requirements... - 1 - System Requirements... - 1 - File System Supported... - 2 - Devices

More information

Applied ICT Skills MS Windows

Applied ICT Skills MS Windows Applied ICT Skills MS Windows Lesson 1 - How to install an operating system into computer? Windows 7 is perhaps the best Microsoft operating system and is very easy to install compared to other windows.

More information

IBM Endpoint Manager. OS Deployment V3.5 User's Guide

IBM Endpoint Manager. OS Deployment V3.5 User's Guide IBM Endpoint Manager OS Deployment V3.5 User's Guide IBM Endpoint Manager OS Deployment V3.5 User's Guide Note Before using this information and the product it supports, read the information in Notices

More information

Print Audit 6. Print Audit 6 Documentation Apr :07. Version: Date:

Print Audit 6. Print Audit 6 Documentation Apr :07. Version: Date: Print Audit 6 Version: Date: 37 21-Apr-2015 23:07 Table of Contents Browse Documents:..................................................... 3 Database Documentation.................................................

More information

Windows* 2003 Cluster Implementation Guide for the Intel RAID controller SRCU42X

Windows* 2003 Cluster Implementation Guide for the Intel RAID controller SRCU42X Windows* 2003 Cluster Implementation Guide for the Intel RAID controller SRCU42X Revision 1.0 May 2003 Enterprise Platforms and Services Marketing Disclaimers Information in this document is provided in

More information

Version 11. NOVASTOR CORPORATION NovaBACKUP

Version 11. NOVASTOR CORPORATION NovaBACKUP NOVASTOR CORPORATION NovaBACKUP Version 11 2009 NovaStor, all rights reserved. All trademarks are the property of their respective owners. Features and specifications are subject to change without notice.

More information

/BASEVIDEO Causes Windows to use the standard VGA display driver for GUI-mode operations.

/BASEVIDEO Causes Windows to use the standard VGA display driver for GUI-mode operations. Copyright 1996-2004 Mark Russinovich Last Updated: October 15, 2004 There are number of BOOT.INI switches that are useful for driver developers that wish to test their drivers under a variety of different

More information

A+ Certification Guide. Chapter 15 Troubleshooting and Maintaining Windows

A+ Certification Guide. Chapter 15 Troubleshooting and Maintaining Windows A+ Certification Guide Chapter 15 Troubleshooting and Maintaining Windows Chapter 15 Objectives STOP (Blue Screen of Death) Errors: Discover what a BSOD is, typical causes, how to diagnose Boot Failures:

More information

Advanced Virtual CEPC 1

Advanced Virtual CEPC 1 Advanced Virtual CEPC 1 Advanced Virtual CEPC Windows Embedded Compact 7 Technical Article Writers: Mark McLemore, Ralph Brand Technical Reviewer: Ravi Gandikota Published: June 2011 Applies To: Windows

More information

RTX WES7 DEPLOYMENT GUIDE

RTX WES7 DEPLOYMENT GUIDE RTX64 3.5 WES7 DEPLOYMENT GUIDE Copyright 1996-2018 by IntervalZero, Inc. All rights reserved. No part of this document may be reproduced or transmitted in any form or by any means, graphic, electronic,

More information

Edit contains commands for adding, deleting, and changing configurations. The functions listed are dependent on what is highlighted in the tree.

Edit contains commands for adding, deleting, and changing configurations. The functions listed are dependent on what is highlighted in the tree. 7 Menu Items 7.1 Edit Edit contains commands for adding, deleting, and changing configurations. The functions listed are dependent on what is highlighted in the tree. 7.1.1 Add Terminal Edit > Add Terminal

More information

Full file at

Full file at Guide to MCSE 70-270, Second Edition, Enhanced 2-1 Chapter 2: Installing Windows XP Professional Objectives After reading this chapter and completing the exercises, you will be able to: Determine if an

More information

Network Planning and Implementation

Network Planning and Implementation Network Planning and Implementation SYLLABUS 3.1 Designing network 3.1.1 Accessing network needs- applications, users, network services, security and safety, growth and capacity planning 3.1.2 Meeting

More information

Intel Server RAID Controller U2-1 Integration Guide For Microsoft* Windows NT* 4.0

Intel Server RAID Controller U2-1 Integration Guide For Microsoft* Windows NT* 4.0 Intel Server RAID Controller U2-1 Integration Guide For Microsoft* Windows NT* 4.0 Revision 1.0 February 2000 Revision History Revision Revision History Date 1.0 Initial Release 02/10/00 Intel Corporation

More information

10ZiG Technology. Thin Desktop Quick Start Guide

10ZiG Technology. Thin Desktop Quick Start Guide 10ZiG Technology Thin Desktop Quick Start Guide 2010 05 20 Introduction This document is intended as a quick start guide for installing Thin Desktop. After reading this document, you will know how to:

More information

C A S P E R TECH EDITION 10 USER GUIDE

C A S P E R TECH EDITION 10 USER GUIDE TM C A S P E R TM TECH EDITION 10 USER GUIDE Copyright and Trademark Information Information in this document is subject to change without notice. Federal law prohibits unauthorized use, duplication, and

More information

Exam : Title. : A+ OS Technologies

Exam : Title. : A+ OS Technologies Exam : 220-302 Title : A+ OS Technologies QUESTION 1 Under Windows 2000 you consistently receive out of memory messages when running multiple applications. To avoid having to upgrade RAM immediately you?

More information

SANS Institute - Operations Essentials. Operating System Installation Guidelines. Windows XP Professional Installation. Creating Boot Disks

SANS Institute - Operations Essentials. Operating System Installation Guidelines. Windows XP Professional Installation. Creating Boot Disks SANS Institute - Operations Essentials Operating System Installation Guidelines The following document guides you step-by-step through the process of creating a dualboot system. Even if you do not use

More information

MiniTutorial: Including RTX 2011 Runtime with Windows Embedded Standard 7

MiniTutorial: Including RTX 2011 Runtime with Windows Embedded Standard 7 MiniTutorial: Including RTX 2011 Runtime with Windows Embedded Standard 7 Copyright 1996-2011 by IntervalZero Inc. All rights reserved. No part of this document may be reproduced or transmitted in any

More information

Magic Card NET. User s Manual

Magic Card NET. User s Manual Magic Card NET User s Manual Table of Contents Notice Before Installation:... 2 System Requirements... 3 1. First Installation... 4 2. Hardware Setup... 4 3. Express Installation... 6 4. How to setup FDISK...

More information

CASPER SECURE DRIVE BACKUP

CASPER SECURE DRIVE BACKUP TM CASPER SECURE DRIVE BACKUP FOR PGP WHOLE DISK ENCRYPTION USER GUIDE V3.0 TM Copyright and Trademark Information Information in this document is subject to change without notice. Federal law prohibits

More information

Note: The configurations and factory defaults described here are for EPM-15 BIOS version

Note: The configurations and factory defaults described here are for EPM-15 BIOS version EPM-15 CMOS SETUP PARAMETERS This article provides reference information and tips for setting CMOS Setup parameters on the EPM-15 (Manx). Start CMOS Setup by pressing Delete during the early boot cycle.

More information

This is Worksheet and Assignment 12. Disks, Partitions, and File Systems

This is Worksheet and Assignment 12. Disks, Partitions, and File Systems This is Worksheet and Assignment 12 This is a combined Worksheet and Assignment.. Quizzes and tests may refer to work done in this Worksheet and Assignment; save your answers. You will use a checking program

More information

Magic Card User Manual

Magic Card User Manual Table of Contents Magic Card User Manual Magic Card Introduction 2 What is Magic card? 2 Magic Card Features 2 Working Modes 3 Magic card editions 3 Installation 4 System Requirements 4 Pre-installation

More information

CASPER SECURE DRIVE BACKUP. for BitLocker Drive Encryption S TARTUP D ISK C REATOR G UIDE

CASPER SECURE DRIVE BACKUP. for BitLocker Drive Encryption S TARTUP D ISK C REATOR G UIDE TM CASPER SECURE DRIVE BACKUP for BitLocker Drive Encryption S TARTUP D ISK C REATOR G UIDE TM Copyright and Trademark Information Information in this document is subject to change without notice. Federal

More information

Windows 2000/XP History, and Data Management

Windows 2000/XP History, and Data Management Unit 5 Windows 2000/XP History, and Data Management Copyright 2002 Heathkit Company, Inc. All rights reserved. Microsoft Windows98 Microsoft WindowsMe Microsoft Windows 2000 Professional Microsoft Windows

More information

CompTIA A+ OS Technologies. Download Full Version :

CompTIA A+ OS Technologies. Download Full Version : CompTIA 220-302 A+ OS Technologies Download Full Version : https://killexams.com/pass4sure/exam-detail/220-302 QUESTION: 352 You are a technician at Company. You have just installed Windows 98 on a new

More information

As the system boots press Shift and F10 to enter the DASH Setup.

As the system boots press Shift and F10 to enter the DASH Setup. The following guide explains how to setup and use the DASH enabled Pegatron IPMSB-DA with SyAM Software, System Client and System Area Manager for performing the DASH out of band management functions.

More information

MCTS Guide to Microsoft 7. Chapter 2 Installing Windows 7

MCTS Guide to Microsoft 7. Chapter 2 Installing Windows 7 MCTS Guide to Microsoft 7 Chapter 2 Installing Windows 7 Objectives Describe the deployment enhancements in Windows 7 Choose a method for installation Choose a type of installation Use Windows Easy Transfer

More information

Preparing for and Dealing With Windows NT Start-up Problems

Preparing for and Dealing With Windows NT Start-up Problems Preparing for and Dealing With Windows NT Start-up Problems Agilent ChemStation Products "Success depends on preparation." Read this document now; schedule regular backups and perform disk maintenance

More information

WINDOWS HOST GUIDE. Remote Support & Management PC Mac Tablet Smartphone Embedded device. WiseMo Host module on your PC or Server

WINDOWS HOST GUIDE. Remote Support & Management PC Mac Tablet Smartphone Embedded device. WiseMo Host module on your PC or Server WINDOWS HOST GUIDE Remote Support & Management PC Mac Tablet Smartphone Embedded device WiseMo Guest module for example on your Windows PC WiseMo Host module on your PC or Server WiseMo develops software

More information

Veritas System Recovery Disk Help

Veritas System Recovery Disk Help Veritas System Recovery Disk Help About recovering a computer If Windows fails to start or does not run normally, you can still recover your computer. You can use the Veritas System Recovery Disk and an

More information

Copyright 2016 ForensicSoft Inc. SAFE Block Win10 To Go User s Guide

Copyright 2016 ForensicSoft Inc. SAFE Block Win10 To Go User s Guide Copyright 2016 ForensicSoft Inc. SAFE Block Win10 To Go User s Guide Table of Contents What is SAFE Block Win10 To Go?... 3 Installation... 4 License File... 4 I need to get a license file... 4 I already

More information

Windows Password Reset 6.0 User Guide

Windows Password Reset 6.0 User Guide page 1 of 11 Contents Contents...1 Introduction...2 Instructions on This Manual...3 System Requirements...4 How to Use Windows Password Reset 6.0...5 i. Remove the Password...5 ii. Burning Your CD/DVD

More information

Vendor: CompTIA Exam: Version: Demo

Vendor: CompTIA Exam: Version: Demo Vendor: CompTIA Exam: 220-601 Version: Demo Now preparing for your exam is not that stressful. Welcome to ChinaCertify - the place for through exam preparation All ChinaCertify test questions have comprehensive

More information

makes floppy bootable o next comes root directory file information ATTRIB command used to modify name

makes floppy bootable o next comes root directory file information ATTRIB command used to modify name File Systems File system o Designed for storing and managing files on disk media o Build logical system on top of physical disk organization Tasks o Partition and format disks to store and retrieve information

More information

Reinstalling the Operating System on the Dell PowerVault 745N

Reinstalling the Operating System on the Dell PowerVault 745N Reinstalling the Operating System on the Dell PowerVault 745N This document details the following steps to reinstall the operating system on a PowerVault 745N system: 1. Install the Reinstallation Console

More information

Windows Embedded XP Technical Overview

Windows Embedded XP Technical Overview Windows Embedded XP Technical Overview Windows XP Embedded Benefits Security Manageability Innovation Page 2 Windows XP Embedded Benefits Powerful Network Protection Security Manageability Innovation Windows

More information

Macrorit Partition Expert 4.3.5

Macrorit Partition Expert 4.3.5 Content Macrorit Partition Expert 4.3.5... 1 User Manual... 1 Welcome... 1 About Macrorit Partition Expert... 1 Main Features... 1 Advanced Features... 1 Tools... 2 Unique Technology... 2 System Requirements:...

More information

Hands-On Lab. Windows Azure Virtual Machine Roles. Lab version: Last updated: 12/14/2010. Page 1

Hands-On Lab. Windows Azure Virtual Machine Roles. Lab version: Last updated: 12/14/2010. Page 1 Hands-On Lab Windows Azure Virtual Machine Roles Lab version: 2.0.0 Last updated: 12/14/2010 Page 1 CONTENTS OVERVIEW... 3 EXERCISE 1: CREATING AND DEPLOYING A VIRTUAL MACHINE ROLE IN WINDOWS AZURE...

More information

Installing the Operating System or Hypervisor

Installing the Operating System or Hypervisor If you purchased E-Series Server or NCE Option 1 (E-Series Server or NCE without a preinstalled operating system or hypervisor), you must install an operating system or hypervisor. This chapter includes

More information

NEC Express5800 Series

NEC Express5800 Series NEC Express5800 Series NEC Express5800/120Rf-1,120Rh-2 Operation Manual For Microsoft Windows Server 2003, Standard x64 Edition / Microsoft Windows Server 2003, Enterprise x64 Edition Note: Microsoft and

More information

CIS 231 Windows 7 Install Lab #2

CIS 231 Windows 7 Install Lab #2 CIS 231 Windows 7 Install Lab #2 1) To avoid certain problems later in the lab, use Chrome as your browser: open this url: https://vweb.bristolcc.edu 2) Here again, to avoid certain problems later in the

More information

BootManage Administrator Installation Manual

BootManage Administrator Installation Manual BootManage Administrator Installation Manual 1 Contents INTRODUCTION... 4 WHAT IS THE BOOTMANAGE ADMINISTRATOR (BMA)... 5 REQUIREMENTS FOR THE BOOTMANAGE ADMINISTRATOR:... 5 PXE... 5 BOOTMANAGE TCP/IP

More information

Axon HD Content Management Application (CMA)

Axon HD Content Management Application (CMA) [ ] Axon HD Content Management Application (CMA) A Content Management Application (CMA) running on an Axon HD media server or a computer connected through an Ethernet network gives you remote control of

More information

Windows Me Navigating

Windows Me Navigating LAB PROCEDURE 11 Windows Me Navigating OBJECTIVES 1. Explore the Start menu. 2. Start an application. 3. Multi-task between applications. 4. Moving folders and files around. 5. Use Control Panel settings.

More information

CompTIA Linux+ Guide to Linux Certification Fourth Edition. Chapter 2 Linux Installation and Usage

CompTIA Linux+ Guide to Linux Certification Fourth Edition. Chapter 2 Linux Installation and Usage CompTIA Linux+ Guide to Linux Certification Fourth Edition Chapter 2 Linux Installation and Usage Objectives Prepare for and install Fedora Linux using good practices Outline the structure of the Linux

More information

By Dr. Samaher Hussein Ali

By Dr. Samaher Hussein Ali Department of Information Networks The University of Babylon LECTURE NOTES ON Operating Systems By Dr. Samaher Hussein Ali College of Information Technology, University of Babylon, Iraq Samaher@itnet.uobabylon.edu.iq

More information

Acronis, Acronis Compute with Confidence, and the Acronis logo are trademarks of Acronis, Inc.

Acronis, Acronis Compute with Confidence, and the Acronis logo are trademarks of Acronis, Inc. Copyright Acronis, Inc., 2010. All rights reserved. Acronis, Acronis Compute with Confidence, and the Acronis logo are trademarks of Acronis, Inc. Linux is a registered trademark of Linus Torvalds. Windows

More information

PARALLELS SERVER 4.0 FOR MAC BARE METAL EDITION README

PARALLELS SERVER 4.0 FOR MAC BARE METAL EDITION README PARALLELS SERVER 4.0 FOR MAC BARE METAL EDITION README February 18, 2010 1999-2010 Parallels Holdings, Ltd. and its affiliates. All rights reserved. This document provides the first-priority information

More information

Ftp Get Command Line Win 7 Boot Repair

Ftp Get Command Line Win 7 Boot Repair Ftp Get Command Line Win 7 Boot Repair Get the fix for the infinite Startup Repair loop error for the following Windows versions: The command line chkdsk tool ships with Windows and can be used. To prevent

More information

Managing Windows-based Dell Wyse Thin Clients using System Center Configuration Manager Administrator s Guide

Managing Windows-based Dell Wyse Thin Clients using System Center Configuration Manager Administrator s Guide Managing Windows-based Dell Wyse Thin Clients using System Center Configuration Manager 2016 Administrator s Guide Notes, cautions, and warnings NOTE: A NOTE indicates important information that helps

More information

Install to USB. A guide to creating both the basic and bootable versions of an OSF USB

Install to USB. A guide to creating both the basic and bootable versions of an OSF USB Install to USB A guide to creating both the basic and bootable versions of an OSF USB 1 Copyright 2018 PassMark Software All Rights Reserved. PassMark is a registered trademark owned by PassMark Software.

More information

HOW TO: Perform a Hardware Independent Restore (HIR)

HOW TO: Perform a Hardware Independent Restore (HIR) Document ID:00000184 Last Modified:12/12/2008 HOW TO: Perform a Hardware Independent Restore (HIR) Key Words: How to, HIR, Hardware independent restore, recovery Situation: The purpose of this document

More information

Vista Deployment: What s in the Box and What s Not

Vista Deployment: What s in the Box and What s Not An IT Briefing produced by Vista Deployment: What s in the Box and What s Not By Mark Minasi 2007 TechTarget BIO Mark Minasi is a best-selling author, popular technology columnist and commentator, and

More information

Chapter 1: Windows Platform and Architecture. You will learn:

Chapter 1: Windows Platform and Architecture. You will learn: Chapter 1: Windows Platform and Architecture Windows 2000 product family. New features/facilities of. Windows architecture. Changes to the kernel and kernel architecture. New features/facilities. Kernel

More information

RTE for WIN32. Installation Manual (Rev.7.0) Midas lab

RTE for WIN32. Installation Manual (Rev.7.0) Midas lab Midas lab REVISION HISTORY Date Revision Chapter Explanation of revision March 11,2000 4.0 RTE4W32 Ver.5.0 (First edition) January 10,2002 4.1 Add Windows XP support (RTE4W32 Ver.5.05) October 29,2002

More information

Restoration onto different Hardware. Quick and easy system restore with O&O DiskImage

Restoration onto different Hardware. Quick and easy system restore with O&O DiskImage Restoration onto different Hardware Quick and easy system restore with O&O DiskImage Table of contents System restoration using boot media... 1 Restoration onto different hardware... 2 Limitations when

More information

C A S P E R T ECH EDITION 5.0 USER GUIDE

C A S P E R T ECH EDITION 5.0 USER GUIDE TM C A S P E R TM T ECH EDITION 5.0 USER GUIDE Copyright and Trademark Information Information in this document is subject to change without notice. Federal law prohibits unauthorized use, duplication,

More information

Fujitsu LifeBook A Series

Fujitsu LifeBook A Series Fujitsu LifeBook A Series BIOS Guide LifeBook A Series Model: A6030 Document Date: 06/06/2007 Document Part Number: FPC58-1698-01 FUJITSU COMPUTER SYSTEMS CORPORATION 1 LifeBook A Series BIOS A Series

More information

Automated Deployment Services

Automated Deployment Services Building Out the Enterprise Using Automated Deployment Services Automated Deployment Services (ADS), a component of the Microsoft Windows Server 2003 operating system, includes a new set of imaging tools

More information

Vendor: CompTIA. Exam Code: Exam Name: CompTIA A+ Certification Exam (902) Version: Demo

Vendor: CompTIA. Exam Code: Exam Name: CompTIA A+ Certification Exam (902) Version: Demo Vendor: CompTIA Exam Code: 220-902 Exam Name: CompTIA A+ Certification Exam (902) Version: Demo DEMO QUESTION 1 Which of the following best practices is used to fix a zero-day vulnerability on Linux? A.

More information

D. By deleting the difference disks of the virtual machines within the Delivery Group

D. By deleting the difference disks of the virtual machines within the Delivery Group Volume: 138 Questions Question: 1 A Citrix Administrator updates all of the machines within a Delivery Group. After the update, an application stops working. The IT manager tells the administrator to revert

More information

Installation and Configuration Guide

Installation and Configuration Guide Installation and Configuration Guide 2013 DataNet Quality Systems. All rights reserved. Printed in U.S.A. WinSPC and QualTrend are registered trademarks of DataNet Quality Systems. All other trademarks

More information

Upgrading the MSA1000 for Enhanced Features

Upgrading the MSA1000 for Enhanced Features White Paper December 2002 Prepared by: Network Storage Solutions Hewlett Packard Company Contents Benefits of the MSA1000 Enhancements...1 Prerequisites...3 Environmental Monitoring Unit (EMU) issue:...3

More information