Unidesk 3.0 Script to Increase UEP Size for Persistent Desktops

Size: px
Start display at page:

Download "Unidesk 3.0 Script to Increase UEP Size for Persistent Desktops"

Transcription

1 Unidesk 3.0 Script to Increase UEP Size for Persistent Desktops Summary When creating a desktop the size of the Personalization Layer (UEP) is defined in GB for the desktop. There are two vhdx files that make up the UEP both set to this size. One is for Application files and Settings; the other is for user data. They are start out the last two disks attached to the desktop but when more layers are added they can then be in any volume on the desktop. The Path to the UEP files is always under the CP appliance folder\unidesklayers\users. See below. This script can be used to increase the size of the UEP disks. The script uses The Hyper-V PowerShell Cmdlets to increase the VHDX size. It then using PowerShell Remoting with DiskPart scripts to extend the volume in Windows. Version 1.0 February 28, 2015 Page 1

2 Restrictions The following restriction should be kept in mind: 1. This applies to Unidesk 3.x systems only (Hyper-V), do not use on Unidesk 2.x 2. The desktop must be running when the script is run, therefore if desktops are actively being REBIC ed ensure that the desktops you are running the script against are not in the list of those being rebuilt. 3. This script only works on Persistent Desktops. Non-Persistent Desktops must be recreated. Requirements 1. The Hyper-V Module is required on the machine the script is run from 2. Administrator Access to HyperV is required 3. Administrative Access to the desktops is required 4. The Desktops must have WINRM enabled, running and configured. This is best done through GPO. Setting up the script Make sure the script is not blocked. Check its properties and unblock if necessary. Copy the script into a folder. Edit the script appropriately. At the top of the script there is a section where variables are defined as shown below. Each of these settings must be configured for your environment. Note: the script can be run by entering a lits of desktops in the $Destops array as shown below. The script will also check for a Desktops.txt file in the folder the script is run from. If that file is found the script will load desktops from the file and use the file only and not the setting below. The file should have only the desktop name one per line. # Define Variables #Enter one or more Desktops in an array. #If Desktops.txt is found in the script directory the desktops to update will be loaded from Deskotps.txt rather than this setting. $Desktops #Enter the Size in GB that the desktop will be i.e if you want the UEP to be 10 GB use 10 $SizeinGB = 15 #Enter vcenter Server FQDN. You will be prompted for credentials $HyperVServer = "hyperv2.zylowski.com" #Enter Admin User and password on Windows Desktops $GuestUser = "zylowski\rzylowski" $GuestPassword = "password" The $Desktops array can have as many desktops defined as needed. Just separate the desktops with a coma and put quotes around them. The $size in GB is the size the script sets the UEP to. So if you want the UEP to be 20 GB and it is currently 5 GB you enter 20. Version 2.0 April 20, 2012 Page 2

3 Running the script Run PowerShell and change directories to the script folder. Make sure you have previously run the following command to allow scripts to run on this system or run it now Set-ExecutionPolicy Remote Signed Then run the script by typing>.\growuephv.ps1 Or you can use the PowerShell ISE or any other PowerShell Editor. The script will output lots of information as it runs, it will also create a log in the script folder. The upgrade here was from 4 to 10 GB. The script #Script Developed by Rob Zylowski, Unidesk Corporation #Version #This script can be used to increase the size of the Personalization Layer for Unidesk Persistent Desktops #The desktops should be running and the user can even be logged on #The script requires the HyperV module be installed on your workstation and WinRM running and configured on the desktops function Get-ScriptDirectory $Invocation = (Get-Variable MyInvocation -Scope 1).Value Split-Path $Invocation.MyCommand.Path Function LogLine($strLine) write-host $strline $global:logoutput += "$strline `n" #This may generate an error if its already loaded so we will clear the error cache $Error.Clear() # Define Variables Version 2.0 October 12, 2012 Page 3

4 #Enter one or more Desktops in an array. #If Desktops.txt is found in the script directory the desktops to update will be loaded from Deskotps.txt #rather than this setting. $Desktops #Enter the Size in GB that the desktop will be i.e if you want the UEP to be 10 GB use 10 $SizeinGB = 15 #Enter vcenter Server FQDN. You will be prompted for credentials $HyperVServer = "hyperv2.zylowski.com" #Enter Admin User and password on Windows Desktops $GuestUser = "zylowski\rzylowski" $GuestPassword = "password" # MAIN SCRIPT #If Desktops.txt exists use it for the source desktops $ScriptSource = Get-ScriptDirectory $mydatetime = Get-Date -Format MM-dd-yyyy-HHmmss $global:logfile = "$ScriptSource\GrowUEP-$myDateTime.txt" LogLine " " Logline "Running Hyper-V Extend Unidesk UEP Disks Script" LogLine " " if (Test-Path "$ScriptSource\Desktops.txt") $Desktops = Get-Content -Path "$ScriptSource\Desktops.txt" $count = $Desktops.Count Logline "Desktops.txt file found with [$count] desktops to extend" else $count = $Desktops.Count Logline "Desktops.txt file NOT found will use desktop list defined in script" Logline "Ther are [$count] desktops to extend" #Load HyperV module Logline "Importing Module HyperV" Import-Module Hyper-V $Capacity = 1024*1024*1024*$SizeinGB Logline "Disk Capacity will be set to [$SizeinGB] GB" Logline " " Logline "" #Run the process for each MM in the Desktops Array foreach ($MM in $Desktops) Logline "Processing Desktop [$MM]" #Get the list of hard drives for the virtual machine $CurrentVM = Get-VM -Name $MM -ComputerName $HyperVServer $GetAllHds = Get-VHD -VMId $CurrentVM.id -ComputerName $HyperVServer #For each hard disk see if its a UEP disk by looking at the path. If it has a /User/ in the path its a UEP. foreach ($s in $GetAllHds) If ($s.path -like "*\User\*") $myuepdisk = $s.path logline "$myuepdisk is a UEP Disk, Resizing to [$Capacity] GB" Resize-VHD -Path $s.path -ComputerName $HyperVServer -SizeBytes $Capacity Else # $s.path + " is Not a UEP Disk" if (!($?)) Version 2.0 April 20, 2012 Page 4

