ENGL Imaging Toolkit 6 Windows 7 system partitioning and BitLocker. Jamie Glendinning

Size: px
Start display at page:

Download "ENGL Imaging Toolkit 6 Windows 7 system partitioning and BitLocker. Jamie Glendinning"

Transcription

1 ENGL Imaging Toolkit 6 Windows 7 system partitioning and BitLocker Jamie Glendinning Jamie_Glendinning@engl.co.uk

2 Agenda Introduction Configuring a system partition Additional partitions BitLocker 2

3 Introduction 3

4 Introduction Level Intermediate Duration 30 minutes Assumptions An understanding of the ENGL build process 4

5 Configuring a system partition 5

6 System Partition When Windows 7 is installed direct from media the install process sets up a 100MB system partition. The system partition contains the hardware related files that tell a computer where to look to start Windows. A boot partition is a partition that contains the Windows operating system files, which are located in the Windows file folder. Usually, these are the same partition, especially if you have only one operating system installed on your computer. 6

7 System Partition You can use system partitions to: Manage and load other partitions. If there are multiple operating systems, for example, Windows 7 and Windows Vista, the computer displays a list of operating systems. The user can then select which operating system to use. Use security tools, such as Windows BitLocker Drive Encryption. Use recovery tools, such as Windows Recovery Environment (Windows RE). 7

8 System Partition Basic system partition requirements are: Must have at least 100 megabytes (MB) of hard drive space. Must have enough free space to create shadow copies of the partition. If the partition is less than 500 MB, it must have at least 50 MB of free space. If the partition is 500 MB or larger, it must have at least 320 MB of free space. If the partition is larger than 1 gigabyte (GB), the partition should have at least 1 GB free. Must be configured as the active partition. Must not be an encrypted partition. Must be formatted as NTFS for BIOS based systems. 8

9 System Partition Additional requirements for Advanced Format Generation One (4KBpersector) drives: The minimum size of the system partition on an Advanced Format Generation One drive is 260 MB. 9

10 System Partition A Windows 7 base image that is created by the ENGL Deployment wizard does not have this system partition configured as a separate partition. The files are included in the OS partition. It is possible to configure the base image creation files so that a system partition is created. 10

11 System Partition Requirements Text editor Build Console Windows 7 Project Unattend folder created by Deployment Wizard 11

12 System Partition Assumptions Machine will have system partition and c:\ drive only 400MB system partition 12

13 System Partition Update unattend files Review existing autounattend.xml file. This can be found in <projectfolder>\unattend\ autounattend\ Note: The following example is a truncated version of the autounattend.xml file 13

14 System Partition Update unattend files <?xml version="1.0" encoding="utf-8"?> <!-- techbite-bitlocker, Jamie Glendinning --> <unattend xmlns="urn:schemas-microsoft-com:unattend"> <settings pass="windowspe"> <component name="microsoft-windows-setup" processorarchitecture="x86" publickeytoken="31bf3856ad364e35" language="neutral" versionscope="nonsxs" xmlns:wcm=" xmlns:xsi=" <DiskConfiguration> <Disk wcm:action="modify"> <CreatePartitions> <CreatePartition wcm:action="modify"> <Extend>false</Extend> <Order>1</Order> <Type>Primary</Type> <Size>20000</Size> </CreatePartition> </CreatePartitions> <WillWipeDisk>true</WillWipeDisk> <DiskID>0</DiskID> <ModifyPartitions> <ModifyPartition wcm:action="add"> <Active>true</Active> <Extend>false</Extend> <Format>NTFS</Format> <Letter>C</Letter> <Order>1</Order> <PartitionID>1</PartitionID> <Label>WINDOWS</Label> </ModifyPartition> </ModifyPartitions> </Disk> <WillShowUI>OnError</WillShowUI> </DiskConfiguration> </component> </settings> </unattend> 14

15 System Partition Update unattend files Updated CreatePartitions section <?xml version="1.0" encoding="utf-8"?> <!-- techbite-bitlocker, Jamie Glendinning --> <unattend xmlns="urn:schemas-microsoft-com:unattend"> <settings pass="windowspe"> <component name="microsoft-windows-setup" processorarchitecture="x86" publickeytoken="31bf3856ad364e35" language="neutral" versionscope="nonsxs" xmlns:wcm=" xmlns:xsi=" <DiskConfiguration> <Disk wcm:action="modify"> <CreatePartitions> <!-- System partition --> <CreatePartition wcm:action="modify"> <Extend>false</Extend> <Order>1</Order> <Type>Primary</Type> <Size>400</Size> </CreatePartition> <!-- Windows partition --> <CreatePartition wcm:action="modify"> <Order>2</Order> <Type>Primary</Type> <Extend>false</Extend> <Size>20000</Size> </CreatePartition> </CreatePartitions> 15

16 System Partition Update unattend files Update ModifyPartitions Section <ModifyPartitions> <!-- System partition --> <ModifyPartition wcm:action="add"> <Extend>false</Extend> <Order>1</Order> <PartitionID>1</PartitionID> <Label>System</Label> <Format>NTFS</Format> <Active>true</Active> </ModifyPartition> <!-- Windows partition --> <ModifyPartition wcm:action="add"> <Order>2</Order> <PartitionID>2</PartitionID> <Label>Windows</Label> <Letter>C</Letter> <Format>NTFS</Format> <Extend>false</Extend> </ModifyPartition> </ModifyPartitions> </Disk> <WillShowUI>OnError</WillShowUI> </DiskConfiguration> </component> </settings> </unattend> 16

17 System Partition Update unattend files Save the changes to the autounattend.xml file. Update the sysprep.xml file with the same changes. The sysprep.xml file can be found: <projectfolder>\unattend\ autounattend\ $OEM$\$1\Ztoolkit\sysprep\sysprep.xml Note: The sysprep file does not need to be updated but is done to avoid future confusion. 17

18 System Partition Review base image Using your preferred unattended installation method create a new Windows 7 image. The new base image will contain two partitions. Opening it with image explorer it should look like: 18

19 System Partition Update Project settings When restoring the base image the system partition may be configured by Windows with a drive letter even though it is a system partition and this was not configured in the base image. To workaround this issue a diskpart script can be used to remove the drive letter. 19

20 System Partition Update Project settings Create a diskpart.txt file containing: Select disk 0 detail disk select volume 1 Remove exit Add this file to the project custom files folder Update phase1-before.vbs script to add a command to run the diskpart script ' Add custom script here... utils.appendlog "Configuring disk partitions" diskpart_status = utils.run ("diskpart.exe -s c:\ztoolkit\diskpart.txt",0,true) utils.appendlog "diskpart script status: " & diskpart_status Create a new Ztoolkit image and copy to ZENworks imaging server 20

21 System Partition Restoring Images The new base image can be restored as normal and will replace both partitions each time it is restored. The command line option to restore the add-on images must be modified to ensure that the files are restored into the second (OS) partition instead of partition 1 i.e. ap=a1:p2 21

