Windows 7 Deployment Procedures in 802.1X Wired Networks

Size: px
Start display at page:

Download "Windows 7 Deployment Procedures in 802.1X Wired Networks"

Transcription

1 Windows 7 Deployment Procedures in 802.1X Wired Networks Lite Touch and Zero Touch Version 0.1 Draft Prepared by David Marín Hebra Consultant THE PROCEDURES DESCRIBED IN THIS DOCUMENT ARE CURRENTLY UNSUPPORTED BY MICROSOFT, AND ARE THE RESULT OF WORK

2 Revisions and Signatures Registry of Changes Date Author Version Reference 02/03/2010 David Marín 0.1 Draft Initial Version Reviewers Name Approved Version Position Date Página 1

3 Table of Contents 1 Introduction Procedures WinPE Phase Requirements Procedure Integration in Lite Touch Deployment (MDT) Integration in Zero Touch Deployment (SCCM + MDT) Windows 7 Phase Procedure Integration in Lite Touch Deployment (MDT) Integration in Zero Touch Deployment (SCCM + MDT) Página 2

4 1 Introduction Traditionally, Microsoft operating system deployment has always had a very important blocker, installation across 802.1x wired networks. Consequently, in any company that used a wired 802.1x network it has never been possible to deploy desktops from Distribution Points with the old BDD Business Desktop Deployment and the new MDT Microsoft Deployment Toolkit (Lite Touch). Neither was it possible from SMS 2003 nor SCCM 2007 Infrastructure (Zero Touch). The only solution was based on implementing network segments not secured by 802.1x authentication, in which the desktops were first deployed, and then moved to their final 802.1x VLANs. Customers really didn t like this approach and they didn t really consider it as an acceptable workaround. The principal cause of this problem has always been that WinPE never offered support for 802.1x authentication, consequently complicating any deployment projects. However, in December of 2009, the WinPE product group developed and published the necessary add-ins for versions 2.1 and 3.0 of WinPE; available here: WinPE 2.1: WinPE 3.0: I have personally been waiting for this support for years, in order to be able to help large companies with their operating system deployment projects, which were until now on hold because of this problem. So, when the support engineers ed me the other day to notify me of the release of these hotfixes, they made my life professionally, anyway However, it was not all roses. The problem I next encountered was that I soon realized that, in order to make it play nicely, the process was rather more complex that I originally thought. It took a large effort on my part through all the testing and debugging. As a consequence, I want to share with everyone the required steps in order to take the pain out of the implementation. This document describes all the required steps for implementation, for both LiteTouch (LTI) and ZeroTouch (ZTI) with SCCM. Página 3

5 2 Procedures As an introduction, I ll start by explaining that in order for the client computers to be able to connect to an 802.1x network, they will need to authenticate themselves in one of two ways: User based: A user name and password is required. Machine based: A machine certificate is necessary; typically this is received when the computer joins the domain. Following on from this, the problem of deploying automatically a computer to an 802.1x network and subsequently into a domain can be divided into two parts: WinPE phase: Firstly, we need WinPE to launch the deployment and process the first part of the MDT or SCCM OSD task sequence (for example: create and format partitions, install the operating system image file etc.). WinPE needs to authenticate itself on the network (normally receiving an IP from DHCP in the process). Because WinPE cannot belong to an Active Directory domain, this part of the process requires user-based authentication using the valid credentials of a domain user. Windows 7 Phase: Once WinPE is granted access to the network, and the operating system image has been installed, the next step of the deployment will be the first boot-up of Windows 7. Once booted, the MDT or SCCM Task Sequence will be initialized on Windows 7 in order to continue with the deployment process. However, this phase can only continue if the operating system is granted access on the 802.1x network so that Windows 7 can connect to the MDT or SCCM servers. Normally, in these cases, in order to obtain access to the cabled network to be able to join the computer to the domain, the computer needs to firstly configure itself to use user-based authentication, providing a valid domain username and password (normally a pop-up window appears requesting credentials manually). Afterwards, once joined to the domain, the computer will receive the necessary certificates and configurations so that the authentication mode can be changed automatically to machine-based, using certificates. The fundamental task here is to automatically configure the user-based authentication by providing the necessary credentials upon boot of Windows 7, and before any deployment task in the task sequence is run. 2.1 WinPE Phase In this section, I ll explain firstly the requirements and then the steps needed to configure WinPE 3.0 with 802.1x support. Página 4

6 2.1.1 Requirements 1. The initial step is to obtain the relevant Hotfix that provides the 802.1x support for WinPE from the Microsoft website. For this exercise, we need the file Windows6.1-KB x86.cab. 2. The next step is to configure an already installed Windows 7 computer to have access to the 802.1x network using user-based authentication that you want to use with WinPE. The network administrator can provide the necessary information, an example is shown below: Página 5

7 3. Following on, the authentication profile needs to be exported to an XML file. For this, you use the following netsh command: a. netsh lan export profile folder=d:\8021xuser interface="local Area Connection" This will create the file D:\8021XUser\Local Area Connection.xml that contains the 802.1x user-based authentication profile. 4. For the above example, two certificates are also required from the Root Certificate Authority (CA). As shown in the earlier screenshots: a. CATest1.cer b. CATest2.cer 5. Valid domain user credentials are now required. For example: a. Domain: Contoso b. User: User8021X c. Password: Password8021X 6. On the next page, you ll see the contents of an XML file. You need to take this text and paste it into Notepad, and save it as Wired-WinPE-UserData-PEAP-MSChapv2.xml. In this file, you will need to place the above credentials. Note: It is important that you understand the security implications of placing the credentials of a valid Active Directory user account in this XML file, which is ultimately available for anyone to read (assuming that they know where to look). The necessary measure should be taken to ensure that security is maintained. The contents of the file will be similar to what is shown next: Página 6