5 Logline "HyperV Extend Disk failed skipping this desktop [$MM]" continue #Get the disk name using regex $regex = [regex]"([^\\]+)$" $VMDK = [regex]::match($s.path, $regex).groups[1] #Get the prefix using regex $regex = [regex]"^(.*?)\..*" $UEPPrefixFull = [regex]::match($vmdk, $regex).groups[1] $UEPPrefixFullString = "$UEPPrefixFull" $UEPPrefix = $UEPPrefixFullString.substring(0,6) #Now use POwershell remoting to extend the volume size on the desktop. Logline "Running Extend Job on Remote Computer..." $output = Invoke-Command -ComputerName $MM -ScriptBlock param ($UEPPrefix) #Get the disks using LIST DISK command NEW-ITEM name LISTVOLUMES.TXT itemtype file force OUT-NULL ADD-CONTENT path LISTVOLUMES.TXT LIST VOLUME $LISTDISKS=(DISKPART /S LISTVOLUMES.TXT) NEW-ITEM name EXTENDVOLUME.TXT itemtype file force OUT-NULL foreach ($VOL in $LISTDISKS) if ($VOL.length -ne 0) if ($VOL.length -gt 31) $volumestring = $VOL.substring(24,7).trim() if (($volumestring -ne "") -and ($volumestring -ne "------") -And ($volumestring -ne "on 6.3") -And ($volumestring -ne "Micros") -And ($volumestring -ne "BOOT")) if ($volumestring -eq $UEPPrefix) $volumeid = $vol.substring(8,3).trim() write-host "UEP Volume Found:" $volumestring "volumeid: $volumeid" write-output "UEP Volume Found:" $volumestring "volumeid: $volumeid `n" #Get the size to extend the disk NEW-ITEM name GETDISKS.TXT itemtype file force OUT-NULL ADD-CONTENT path GETDISKS.TXT RESCAN ADD-CONTENT path GETDISKS.TXT SELECT VOLUME $volumeid ADD-CONTENT path GETDISKS.TXT LIST DISK $GETDISKS=(DISKPART /S GETDISKS.TXT) foreach ($DISK in $GETDISKS) if ($DISK.length -ne 0) if ($DISK.substring(0,1).trim() -eq "*") $DiskID = $DISK.substring(6,3).trim() write-host "Disk ID: $DiskID" write-output "Disk ID: $DiskID `n" $ExtendSize = $DISK.substring(36,5).trim() $SizeMetric = $DISK.substring(41,2).trim() write-host "Metrix Sized Used: $SizeMetric" write-host "Metrix Sized Used: $SizeMetric `n" [int]$intextendsize = [convert]::toint32($extendsize, 10) if($sizemetric -eq "GB") $intextendsize = $intextendsize*1024 Version 2.0 October 12, 2012 Page 5

6 if (Test-Path EXTENDVOLUME.TXT)Remove-Item EXTENDVOLUME.TXT write-host "Extend Size: $intextendsize MB" write-output "Extend Size: $intextendsize MB `n" write-host "Extending Disk Size By : $intextendsize MB" write-output "Extending Disk Size By : $intextendsize MB `n" ADD-CONTENT path EXTENDVOLUME.TXT SELECT VOLUME $volumeid ADD-CONTENT path EXTENDVOLUME.TXT EXTEND SIZE=$intExtendSize ADD-CONTENT path EXTENDVOLUME.TXT DETAIL DISK $RemoteOutput = $EXTENDTVOL=(DISKPART /S EXTENDVOLUME.TXT) write-host "List Disk Output After Extend Operation" write-output "List Disk Output After Extend Operation `n" write-host "" write-output "`n" write-host "$RemoteOutput" write-output "$RemoteOutput `n" write-host "Removing working files.." write-output "Removing working files.. `n" Remove-Item EXTENDVOLUME.TXT -Confirm:$false Remove-Item GETDISKS.TXT -Confirm:$false Remove-Item LISTVOLUMES.TXT -Confirm:$false write-host " " write-output " `n" write-host "" write-output "`n" -ArgumentList $UEPPrefix Logline "" $RunningOutput += $global:logoutput $RunningOutput += $output $global:logoutput = "" $RunningOutput Out-file -FilePath $global:logfile -Encoding ASCII -Append Version 2.0 April 20, 2012 Page 6

Windows Server 2008 R2: Server Management and PowerShell V2

Windows Server 2008 R2: Server Management and PowerShell V2 Windows Server 2008 R2: Server Management and PowerShell V2 Table of Contents Windows Server 2008 R2: Server Management and PowerShell V2... 1 Exercise 1 Remote Management Using Server Manager... 2 Exercise

More information

ISCSI Server Installation

ISCSI Server Installation ISCSI Server Installation 1. Create a virtual machine (VM). 2. Note wn the IP address of the created virtual machine 3. RDP the machine Click Start Menu -> All Programs -> Accessories -> Remote Desktop

More information

Integration Guide: Using Unidesk 3.x with Citrix XenDesktop