22 System Partition Restoring Images Update zim.cfg file: Dialog:Popup,"Restoring ENGL ENGL Smart Smart Windows Windows build build process, please please wait...",green Pause:3 Pause:3 File:Run,"img %imgrestorecmd%%project_image_path%/%base_image%",verbose File:Run,"img %imgrestorecmd%%project_image_path%/hotfixes.zmg",verbose ap=a1:p2",verbose If:Var,machine_type,eq,"tablet" File:Run,"img %imgrestorecmd%%project_image_path%/tablet.zmg",verbose ap=a1:p2 ",verbose End: End: File:Run,"img %imgrestorecmd%%project_image_path%/%project_novcomp%",verbose ap=a1:p2 ",verbose File:Run,"img %imgrestorecmd%%project_image_path%/%project_ztoolkit%",verbose ap=a1:p2 ",verbose File:Run,"img %imgrestorecmd%%project_image_path%/%drivers_image%",verbose ap=a1:p2 ",verbose Pause:2 Pause:2 Dialog:Popupclose 22

23 System Partition Testing build process Once all the files have been updated they need to be tested. PXE boot an appropriate workstation Restore images via the Zim menu Workstation will build successfully 23

24 System Partition Testing build process Review the partition structure on the machine once the machine has built. It should look something like this: 24

25 Additional partitions 25

26 Additional partitions In the scenario covered so far the base image was restored and included two partitions. Sysprep mini-setup then extended the OS partition to fill the disk to give the built machine access to the full hard disk. If a different partition structure is required then there are several problems that need to be overcome. 26

27 Additional partitions Scenario - Laptops 400MB System partition 40GB OS Partition Remainder of disk as D:\ drive Scenario - Desktops 400MB System partition OS Partition fill the disk 27

28 Additional partitions In order to meet the requirements of this scenario the partitions need to be configured first then images restored into partitions (standard img functionality) This can be achieved using the ap=a1:p2 command line option The base image created earlier has two partitions, a 400MB partition and a 20GB partition. 28

29 Additional partitions If the following restore commands are run: img r p techbite-bitlocker/win7-ent-x64-postsp.zmg ap=a1:p1 img r p techbite-bitlocker/win7-ent-x64-postsp.zmg ap=a2:p2 Then the first command will restore the system partition into partition 1 onto the file system. It will then process the second 20GB partition but will skip the actual restoration of the files. This results in the above commands taking twice as long as the basic restore: img r p techbite-bitlocker/win7-ent-x64-postsp.zmg 29

30 Additional partitions Solution: Create individual images instead of one large image containing multiple partitions Configure Zim to partition the disk Configure Zim to restore individual images into appropriate partitions 30

31 Additional partitions Image creation Create individual images instead of one large image containing multiple partitions Follow normal steps to create a Windows 7 base image (using configuration changes as detailed earlier) PXE boot machine to ZENworks Imaging Environment At Zim menu Select Maintenance Menu Select Exit to Prompt At the bash prompt run these commands to create images img m p <project-folder>/systempartition.zmg x=2 img m p <project-folder>/win7-ent-x86-postsp.zmg x=1 31

32 Additional partitions Image Creation 32

33 Additional partitions Image creation Create ddrive.zmg file Boot a machine using Windows PE media Launch diskpart diskpart Run diskpart commands Select disk 0 clean Create partition primary size=400 format fs=ntfs quick exit 33

34 Additional partitions Image creation PXE boot machine to ZENworks Imaging Environment At Zim menu Select Maintenance Menu Select Exit to Prompt At the bash prompt run these commands to create images img m p <project-folder>/ddrive.zmg 34

35 Additional partitions Image creation 35

36 Additional partitions Image creation 36

37 System Partition Update Project settings When restoring the base image the system partition may be configured by Windows with a drive letter even though it is a system partition and this was not configured in the base image. If the System partition is assigned to D:\ then the data partition will be assigned E:\. To workaround this issue a diskpart script can be used to remove the drive letter from the system partition and reassign the E:\ drive letter to the data partition. 37

38 System Partition Update Project settings Create a diskpart.txt file containing: Select disk 0 detail disk select volume 1 Remove select volume 3 assign letter=d exit Add this file to the project custom files folder Update phase1-before.vbs script to add a command to run the diskpart script ' Add custom script here... utils.appendlog "Configuring disk partitions" diskpart_status = utils.run ("diskpart.exe -s c:\ztoolkit\diskpart.txt",0,true) utils.appendlog "diskpart script status: " & diskpart_status Create a new Ztoolkit image and copy to ZENworks imaging server 38

39 Additional partitions Updated image files have now been created. Need to update Zim.cfg file create appropriate partitions restore appropriate images into partitions 39

40 Additional partitions Zim.cfg Zim script - configure default partition actions ; Launch a Form to display detected hardware and select machine type Form:Start,"info","Hardware Detected","_OkCancel^_Ok",Blue Form:Item,"Item1",StaticText,"-Manufacturer : %lookup_section%" Form:Item,"Item2",StaticText,"-Model : %lookup_value%" Form:Item,"Item3",StaticText,"-Hardware Image : %drivers_image%" Form:Item,"Item4",StaticText,"-Hardware Type : %machine_type%" Form:Item,"Item5",Label,"Computer Name :" Form:Item,"Item6",EditBox,"%COMPUTERNAME% Form:Item,"Item7",Label,"Auto Restart after imaging:" Form:Item,"Item8",Radiobuttons,"Yes","Yes,No" Form:Display,"info" If:Var,_Form,Eq,"_Cancel" Menu:Return End: Set:Ask_COMPUTERNAME,%_Info_item6% Set:AutoRestart,%_Info_item8% If:Var,Ask_COMPUTERNAME,ne,"%COMPUTERNAME%" Set:COMPUTERNAME,"%Ask_COMPUTERNAME%" End: ; Default Partitioning actions if:var,machine_type,eq,"laptop" Set:partition1_action,"-type=ntfs -size=400" Set:partition2_action,"-type=ntfs -size=40000" Set:partition3_action,"-type=ntfs" else: Set:partition1_action,"-type=ntfs -size=400" Set:partition2_action,"-type=ntfs" Set:partition3_action,"" end: 40

41 Additional partitions Zim.cfg Zim.cfg configuring the partition table : Dialog:Ask,"", "Warning! All hard disk data on this machine will be erased.\n \ncontinue?","_yesno",red If:Var,_ask,eq,"_No" Menu:Return End: ; configuring partition table. ; check if zisd:vendordataengl exists if it does not - assume this is a new machine and we need to clear all partitions. ; Read zisd:vendordataengl zisd:get,vendordataengl,vendordataenglstring If:var,VendorDataENGLSTRING,eq,"" set:ask_wipe,"yes" End: 41

42 Additional partitions Zim.cfg Zim.cfg configuring the partition table : Dialog:Popup,"Configuring Partitions, please wait...",green ;Clear all partitions if:var,ask_wipe,eq,"yes ; delete existing partitions file:run,"img -pd 4",verbose File:Run,"cat imglogr >> /zimbin/zim.log",verbose file:run,"img -pd 3",verbose File:Run,"cat imglogr >> /zimbin/zim.log",verbose file:run,"img -pd 2",verbose File:Run,"cat imglogr >> /zimbin/zim.log",verbose file:run,"img -pd 1",verbose File:Run,"cat imglogr >> /zimbin/zim.log",verbose else: ;Create new partition structure if:var,partition3_action,ne,"" ; we need to create 3 partitions file:run,"img -pc 1 %partition1_action%",verbose File:Run,"cat imglogr >> /zimbin/zim.log",verbose file:run,"img -pc 2 %partition2_action%",verbose File:Run,"cat imglogr >> /zimbin/zim.log",verbose file:run,"img -pc 3 %partition3_action%",verbose File:Run,"cat imglogr >> /zimbin/zim.log",verbose ; restore d-drive.zmg file File:Run,"img %imgrestorecmd%%project_image_path%/d-drive.zmg -ap=a1:p3",verbose File:Run,"cat imglogr >> /zimbin/zim.log",verbose else: file:run,"img -pc 1 %partition1_action%",verbose File:Run,"cat imglogr >> /zimbin/zim.log",verbose file:run,"img -pc 2 %partition2_action%",verbose File:Run,"cat imglogr >> /zimbin/zim.log",verbose end: 42