8 COMPLETED SOLELY AND EXCLUSIVELY BY THE AUTHOR. PLEASE DO NOT CONTACT MICROSOFT SUPPORT FOR ANY HELP WHATSOEVER <?xml version="1.0"?> <EapHostUserCredentials xmlns=" xmlns:eapcommon=" xmlns:baseeap=" <EapMethod> <eapcommon:type>25</eapcommon:type> <eapcommon:authorid>0</eapcommon:authorid> </EapMethod> <Credentials xmlns:eapuser=" xmlns:xsi=" xmlns:baseeap=" xmlns:mspeap=" xmlns:mschapv2=" <baseeap:eap> <baseeap:type>25</baseeap:type> <MsPeap:EapType> <MsPeap:RoutingIdentity>Contoso\User8021X </MsPeap:RoutingIdentity> <baseeap:eap> <baseeap:type>26</baseeap:type> <MsChapV2:EapType> <MsChapV2:Username>User8021X</MsChapV2:Username> <MsChapV2:Password>Password8021X</MsChapV2:Password> <MsChapV2:LogonDomain>Contoso</MsChapV2:LogonDomain> </MsChapV2:EapType> </baseeap:eap> </MsPeap:EapType> </baseeap:eap> </Credentials> </EapHostUserCredentials> Página 1

9 7. From a Windows 7 machine with the same architecture as the WinPE that it is being planned to build (x86 or amd64), we save the files using the Certutil utility: a. C:\Windows\System32\Certutil.exe b. C:\Windows\System32\en-US\Certutil.exe.mui 8. Finally it is necessary to use a machine with the Microsoft Windows AIK v2.0 installed Procedure Offline Part (WinPE WIM) On the machine with the WAIK 2.0 installed, generate a WinPE instance, or use an already generated WinPE. Follow the following steps: 1. Mount the WinPE WIM file to a folder on the file system so that the 802.1x Hotfix can be applied to the image. Typically the following commands are used from the WAIK command prompt: a. dism /mount-wim /WimFile:C:\CustomPEx86\winpe.wim /index:1 /mountdir:c:\mount b. dism /image:c:\mount /add-package /PackagePath:"F:\802.1X\Fix\Windows6.1- KB x86.cab" 2. Following on, the Certutil utility files need to be copied to their corresponding folders in the mounted image: a. Certutil.exe c:\mount\windows\system32 b. Certutil.exe.mui c:\mount\windows\en-us 3. A new folder (For Instance: c:\mount\8021x ) should be created in the root of the WinPE image, where the necessary files for the 802.1x functionality need to be copied. These are: a. Root CA Certificates CATest1.cer and CATest2.cer b x user-based authentication profile file Local Area Connection.xml c. XML file which contains the 802.1x user-based authentication profile credentials Wired-WinPE-UserData-PEAP-MSChapv2.xml 4. Finally the WinPE WIM file should be unmounted, committing the changes: a. dism /unmount-wim /MountDir:C:\mount /commit Online Part (Already Booted WinPE) Página 1

10 A test machine should now be used, which you need to boot into WinPE with the image file that you just modified. Once booted, enter the following commands into the command prompt window that automatically opens. These steps will configure the user-based authentication. 1. Start the service Wired AUTOCONFIG (DOT3SVC) Service. This service is absolutely necessary for IEEE 802.1x authentication. It is strange, but in WinPE 3.0 and Windows 7 this service has a configuration of MANUAL, instead of AUTOMATIC. a. net start dot3svc 2. The next step is to import the necessary Root CA Certificates: a. x:\windows\system32\certutil.exe -addstore root x:\8021x\catest1.cer b. x:\windows\system32\certutil.exe -addstore root x:\8021x\catest2.cer 3. Now it is the time to import the 802.1x user-based authentication profile: a. netsh lan add profile filename="x:\8021x\ Local Area Connection.xml " interface="local Area Connection" 4. Afterwards the XML file which contains the 802.1x user-based authentication profile credentials should be imported: a. netsh lan set eapuserdata filename=x:\8021x\wired-winpe-userdata-peap- MSChapv2.xml allusers=yes interface="local Area Connection" 5. After all the previous steps are completed, the 802.1x user-based authentication should have been successfully established an IP address from a DHCP Server should have been obtained. You can double-check this with the following command: a. Ipconfig /renew Obviously once you ve tested the successful 802.1x user-based authentication process; it would be advisable to build a script in order to automate all the steps that have been just detailed. Once automated, the user-based 802.1x authentication process must be integrated into the WinPE Boot processes implemented by MDT (Lite Touch Deployment) and SCCM + MDT (Zero Touch Deployment) Integration in Lite Touch Deployment (MDT) There are several different ways of adding custom commands to the Boot Process of WinPE. First, I ll explain how to do it for MDT Lite Touch: The file x:\windows\system32\winpeshl.ini controls the WinPE boot process. By default, it contains the following lines: Página 2

11 In Lite Touch Deployments the executable BDDRun.exe is the one that launches the set of actions that occur in WinPE during the deployment process. BDDRun.exe will initialize WinPE and after that it will execute synchronously the commands that appear in the file X:\Unattend.xml. This file by default contains: So that the script X:\Deploy\Scripts\Litetouch.wsf will be launched and with it the Deployment Wizard and the Deployment Task Sequence will also be run. Therefore, if we want to follow the same philosophy as the default WinPE boot process for MDT Lite Touch deployments, in order to add a script that launches all the steps described previously in this document to configure the 802.1X user authentication (assuming that this script is called X:\8021x\Configure8021XUser.wsf ) just before the execution of the deployment wizard and global process, you need to change the X:\Unattend.xml file as shown below: Página 3