Integration Guide: Using Unidesk 3.x with Citrix XenDesktop TECHNICAL WHITE PAPER Integration Guide: Using Unidesk 3.x with Citrix XenDesktop This document provides a high- level overview of the Unidesk product as well as design considerations for deploying Unidesk

More information

Microsoft Windows PowerShell v2 For Administrators

Microsoft Windows PowerShell v2 For Administrators Course 50414B: Microsoft Windows PowerShell v2 For Administrators Course Details Course Outline Module 1: Introduction to PowerShell the Basics This module explains how to install and configure PowerShell.

More information

Microsoft IT Camp Hands-On Lab

Microsoft IT Camp Hands-On Lab Microsoft IT Camp Hands-On Lab Windows Server 2012: High Availability File Server Lab version: 1.0.0 Last updated: 7/19/2012 CONTENTS OVERVIEW... 3 Objectives 3 Prerequisites 3 LAB DEPLOYMENT... 4 LAB...

More information

AddLocalUser AddLocalGroup AddLocalUserToLocalGroup AddDomainUserToLocalGroup AddDomainGroupToLocalGroup

AddLocalUser AddLocalGroup AddLocalUserToLocalGroup AddDomainUserToLocalGroup AddDomainGroupToLocalGroup Written by Rob Zylowski Originally developed for Unidesk and posted on www.unidesk.com Sr. Solutions Architect, Unidesk Corporation rzylowski@unidesk.com Managing User or Group Permissions on Virtual Desktops

More information

Add User to Administrators Group using SQL Lookup Table

Add User to Administrators Group using SQL Lookup Table Add User to Administrators Group using SQL Lookup Table Summary This utility is intended to aid customers in the ability to make the user of a desktop a local administrator on the desktop. In order to

More information

User Experience Reference Design

User Experience Reference Design Use McAfee* Real Time Command and Intel SCS 9 to Manage Intel SSD Professional 1500 Series Drives Revision 1.1 July 2014 Document number: 330798-001 Revision History Revision Revision History Date 1.0

More information

Good Morning Wireless! SSID: MSFTOPEN No Username or Password Required

Good Morning Wireless! SSID: MSFTOPEN No Username or Password Required Good Morning Wireless! SSID: MSFTOPEN No Username or Password Required 2 Today s Agenda - 9:00-10:30 - Windows Azure Infrastructure Services - 10:30-10:45 - Break - 10:45-12:00 - Windows Azure Infrastructure

More information

Automating Microsoft

Automating Microsoft Automating Microsoft Windows Server 2008 R2 with Windows PowerShell 2.0 Matthew Hester Sarah Dutkiewicz WILEY Wiley Publishing. Inc. TABLE OF CONTENTS Introduction xvii Chapter 1 What Is PowerShell, and

More information

Acknowledgments Finding Your Way Around Windows PowerShell p. 1 Getting Started with Windows PowerShell p. 3 Installing Windows PowerShell p.

Acknowledgments Finding Your Way Around Windows PowerShell p. 1 Getting Started with Windows PowerShell p. 3 Installing Windows PowerShell p. Introduction p. xv Acknowledgments p. xx Finding Your Way Around Windows PowerShell p. 1 Getting Started with Windows PowerShell p. 3 Installing Windows PowerShell p. 3 Installing.NET Framework 2.0 p.

More information

Click Studios. Passwordstate. Password Discovery, Reset and Validation. Requirements

Click Studios. Passwordstate. Password Discovery, Reset and Validation. Requirements Passwordstate Password Discovery, Reset and Validation Requirements This document and the information controlled therein is the property of Click Studios. It must not be reproduced in whole/part, or otherwise

More information

Windows Server 2012 R2 Storage Infrastructure

Windows Server 2012 R2 Storage Infrastructure Windows Server 2012 R2 Storage Infrastructure Windows Server 2012 R2 Hands-on lab Windows Server 2012 R2 includes new storage features which allow you to create new storage-optimized file servers using

More information

Microsoft. Jump Start. M3: Managing Windows Server 2012 by Using Windows PowerShell 3.0

Microsoft. Jump Start. M3: Managing Windows Server 2012 by Using Windows PowerShell 3.0 Microsoft Jump Start M3: Managing Windows Server 2012 by Using Windows PowerShell 3.0 Rick Claus Technical Evangelist Microsoft Ed Liberman Technical Trainer Train Signal Jump Start Target Agenda Day One

More information

How To - Implement Single Sign On Authentication with Active Directory

How To - Implement Single Sign On Authentication with Active Directory How To - Implement Single Sign On Authentication with Active Directory Applicable to English version of Windows This article describes how to implement single sign on authentication with Active Directory

More information

Guide to deploy MyUSBOnly via Windows Logon Script Revision 1.1. Menu

Guide to deploy MyUSBOnly via Windows Logon Script Revision 1.1. Menu Menu INTRODUCTION...2 HOW DO I DEPLOY MYUSBONLY ON ALL OF MY COMPUTERS...3 ADMIN KIT...4 HOW TO SETUP A LOGON SCRIPTS...5 Why would I choose one method over another?...5 Can I use both methods to assign

More information

Using DSC with Visual Studio Release Management

Using DSC with Visual Studio Release Management Using DSC with Visual Studio Release Management With Microsoft Release Management 2013 Update 3 CTP 1 (RM), you can now use Windows PowerShell or Windows PowerShell Desired State Configuration (DSC) feature

More information

EXAM - 70-410. Installing and Configuring Windows Server 2012. Buy Full Product. http://www.examskey.com/70-410.html