43 Additional partitions Zim.cfg Zim.cfg configuring the partition table : ; Machine is being re-imaged - so need to delete partition 1 & 2 file:run,"img -pd 1",verbose File:Run,"cat imglogr >> /zimbin/zim.log",verbose file:run,"img -pd 2",verbose File:Run,"cat imglogr >> /zimbin/zim.log",verbose End: ; now need to recreate system and c: drive file:run,"img -pc 1 %partition1_action%",verbose File:Run,"cat imglogr >> /zimbin/zim.log",verbose file:run,"img -pc 2 -type=ntfs",verbose File:Run,"cat imglogr >> /zimbin/zim.log",verbose ; set system partition as active file:run,"img -pa 1",verbose File:Run,"cat imglogr >> /zimbin/zim.log",verbose Dialog:Popupclose 43

44 Additional partitions Zim.cfg Zim.cfg configuring image restore : Dialog:Popup,"Restoring ENGL Smart Windows build process, please wait...",green Pause:3 File:Run,"img %imgrestorecmd%%project_image_path%/%base_image%",verbose %imgrestorecmd%%project_image_path%/systempartition.zmg -ap=a1:p1",verbose File:Run,"img File:Run,"cat %imgrestorecmd%%project_image_path%/hotfixes.zmg",verbose imglogr >> /zimbin/zim.log",verbose If:Var,machine_type,eq,"tablet" File:Run,"img %imgrestorecmd%%project_image_path%/%base_image% -ap=a1:p2",verbose File:Run,"img File:Run,"cat %imgrestorecmd%%project_image_path%/tablet.zmg",verbose imglogr >> /zimbin/zim.log",verbose End: File:Run,"img %imgrestorecmd%%project_image_path%/hotfixes.zmg -ap=a1:p2",verbose File:Run,"img File:Run,"cat %imgrestorecmd%%project_image_path%/%project_novcomp%",verbose imglogr >> /zimbin/zim.log",verbose File:Run,"img If:Var,machine_type,eq,"tablet" %imgrestorecmd%%project_image_path%/%project_ztoolkit%",verbose File:Run,"img File:Run,"img %imgrestorecmd%%project_image_path%/%drivers_image%",verbose %imgrestorecmd%%project_image_path%/tablet.zmg -ap=a1:p2",verbose Pause:2 End: Dialog:Popupclose File:Run,"img %imgrestorecmd%%project_image_path%/%project_novcomp% -ap=a1:p2",verbose File:Run,"cat imglogr >> /zimbin/zim.log",verbose File:Run,"img %imgrestorecmd%%project_image_path%/%project_ztoolkit% -ap=a1:p2",verbose File:Run,"cat imglogr >> /zimbin/zim.log",verbose File:Run,"img %imgrestorecmd%os/%project_os%/%drivers_image% -ap=a1:p2",verbose File:Run,"cat imglogr >> /zimbin/zim.log",verbose Pause:2 Dialog:Popupclose Note: review TID Capture img error codes to zim.log file for more info on using the command line: File:Run,"cat imglogr >> /zimbin/zim.log",verbose 44

45 Additional partitions Testing Build Process Review the partition structure on the machine once the machine has built. It should look something like this: 45

46 BitLocker 46

47 BitLocker Overview 47 What is BitLocker? BitLocker Drive Encryption is a data protection feature available in Windows 7 Enterprise and Windows 7 Ultimate. BitLocker protects your hard drive from offline attack. This is the type of attack where a malicious user will take the hard drive from your mobile machine and connect it to another machine so they can harvest your data. BitLocker also protects your data if a malicious user boots from an alternate Operating System. With either attack method, BitLocker encrypts the hard drive so that when someone has physical access to the drive, the drive is unreadable.

48 BitLocker Requirements Requirement Description Hardware configuration Operating system Hardware TPM BIOS configuration File system Meet the minimum requirements for Windows 7 Windows 7 Ultimate, Windows 7 Enterprise, or Windows Server 2008 R2 TPM version 1.2 A TPM is not required for BitLocker; however, only a computer with a TPM can provide the additional security of pre-startup system integrity verification and multifactor authentication A Trusted Computing Group (TCG)-compliant BIOS. The BIOS must be set to start first from the hard disk, and not the USB or CD drives. The BIOS must be able to read from a USB flash drive during startup At least two NTFS disk partitions, one for the system drive and one for the operating system drive. The system drive partition must be at least 100 megabytes (MB) and set as the active partition 48

49 BitLocker Build Process scenario Scenario - Laptops 400MB System partition 40GB OS Partition Remainder of disk as D:\ drive At imaging select option to enable BitLocker for OS partition Scenario - Desktops 400MB System partition OS Partition fill the disk 49

50 BitLocker Build Process scenario Assumptions TPM device is present on hardware and is enabled Recovery keys to be stored in Active Directory Windows 7 Enterprise base image System partition configured as per previous scenario Enabling BitLocker by Using a WMI Script (EnableBitLocker.vbs) is available Data drive (D:\) is not encrypted 50

51 BitLocker Enable BitLocker by using a WMI Script Enabling BitLocker by Using a WMI Script EnableBitLocker.vbs is a fully functional sample deployment script that uses the publicly available BitLocker and Trusted Platform Module (TPM) WMI providers that can be used as is or customized to meet the needs of your organization. Download script: Download documentation: seid=