12 2.1.4 Integration in Zero Touch Deployment (SCCM + MDT) As mentioned earlier, there are different ways to include custom commands in the WinPE boot process. Let s now look at the default WinPE boot process in Zero Touch Deployments (SCCM + MDT): For SCCM, the file x:\windows\system32\winpeshl.ini, controls the boot process: So the first process launched in WinPE will be TSBootShell.exe, which will initialize WinPE and start the Deployment Process, calling in turn other executables from folder X:\sms\bin\i386. From that moment on it is not easy to follow the process flow in WinPE because we have several executables calling each other to complete the Deployment task sequence. Página 4

13 Hence, if we want to follow the same philosophy as the default WinPE boot process for Zero Touch (SCCM + MDT) deployments, in order to add a script that launches all the steps described previously in this document to achieve the 802.1X user authentication (assuming that the script is called X:\8021x\Configure8021XUser.wsf ), just before the execution of the global deployment process you need to change the x:\windows\system32\winpeshl.ini file as shown below: NOTES: o o You can see that the first process to be launched will be WPEInit.exe in order to initialize WinPE network subsystem. After that it will be the 802.1x authentication script. In the last step TSBootShell will be given control to implement the Deployment process. It is important to understand the syntax of the commands in this file. The executable and its parameters are all together, separated by, commas: o %SYSTEMDRIVE%\Windows\System32\wscript.exe, %SYSTEMDRIVE%\8021X\CUSTOM_WinPEConfigure8021X.wsf 2.2 Windows 7 Phase Once the Windows 7 operating System image has been installed on the computer, it will boot. At this point it s necessary for it to be granted access on the 802.1x network in order to launch and continue with the deployment task sequence in MDT or SCCM + MDT. Due to the fact that it doesn t belong to the domain yet, authentication will first be user-based so that the computer can connect to the MDT or SCCM server in order to continue with the task sequence. In this task sequence, you need to add an additional task so that, once the computer is in the domain, the authentication mode can be switched to machine-based. This can be achieved using an Active Directory GPO, or directly via a task in the task sequence (importing an authentication profile that was previously exported from a reference machine). Página 5

14 2.2.1 Procedure The content of the folder that was added to the earlier modified WinPE image ( X:\8021x ) is needed. This folder contains the necessary files for the 802.1X authentication. These are: 1. Root CA Certificates CATest1.cer y CATest2.cer x user-based authentication profile file Local Area Connection.xml 3. XML file which contains the 802.1x user-based authentication profile credentials Wired- WinPE-UserData-PEAP-MSChapv2.xml You will need to add a task to the task sequence so that this folder is copied from the X: drive to the local C: drive. This task should be actioned in the WinPE phase once the operating system image is applied, and before the computer restarts. The folder could be copied to a temporary location, such as C:\Windows\Temp\8021x. Once all the files are available, the user-based authentication process in Windows 7 will be quite similar to the one in WinPE (Online Part): 1. First of all, the service Wired AUTOCONFIG (DOT3SVC) Service will be started. Sample command could be: a. net start dot3svc NOTE: It is highly recommended to change the Configuration of this Service from MANUAL to AUTOMATIC, using a vbs script or any other mechanism. 2. The next step will be to import the necessary Root CA Certificates: a. C:\windows\system32\certutil.exe -addstore root C:\Windows\Temp\8021X\CATest1.cer b. C:\windows\system32\certutil.exe -addstore root C:\Windows\Temp\8021X\CATest2.cer NOTE: The CertUtil utility is part of Windows 7. If you prefer, these Root CA Certificates could also be included as part of the Windows 7 corporate Image. 3. Afterwards the XML file which contains the 802.1x user-based authentication profile credentials needs to be imported: c. netsh lan add profile filename="c:\windows\temp\8021x\ Local Area Connection.xml " interface="local Area Connection" 4. Afterwards the XML file which contains the 802.1x user-based authentication profile credentials needs to be imported: d. netsh lan set eapuserdata filename=c:\windows\temp\8021x\wired-winpe- UserData-PEAP-MSChapv2.xml allusers=yes interface="local Area Connection" Página 6

15 VERY IMPORTANT NOTE: At this point (4) I should point out that Microsoft client operating systems (Windows 7, Windows Vista, Windows XP) do not support Out-of-the-box this method to import 802.1x credentials. The normal behavior is that, once the user-based authentication profile is configured, a popup window appears asking for credentials. However, a new Hotfix for Windows 7 has been developed that allows of this method to import the 802.1x user-based authentication profile credentials. More information in this article: o You cannot connect to an 802.1x wired network when you run an automated build process In conclusion, it is absolutely necessary that the reference Windows 7 image (WIM) that will be deployed to computers includes this hotfix that will allow the execution of the command in point After all these previous steps, the 802.1x user-based authentication should have been successfully configured and it has been possible to get an IP address from a DHCP Server. Sample command could be: a. Ipconfig /renew As before, once you have tested this part, you can automate it with a script and include it in the task sequence for integration with MDT (Lite Touch) y SCCM + MDT (Zero Touch) Integration in Lite Touch Deployment (MDT) The first step is to copy the folder X:\8021x from WinPE to a temporary location on the C: on the computer, for example: C:\Windows\Temp\8021x. This step must be launched once the operating system has been applied, and before the computer reboots. In the below example, you can see an example of how I have achieved this. The task Copy Files 802.1X runs a script that copies the folder: Página 7

16 The 802.1x user-based authentication should occur before launching the task sequence. In MDT LiteTouch the task sequence is continued once the autologon happens, as configured in the Unattend.xml file. The exact step where this auto-start of the task sequence is configured is in the node oobesystem" \ "Microsoft-Windows-Shell-Setup". For example: Página 8

17 If we follow the same philosophy as before, in order to introduce a new step, we need to add our own script here. Assuming that the script is called C:\Windows\Temp\8021X\Configure8021XUser.wsf, an example is shown below: Página 9