EXAM - 70-410. Installing and Configuring Windows Server 2012. Buy Full Product. http://www.examskey.com/70-410.html Microsoft EXAM - 70-410 Installing and Configuring Windows Server 2012 Buy Full Product http://www.examskey.com/70-410.html Examskey Microsoft 70-410 exam demo product is here for you to test the quality

More information

A layman s guide to PowerShell 2.0 remoting. Ravikanth Chaganti

A layman s guide to PowerShell 2.0 remoting. Ravikanth Chaganti A layman s guide to PowerShell 2.0 remoting Ravikanth Chaganti Learn the basics of PowerShell 2.0 remoting, methods of remoting and how to use remoting to manage systems in a datacenter. A layman s guide

More information

CAPIX Job Scheduler User Guide

CAPIX Job Scheduler User Guide CAPIX Job Scheduler User Guide Version 1.1 December 2009 Table of Contents Table of Contents... 2 Introduction... 3 CJS Installation... 5 Writing CJS VBA Functions... 7 CJS.EXE Command Line Parameters...

More information

DESLock+ Basic Setup Guide Version 1.20, rev: June 9th 2014

DESLock+ Basic Setup Guide Version 1.20, rev: June 9th 2014 DESLock+ Basic Setup Guide Version 1.20, rev: June 9th 2014 Contents Overview... 2 System requirements:... 2 Before installing... 3 Download and installation... 3 Configure DESLock+ Enterprise Server...

More information

Windows Command-line Automation Techniques for Dell EqualLogic PS Series Arrays

Windows Command-line Automation Techniques for Dell EqualLogic PS Series Arrays Technical Report Windows Command-line Automation Techniques for Dell EqualLogic PS Series Arrays Abstract This Technical report will describe different methods of command line automation available for

More information

Secure Messaging Server Console... 2

Secure Messaging Server Console... 2 Secure Messaging Server Console... 2 Upgrading your PEN Server Console:... 2 Server Console Installation Guide... 2 Prerequisites:... 2 General preparation:... 2 Installing the Server Console... 2 Activating

More information

You Should Be Using PowerShell Aaron Kaiser Senior Technology Support Specialist Parkway School District

You Should Be Using PowerShell Aaron Kaiser Senior Technology Support Specialist Parkway School District You Should Be Using PowerShell Aaron Kaiser Senior Technology Support Specialist Parkway School District Why PowerShell? Most modern Microsoft GUI s are built upon PowerShell A number of third party applications

More information

CDP-H210 Introduction to Azure Active Directory

CDP-H210 Introduction to Azure Active Directory CDP-H210 Introduction to Azure Active Directory This is an infrastructure lab, useful to both ITPro s and Developers to learn the basics of Azure Active Directory. The main focus is on understanding the

More information

Deployment Guide: Unidesk and Hyper- V

Deployment Guide: Unidesk and Hyper- V TECHNICAL WHITE PAPER Deployment Guide: Unidesk and Hyper- V This document provides a high level overview of Unidesk 3.x and Remote Desktop Services. It covers how Unidesk works, an architectural overview

More information

Acronis Backup & Recovery 11

Acronis Backup & Recovery 11 Acronis Backup & Recovery 11 Quick Start Guide Applies to the following editions: Advanced Server Virtual Edition Advanced Server SBS Edition Advanced Workstation Server for Linux Server for Windows Workstation

More information

Step by Step Guide to Deploy Microsoft LAPS

Step by Step Guide to Deploy Microsoft LAPS Step by Step Guide to Deploy Microsoft LAPS In this document I will show you step by step method to deploy Microsoft LAPS. The Local Administrator Password Solution (LAPS) provides management of local

More information

Acronis Backup & Recovery 10 Advanced Server Virtual Edition. Quick Start Guide

Acronis Backup & Recovery 10 Advanced Server Virtual Edition. Quick Start Guide Acronis Backup & Recovery 10 Advanced Server Virtual Edition Quick Start Guide Table of contents 1 Main components...3 2 License server...3 3 Supported operating systems...3 3.1 Agents... 3 3.2 License

More information

Forefront Management Shell PowerShell Management of Forefront Server Products

Forefront Management Shell PowerShell Management of Forefront Server Products Forefront Management Shell PowerShell Management of Forefront Server Products Published: October, 2009 Software version: Forefront Protection 2010 for Exchange Server Mitchell Hall Contents Introduction...

More information

Managing View with PowerCLI

Managing View with PowerCLI Managing View with PowerCLI VMware View provides 56 different PowerShell commandlets that you can use to configure, manage, and monitor the View environment. These commandlets are known as View PowerCLI,

More information

The safer, easier way to help you pass any IT exams. Exam : 70-410. Installing and Configuring Windows Server 2012 R2.

The safer, easier way to help you pass any IT exams. Exam : 70-410. Installing and Configuring Windows Server 2012 R2. Exam : 70-410 Title : Installing and Configuring Windows Server 2012 R2 Version : DEMO 1 / 24 1.You have a server named Server1 that runs Windows Server 2012 R2.Server1 has the Hyper-V server role installed.

More information

Implementing and Managing Windows Server 2008 Hyper-V

Implementing and Managing Windows Server 2008 Hyper-V Course 6422A: Implementing and Managing Windows Server 2008 Hyper-V Length: 3 Days Language(s): English Audience(s): IT Professionals Level: 300 Technology: Windows Server 2008 Type: Course Delivery Method:

More information

Installation Manual (MSI Version)

Installation Manual (MSI Version) Installation Manual (MSI Version) 1. SYSTEM REQUIREMENTS... 2 2. INSTALLATION INSTRUCTIONS... 2 2.1 REMOTE INSTALLATION USING GROUP POLICY... 2 2.1.1 Assigning Software...2 2.1.2 Publishing Software...2