52 BitLocker Update Zim.cfg Update information read in from ZISD when Zim loads ; Read zisd:vendordataengl Zisd:Get,VendorDataENGL,VendorDataENGLSTRING ; Read stored information in from VendorDataENGL Set:zisd_project,GetKeyPairStringValue("%VendorDataENGLSTRING%", "project") Set:zisd_bit_OS,GetKeyPairStringValue("%VendorDataENGLSTRING%", bit_os") 52

53 BitLocker Update Zim.cfg Update Zim form ; Launch a Form to display detected hardware and select machine type Form:Start,"info","Hardware Detected","_OkCancel^_Ok",Blue Form:Item,"Item1",StaticText,"-Manufacturer : %lookup_section%" Form:Item,"Item2",StaticText,"-Model : %lookup_value%" Form:Item,"Item3",StaticText,"-Hardware Image : %drivers_image%" Form:Item,"Item4",StaticText,"-Hardware Type : %machine_type%" Form:Item,"Item5",Label,"Computer Name :" Form:Item,"Item6",EditBox,"%COMPUTERNAME% Form:Item,"Item7",Label,"Auto If:var,machine_type,eq, laptop Restart after imaging:" Form:Item,"Item8",Radiobuttons,"Yes","Yes,No" Form:Item,"Item7",Label,"Encrypt OS Partition:" Form:Display,"info" Form:Item,"Item8",Radiobuttons,"%zisd_bit_OS%","No,Yes" If:Var,_Form,Eq,"_Cancel" End: Form:Item,"Item9",Label,"Auto Menu:Return Restart after imaging:" End: Form:Item,"Item10",Radiobuttons,"Yes","Yes,No" Set:Ask_COMPUTERNAME,%_Info_item6% Form:Display,"info" Set:AutoRestart,%_Info_item8% If:Var,_Form,Eq,"_Cancel" If:Var,Ask_COMPUTERNAME,ne,"%COMPUTERNAME%" Menu:Return End: Set:COMPUTERNAME,"%Ask_COMPUTERNAME%" End: Set:Ask_COMPUTERNAME,%_Info_item6% Set:BitLocker_OS,%_Info_item8% Set:AutoRestart,%_Info_item10% If:Var,Ask_COMPUTERNAME,ne,"%COMPUTERNAME%" Set:COMPUTERNAME,"%Ask_COMPUTERNAME%" End: 53

54 BitLocker Update Zim.cfg Update BitLocker information to ZISD ; Update the information in ZISD Zisd:Put,NetBiosName,%COMPUTERNAME% ; Update VendorDataENGL (sample) Set:VendorDataENGLSTRING,PutKeyPairStringValue("%VendorDataENGLSTRING%","Machine_Type","%machine_type%") Set:VendorDataENGLSTRING,PutKeyPairStringValue("%VendorDataENGLSTRING%","OS","%project_os%") Set:VendorDataENGLSTRING,PutKeyPairStringValue("%VendorDataENGLSTRING%","Project","%lookup_project% ) Set:VendorDataENGLSTRING,PutKeyPairStringValue("%VendorDataENGLSTRING%","Project","%lookup_project%") Set:VendorDataENGLSTRING,PutKeyPairStringValue("%VendorDataENGLSTRING%","bit_OS","%BitLocker_OS% ) Save changes to zim.cfg file 54

55 BitLocker Update project files Add EnableBitLocker.vbs file to the project custom files 55

56 BitLocker Update project files Update phase4-before.vbs script to Check ZISD for BitLocker options Enable BitLocker (when required) Initiate encryption of OS partition 56

57 BitLocker Update project files Update phase4-before.vbs script ' ENGL Imaging Toolkit 6 ' Copyright (C) Expert Networking Group Limited ' techbite-bitlocker ' Jamie Glendinning ' Custom script template (phase4-before.vbs) ' Custom script template (phase4-before.vbs) ' Attach to ENGL Ztoolkit ActiveX Control Set ' Attach LDAP to ENGL = CreateObject("ENGL.Ztoolkit.LDAP") ActiveX Control Set Utils LDAP = CreateObject("ENGL.Ztoolkit.Utils") CreateObject("ENGL.Ztoolkit.LDAP") Set ZENworks Utils = CreateObject("ENGL.Ztoolkit.ZENworks") CreateObject("ENGL.Ztoolkit.Utils") Set ZENworks = CreateObject("ENGL.Ztoolkit.ZENworks") ' Set ZISD Version ZENworks.ZISDVersion ' Set ZISD = 11 ZENworks.ZISDVersion = 11 ' Add custom script here... ' Add custom script here... ' Read in ZISD:VendorDataENGL VendorDataENGLSTRING = ZENworks.GetZisdAttributeValue("VendorDataENGL") ' Separate strings zisd_bit_os = Utils.GetKeyPairStringValue(VendorDataENGLSTRING, "bit_os") If zisd_bit_os = "Yes" then ' BitLocker needs to be enabled on this machine utils.appendlog "Enabling BitLocker" utils.appendlog "Enabling BitLocker on OS Partition" utils.run "%comspec% /c BdeHdCfg.exe -target default -quiet >> c:\ztoolkit\ztoolkit.log",0,true bit_status = utils.run ("wscript c:\ztoolkit\enablebitlocker.vbs /on:tpm /l:c:\ztoolkit\ztoolkit.log",0,true) utils.appendlog "BitLocker script status: " & bit_status utils.run "%comspec% /c manage-bde -status >> c:\ztoolkit\ztoolkit.log",0,true end if 57

58 BitLocker Testing Build Process Restore the updated project files Reboot after images have restored, the workstation will build successfully Review the build machine to confirm everything is working as expected Ztoolkit.log file this should contain BitLocker information Launch a command prompt manage-bde status This will give information on current status of the local partitions Open Control Panel launch BitLocker Drive Encryption will show similar information 58

59 BitLocker Testing Build Process Ztoolkit.log file this should contain EnableBitLocker.vbs information... [03-Aug-11 12:29:44] [Zmainrun-Phase4] Running custom scripts (pre-phase)... [03-Aug-11 12:29:44] [Zmainrun-Phase4] Processing 'phase4-before.vbs'... [03-Aug-11 12:29:44] [Zmainrun-Phase4] [Debug] Running [wscript C:\Ztoolkit\phase4-before.vbs] [03-Aug-11 12:29:44] [ZtoolkitCtrl] ENGL ZtoolkitCtrl (x86) [03-Aug-11 12:29:44] [ZtoolkitCtrl] Copyright (C) Expert Networking Group Limited [03-Aug-11 12:29:44] [ZtoolkitCtrl] Licensed to: ENGL System Test [03-Aug-11 12:29:44] [ZtoolkitCtrl] ZENworks.GetZisdAttributeValue() attribute: 'VendorDataENGL' [03-Aug-11 12:29:44] [ZtoolkitCtrl] returning [Yes] [03-Aug-11 12:29:44] [ZtoolkitCtrl] Enabling BitLocker [03-Aug-11 12:29:44] [ZtoolkitCtrl] Enabling BitLocker on OS Partition BitLocker Drive Preparation Tool version Copyright (C) Microsoft Corporation. Script processing started 03/08/ :29:49 Proper number of command line arguments passed to the script Executing with the following arguments Enable parameters: tpm Logging location: c:\ztoolkit\ztoolkit.log... 59

60 BitLocker Testing Build Process Ztoolkit.log file this should contain manage-bde -status information BitLocker Drive Encryption: Configuration Tool version Copyright (C) Microsoft Corporation. All rights reserved. Disk volumes that can be protected with BitLocker Drive Encryption: Volume C: [Windows] [OS Volume] Size: GB BitLocker Version: Windows 7 Conversion Status: Encryption in Progress Percentage Encrypted: 0% Encryption Method: AES 128 with Diffuser Protection Status: Protection Off Lock Status: Unlocked Identification Field: None Key Protectors: TPM Numerical Password Volume D: [] [Data Volume] Size: GB BitLocker Version: None Conversion Status: Fully Decrypted Percentage Encrypted: 0% Encryption Method: None Protection Status: Protection Off Lock Status: Unlocked Identification Field: None Automatic Unlock: Disabled Key Protectors: None Found [03-Aug-11 12:29:55] [Zmainrun-Phase4] [Debug] returned 0 (exit code: 0)... 60

61 BitLocker Testing Build Process Control Panel - BitLocker Drive Encryption 61

62 BitLocker Testing Build Process Review the partition structure on the machine once the machine has built. It should look something like this: 62

63 Summary 63

64 Summary Using Imaging Toolkit v6 you can create a universal Windows 7 build process that includes a system partition. It is also possible to automate the encryption of the OS partition using BitLocker. The examples given in this TechBite session can be easily extended to meet individual customer requirements including encryption of the DATA partition 64

65 Issues 65

66 Issues If you would like any more information or assistance with the procedures detailed in this TechBite let us know! Log an incident via My ENGL Report an issue via support forum 66

67 More information 67

68 More Information Useful links Product information and Downloads Success Stories Partners 68

69 More Information Future Events Tech Bite sessions Brainshare 69

70

BitLocker Group Policy Settings

BitLocker Group Policy Settings BitLocker Group Policy Settings Updated: September 13, 2013 Applies To: Windows 8, Windows 8.1, Windows Server 2012, Windows Server 2012 R2 This reference topic for the IT professional describes the function,

More information

This release of the hardware encrypted IronKey Workspace W500 Microsoft Certified Windows to Go drive, adds the following functionality:

This release of the hardware encrypted IronKey Workspace W500 Microsoft Certified Windows to Go drive, adds the following functionality: IronKey Workspace W500: Release Notes for 4.1.0.0 Availability Date: September 16, 2013 Supported Device: W500 Software Version: 4.1.0.0 Device Capacity: 32GB, 64GB, 128GB. Release Description This release

More information

Expert Reference Series of White Papers. BitLocker: Is It Really Secure? COURSES.

Expert Reference Series of White Papers. BitLocker: Is It Really Secure? COURSES. Expert Reference Series of White Papers BitLocker: Is It Really Secure? 1-800-COURSES www.globalknowledge.com BitLocker: Is It Really Secure? Mark Mizrahi, Global Knowledge Instructor, MCSE, MCT, CEH Introduction:

More information

Overview of USB Flash Drive Based Install Instructions

Overview of USB Flash Drive Based Install Instructions Overview of USB Flash Drive Based Install Instructions WARNING: Installing any Image completely wipes out ALL data and settings including printer drivers which must be re-installed. SAVE ALL DATA BEFORE

More information

Sophos Central Device Encryption. Administrator Guide

Sophos Central Device Encryption. Administrator Guide Sophos Central Device Encryption Administrator Guide Contents About... 1 Manage BitLocker Drive Encryption... 2 Migrate to...2 Prepare Device Encryption...3 Device Encryption step by step... 3 Device Encryption

More information

ZENworks 11 SP2 Test Scenarios for Imaging

ZENworks 11 SP2 Test Scenarios for Imaging ZENworks 11 SP2 Test Scenarios for Imaging This document contains test scenarios for ZENworks 11 SP2 Beta 1. Purpose of the Test Scenarios The purpose of these exercises is to familiarize you with the

More information

Dell Server Deployment Pack Version 2.1 for Microsoft System Center Configuration Manager User's Guide

Dell Server Deployment Pack Version 2.1 for Microsoft System Center Configuration Manager User's Guide Dell Server Deployment Pack Version 2.1 for Microsoft System Center Configuration Manager User's Guide Notes, Cautions, and Warnings NOTE: A NOTE indicates important information that helps you make better

More information

Identify Windows Editions and Upgrade Paths

Identify Windows Editions and Upgrade Paths L E S S O N 2. 1 Identify Windows Editions and Upgrade Paths L E S S O N 2. 1 Lesson Overview Identifying Windows editions and upgrade paths. In this lesson, you will: Identify Windows editions Identify

More information

WINDOWS 7 BITLOCKER DRIVE ENCRYPTION

WINDOWS 7 BITLOCKER DRIVE ENCRYPTION ComputerFixed.co.uk Page: 1 Email: info@computerfixed.co.uk WINDOWS 7 BITLOCKER DRIVE ENCRYPTION There are so many ways in which you can stop unauthorized access to your computer but what if someone steals

More information

Protecting your data with Windows 10 BitLocker

Protecting your data with Windows 10 BitLocker Microsoft IT Showcase Protecting your data with Windows 10 BitLocker Microsoft BitLocker Drive Encryption technology uses the strongest publicly available encryption to protect your computer s data. It

More information

Lenovo Imaging Checklist

Lenovo Imaging Checklist *Note: If this is a re-image, it s recommended getting into setup and clearing the Security Chip. PRE-INSTALLATION BIOS (When powering up, hit F1 at the Lenovo Logo screen) For all Lenovo Laptop models:

More information

Table of Contents. Table of Figures. 2 Wave Systems Corp. Client User Guide

Table of Contents. Table of Figures. 2 Wave Systems Corp. Client User Guide 2 Wave Systems Corp. Client User Guide Table of Contents Overview... 3 What is the Trusted Drive Manager?... 3 Key Features of Trusted Drive Manager... 3 Getting Started... 4 Required Components... 4 Configure

More information

ZENworks 2017 Update1 Full Disk Encryption Emergency Recovery Reference. July 2017

ZENworks 2017 Update1 Full Disk Encryption Emergency Recovery Reference. July 2017 ZENworks 2017 Update1 Full Disk Encryption Emergency Recovery Reference July 2017 Legal Notice For information about legal notices, trademarks, disclaimers, warranties, export and other use restrictions,

More information

How To Make A Pen-Drive Bootable?

How To Make A Pen-Drive Bootable? How To Make A Pen-Drive Bootable? Hello Friends Welcome to FixinGeek.com How are you, friends? I m back after a long time so friends in this post you will learn the process to make your pen drive bootable

More information

Configuring File Server Resource Manager (FSRM)

Configuring File Server Resource Manager (FSRM) Configuring File Server Resource Manager (FSRM) LESSON 5 70-411 EXAM OBJECTIVE Objective 2.2 Configure File Server Resource Manager (FSRM). This objective may include but is not limited to: install the

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

GetCertkey. No help, Full refund!

GetCertkey.  No help, Full refund! GetCertkey http://www.getcertkey.com No help, Full refund! Exam : 70-680 Title : TS:Windows 7,Configuring Vendor : Microsoft Version : DEMO Get Latest & Valid 70-680 Exam's Question and Answers 1 from

More information

COPYRIGHTED MATERIAL. Contents. Assessment Test

COPYRIGHTED MATERIAL. Contents. Assessment Test Contents Introduction Assessment Test xxvii xxxvii Chapter 1 Installing Windows 7 1 Introducing Windows 7 2 Windows 7 Architecture 5 Preparing to Install Windows 7 6 Windows 7 Starter 7 Windows 7 Home

More information

MU2b Authentication, Authorization and Accounting Questions Set 2

MU2b Authentication, Authorization and Accounting Questions Set 2 MU2b Authentication, Authorization and Accounting Questions Set 2 1. You enable the audit of successful and failed policy changes. Where can you view entries related to policy change attempts? Lesson 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

Sample Operating System Configuration Template Files

Sample Operating System Configuration Template Files Sample Operating System Configuration Template Files Sample Linux Configuration Template Files, page 1 Sample VMware vsphere ESXi Configuration Template Files, page 3 Sample Windows Answer File, page 4

More information

Microsoft Certification Exam

Microsoft Certification Exam Microsoft 70-680 Certification Exam Number: 70-680 Passing Score: 800 Time Limit: 120 min File Version: 72.4 http://www.gratisexam.com/ Microsoft 70-680 Certification Exam Exam Name: TS: Windows 7, Configuring

More information

Using GIGABYTE Mini-PC for the First Time

Using GIGABYTE Mini-PC for the First Time Congratulations on your purchase of the GIGABYTE Mini-PC. This manual will help you to get started with setting up your Mini-PC. The final product configuration depends on the model at the point of your

More information

Dell EMC Server Deployment Pack Version 4.0 for Microsoft System Center Configuration Manager. User's Guide

Dell EMC Server Deployment Pack Version 4.0 for Microsoft System Center Configuration Manager. User's Guide Dell EMC Server Deployment Pack Version 4.0 for Microsoft System Center Configuration Manager User's Guide Notes, cautions, and warnings NOTE: A NOTE indicates important information that helps you make

More information

HP Manageability Integration Kit HP Client Management Solutions

HP Manageability Integration Kit HP Client Management Solutions HP Manageability Integration Kit HP Client Management Solutions November 2017 925167-002 Table of contents 1 Overview... 9 2 System requirements... 10 2.1 Supported Microsoft System Center Configuration

More information

RocIT Defender User s Guide ViSoS TM Virtual System on a Stick

RocIT Defender User s Guide ViSoS TM Virtual System on a Stick RocIT Defender User s Guide ViSoS TM Virtual System on a Stick Table of Contents 1. Introduction 3 1.1. Minimum System Requirements 3 1.2. Drive Specifications 4 2. Startup Procedure 4 2.1. Configure computer

More information

Q&As. Windows Operating System Fundamentals. Pass Microsoft Exam with 100% Guarantee

Q&As. Windows Operating System Fundamentals. Pass Microsoft Exam with 100% Guarantee 98-349 Q&As Windows Operating System Fundamentals Pass Microsoft 98-349 Exam with 100% Guarantee Free Download Real Questions & Answers PDF and VCE file from: 100% Passing Guarantee 100% Money Back Assurance

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

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

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

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

Designing and Deploying Connected Device Solutions for Small and Medium Business

Designing and Deploying Connected Device Solutions for Small and Medium Business Designing and Deploying Connected Device Solutions for Small and Medium Business HPATA Connected Devices Study Guide Rev 1.1 Table of Contents 1.1 Describe and recognize common desktop virtualization technologies

More information

MCTS Guide to Microsoft Windows Server 2008 Network Infrastructure Configuration. Chapter 2 Installing Windows Server 2008

MCTS Guide to Microsoft Windows Server 2008 Network Infrastructure Configuration. Chapter 2 Installing Windows Server 2008 MCTS Guide to Microsoft Windows Server 2008 Network Infrastructure Configuration Chapter 2 Installing Windows Server 2008 Objectives Describe the improvements and key technologies in deploying Windows

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

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

Q&A. DEMO Version

Q&A. DEMO Version Managing and Maintaining Windows 8 Q&A DEMO Version Copyright (c) 2013 Chinatag LLC. All rights reserved. Important Note Please Read Carefully For demonstration purpose only, this free version Chinatag

More information

Full file at Chapter 2: Securing and Troubleshooting Windows Vista

Full file at   Chapter 2: Securing and Troubleshooting Windows Vista Chapter 2: Securing and Troubleshooting Windows Vista TRUE/FALSE 1. An elevated command prompt can only be attained by an administrator after he or she has responded to a UAC box. T PTS: 1 REF: 70 2. There

More information

Symantec Encryption (PGP) Installation Guide

Symantec Encryption (PGP) Installation Guide System Requirements Symantec Encryption (PGP) Installation Guide Windows 8 (32 and 64 bit versions) Windows 7 (32 and 64 bit versions)] Windows Vista (32- and 64-bit editions) Additional Requirements Boot