18 You should remember to include in the task sequence an additional task that deletes this folder once the deployment completes. This is important because the XML file that is saved there contains the credentials of a valid Active Directory user account Integration in Zero Touch Deployment (SCCM + MDT) As before, the first step is to copy the folder X:\802.1x that WinPE contains to the temporary location, for example c:\windows\temp\8021x. This step must be launched once the operating system has been applied, and before the computer reboots. For this, I have used the task Copy Files 802.1X as shown below: Página 10

19 The user-based 802.1x authentication should occur before any task sequence is launched. In SCCM + MDT the task sequence is launched in the background, before any logon window is even presented on the desktop. Because of this, using the steps detailed previously (the node oobesystem \ Microsoft-Windows-Shell-Setup \ FirstLogonCommands) will not work. Instead, your configuration script should be placed here: <settings pass="specialize"> \ <component name="microsoft-windows-deployment" processorarchitecture="x86" publickeytoken="31bf3856ad364e35" language="neutral" versionscope="nonsxs" xmlns:wcm=" xmlns:xsi=" \ <RunSynchronous> Once completed, assuming that the script is called C:\Windows\Temp\8021X\Configure8021XUser.wsf, the Unattend.xml file will look like the one shown below: Página 11

20 You should remember to include in the task sequence an additional task that deletes this folder once the deployment completes. This is important because the XML file that is saved there contains the credentials of a valid Active Directory user account. Página 12

Deploying Windows 7 Using MDT UDI

Deploying Windows 7 Using MDT UDI The Microsoft Deployment Toolkit (MDT) supports three types of deployments Zero Touch Installation (ZTI), Lite Touch Installation (LTI), and User Driven Installation (UDI). However each deployment type

More information

Martin Vittrup Senior Technology Specialist Windows Client Microsoft Danmark

Martin Vittrup Senior Technology Specialist Windows Client Microsoft Danmark Martin Vittrup Senior Technology Specialist Windows Client Microsoft Danmark mvittrup@microsoft.com SOLUTIONS IMAGING DELIVERY MIGRATION Microsoft Deployment Toolkit Application Compatibility Toolkit

More information

TS: Windows 7 and Office 2010, Deploying

TS: Windows 7 and Office 2010, Deploying 70-681 TS: Windows 7 and Office 2010, Deploying Version 3.1 QUESTION NO: 1 Windows Server 2008 R2. You install Microsoft Deployment Toolkit (MDT) 2010 on a server named Server1. You install Microsoft SQL

More information

"Charting the Course... MOC 6294 A Planning and Managing Windows 7 Desktop Deployments and Environments Course Summary

Charting the Course... MOC 6294 A Planning and Managing Windows 7 Desktop Deployments and Environments Course Summary Course Summary Description This course is intended for desktop administrators who want to specialize in desktop deployment, configuration, and management. In this course, students will learn how to plan

More information

Microsoft Plan and Manage Windows 7 Desktop Deployments and Environments

Microsoft Plan and Manage Windows 7 Desktop Deployments and Environments 1800 ULEARN (853 276) www.ddls.com.au Microsoft 6294 - Plan and Manage Windows 7 Desktop Deployments and Environments Length 5 days Price $4290.00 (inc GST) Version A Overview This five-day instructor-led

More information

6294A - Planning and Managing Windows 7 Desktop Deployments and Environments

6294A - Planning and Managing Windows 7 Desktop Deployments and Environments 6294A - Planning and Managing Windows 7 Desktop Deployments and Environments Duration: 5 days Course Price: $2,975 Software Assurance Eligible Course Description Course Overview This five-day instructor-led

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

Troubleshooting smart card logon authentication on active directory

Troubleshooting smart card logon authentication on active directory Troubleshooting smart card logon authentication on active directory Version 1.0 Prepared by: "Vincent Le Toux" Date: 2014-06-11 1 Table of Contents Table of Contents Revision History Error messages 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

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

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

6294: Troubleshooting and Supporting Windows 7 in the Enterprise

6294: Troubleshooting and Supporting Windows 7 in the Enterprise Let s Reach For Excellence! TAN DUC INFORMATION TECHNOLOGY SCHOOL JSC Address: 103 Pasteur, Dist.1, HCMC Tel: 08 38245819; 38239761 Email: traincert@tdt-tanduc.com Website: www.tdt-tanduc.com; www.tanducits.com

More information

IBM Endpoint Manager. OS Deployment V3.8 User's Guide - DRAFT for Beta V.1.0 (do not distribute)

IBM Endpoint Manager. OS Deployment V3.8 User's Guide - DRAFT for Beta V.1.0 (do not distribute) IBM Endpoint Manager OS Deployment V3.8 User's Guide - DRAFT for Beta V.1.0 (do not distribute) IBM Endpoint Manager OS Deployment V3.8 User's Guide - DRAFT for Beta V.1.0 (do not distribute) Note Before

More information

Full file at https://fratstock.eu Chapter 2: Installing Windows Vista

Full file at https://fratstock.eu Chapter 2: Installing Windows Vista Chapter 2: Installing Windows Vista TRUE/FALSE 1. For security reasons, Windows Vista is less modular than previous versions of Windows. F PTS: 1 REF: 42 2. Using scripts to manage the installation process

More information

Active Directory Services with Windows Server

Active Directory Services with Windows Server Active Directory Services with Windows Server 10969B; 5 days, Instructor-led Course Description Get hands on instruction and practice administering Active Directory technologies in Windows Server 2012

More information

Vault. Vault. End User Guide END USER GUIDE. L o r e. (For Standard, Professional & Enterprise Editions)

Vault. Vault. End User Guide END USER GUIDE. L o r e. (For Standard, Professional & Enterprise Editions) L o r e L END USER GUIDE (For Standard, Professional & Enterprise Editions) Table of contents 1. Introduction 2. Important terms 3. Sign up instructions 4. Basic settings Initiate sharing Configure two-factor