More information

Outline SSS6422 - Microsoft Windows Server 2008 Hyper-V Virtualization

Outline SSS6422 - Microsoft Windows Server 2008 Hyper-V Virtualization Outline SSS6422 - Microsoft Windows Server 2008 Hyper-V Virtualization Duration: Three consecutive Saturdays About this Course This instructor led course teaches students how to implement and manage Windows

More information

Updating Your Windows Server 2008 Technology Skills to Windows Server 2008 R2

Updating Your Windows Server 2008 Technology Skills to Windows Server 2008 R2 Course 10159A: Updating Your Windows Server 2008 Technology Skills to Windows Server 2008 R2 OVERVIEW About this Course This three-day instructor-led course teaches the new features of Windows Server 2008

More information

Tool Tip. SyAM Management Utilities and Non-Admin Domain Users

Tool Tip. SyAM Management Utilities and Non-Admin Domain Users SyAM Management Utilities and Non-Admin Domain Users Some features of SyAM Management Utilities, including Client Deployment and Third Party Software Deployment, require authentication credentials with

More information

Troubleshoot Using Event Log Mining

Troubleshoot Using Event Log Mining Troubleshoot Using Event Log Mining Jeff Hicks 1. 8 0 0. 8 1 3. 6 4 1 5 w w w. s c r i p t l o g i c. c o m / s m b I T 2011 ScriptLogic Corporation ALL RIGHTS RESERVED. ScriptLogic, the ScriptLogic logo

More information

Installing and Configuring Windows Server 2012

Installing and Configuring Windows Server 2012 Course 20410D: Installing and Configuring Windows Server 2012 Course Details Course Outline Module 1: Deploying and Managing Windows Server 2012 This module introduces students to the editions of Windows

More information

PowerShell for Exchange Admins

PowerShell for Exchange Admins PowerShell for Exchange Admins Get-Speaker FL Name : Kamal Abburi Title : Premier Field Engineer Expertise : Exchange Email : Kamal.Abburi@Microsoft.com Blog : mrproactive.com Note: Inspired by my fellow

More information

Installing and Configuring Windows Server 2012

Installing and Configuring Windows Server 2012 Course 20410 Installing and Configuring Windows Server 2012 Length: 5 Days Language(s): English Audience(s): IT Professionals Level: 200 Technology: Windows Server 2012 Type: Course Delivery Method: Instructor-led

More information

Installation Manual v2.0.0

Installation Manual v2.0.0 Installation Manual v2.0.0 Contents ResponseLogic Install Guide v2.0.0 (Command Prompt Install)... 3 Requirements... 4 Installation Checklist:... 4 1. Download and Unzip files.... 4 2. Confirm you have

More information

6422: Implementing and Managing Windows Server 2008 Hyper-V (3 Days)

6422: Implementing and Managing Windows Server 2008 Hyper-V (3 Days) www.peaklearningllc.com 6422: Implementing and Managing Windows Server 2008 Hyper-V (3 Days) Introduction This three-day instructor-led course teaches students how to implement and manage Windows Server

More information

Upgrading Your Skills to MCSA Windows Server 2012

Upgrading Your Skills to MCSA Windows Server 2012 About this Course Upgrading Your Skills to MCSA Windows Get hands-on instruction and practice configuring and implementing new features and functionality in Windows, including Windows R2, in this five-day

More information

STATISTICA VERSION 12 STATISTICA ENTERPRISE SMALL BUSINESS INSTALLATION INSTRUCTIONS

STATISTICA VERSION 12 STATISTICA ENTERPRISE SMALL BUSINESS INSTALLATION INSTRUCTIONS STATISTICA VERSION 12 STATISTICA ENTERPRISE SMALL BUSINESS INSTALLATION INSTRUCTIONS Notes 1. The installation of STATISTICA Enterprise Small Business entails two parts: a) a server installation, and b)

More information

20410- Installing and Configuring Windows Server 2012

20410- Installing and Configuring Windows Server 2012 Course Outline 20410- Installing and Configuring Windows Server 2012 Duration: 5 day (30 hours) Target Audience: This course is intended for Information Technology (IT) Professionals who have good Windows

More information

Installing and Configuring Windows Server 2012

Installing and Configuring Windows Server 2012 Course 20410D: Installing and Configuring Windows Server 2012 Page 1 of 8 Installing and Configuring Windows Server 2012 Course 20410D: 4 days; Instructor-Led Introduction Get hands-on instruction and

More information

MCSA Server (Exam 70-410)

MCSA Server (Exam 70-410) MCSA Server (Exam 70-410) Installing and Configuring Windows Server 2012 Get hands-on instruction and practice installing and configuring Windows Server 2012, including Windows Server 2012 R2, in this

More information

Upgrading Your Skills to MCSA Windows Server 2012

Upgrading Your Skills to MCSA Windows Server 2012 Course 20417D: Upgrading Your Skills to MCSA Windows Server 2012 Page 1 of 8 Upgrading Your Skills to MCSA Windows Server 2012 Course 20417D: 4 days; Instructor-Led Introduction Get hands-on instruction

More information

Installing and Configuring Windows Server 2012 MOC 20410

Installing and Configuring Windows Server 2012 MOC 20410 Installing and Configuring Windows Server 2012 MOC 20410 Course Outline Module 1: Deploying and Managing Windows Server 2012 This module introduces the new Windows Server 2012 administrative interface.

More information

Lync Server Patching Guide