More information

Workshop on Windows Server 2012

Workshop on Windows Server 2012 Workshop on Windows Server 2012 Topics covered on Workshop DHCP Scope Splitting. A Dynamic Host Configuration Protocol (DHCP) split-scope configuration using multiple DHCP servers allows for increased

More information

SafeGuard Enterprise user help. Product version: 8.0

SafeGuard Enterprise user help. Product version: 8.0 SafeGuard Enterprise user help Product version: 8.0 Contents 1 About SafeGuard Enterprise...4 2 SafeGuard Enterprise modules...5 3 Security recommendations...7 4 Full disk encryption...9 4.1 Encryption

More information

How To Encrypt a Windows 7, 8.1 or 10 laptop or tablet

How To Encrypt a Windows 7, 8.1 or 10 laptop or tablet How To Encrypt a Windows 7, 8.1 or 10 laptop or tablet Introduction College sensitive information stored on a mobile computing device is at risk for unauthorized access and disclosure if appropriate security

More information

ms-help://ms.technet.2004apr.1033/win2ksrv/tnoffline/prodtechnol/win2ksrv/howto/efsguide.htm

ms-help://ms.technet.2004apr.1033/win2ksrv/tnoffline/prodtechnol/win2ksrv/howto/efsguide.htm Page 1 of 14 Windows 2000 Server Step-by-Step Guide to Encrypting File System (EFS) Abstract This document provides sample procedures that demonstrate the end-user and administrative capabilities of the

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

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

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