More information

IMPLEMENTING A DESKTOP INFRASTRUCTURE. Course: 20415A Duration: 5 Days; Instructor-led

IMPLEMENTING A DESKTOP INFRASTRUCTURE. Course: 20415A Duration: 5 Days; Instructor-led CENTER OF KNOWLEDGE, PATH TO SUCCESS Website: IMPLEMENTING A DESKTOP INFRASTRUCTURE Course: 20415A Duration: 5 Days; Instructor-led WHAT YOU WILL LEARN This 5-day instructor-led course provides you with

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

Password Reset Utility. Configuration

Password Reset Utility. Configuration Password Reset Utility Configuration 1 Table of Contents 1. Uninstalling Legacy Password Reset... 2 2. Password Reset Utility: How to deploy and configure via Group Policy... 2 3. Configuring Group Policy

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

"Charting the Course... MOC B Active Directory Services with Windows Server Course Summary

Charting the Course... MOC B Active Directory Services with Windows Server Course Summary Description Course Summary Get Hands on instruction and practice administering Active Directory technologies in Windows Server 2012 and Windows Server 2012 R2 in this 5-day Microsoft Official Course. You

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

Implementing a Desktop Infrastructure

Implementing a Desktop Infrastructure Course 20415: Implementing a Desktop Infrastructure Page 1 of 7 Implementing a Desktop Infrastructure Course 20415: 4 days; Instructor-Led Introduction This 4-day instructor-led course provides you with

More information

ROCK-POND REPORTING 2.1

ROCK-POND REPORTING 2.1 ROCK-POND REPORTING 2.1 Installation and Setup Guide Revised on 09/25/2014 TABLE OF CONTENTS ROCK-POND REPORTING 2.1... 1 SUPPORT FROM ROCK-POND SOLUTIONS... 2 ROCK-POND REPORTING OVERVIEW... 2 INFRASTRUCTURE

More information

List all out-of-the-box drivers currently installed in online WIM

List all out-of-the-box drivers currently installed in online WIM Chapter 3 Deploying System Images Lesson 1: Managing a System Image Before Deployment Retrieving WIM information dism /get-wiminfo /wimfile:w:\myimage.wim imagex /info w:\myimage.wim Mounting/Unmounting

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

MCSE Mobility. A Success Guide to Prepare- Deploying Windows Desktops and Enterprise Applications. edusum.com

MCSE Mobility. A Success Guide to Prepare- Deploying Windows Desktops and Enterprise Applications. edusum.com 70-695 MCSE Mobility A Success Guide to Prepare- Deploying Windows Desktops and Enterprise Applications edusum.com Table of Contents Introduction to 70-695 Exam on Deploying Windows Desktops and Enterprise

More information

Vendor: Microsoft. Exam Code: Exam Name: Pro: Windows 7, Enterprise Desktop Administrator. Version: Demo

Vendor: Microsoft. Exam Code: Exam Name: Pro: Windows 7, Enterprise Desktop Administrator. Version: Demo Vendor: Microsoft Exam Code: 70-686 Exam Name: Pro: Windows 7, Enterprise Desktop Administrator Version: Demo Question No : 1 You are planning to upgrade Internet Explorer. You have the following requirements:

More information

Implementing a Desktop Infrastructure

Implementing a Desktop Infrastructure Implementing a Desktop Infrastructure Duration: 5 Days Course Code: 20415 About this course This 5-day instructor-led course provides you with the skills and knowledge needed to plan, design, and implement

More information

Release Notes for Cisco Aironet a/b/g Client Adapters (CB21AG and PI21AG) for Windows Vista 1.1

Release Notes for Cisco Aironet a/b/g Client Adapters (CB21AG and PI21AG) for Windows Vista 1.1 Release Notes for Cisco Aironet 802.11a/b/g Client Adapters (CB21AG and PI21AG) for Windows Vista 1.1 February, 2011 Contents This document contains the following sections: Introduction, page 2 System

More information

Legal Library. In this guide we will review how to download and use our Legal Library tool. Commercial Brokers Association May 2018

Legal Library. In this guide we will review how to download and use our Legal Library tool. Commercial Brokers Association May 2018 Legal Library In this guide we will review how to download and use our Legal Library tool Commercial Brokers Association May 2018 Downloading Legal Library The Legal Library provides both fast and easy

More information

Deploying Windows 8.1 with ConfigMgr 2012 R2 and MDT 2013

Deploying Windows 8.1 with ConfigMgr 2012 R2 and MDT 2013 Deploying Windows 8.1 with ConfigMgr 2012 R2 and MDT 2013 Windows 8.1 Hands-on lab In this lab, you will learn how to deploy a Windows 8.1 image with ConfigMgr 2012 R2 and MDT 2013. Produced by Deployment

More information

Unipass Secur Client User Guide v1.5

Unipass Secur Client User Guide v1.5 Unipass Securemail Client User Guide v1.5 This document provides a step by step illustrated user guide for the Unipass Securemail desktop software client / plug-in. UIdP Project Team May 2018 Contents

More information

Windows 7, Configuring

Windows 7, Configuring Windows 7, Configuring Microsoft 70-680 Dumps Available Here at: /microsoft-exam/70-680-dumps.html Enrolling now you will get access to 493 questions in a unique set of 70-680 dumps Question 1 Your company

More information

Installation Manual on Intra SSL Service (PC Check)

Installation Manual on Intra SSL Service (PC Check) Installation Manual on Intra SSL Service (PC Check) Note 1) No installation is allowed without administrator authority. Install to an account with administrator authority given. Note 2) The present manual

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

SIS offline. Getting Started