Lync Server Patching Guide Lync Server Patching Guide Version 1.1 Author: John McCabe Email: johm@microsoft.com Date: 1/12/2011 Contents 1. Overview... 4 2. Patching References... 5 3. Patching Workflow... 6 4. Patching Procedure...

More information

HOW TO SILENTLY INSTALL CLOUD LINK REMOTELY WITHOUT SUPERVISION

HOW TO SILENTLY INSTALL CLOUD LINK REMOTELY WITHOUT SUPERVISION HOW TO SILENTLY INSTALL CLOUD LINK REMOTELY WITHOUT SUPERVISION Version 1.1 / Last updated November 2012 INTRODUCTION The Cloud Link for Windows client software is packaged as an MSI (Microsoft Installer)

More information

Microsoft. Jump Start. M11: Implementing Active Directory Domain Services

Microsoft. Jump Start. M11: Implementing Active Directory Domain Services Microsoft Jump Start M11: Implementing Active Directory Domain Services Rick Claus Technical Evangelist Microsoft Ed Liberman Technical Trainer Train Signal Jump Start Target Agenda Day One Day 1 Day 2

More information

Managing Windows Environments with Group Policy

Managing Windows Environments with Group Policy 3 Riverchase Office Plaza Hoover, Alabama 35244 Phone: 205.989.4944 Fax: 855.317.2187 E-Mail: rwhitney@discoveritt.com Web: www.discoveritt.com Managing Windows Environments with Group Policy Course: MS50255C

More information

ADFS 2.0 Application Director Blueprint Deployment Guide

ADFS 2.0 Application Director Blueprint Deployment Guide Introduction: ADFS 2.0 Application Director Blueprint Deployment Guide Active Directory Federation Service (ADFS) is a software component from Microsoft that allows users to use single sign-on (SSO) to

More information

NIIT Education and Training, Doha, Qatar - www.niitqatar.com Contact: +974-44551796/1798; 50656051

NIIT Education and Training, Doha, Qatar - www.niitqatar.com Contact: +974-44551796/1798; 50656051 410: Installing and Configuring Windows Server 2012 Duration: 40 Hours. Overview About this Course Get hands-on instruction and practice installing and configuring Windows Server 2012, including Windows

More information

Enterprise Self Service Quick start Guide

Enterprise Self Service Quick start Guide Enterprise Self Service Quick start Guide Software version 4.0.0.0 December 2013 General Information: info@cionsystems.com Online Support: support@cionsystems.com 1 2013 CionSystems Inc. ALL RIGHTS RESERVED.

More information

Netwrix Auditor. Virtual Appliance Deployment Guide. Version: 8.0 8/1/2016

Netwrix Auditor. Virtual Appliance Deployment Guide. Version: 8.0 8/1/2016 Netwrix Auditor Virtual Appliance Deployment Guide Version: 8.0 8/1/2016 Legal Notice The information in this publication is furnished for information use only, and does not constitute a commitment from

More information

Build Your Knowledge!

Build Your Knowledge! About this Course This course will provide you with the knowledge and skills to install and deploy Windows Server 2008 R2. This course also will teach you how to automate server deployment, as well as

More information

Course 20410: Installing and Configuring Windows Server 2012

Course 20410: Installing and Configuring Windows Server 2012 Course 20410: Installing and Configuring Windows Server 2012 Type:Course Audience(s):IT Professionals Technology:Windows Server Level:200 This Revision:D Delivery method: Instructor-led (classroom) Length:5

More information

This module explains how to configure and troubleshoot DNS, including DNS replication and caching.

This module explains how to configure and troubleshoot DNS, including DNS replication and caching. Module 1: Configuring and Troubleshooting Domain Name System This module explains how to configure and troubleshoot DNS, including DNS replication and caching. Configuring the DNS Server Role Configuring

More information

Active Directory Deployment and Management Enhancements

Active Directory Deployment and Management Enhancements Active Directory Deployment and Management Enhancements Windows Server 2012 Hands-on lab In this lab, you will learn how to deploy Active Directory domain controllers with Windows Server 2012. You will

More information

Installing and Configuring Login PI

Installing and Configuring Login PI Installing and Configuring Login PI Login PI Hands-on lab In this lab, you will configure Login PI to provide performance insights for a Windows Server 2012 R2 Remote Desktop Services installation. To

More information

DEPLOYMENT GUIDE DEPLOYING F5 AUTOMATED NETWORK PROVISIONING FOR VMWARE INFRASTRUCTURE

DEPLOYMENT GUIDE DEPLOYING F5 AUTOMATED NETWORK PROVISIONING FOR VMWARE INFRASTRUCTURE DEPLOYMENT GUIDE DEPLOYING F5 AUTOMATED NETWORK PROVISIONING FOR VMWARE INFRASTRUCTURE Version: 1.0 Deploying F5 Automated Network Provisioning for VMware Infrastructure Both VMware Infrastructure and

More information

RSA Authentication Manager 8.1 Virtual Appliance Getting Started

RSA Authentication Manager 8.1 Virtual Appliance Getting Started RSA Authentication Manager 8.1 Virtual Appliance Getting Started Thank you for purchasing RSA Authentication Manager 8.1, the world s leading two-factor authentication solution. This document provides

More information

Acronis Backup & Recovery 11.5 Quick Start Guide

Acronis Backup & Recovery 11.5 Quick Start Guide Acronis Backup & Recovery 11.5 Quick Start Guide Applies to the following editions: Advanced Server for Windows Virtual Edition Advanced Server SBS Edition Advanced Workstation Server for Linux Server

More information

SQL Server 2008 R2 Express Edition Installation Guide