ModeChanger

ModeChanger 35020808-02 2015.11 ModeChanger ModeChanger is a software utility that can switch the drive between normal mode and encrypted mode. Operating in encrypted mode will help protect your data. While the drive

More information

WES7 OS Recovery User Guide (Ver1.00) OS, Driver

WES7 OS Recovery User Guide (Ver1.00) OS, Driver MagicInfo Technical Guide WES7 OS Recovery User Guide (Ver1.00) OS, Driver WES 7 operating system recovery WES 7 operating system (OS) can be recovered using the following methods: 1) Recovery to WES 7

More information

Introducing Windows 7 Lesson 1

Introducing Windows 7 Lesson 1 Introducing Windows 7 Lesson 1 Minimum System Requirements 1 gigahertz (GHz) or faster 32-bit (x86) or 64-bit (x64) processor 1 gigabyte (GB) RAM (32-bit) or 2 GB RAM (64-bit) 16 GB available hard disk

More information

Microsoft System Center Configuration Manager 2012 Dell Factory Integration

Microsoft System Center Configuration Manager 2012 Dell Factory Integration Microsoft System Center Manager 2012 Dell Factory Integration User Guide January 2017 to ConfigMgr 2012 OSD in Dell Factories Administrators of Microsoft System Center Manager 2012 (referenced as Manager

More information

BitLocker: How to enable Network Unlock

BitLocker: How to enable Network Unlock BitLocker: How to enable Network Unlock 7 out of 9 rated this helpful - Rate this topic Published: August 15, 2012 Updated: August 15, 2012 Applies To: Windows Server 2012 Windows 8 and Windows Server

More information

Instructions For Formatting Hard Drive Windows 7 Command Prompt

Instructions For Formatting Hard Drive Windows 7 Command Prompt Instructions For Formatting Hard Drive Windows 7 Command Prompt How to format a hard drive in Windows Vista, 7 or 8: plus how to format hard drive drive, run the Universal USB Installer setup program,

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

LENOVO THINKSTATION P520C, P520, P720, & P920 WINDOWS 7 INSTALLATION

LENOVO THINKSTATION P520C, P520, P720, & P920 WINDOWS 7 INSTALLATION LENOVO THINKSTATION P520C, P520, P720, & P920 WINDOWS 7 INSTALLATION Contents OVERVIEW SECTION 1 BIOS & PRE-INSTALLATION STEPS SECTION 2 WINDOWS 7 DRIVER SLIPSTREAM SETUP SECTION 3 WINDOWS 7 INSTALLATION

More information

Exam by Mohd Ebrahim

Exam by Mohd Ebrahim 70-680 Exam by Mohd Ebrahim Number: 000-000 Passing Score: 800 Time Limit: 120 min File Version: 1.0 http://www.gratisexam.com/ Exam A QUESTION 1 You administer desktop that have 32-bit and 64-bit versions

More information

A. Windows 7 and USB driver installation

A. Windows 7 and USB driver installation DE173 First Edition October 2016 A. Windows 7 and USB driver installation Based on the chipset specification, your system requires the USB driver to be preloaded in order to use USB keyboard/mouse during

More information

LENOVO THINKSTATION P520C, P520, P720, & P920 WINDOWS 10 INSTALLATION

LENOVO THINKSTATION P520C, P520, P720, & P920 WINDOWS 10 INSTALLATION LENOVO THINKSTATION P520C, P520, P720, & P920 WINDOWS 10 INSTALLATION Contents OVERVIEW SECTION 1 BIOS & PRE-INSTALLATION STEPS SECTION 2 WINDOWS 10 INSTALLATION SECTION 3 WINDOWS 10 UPGRADE USING MEDIA

More information

Contents. Getting Started...1. Managing Your Drives...9. Backing Up & Restoring Folders Synchronizing Folders...52

Contents. Getting Started...1. Managing Your Drives...9. Backing Up & Restoring Folders Synchronizing Folders...52 Contents Getting Started.....................................................1 Installing the Software...........................................1 Using the Maxtor System Tray Icon................................6

More information

Information protection BitLocker Overview of BitLocker Device Encryption in Windows 10 BitLocker frequently asked questions (FAQ) Prepare your

Information protection BitLocker Overview of BitLocker Device Encryption in Windows 10 BitLocker frequently asked questions (FAQ) Prepare your Table of Contents Information protection BitLocker Overview of BitLocker Device Encryption in Windows 10 BitLocker frequently asked questions (FAQ) Prepare your organization for BitLocker: Planning and

More information

Optional Lab: Advanced Installation of Windows 7

Optional Lab: Advanced Installation of Windows 7 12.2.2 Optional Lab: Advanced Installation of Windows 7 Introduction Print and complete this lab. In this lab, you will install a Windows 7 operating system by using an answer file for automation. You

More information

Microsoft Windows Operating System Fundamentals. Version: 10.0

Microsoft Windows Operating System Fundamentals. Version: 10.0 Microsoft 98-349 Windows Operating System Fundamentals Version: 10.0 December 5, 2017 QUESTION NO: 1 Microsoft 98-349 Exam discussing the use of PowerShell. Which of the following suitably describes the

More information

DOWNLOAD PDF CREATOR FOR WINDOWS 8 64 BIT

DOWNLOAD PDF CREATOR FOR WINDOWS 8 64 BIT Chapter 1 : Media Creation Tool x64 - Windows 8 Downloads If you need to install or reinstall Windows, you can use the tools on this page to create your own installation media using either a USB flash

More information

Using SimplySecure to Deploy, Enforce & Manage BitLocker

Using SimplySecure to Deploy, Enforce & Manage BitLocker Whitepaper Using SimplySecure to Deploy, Enforce & Manage BitLocker Organizational management plus access control managed through the cloud Rob Weber February 2019 What is BitLocker? Microsoft s BitLocker

More information

Deploying Windows 7 Lesson 3

Deploying Windows 7 Lesson 3 Deploying Windows 7 Lesson 3 Objectives Understand enterprise deployments Capture an image file Modify an image file Deploy an image file Understanding Enterprise Deployments Careful planning is required

More information

Reset tpm owner password

Reset tpm owner password Reset tpm owner password 11th Doctor Who episode with Rory and Amy getting split up. TPM.MSC reports that the TPM is "ready for use", but if I click "change owner password", it asks for the old password,

More information

exam.111q. Number: Passing Score: 800 Time Limit: 120 min Windows Operating System Fundamentals

exam.111q. Number: Passing Score: 800 Time Limit: 120 min Windows Operating System Fundamentals 98-349.exam.111q Number: 98-349 Passing Score: 800 Time Limit: 120 min 98-349 Windows Operating System Fundamentals Sections 1. Volume A 2. Volume B Exam A QUESTION 1 Which feature ensures that your personal

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

Integrating RDX QuikStor into Windows Backup with Full System Recovery for Windows Server OS

Integrating RDX QuikStor into Windows Backup with Full System Recovery for Windows Server OS Integrating RDX QuikStor into Windows Backup with Full System Recovery for Windows Server OS INTEGRATION BRIEF The built-in Windows Backup included with current Windows operating systems does not support

More information

Windows 7 Deployment Procedures in 802.1X Wired Networks

Windows 7 Deployment Procedures in 802.1X Wired Networks Windows 7 Deployment Procedures in 802.1X Wired Networks Lite Touch and Zero Touch 03.03.2010 Version 0.1 Draft Prepared by David Marín Hebra Consultant THE PROCEDURES DESCRIBED IN THIS DOCUMENT ARE CURRENTLY

More information

Flex Focus 1202 Software Installation Procedure

Flex Focus 1202 Software Installation Procedure Flex Focus 1202 Software 4.6.6 Installation Procedure IMPORTANT: The installation procedure must be carried out only by B-K service personnel or their authorised representatives, who are aware of the hazards

More information

Exam Name: TS: Windows 7, Configuring

Exam Name: TS: Windows 7, Configuring Exam Number/Code : 70-680 Exam Name: TS: Windows 7, Configuring Version : Demo http://it-shiken.jp/ 1. You work as a desktop support technician at ABC.com. The named ABC.com and includes a Direct Access

More information

Lenovo Deployment Pack for Microsoft System Center Configuration Manager Installation and User's Guide

Lenovo Deployment Pack for Microsoft System Center Configuration Manager Installation and User's Guide Lenovo Deployment Pack for Microsoft System Center Configuration Manager Installation and User's Guide Version 6.3 Note Before using this information and the product it supports, read the information in

More information

TestOut PC Pro - English 6.0.x COURSE OUTLINE. Modified

TestOut PC Pro - English 6.0.x COURSE OUTLINE. Modified TestOut PC Pro - English 6.0.x COURSE OUTLINE Modified 2019-01-02 TestOut PC Pro Outline - English 6.0.x Videos: 142 (17:10:32) Demonstrations: 144 (17:38:44) Simulations: 117 Fact Sheets: 189 Exams: 132

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

Backup, File Backup copies of individual files made in order to replace the original file(s) in case it is damaged or lost.

Backup, File Backup copies of individual files made in order to replace the original file(s) in case it is damaged or lost. Glossary A Active Directory a directory service that inventories, secures and manages the users, computers, rules and other components of a Microsoft Windows network. This service is typically deployed

More information

Using GIGABYTE Notebook for the First Time

Using GIGABYTE Notebook for the First Time V. 0 Congratulations on your purchase of the GIGABYTE Notebook. This manual will help you to get started with setting up your notebook. The final product configuration depends on the model at the point

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

6293A Troubleshooting and Supporting Windows 7 in the Enterprise

6293A Troubleshooting and Supporting Windows 7 in the Enterprise 6293A Troubleshooting and Supporting Windows 7 in the Enterprise Course Number: 6293A Course Length: 3 Days Course Overview This course is designed for Information Technology (IT) professionals who have

More information

List of Virtual Machines Used in This Lab

List of Virtual Machines Used in This Lab INF204x Module 3 Lab1: Deploying Windows 10 to a New Computer by Using Microsoft Deployment Toolkit Lab: Using Microsoft Deployment Toolkit 2013 Update 1 Preview to Deploy Operating Systems Overview of

More information

Microsoft System Center Configuration Manager Dell Factory Integration

Microsoft System Center Configuration Manager Dell Factory Integration Microsoft System Center Manager Dell Factory Integration User Guide September 2018 to ConfigMgr OSD in Dell Factories Administrators of Microsoft System Center Manager (referenced as Manager or ConfigMgr

More information

Getting Started with the Deployment Console and Deploying the Clients Per PXE Network Booting using their MAC address. Quick Guide

Getting Started with the Deployment Console and Deploying the Clients Per PXE Network Booting using their MAC address. Quick Guide Getting Started with the Deployment Console and Deploying the Clients Per PXE Network Booting using their MAC address Quick Guide Deployment Manager 2 Quick Guide 1 Introduction...3 1.1 Installing the

More information

This video is part of the Microsoft Virtual Academy.

This video is part of the Microsoft Virtual Academy. This video is part of the Microsoft Virtual Academy. 1 In this session we re going to talk about building for the private cloud using the Microsoft deployment toolkit 2012, my name s Mike Niehaus, I m

More information

Windows 7 Manual Partition Hard Drive During Install Xp

Windows 7 Manual Partition Hard Drive During Install Xp Windows 7 Manual Partition Hard Drive During Install Xp There are plenty of free ISO writers if you have Vista or XP. If you're using a spare hard drive, delete all partitions or simply choose an Step

More information

Optional Lab: Advanced Installation of Windows Vista

Optional Lab: Advanced Installation of Windows Vista 12.2.2 Optional Lab: Advanced Installation of Windows Vista Introduction Print and complete this lab. In this lab, you will install a Windows Vista operating system by using an answer file for automation.

More information

Windows 10 and the Enterprise. Craig A. Brown Prepared for: GMIS

Windows 10 and the Enterprise. Craig A. Brown Prepared for: GMIS Windows 10 and the Enterprise Craig A. Brown Prepared for: GMIS 11-2-2015 Introduction Craig A. Brown Microsoft Practice Leader Global Knowledge MCT, Since 1996 MCSA / MCSE / NT / 2000 / 2003 MCDST MCITP:

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

Using System Center 2012 R2 Configuration Manager SP1 to Manage Windows-based HP Thin Clients

Using System Center 2012 R2 Configuration Manager SP1 to Manage Windows-based HP Thin Clients Technical white paper Using System Center 2012 R2 Configuration Manager SP1 to Manage Windows-based HP Thin Clients Windows 10 IoT Enterprise Windows Embedded 8 Standard Windows Embedded Standard 7 Table

More information

Testpassport.

Testpassport. Testpassport http://www.testpassport.cn Exam : 70-688 Title : Managing and Maintaining Windows 8.1 Version : Demo 1 / 10 1.DRAG DROP Your company recently purchased 25 new laptops. All 25 laptops have

More information

1. Which edition of Windows includes DirectAccess and BranchCache? A. Windows 7 Enterprise B. Windows 7 Professional C. Windows 7 Home Basic D.

1. Which edition of Windows includes DirectAccess and BranchCache? A. Windows 7 Enterprise B. Windows 7 Professional C. Windows 7 Home Basic D. 1. Which edition of Windows includes DirectAccess and BranchCache? A. Windows 7 Enterprise B. Windows 7 Professional C. Windows 7 Home Basic D. Windows 7 Home Premium 2. How much memory does a 32-bit version

More information

Windows 7, Enterprise Desktop Support Technician

Windows 7, Enterprise Desktop Support Technician Windows 7, Enterprise Desktop Support Technician Course 50331D; 5 days, Instructor-led Course Description This five-day instructor-led course provides students with the knowledge and skills needed to isolate,

More information

Install and setup TrueCrypt

Install and setup TrueCrypt Install and setup TrueCrypt Install and setup TrueCrypt This guide is for organisations and individuals who wish to use TrueCrypt to secure their computer(s) and/or portable USB drives. It explains how

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

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

Using GIGABYTE Notebook for the First Time

Using GIGABYTE Notebook for the First Time P57 V.0 Congratulations on your purchase of the GIGABYTE Notebook. This manual will help you to get started with setting up your notebook. The final product configuration depends on the model at the point

More information

Deploying Windows Server 2008 with System Center

Deploying Windows Server 2008 with System Center Windows Server 2008 At a glance: Configuration Manager deployment features Creating and customising a server task sequence Adding server roles Setting computer-specific variables Deploying Windows Server

More information

Table of Contents. Installation and Software 1

Table of Contents. Installation and Software 1 Table of Contents Table of Contents Installation and Software Bitlocker not does not give the PIN Protection Facility Do I need the System Reserved Partition when I install Windows? I am Running NetIntelligence

More information

UNIVERSITY OF EXETER BITLOCKER USER GUIDE

UNIVERSITY OF EXETER BITLOCKER USER GUIDE Exeter IT Technical Planning & Development UNIVERSITY OF EXETER BITLOCKER USER GUIDE BitLocker is an encryption system which allows the University to secure sensitive information on University owned laptops,

More information

"Charting the Course... MOC B Implementing a Desktop Infrastructure. Course Summary

Charting the Course... MOC B Implementing a Desktop Infrastructure. Course Summary Course Summary Description This 5-day instructor-led course provides you with the skills and knowledge needed to plan, design, and implement a Windows 8 desktop infrastructure. The course provides guidance

More information

User Guide. Version 2.1

User Guide. Version 2.1 Kaseya Backup and Disaster Recovery User Guide Version 2.1 August 11, 2008 About Kaseya Kaseya is a global provider of IT automation software for IT Solution Providers and Public and Private Sector IT

More information

Security Pop Quiz Domain 5 for the CompTIA A+, Network+ and Microsoft Certifications

Security Pop Quiz Domain 5 for the CompTIA A+, Network+ and Microsoft Certifications Security Pop Quiz Domain 5 for the CompTIA A+, Network+ and Microsoft Certifications Brought to you by www.rmroberts.com. This Security pop quiz is designed to evaluate your mastery of basic security principles

More information

ZENworks 2017 Full Disk Encryption Pre-Boot Authentication Reference. December 2016

ZENworks 2017 Full Disk Encryption Pre-Boot Authentication Reference. December 2016 ZENworks 2017 Full Disk Encryption Pre-Boot Authentication Reference December 2016 Legal Notice For information about legal notices, trademarks, disclaimers, warranties, export and other use restrictions,

More information