SIS offline. Getting Started SIS offline We highly recommend using Firefox version 3.0 or newer with the offline SIS. Internet Explorer is specifically not recommended because of its noncompliance with internet standards. Getting

More information

Microsoft Windows 7, Configuring. Download Full version :

Microsoft Windows 7, Configuring. Download Full version : Microsoft 70-680 Windows 7, Configuring Download Full version : http://killexams.com/pass4sure/exam-detail/70-680 QUESTION: 151 You are deploying a number of Windows 7 laptops. You create a custom power

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

Active Directory Services with Windows Server

Active Directory Services with Windows Server Course Code: M10969 Vendor: Microsoft Course Overview Duration: 5 RRP: POA Active Directory Services with Windows Server Overview Get Hands on instruction and practice administering Active Directory technologies

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

Jetico Central Manager Administrator Guide

Jetico Central Manager Administrator Guide Jetico Central Manager Administrator Guide Introduction Deployment, updating and control of client software can be a time consuming and expensive task for companies and organizations because of the number

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

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

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

Copyright 2017 Softerra, Ltd. All rights reserved

Copyright 2017 Softerra, Ltd. All rights reserved Copyright 2017 Softerra, Ltd. All rights reserved Contents Introduction Security Considerations Installation Configuration Uninstallation Automated Bulk Enrollment Troubleshooting Introduction Adaxes Self-Service

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

Microsoft User Experience Virtualization Deployment Guide

Microsoft User Experience Virtualization Deployment Guide Microsoft User Experience Virtualization Deployment Guide Microsoft User Experience Virtualization (UE-V) is an enterprise-scalable user state virtualization solution that can provide users a consistent

More information

Updating Simplify3D from V 3.x to V 4

Updating Simplify3D from V 3.x to V 4 Updating Simplify3D from V 3.x to V 4 Revision 1 8/18/2017 1. Introduction Simplify3D V4 is a major update that introduces some useful new features and capabilities. However, it also introduces some compatibility

More information

Implementing a Desktop Infrastructure

Implementing a Desktop Infrastructure 20415 - Implementing a Desktop Infrastructure Duration: 5 days Course Price: $2,975 Software Assurance Eligible Course Description Course Overview This 5-day instructor-led training course provides you

More information

ACTIVE DIRECTORY SERVICES WITH WINDOWS SERVER

ACTIVE DIRECTORY SERVICES WITH WINDOWS SERVER CENTER OF KNOWLEDGE, PATH TO SUCCESS Website: ACTIVE DIRECTORY SERVICES WITH WINDOWS SERVER Course: 10969A; Duration: 5 Days; Instructor-led WHAT YOU WILL LEARN Get hands-on instruction and practice administering

More information

Microsoft Active Directory Services with Windows Server

Microsoft Active Directory Services with Windows Server 1800 ULEARN (853 276) www.ddls.com.au Microsoft 10969 - Active Directory Services with Windows Server Length 5 days Price $4290.00 (inc GST) Version B Overview Get hands-on instruction and practice administering

More information

10969B: Active Directory Services with Windows Server

10969B: Active Directory Services with Windows Server 10969B: Active Directory Services with Windows Server Course Details Course Code: Duration: Notes: 10969B 5 days This course syllabus should be used to determine whether the course is appropriate for the

More information

70-643: Windows Server 2008 Applications Infrastructure. Course 01 - Deploying Windows in the Enterprise

70-643: Windows Server 2008 Applications Infrastructure. Course 01 - Deploying Windows in the Enterprise 70-643: Windows Server 2008 Applications Infrastructure Course 01 - Deploying Windows in the Enterprise Slide 1 Deploying Windows in the Enterprise How to deploy Windows in the 2008 Server Environment

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

10969: Active Directory Services with Windows Server

10969: Active Directory Services with Windows Server Let s Reach For Excellence! TAN DUC INFORMATION TECHNOLOGY SCHOOL JSC Address: 103 Pasteur, Dist.1, HCMC Tel: 08 38245819; 38239761 Email: traincert@tdt-tanduc.com Website: www.tdt-tanduc.com; www.tanducits.com

More information

Active Directory Services with Windows Server

Active Directory Services with Windows Server Active Directory Services with Windows Server Duration: 5 Days Course Code: 10969B About this course Get Hands on instruction and practice administering Active Directory technologies in Windows Server

More information

Cisco NAC Appliance Agents

Cisco NAC Appliance Agents 10 CHAPTER This chapter presents overviews, login flow, and session termination dialogs for the following Cisco NAC Appliance access portals: Cisco NAC Agent, page 10-1 Cisco NAC Web Agent, page 10-28

More information

Deploying Windows Devices and Enterprise Apps

Deploying Windows Devices and Enterprise Apps Deploying Windows Devices and Enterprise Apps Course 20695B - Five days - Instructor-led - Hands-on Introduction This 5-day instructor-led course describes how to assess operating system and application

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

How to Integrate SmartDeploy with Windows Deployment Services

How to Integrate SmartDeploy with Windows Deployment Services How to Integrate SmartDeploy with Windows Deployment Services SmartDeploy Revised: March 2017 Integrating custom Windows Imaging Format (WIM) images into Windows Deployment Services (WDS) lets you take

More information

Client Configuration Guide

Client Configuration Guide Email Client Configuration Guide Contents Prerequisites... 1 Microsoft Outlook 2007... 2 Microsoft Outlook 2002/XP and 2003... 7 Microsoft Windows Mail (available with Vista only)... 11 Microsoft Outlook

More information

Chapter 6: Connecting Windows Workstations

Chapter 6: Connecting Windows Workstations Chapter 6: Connecting Windows Workstations 153 Chapter 6 Connecting Windows Workstations Because this is a book about using Linux on a Microsoft Windows-based network, this chapter shows you how to connect

More information