SQL Server 2008 R2 Express Edition Installation Guide Hardware, Software & System Requirements for SQL Server 2008 R2 Express Edition To get the overview of SQL Server 2008 R2 Express Edition, click here. Please refer links given below for all the details

More information

Implementing Multi-machine Monitoring

Implementing Multi-machine Monitoring Implementing Multi-machine Monitoring Excerpted from Windows PowerShell in Action, Second Edition EARLY ACCESS EDITION Bruce Payette MEAP Release: February 2009 Softbound print: June 2010 (est. 700 pages

More information

Preparing a Windows 7 Gold Image for Unidesk

Preparing a Windows 7 Gold Image for Unidesk Preparing a Windows 7 Gold Image for Unidesk What is a Unidesk gold image? In Unidesk, a gold image is, essentially, a virtual machine that contains the base operating system and usually, not much more

More information

How to Create a Delegated Administrator User Role / To create a Delegated Administrator user role Page 1

How to Create a Delegated Administrator User Role / To create a Delegated Administrator user role Page 1 Managing user roles in SCVMM How to Create a Delegated Administrator User Role... 2 To create a Delegated Administrator user role... 2 Managing User Roles... 3 Backing Up and Restoring the VMM Database...

More information

Deploying Windows Server 2008 Course 6418C; 3 days, Instructor-led

Deploying Windows Server 2008 Course 6418C; 3 days, Instructor-led Deploying Windows Server 2008 Course 6418C; 3 days, Instructor-led Course Description This course will provide you with the knowledge and skills to install and deploy Windows Server 2008 R2. This course

More information

Virtual Dashboard for VMware and Hyper-V

Virtual Dashboard for VMware and Hyper-V Virtual Dashboard for VMware and Hyper-V USER MANUAL Steelgate Technologies, February 2015, all rights reserved. All trademarks are the property of their respective owners. Features and specifications

More information

Backing Up CNG SAFE Version 6.0

Backing Up CNG SAFE Version 6.0 Backing Up CNG SAFE Version 6.0 The CNG-Server consists of 3 components. 1. The CNG Services (Server, Full Text Search and Workflow) 2. The data file repository 3. The SQL Server Databases The three services

More information

Exam 70-410: Installing and Configuring Windows Server 2012

Exam 70-410: Installing and Configuring Windows Server 2012 Exam 70-410: Installing and Configuring Windows Server 2012 Course Overview This course is part one, of a series of three courses, which validate the skills and knowledge necessary to implement a core

More information

Extending Remote Desktop for Large Installations. Distributed Package Installs

Extending Remote Desktop for Large Installations. Distributed Package Installs Extending Remote Desktop for Large Installations This article describes four ways Remote Desktop can be extended for large installations. The four ways are: Distributed Package Installs, List Sharing,

More information

Server & Workstation Installation of Client Profiles for Windows

Server & Workstation Installation of Client Profiles for Windows C ase Manag e m e n t by C l i e n t P rofiles Server & Workstation Installation of Client Profiles for Windows T E C H N O L O G Y F O R T H E B U S I N E S S O F L A W General Notes to Prepare for Installing

More information

Deploying Personal Virtual Desktops by Using RemoteApp and Desktop Connection Step-by-Step Guide

Deploying Personal Virtual Desktops by Using RemoteApp and Desktop Connection Step-by-Step Guide c623242f-20f0-40fe-b5c1-8412a094fdc7 Deploying Personal Virtual Desktops by Using RemoteApp and Desktop Connection Step-by-Step Guide Microsoft Corporation Published: June 2009 Updated: April 2010 Abstract

More information

How To Set Up Egnyte For Netapp Sync For Netapp

How To Set Up Egnyte For Netapp Sync For Netapp Egnyte Storage Sync For NetApp Installation Guide Introduction... 2 Architecture... 2 Key Features... 3 Access Files From Anywhere With Any Device... 3 Easily Share Files Between Offices and Business Partners...

More information

Installation Instruction STATISTICA Enterprise Small Business

Installation Instruction STATISTICA Enterprise Small Business Installation Instruction STATISTICA Enterprise Small Business Notes: ❶ The installation of STATISTICA Enterprise Small Business entails two parts: a) a server installation, and b) workstation installations

More information

Exam 70-411: Administrating Windows Server 2012 R2. Course Overview

Exam 70-411: Administrating Windows Server 2012 R2. Course Overview Exam 70-411: Administrating Windows Server 2012 R2 Course Overview This course teaches students server deployment and image management, managing servers and updates, file and print services, configuring

More information

Virtual Appliances. Virtual Appliances: Setup Guide for Umbrella on VMWare and Hyper-V. Virtual Appliance Setup Guide for Umbrella Page 1

Virtual Appliances. Virtual Appliances: Setup Guide for Umbrella on VMWare and Hyper-V. Virtual Appliance Setup Guide for Umbrella Page 1 Virtual Appliances Virtual Appliances: Setup Guide for Umbrella on VMWare and Hyper-V Virtual Appliance Setup Guide for Umbrella Page 1 Table of Contents Overview... 3 Prerequisites... 4 Virtualized Server

More information

ESX System Analyzer Version 1.0 Installation Guide

ESX System Analyzer Version 1.0 Installation Guide ESX System Analyzer Version 1.0 Installation Guide Page 1 Table of Contents ESX System Analyzer Installation Guide 1. Installing ESX System Analyzer... 3 ESX System Analyzer Appliance Distribution... 3

More information

Intel vpro Technology Module for Microsoft* Windows PowerShell*

Intel vpro Technology Module for Microsoft* Windows PowerShell* Intel vpro Technology Module for Microsoft* Windows PowerShell* 1 Legal Disclaimer INFORMATION IN THIS DOCUMENT IS PROVIDED IN CONNECTION WITH INTEL PRODUCTS. NO LICENSE, EXPRESS OR IMPLIED, BY ESTOPPEL