Manually Configuring Windows 8 for Wireless PittNet

Manually Configuring Windows 8 for Wireless PittNet Technology Help Desk 412 624-HELP [4357] http://technology.pitt.edu Manually Configuring Windows 8 for Wireless PittNet If you are not able to connect to Wireless PittNet using our automated wizard, you

More information

When Microsoft releases new updates to firmware and drivers, the firmware and driver pack is updated for all Surface models.

When Microsoft releases new updates to firmware and drivers, the firmware and driver pack is updated for all Surface models. Managing Surface Devices in the Enterprise Firmware/Driver Management with System Center Configuration Manager 2012 This article describes how to deploy enterprise-managed firmware and drivers to Surface

More information

Microsoft. Microsoft. Course 20688D: Supporting Windows 8.1. Level : 200 Technology : Windows 8 Delivery Method : Instructor-led (classroom)

Microsoft. Microsoft. Course 20688D: Supporting Windows 8.1. Level : 200 Technology : Windows 8 Delivery Method : Instructor-led (classroom) Course 20688D: Supporting Windows 8.1 Length : 5 days Audience(s) : IT Professionals Level : 200 Technology : Windows 8 Delivery Method : Instructor-led (classroom) Course Overview About this Course Gain

More information

Software Center Update Publisher (SCUP) / Software Update Point (SUP) APSCNLAN Support

Software Center Update Publisher (SCUP) / Software Update Point (SUP) APSCNLAN Support Software Center Update Publisher (SCUP) / Software Update Point (SUP) APSCNLAN Support Table of Contents Setup WSUS and SCUP... 1 Setup WSUS for System Center Software Update Point (SUP)... 1 Installing

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

Workstation Configuration Guide

Workstation Configuration Guide Workstation Configuration Guide August 13, 2018 Version 9.6.134.78 For the most recent version of this document, visit our documentation website. Table of Contents 1 Workstation configuration 4 1.1 Considerations

More information

Sccm Manually Restart Pxe Service Point

Sccm Manually Restart Pxe Service Point Sccm Manually Restart Pxe Service Point In my case an unexpected restart was done on a Windows Server 2008 R2 system. When removing PXE service point, clean up disk space, and wait a while (or are migrated

More information

Gpo Allow Change Screen Resolution Windows 7

Gpo Allow Change Screen Resolution Windows 7 Gpo Allow Change Screen Resolution Windows 7 Did you know Windows 7 comes with a built-in Registry tweak which allows you to easily customize or change the background image of Windows login screen (aka.

More information

Course 10969: Active Directory services with Windows Server

Course 10969: Active Directory services with Windows Server Course 10969: Active Directory services with Windows Server Overview Get Hands on instruction and practice administering Active Directory technologies in Windows Server 2012 and Windows Server 2012 R2

More information

Deploying Windows Desktops and Enterprise Applications (695)

Deploying Windows Desktops and Enterprise Applications (695) Deploying Windows Desktops and Enterprise Applications (695) Implement the Operating System Deployment (OSD) infrastructure Assess the computing environment Configure and implement the Microsoft Assessment

More information

Lab: Deploying Operating System Images Using SMS 2003

Lab: Deploying Operating System Images Using SMS 2003 Lab: Deploying Operating System Images Using SMS 2003 Objectives After completing this lab, you will be able to: Install the OS Deployment Feature Pack. Install USMT 2.6 to capture and restore user state

More information

PEAP under Unified Wireless Networks with ACS 5.1 and Windows 2003 Server

PEAP under Unified Wireless Networks with ACS 5.1 and Windows 2003 Server PEAP under Unified Wireless Networks with ACS 5.1 and Windows 2003 Server Document ID: 112175 Contents Introduction Prerequisites Requirements Components Used Conventions Configure Network Diagram Windows

More information

Deploying Windows Desktops and Enterprise Applications. Course Code: 20695D; Duration: 5 days; Instructor-led

Deploying Windows Desktops and Enterprise Applications. Course Code: 20695D; Duration: 5 days; Instructor-led Deploying Windows Desktops and Enterprise Applications Course Code: 20695D; Duration: 5 days; Instructor-led WHAT YOU WILL LEARN This five-day course is intended for IT professionals who deploy, manage,

More information

Lead2pass v12.39

Lead2pass v12.39 Lead2pass.70-681.v12.39 Number: 70-681 Passing Score: 800 Time Limit: 120 min File Version: 12.39 http://www.gratisexam.com/ Copyright @2006-2011 Lead2pass.com, All Rights Reserved. Vendor: Microsoft Exam

More information

How to Integrate SmartDeploy Enterprise with Windows Deployment Services

How to Integrate SmartDeploy Enterprise with Windows Deployment Services How to Integrate SmartDeploy Enterprise with Windows Deployment Services Prowess Consulting, LLC Published: March, 2010 Abstract Integrating custom Windows Imaging Format (WIM) images into Windows Deployment

More information

SAS Installation via the Client-Server Image (CAHNRS Site License)

SAS Installation via the Client-Server Image (CAHNRS Site License) Requirements and preliminary steps SAS 9.2.2 Installation via the Client-Server Image (CAHNRS Site License) SAS 9.2.2 is supported on Windows 7 Professional/Enterprise, and Windows 7 Ultimate. Windows

More information

Windows Server 2012 Immersion Experience Enabling Secure Remote Users with RemoteApp, DirectAccess, and Dynamic Access Control

Windows Server 2012 Immersion Experience Enabling Secure Remote Users with RemoteApp, DirectAccess, and Dynamic Access Control Windows Server 2012 Immersion Experience Enabling Secure Remote Users with RemoteApp, DirectAccess, and Dynamic Access Control Windows Server 2012 Hands-on lab In this experience, you will configure a

More information

Pharos Uniprint 9.0. Upgrade Guide. Document Version: UP90-Upgrade-1.0. Distribution Date: May 2014

Pharos Uniprint 9.0. Upgrade Guide. Document Version: UP90-Upgrade-1.0. Distribution Date: May 2014 Pharos Uniprint 9.0 Upgrade Guide Document Version: UP90-Upgrade-1.0 Distribution Date: May 2014 Pharos Systems International Suite 310, 80 Linden Oaks Rochester, New York 14625 Phone: 1-585-939-7000 US/Canada

More information

PEAP under Cisco Unified Wireless Networks with ACS 4.0 and Windows 2003

PEAP under Cisco Unified Wireless Networks with ACS 4.0 and Windows 2003 PEAP under Cisco Unified Wireless Networks with ACS 4.0 and Windows 2003 Document ID: 72013 Contents Introduction Prerequisites Requirements Components Used Network Diagram Conventions Windows Enterprise

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

Digipass Plug-In for SBR. SBR Plug-In SBR. Steel-Belted RADIUS. Installation G uide

Digipass Plug-In for SBR. SBR Plug-In SBR. Steel-Belted RADIUS. Installation G uide Digipass Plug-In for SBR SBR Plug-In SBR Steel-Belted RADIUS Installation G uide Disclaimer of Warranties and Limitations of Liabilities Disclaimer of Warranties and Limitations of Liabilities The Product

More information

Workstation Configuration

Workstation Configuration Workstation Configuration December 15, 2017 - Version 9.3 - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -

More information

20695C: DEPLOYING WINDOWS DESKTOPS AND ENTERPRISE APPLICATIONS

20695C: DEPLOYING WINDOWS DESKTOPS AND ENTERPRISE APPLICATIONS ABOUT THIS COURSE This five-day course describes how to assess operating system and application deployment options, determine the most appropriate deployment strategy, and then implement a deployment solution

More information

Integrated Information Technology Services (IITS)

Integrated Information Technology Services (IITS) Integrated Information Technology Services (IITS) User Guide for Laptops with Windows 7 Network Configuration & Software Installation Version 1.4 Updated as at 15-Aug-11 Table of Contents How to verify

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

ImageAssist Dynamic. User s Guide for Multiple Platforms

ImageAssist Dynamic. User s Guide for Multiple Platforms ImageAssist Dynamic User s Guide for Multiple Platforms Notes, cautions, and warnings NOTE: A NOTE indicates important information that helps you make better use of your product. CAUTION: A CAUTION indicates

More information

Workstation Configuration

Workstation Configuration Workstation Configuration December 12, 2017 - Version 9.4 - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -

More information

Windows 7 Boot Camp for Desktop Administrators 6232; 5 Days, Instructor-led

Windows 7 Boot Camp for Desktop Administrators 6232; 5 Days, Instructor-led Windows 7 Boot Camp for Desktop Administrators 6232; 5 Days, Instructor-led Course Description: In an intensive and immersive hands-on learning environment, you will build your hands-on skills and prepare

More information

FRM FOR OUTLOOK PLUGIN INSTALLATION GUIDE FRM Solutions, Inc.

FRM FOR OUTLOOK PLUGIN INSTALLATION GUIDE FRM Solutions, Inc. FRM FOR OUTLOOK PLUGIN INSTALLATION GUIDE FRM Solutions, Inc. TABLE OF CONTENTS System Requirements... 2 I. Determining the.bit version of your Microsoft Office Suite... 2 III. Configuring the Outlook

More information

Open Add Remove Programs From Command Line Windows 7

Open Add Remove Programs From Command Line Windows 7 Open Add Remove Programs From Command Line Windows 7 How to access Windows Control Panel in Windows 7 and earlier You can open many different Control Panel windows by entering different commands into the

More information

Workstation Configuration

Workstation Configuration Workstation Configuration September 22, 2015 - Version 9 & 9.1 - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -

More information

Jason Cross Systems Management

Jason Cross Systems Management Jason Cross Zero Touch Installation: Automating Operating System Migrations Historically, desktop OS migration has been a very labour intensive project. The number of obstacles and questions to consider

More information

Deploying Windows Desktops and Enterprise Applications

Deploying Windows Desktops and Enterprise Applications Deploying Windows Desktops and Enterprise Applications 20695; 5 Days; Instructor-led Course Description This five-day course describes how to assess operating system and application deployment options,

More information

How To Auto Enable Or Disable Wireless Network Connection In Windows 7

How To Auto Enable Or Disable Wireless Network Connection In Windows 7 How To Auto Enable Or Disable Wireless Network Connection In Windows 7 Wi-Fi adapter or Wireless Network Adapter disabled and looks greyed out. Enabling Wireless. Click Set up a new connection or network.

More information

Barracuda Archive Search for Outlook Deployment for Windows Vista and Windows Server 2008

Barracuda Archive Search for Outlook Deployment for Windows Vista and Windows Server 2008 Barracuda Archive Search for Outlook Deployment for Windows Vista and Windows Server 2008 This article refers to the Barracuda Message Archiver firmware version 5.2 or higher, and the Barracuda Archive

More information

1) Use either Chrome of Firefox to access the VMware vsphere web Client. https://vweb.bristolcc.edu. FireFox

1) Use either Chrome of Firefox to access the VMware vsphere web Client. https://vweb.bristolcc.edu. FireFox CIS 231 Windows 7 Install Lab #2 1) Use either Chrome of Firefox to access the VMware vsphere web Client. https://vweb.bristolcc.edu CHROME At the your connection is not private message, click Advanced

More information

Q&A. DEMO Version

Q&A. DEMO Version Administering and Deploying System Center 2012 Configuration Manager Q&A DEMO Version Copyright (c) 2013 Chinatag LLC. All rights reserved. Important Note Please Read Carefully For demonstration purpose

More information