More information

MS 20410 Installing and Configuring Windows Server 2012

MS 20410 Installing and Configuring Windows Server 2012 P a g e 1 of 10 MS 20410 Installing and Configuring Windows Server 2012 About this Course This course is part one of a three-part series that provides the skills and knowledge necessary to implement a

More information

How to monitor AD security with MOM

How to monitor AD security with MOM How to monitor AD security with MOM A article about monitor Active Directory security with Microsoft Operations Manager 2005 Anders Bengtsson, MCSE http://www.momresources.org November 2006 (1) Table of

More information

20410: Installing and Configuring Windows Server 2012

20410: Installing and Configuring Windows Server 2012 20410: Installing and Configuring Windows Server 2012 Microsoft - Servidores Nível: Intermédio Duração: 30h Sobre o curso After completing this course, students will be able to: Install and configure Windows

More information

Upgrading Your Skills to MCSA Windows Server 2012

Upgrading Your Skills to MCSA Windows Server 2012 Course 20417D: Upgrading Your Skills to MCSA Windows Server 2012 Course Details Course Outline Module 1: Installing and Configuring Windows Server 2012 This module explains how to install and configure

More information

Accops HyWorks v2.5. Quick Start Guide. Last Update: 4/18/2016

Accops HyWorks v2.5. Quick Start Guide. Last Update: 4/18/2016 Accops HyWorks v2.5 Quick Start Guide Last Update: 4/18/2016 2016 Propalms Technologies Pvt. Ltd. All rights reserved. The information contained in this document represents the current view of Propalms

More information

Windows Clients and GoPrint Print Queues

Windows Clients and GoPrint Print Queues Windows Clients and GoPrint Print Queues Overview The following tasks demonstrate how to configure shared network printers on Windows client machines in a Windows Active Directory Domain and Workgroup

More information

Administration Guide. . All right reserved. For more information about Specops Gpupdate and other Specops products, visit www.specopssoft.

Administration Guide. . All right reserved. For more information about Specops Gpupdate and other Specops products, visit www.specopssoft. . All right reserved. For more information about Specops Gpupdate and other Specops products, visit www.specopssoft.com Copyright and Trademarks Specops Gpupdate is a trademark owned by Specops Software.

More information

Hyperoo 2.0 A (Very) Quick Start

Hyperoo 2.0 A (Very) Quick Start Hyperoo 2.0 A (Very) Quick Start Download and install the Hyperoo 2.0 beta Hyperoo 2.0 is a client/server based application and as such requires that you install both the Hyperoo Client and Hyperoo Server

More information

In order to upload a VM you need to have a VM image in one of the following formats:

In order to upload a VM you need to have a VM image in one of the following formats: What is VM Upload? 1. VM Upload allows you to import your own VM and add it to your environment running on CloudShare. This provides a convenient way to upload VMs and appliances which were already built.

More information

NovaBACKUP Virtual Dashboard

NovaBACKUP Virtual Dashboard NovaBACKUP Virtual Dashboard User Manual NovaStor / April 2015 2015 NovaStor, all rights reserved. All trademarks are the property of their respective owners. Features and specifications are subject to

More information

Autograph 3.3 Network Installation

Autograph 3.3 Network Installation Eastmond Publishing Ltd (Autograph) PO Box 46, Oundle, Peterborough, PE8 4JX, UK Tel: +44 (0)1832 273444 Fax: +44 (0)1832 273529 Email: support@autograph-maths.com Web: www.autograph-maths.com Technical

More information

Introduction to Windows Server 2016 Nano Server

Introduction to Windows Server 2016 Nano Server Front cover Introduction to Windows Server 2016 Nano Server Introduces this new feature of Microsoft Windows Server 2016 Describes how to create and manage these low-footprint servers Explains how to implement

More information

Installing and Configuring Windows Server 2012

Installing and Configuring Windows Server 2012 CÔNG TY CỔ PHẦN TRƯỜNG CNTT TÂN ĐỨC TAN DUC INFORMATION TECHNOLOGY SCHOOL JSC LEARN MORE WITH LESS! Course 20410D Installing and Configuring Windows Server 2012 Length: 5 Days Audience: IT Professionals

More information

aims sql server installation guide

aims sql server installation guide aims sql server installation guide Document Version: 4000 February 2015 CONTENTS AIMS Installation Guide... 3 Installing the AIMS Software... 4 Pre-Requisites... 4 Installation... 4 Shortcuts... 4 Directory

More information

Foglight. Foglight for Virtualization, Free Edition 6.5.2. Installation and Configuration Guide

Foglight. Foglight for Virtualization, Free Edition 6.5.2. Installation and Configuration Guide Foglight Foglight for Virtualization, Free Edition 6.5.2 Installation and Configuration Guide 2013 Quest Software, Inc. ALL RIGHTS RESERVED. This guide contains proprietary information protected by copyright.

More information

DeployStudio Server Quick Install

DeployStudio Server Quick Install DeployStudio Server Quick Install v1.7.0 The DeployStudio Team info@deploystudio.com Requirements OS X 10.7.5 to 10.11.1 DeployStudioServer_v1.7.x.pkg and later NetBoot based deployment 100 Mb/s switched

More information

Administering Windows Server 2012

Administering Windows Server 2012 Administering Windows Server 2012 Course Details Duration: Course code: 5 Days M20411 Overview: Get hands-on instruction and practice administering Windows Server 2012, including Windows Server 2012 R2,

More information