DESIRED STATE CONFIGURATION FOR DELL COMMAND POWERSHELL PROVIDER

Size: px
Start display at page:

Download "DESIRED STATE CONFIGURATION FOR DELL COMMAND POWERSHELL PROVIDER"

Transcription

1 DESIRED STATE CONFIGURATION FOR DELL COMMAND POWERSHELL PROVIDER Leveraging the adaptability of Desired State Configuration for managing the BIOS settings of Dell client systems ABSTRACT Desired State Configuration is a framework of choice among IT Administrators for efficient system administration. The framework provides an advanced method to monitor and maintain the configuration settings of client systems. This prevents settings drift that may occur across several systems in a large network. Dell Command PowerShell Provider provides functionality to get and set the BIOS settings of Dell client systems. Dell Command PowerShell Provider 1.2 and later supports the Desired State Configuration framework to manage the BIOS settings.

2 TABLE OF CONTENTS EXECUTIVE SUMMARY...3 KEY CONCEPTS OF DSC...3 DELL COMMAND POWERSHELL PROVIDER RESOURCES...4 PUSH MODEL...4 PULL MODEL...5 ADDITIONAL INFORMATION ON SECURE PASSWORD...8 CONCLUSION...8 2

3 EXECUTIVE SUMMARY Desired State Configuration (DSC) is a configuration management framework provided by Windows PowerShell. DSC provides functionalities that enable IT Administrators to monitor and maintain the configuration of client systems in a corporate network. KEY CONCEPTS OF DSC The following is a summary of the key concepts of DSC: Standard Resources: The DSC framework contains a versatile set of built-in configuration resources. You can directly use the standard resources without scripting extensively. Custom Resources: Custom Resources make DSC accessible so that it can be integrated with any other product by using the DSC pipeline for configuration management. This is the typical use case by which Dell Command PowerShell Provider leverages the capabilities of DSC to maintain and monitor the BIOS settings of Dell client systems. The functionality of DSC can be leveraged by Dell Command PowerShell Provider through custom resources. DSC is used through PowerShell scripting. This is known as declarative programming wherein the end-user defines the requirement without specifying the process. When using DSC for configuring the BIOS settings with Dell Command PowerShell Provider, a key-value pair is defined based on the BIOS attribute and the desired value of the attribute. When this declaration is passed onto client systems, an intelligent agent ensures that the system configurations are not drifted and takes appropriate measures to restore the settings. The key terminologies that are associated with DSC scripting are as follows: Configuration: Configuration is a keyword that is used to define DSC functions. The syntax for defining the function is the keyword Configuration followed by a suitable identifier. IT Administrators declaratively define the management constraints on Dell client systems by using the Configuration function. Resource: Resources are accessed through the names for a block definition and they represents a set of relevant properties. In case of Dell Command PowerShell Provider, each category of the BIOS settings is referred to as a resource that is accessed through a user-friendly name and each attribute in that category is referred to as a property. For example, POSTbehavior is a category and Numlock is one of the properties in that category. Node: Nodes are target systems on which the IT Administrator enforces certain configuration settings. In case of Dell Command PowerShell Provider, a Node is a Dell client system on which certain BIOS settings are enforced. A key component in this process is Local Configuration Manager (LCM). LCM is the agent that runs on all systems having WMF 4.0 or later. Through a periodic check on the client systems, LCM ensures that the configuration settings have not drifted away and takes appropriate measures such as restoring the settings or logging the changes. Note: Dell recommends that you update to Windows Management Framework 5.0 (WMF 5.0) or later available at Microsoft.com. The workflow to enforce certain configuration constraints on client systems, involves authoring, staging, and enactment. Authoring: Authoring is the process of writing DSC scripts. The scripts use configuration, resource, and node. The scripts are saved in a.ps1 format. Staging: Staging involves a two-step process in which the script is run first. Running the script makes the Configuration function available at the command line interface. After running the script, the configuration name (a user defined identifier for the configuration function) is invoked at the command line interface. When the configuration name is invoked, a MOF file is created. The final consumable to the LCM is the current.mof file that is located at C:\Windows\System32\Configuration on every client system. The current.mof file is used by LCM for configuration management. 3

4 Enactment: Enactment is the process of delivering the final consumable MOF file to the LCM on client systems. The final consumable MOF file is pushed onto client systems from a server in push mode. The client systems poll a server for changes and pull a configuration from the server if changes are detected in pull mode. The following sections provide detailed information on push and pull modes from the perspective of Dell Command PowerShell Provider. Dell Command PowerShell Provider Resources Dell Command PowerShell Provider Resources are stored in the DSCResources folder in the same physical path where the module resides. Each category of BIOS attributes which Dell Command PowerShell Provider provides has a relevant folder within DSCResources which stores the MOF and PSM1 files, typical of a custom resource. The schema MOF file is a definition of the configurable properties and the PSM1 file is the implementation or the code that does the actual work specified by a configuration for the resource. Push Model In the push model the final consumable MOF file is pushed onto client systems from a server. The LCM on the client systems performs the job by perusing the current.mof file. Generally, push model is not an industry standard for deploying DSC, but a knowledge of the Push model helps understand DSC. The following figure shows a script for enforcing a simple configuration. Figure 1. Configuration script The Configuration block is followed by the Resource block (POSTBehavior) and the definition of the Node ( ). By default, Dell Command PowerShell Provider custom resources are available along with the Dell Command PowerShell Provider package in the standard folder named DSCResources. NOTE: While using Dell Command PowerShell Provider resources, the Category property is mandatory for all resource blocks. The Category property must define the category provided by Dell Command PowerShell Provider. In the example show in Figure 1, the IT Administrator enforces the settings of the Keypad to EnabledByNumLock, PowerWarn to Disabled and Numlock to Disabled. The attribute settings shown in Figure 1 are for illustration purposes only. Depending on the business requirement, an IT Administrator can set appropriate values for the required attributes. When this script is saved in a.ps1 format and run, the POSTBehaviorConfiguration function becomes active. When you run the POSTBehaviorConfiguration function, it generates a MOF file. During the Enactment stage, the IT Administrator uses the cmdlet Start-DscConfiguration to push the MOF file onto the target node(s) or system(s). DSC uses WinRM as the communication channel and all systems (server and client) in scope of DSC should be in the same Active Directory domain. In the push model, during the enactment stage, the server requires the local administrator credentials of the client system. The credentials are passed as a parameter along with Start-DscConfiguration cmdlet. 4

5 Figure 2. Configuration script NOTE: If BIOS is configured with a secure password instead of the regular password, the SecurePassword and PathToKey attributes must be defined as shown in Figure 2. The PathToKey attribute defines the encryption key that is used and is optional. The SecurePassword attribute defines the encrypted password. The secure password can also be passed as a variable that is available a secure file. Pull Model The pull model is probably the de facto standard of deploying and using DSC. In this model, the client system(s) periodically poll a pull server to verify if there is a change in management constraints that have been defined by the IT Administrator. If a change is detected, the client(s) pull the consumable MOF file from the server. Pull model is a simple setup that functions as a handshake between the server and client machines. The following is a summary of the steps for setting up a pull model. 1. Set up a pull server. 2. Create a configuration MOF file. 3. Rename the MOF file with a suitable GUID name and place the MOF file at $env:programfiles\windowspowershell\dscservice\configuration 4. Create a checksum for the MOF file. 5. Set up the LCM on client systems to Pull mode using the meta-configuration properties of the web service and GUID information. A pull server is an Internet Information Services (IIS) web server that hosts the MOF files for the nodes. It also responds to requests from each node s Local Configuration Manager (LCM) to distribute configurations. The node requests the configuration file from the pull server, which returns the associated DSC resources. The advantage of the pull model is that the DSC resources are downloaded automatically from the pull server on each node. At regular intervals, the nodes send the status to the pull server to verify if there are any changes to the configuration. The pull server is a common repository for the MOF files and the DSC resources. A pull server can distribute the MOF files through two protocols: Server Message Block (SMB): This method uses the shared folders on a file server. Hypertext Transfer Protocol (http/https): This is the easiest way to manage systems located in different networks. It uses the http protocol and an IIS server for communications. To install a pull server, the Desired State Configuration and two web services are required. The first web service allows the nodes to download the configuration and the second is the Compliance Server that helps to avoid configuration drift on the nodes. Authoring of a configuration defines the BIOS settings that an IT Administrator enforces on client systems. The push model method is involved wherein Dell Command PowerShell Provider resources are leveraged and intuitively authored, but 5

6 differs the way it is deployed. When the script is authored and the MOF file is generated (by running the configuration function) a distinct process of creation of a GUID (Global Unique Identifier) is performed. A new GUID can be created by using the command shown in the following figure. Figure 3. Creating a new GUID A sample dereferencing of the variable displays the GUID as shown in the following figure. Figure 4. Dereferencing the variable The configuration MOF file must be renamed using the GUID that is created as shown in the following figure, where ADM01.mof is the name of configuration MOF file that is authored and staged. Figure 5. Renaming the MOF file To run the renamed MOF file, place the MOF file at $env:programfiles\windowspowershell\dscservice\configuration and run the following cmdlet: New-DSCCheckSum * This creates a checksum for the <GUID>.mof file as shown in the following figure. 6

7 Figure 6. Checksum file After setting up the steps, set the meta-configuration of the LCM on client systems by setting salient properties such as RefreshMode to Pull and ConfigurationID to the GUID that is generated. Use the following cmdlet to configure the LCM: Set-DscLocalConfigurationManager A sample meta-configuration of the LCM is shown in the following figure. Figure 7. Sample meta-configuration As shown in Figure 7, the other key properites are ConfigurationID, RefreshMode, and ServerUrl. NOTE: There are two meta-configuration properties, namely ConfigurationModeFrequencyMins and RefreshFrequencyMins, which define the frequency at which the LCM checks and updates the configuration. The definition and difference between the properties are as follows: ConfigurationModeFrequencyMins specifies how often (in minutes) LCM checks the client system to ensure that the configuration is in the desired state. RefreshFrequencyMins specifies how often (in minutes) LCM attempts to obtain the configuration from the pull server. If configuration on the pull server differs from the current configuration on the target node, it is copied to the pending store and then applied. 7

8 Additional information on secure password When you use the ConvertTo-SecureString and ConvertFrom-SecureString attributes without a key or SecureKey, PowerShell uses Windows Data Protection API (DPAPI) to encrypt or decrypt the strings. When you use a Key or SecureKey, the Advanced Encryption Standard (AES) encryption algorithm is used. Conclusion Desired State Configuration is a powerful, industry-standard tool that can be leveraged by IT Administrators to automatically monitor configuration drifts on Dell client systems in a large corporate network. 8

Windows PowerShell: Desired State Configuration. Robert Novák, Senior Premier Field Engineer Microsoft

Windows PowerShell: Desired State Configuration. Robert Novák, Senior Premier Field Engineer Microsoft Windows PowerShell: Desired State Configuration Robert Novák, Senior Premier Field Engineer Microsoft Agenda Introduction DSC Architecture DSC Authoring in Windows Powershell DSC Resource DSC Operationanl

More information

Dell Command PowerShell Provider. Version User's Guide

Dell Command PowerShell Provider. Version User's Guide Dell Command PowerShell Provider Version 2.1.0 User's Guide Notes, cautions, and warnings NOTE: A NOTE indicates important information that helps you make better use of your product. CAUTION: A CAUTION

More information

Dell Command PowerShell Provider Version 2.0 User's Guide

Dell Command PowerShell Provider Version 2.0 User's Guide Dell Command PowerShell Provider Version 2.0 User's Guide 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

Microsoft Windows PowerShell v2 For Administrators

Microsoft Windows PowerShell v2 For Administrators Microsoft Windows PowerShell v2 For Administrators Course 50414 5 Days Instructor-led, Hands-on Introduction This four-day instructor-led course provides students with the knowledge and skills to leverage

More information

(Re)Investigating PowerShell Attacks

(Re)Investigating PowerShell Attacks (Re)Investigating PowerShell Attacks BruCON 0x0A Retro Talks Matt Hastings, Ryan Kazanciyan 2 Investigating PowerShell Attacks, 2014 Desired State: Compromised, 2015 3 Revisiting Investigating PowerShell

More information

I Needed to Install 80 SQL Servers Fast. Here s How I Did It! Anthony E. Nocentino

I Needed to Install 80 SQL Servers Fast. Here s How I Did It! Anthony E. Nocentino I Needed to Install 80 SQL Servers Fast. Here s How I Did It! Anthony E. Nocentino aen@centinosystems.com Anthony E. Nocentino Consultant and Trainer Founder and President of Centino Systems Specialize

More information

Dell Command PowerShell Provider Version 1.2 User's Guide

Dell Command PowerShell Provider Version 1.2 User's Guide Dell Command PowerShell Provider Version 1.2 User's Guide 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

Windows PowerShell Desired State Configuration (DSC) on the AWS Cloud: Quick Start Reference Deployment

Windows PowerShell Desired State Configuration (DSC) on the AWS Cloud: Quick Start Reference Deployment Windows PowerShell Desired State Configuration (DSC) on the AWS Cloud: Quick Start Reference Deployment Mike Pfeiffer September 2014 Last updated: August 2016 (revisions) This guide is also available in

More information

Automating Administration with Windows PowerShell (10961)

Automating Administration with Windows PowerShell (10961) Automating Administration with Windows PowerShell (10961) Duration: 5 Days Live Course Delivery Price: $2795 *California residents and government employees call for pricing. MOC On-Demand Price: $895 Discounts:

More information

BlackBerry Enterprise Server for IBM Lotus Domino Version: 5.0. Administration Guide

BlackBerry Enterprise Server for IBM Lotus Domino Version: 5.0. Administration Guide BlackBerry Enterprise Server for IBM Lotus Domino Version: 5.0 Administration Guide SWDT487521-636611-0528041049-001 Contents 1 Overview: BlackBerry Enterprise Server... 21 Getting started in your BlackBerry

More information

Executing PowerShell Agent Commands

Executing PowerShell Agent Commands This chapter contains the following sections: Cisco UCS Director Orchestrator Workflow and PowerShell Command, page 1 Execute PowerShell Command Task, page 2 Execute Native PowerShell Command Task, page

More information

Product Page: https://digitalrevolver.com/product/automating-administration-with-windows-powershell/

Product Page: https://digitalrevolver.com/product/automating-administration-with-windows-powershell/ Automating Administration with Windows PowerShell Course Code: Duration: 5 Days Product Page: https://digitalrevolver.com/product/automating-administration-with-windows-powershell/ This course provides

More information

: 10961C: Automating Administration With Windows PowerShell

: 10961C: Automating Administration With Windows PowerShell Module Title Duration : 10961C: Automating Administration With Windows PowerShell : 5 days About this course This course provides students with the fundamental knowledge and skills to use Windows PowerShell

More information

Operation Management Suite OMS, for short. Kenneth Teo Premier Field Engineer Microsoft

Operation Management Suite OMS, for short. Kenneth Teo Premier Field Engineer Microsoft Operation Management Suite OMS, for short. Kenneth Teo Premier Field Engineer Microsoft microsoft.com/oms Different Ways to Connect SCOM Direct agents Azure Storage Azure Diagnostic Microsoft Operations

More information

Executing PowerShell Agent Commands

Executing PowerShell Agent Commands This chapter contains the following sections: Cisco UCS Director Orchestrator Workflow and PowerShell Command, page 1 Execute PowerShell Command Task, page 2 Execute Native PowerShell Command Task, page

More information

Automating Administration with Windows PowerShell

Automating Administration with Windows PowerShell Automating Administration with Windows PowerShell Course 10961C - Five Days - Instructor-led - Hands on Introduction This five-day, instructor-led course provides students with the fundamental knowledge

More information

"Charting the Course... MOC C: Automating Administration with Windows PowerShell. Course Summary

Charting the Course... MOC C: Automating Administration with Windows PowerShell. Course Summary Course Summary Description This course provides students with the fundamental knowledge and skills to use Windows PowerShell for administering and automating administration of Windows servers. This course

More information

citrix MetaFrame Password Manager2.0:Adminsitration

citrix MetaFrame Password Manager2.0:Adminsitration citrix MetaFrame Password Manager2.0:Adminsitration Number: 1Y0-972 Passing Score: 800 Time Limit: 120 min File Version: 62.24 http://www.gratisexam.com/ CITRIX 1Y0-972 EXAM QUESTIONS & ANSWERS Exam Name:

More information

SnapCenter Software 4.0 Concepts Guide

SnapCenter Software 4.0 Concepts Guide SnapCenter Software 4.0 Concepts Guide May 2018 215-12925_D0 doccomments@netapp.com Table of Contents 3 Contents Deciding whether to use the Concepts Guide... 7 SnapCenter overview... 8 SnapCenter architecture...

More information

Corporate Training Centre (306)

Corporate Training Centre   (306) Corporate Training Centre www.sbccollege.ca/corporate (306)244-6340 corporate@sbccollege.ca Automating Administration with Windows PowerShell: 10961C 5 Day Training Program November 5-9, 2018 Cost: $2,700.00

More information

COURSE 10961B: AUTOMATING ADMINISTRATION WITH WINDOWS POWERSHELL

COURSE 10961B: AUTOMATING ADMINISTRATION WITH WINDOWS POWERSHELL ABOUT THIS COURSE Learn how with Windows PowerShell 3.0, you can remotely manage single or multiple Windows-based servers and automate day-to-day management and administration tasks. This five day course

More information

COURSE 10962B: ADVANCED AUTOMATED ADMINISTRATION WITH WINDOWS POWERSHELL

COURSE 10962B: ADVANCED AUTOMATED ADMINISTRATION WITH WINDOWS POWERSHELL ABOUT THIS COURSE This three-day course is a follow on course from the 10961B: Automating Administration with Windows PowerShell course. It is built on Windows Server 2012 R2 and Windows 8.1 and while

More information

[MS10961]: Automating Administration with Windows PowerShell

[MS10961]: Automating Administration with Windows PowerShell [MS10961]: Automating Administration with Windows PowerShell Length : 5 Days Audience(s) : IT Professionals Level : 200 Technology : Windows Server Delivery Method : Instructor-led (Classroom) Course Overview

More information

Endpoint Protection with DigitalPersona Pro

Endpoint Protection with DigitalPersona Pro DigitalPersona Product Brief Endpoint Protection with DigitalPersona Pro An introductory technical overview to DigitalPersona s suite for Access Management, Data Protection and Secure Communication. April

More information

Automating Administration with Windows PowerShell

Automating Administration with Windows PowerShell Course Code: M10961 Vendor: Microsoft Course Overview Duration: 5 RRP: POA Automating Administration with Windows PowerShell Overview This course provides students with the fundamental knowledge and skills

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

One Identity Active Roles 7.2. Azure AD and Office 365 Management Administrator Guide

One Identity Active Roles 7.2. Azure AD and Office 365 Management Administrator Guide One Identity Active Roles 7.2 Azure AD and Office 365 Management Administrator Copyright 2017 One Identity LLC. ALL RIGHTS RESERVED. This guide contains proprietary information protected by copyright.

More information

SnapCenter Software 4.1 Concepts Guide

SnapCenter Software 4.1 Concepts Guide SnapCenter Software 4.1 Concepts Guide August 2018 215-13392_A0 doccomments@netapp.com Table of Contents 3 Contents Deciding whether to read the Concepts Guide... 7 SnapCenter overview... 8 SnapCenter

More information

WHITE PAPER. Good Mobile Intranet Technical Overview

WHITE PAPER. Good Mobile Intranet Technical Overview WHITE PAPER Good Mobile Intranet CONTENTS 1 Introduction 4 Security Infrastructure 6 Push 7 Transformations 8 Differential Data 8 Good Mobile Intranet Server Management Introduction Good Mobile Intranet

More information

Course Outline. Automating Administration with Windows PowerShell Course 10961B: 5 days Instructor Led

Course Outline. Automating Administration with Windows PowerShell Course 10961B: 5 days Instructor Led Automating Administration with Windows PowerShell Course 10961B: 5 days Instructor Led About this Course Learn how with Windows PowerShell 3.0, you can remotely manage single or multiple Windows-based

More information

Microsoft Automating Administration with Windows PowerShell

Microsoft Automating Administration with Windows PowerShell 1800 ULEARN (853 276) www.ddls.com.au Microsoft 10961 - Automating Administration with Windows PowerShell Length 5 days Price $4290.00 (inc GST) Version C Overview This course provides students with the

More information

Use Plug and Play to Deploy New Devices

Use Plug and Play to Deploy New Devices About Plug and Play, page 1 Prerequisites for Using Plug and Play, page 2 Plug and Play Workflow, page 2 Use the Plug and Play Dashboard to Monitor New Device Deployments, page 4 Create Plug and Play Profiles

More information

Course Outline. Advanced Automated Administration with Windows PowerShell Course 10962: 3 days Instructor Led

Course Outline. Advanced Automated Administration with Windows PowerShell Course 10962: 3 days Instructor Led Advanced Automated Administration with Windows PowerShell Course 10962: 3 days Instructor Led Prerequisites: Before attending this course, students must have: Knowledge and experience working with Windows

More information

PowerShell 10961: Automating Administration with Windows PowerShell. Upcoming Dates. Course Description. Course Outline

PowerShell 10961: Automating Administration with Windows PowerShell. Upcoming Dates. Course Description. Course Outline PowerShell 10961: Automating Administration with Windows PowerShell Learn how with Windows PowerShell you can remotely manage single or multiple Windows-based servers and automate day-to-day management

More information

Tintri Cloud Connector

Tintri Cloud Connector TECHNICAL WHITE PAPER Tintri Cloud Connector Technology Primer & Deployment Guide www.tintri.com Revision History Version Date Description Author 1.0 12/15/2017 Initial Release Bill Roth Table 1 - Revision

More information

Lenovo XClarity Administrator PowerShell Toolkit Reference

Lenovo XClarity Administrator PowerShell Toolkit Reference Lenovo XClarity Administrator PowerShell Toolkit Reference Version 2.3.0 Note Before using this information and the product it supports, read the general and legal notices in the XClarity Administrator

More information

Microsoft Windows Servers 2012 & 2016 Families

Microsoft Windows Servers 2012 & 2016 Families Version 8 Installation Guide Microsoft Windows Servers 2012 & 2016 Families 2301 Armstrong St, Suite 2111, Livermore CA, 94551 Tel: 925.371.3000 Fax: 925.371.3001 http://www.imanami.com Installation Guide

More information

BASIC CHEF FLUENCY BADGE TOPICS

BASIC CHEF FLUENCY BADGE TOPICS BASIC CHEF FLUENCY BADGE TOPICS The Basic Chef Fluency badge is awarded when someone proves that they understand the core elements that underpin Chef. Candidates must show: An understanding of basic Chef

More information

Restore Online Backup Manager Guide

Restore Online Backup Manager Guide Restore Online Backup Manager Guide To begin using your new Restore service you will need to install the client which can be downloaded via the links below: Windows - http://fastnet.co.uk/downloads/obm-win.exe

More information

PowerShell Master Class

PowerShell Master Class Region Example Creating a PowerShell Script Basics of PowerShell Script Best Practices for Script Authoring Interacting With Users 4 #region CIM Get-Command -Module CimCmdlets Get-CimClass -ClassName *disk*

More information

Chapter 1 - Continuous Delivery and the Jenkins Pipeline

Chapter 1 - Continuous Delivery and the Jenkins Pipeline Chapter 1 - Continuous Delivery and the Jenkins Pipeline Objectives Key objectives of this chapter Continuous Delivery The Jenkins Pipeline A Brief Introduction to Groovy The JenkinsFile Pipeline Jobs

More information

Advanced Automated Administration with Windows PowerShell

Advanced Automated Administration with Windows PowerShell Course 10962A: Advanced Automated Administration with Windows PowerShell Course Details Course Outline Module 1: Creating Advanced Functions In this module students will learn how to parameterize a command

More information

One Identity Manager 8.0. Administration Guide for Connecting to Microsoft Exchange

One Identity Manager 8.0. Administration Guide for Connecting to Microsoft Exchange One Identity Manager 8.0 Administration Guide for Connecting to Copyright 2017 One Identity LLC. ALL RIGHTS RESERVED. This guide contains proprietary information protected by copyright. The software described

More information

VMware AirWatch Google Sync Integration Guide Securing Your Infrastructure

VMware AirWatch Google Sync Integration Guide Securing Your  Infrastructure VMware AirWatch Google Sync Integration Guide Securing Your Email Infrastructure AirWatch v9.2 Have documentation feedback? Submit a Documentation Feedback support ticket using the Support Wizard on support.air-watch.com.

More information

OpenIAM Identity and Access Manager Technical Architecture Overview

OpenIAM Identity and Access Manager Technical Architecture Overview OpenIAM Identity and Access Manager Technical Architecture Overview Overview... 3 Architecture... 3 Common Use Case Description... 3 Identity and Access Middleware... 5 Enterprise Service Bus (ESB)...

More information

StreamSets Control Hub Installation Guide

StreamSets Control Hub Installation Guide StreamSets Control Hub Installation Guide Version 3.2.1 2018, StreamSets, Inc. All rights reserved. Table of Contents 2 Table of Contents Chapter 1: What's New...1 What's New in 3.2.1... 2 What's New in

More information

PowerShell for System Center Configuration Manager Administrators

PowerShell for System Center Configuration Manager Administrators Course 55133A: PowerShell for System Center Configuration Manager Administrators - Course details Course Outline Module 1: Review of System Center Configuration Manager Concepts This module explains the

More information

POWERSHELL. Introduction COMP2101 Winter 2019

POWERSHELL. Introduction COMP2101 Winter 2019 POWERSHELL Introduction COMP2101 Winter 2019 POWERSHELL VERSIONS Windows Powershell version 5.1 is the target version for this course The get-host command can be used to see your Windows Powershell version

More information

Exam : Implementing Microsoft Azure Infrastructure Solutions

Exam : Implementing Microsoft Azure Infrastructure Solutions Exam 70-533: Implementing Microsoft Azure Infrastructure Solutions Objective Domain Note: This document shows tracked changes that are effective as of January 18, 2018. Design and Implement Azure App Service

More information

Safe AutoLogon Password Server

Safe AutoLogon Password Server Safe AutoLogon Password Server Product Overview White Paper Software version: 8.0 www.wmsoftware.com Contents Introduction... 1 Safe AutoLogon... 1 A Complete Solution: Safe AutoLogon + Safe AutoLogon

More information

One Identity Active Roles 7.2. Quick Start Guide

One Identity Active Roles 7.2. Quick Start Guide One Identity Active Roles 7.2 Quick Start Guide Copyright 2017 One Identity LLC. ALL RIGHTS RESERVED. This guide contains proprietary information protected by copyright. The software described in this

More information

81225 &SSWSSS Call Us SharePoint 2010 S:

81225 &SSWSSS Call Us SharePoint 2010 S: 81225 &SSWSSS Call Us SharePoint 2010 S: +91 93925 63949 Course Objectives At the end of the course, students will be able to:! Understand IIS Web Server and hosting websites in IIS.! Install and configure

More information

BlackBerry Enterprise Server for Microsoft Office 365. Version: 1.0. Administration Guide

BlackBerry Enterprise Server for Microsoft Office 365. Version: 1.0. Administration Guide BlackBerry Enterprise Server for Microsoft Office 365 Version: 1.0 Administration Guide Published: 2013-01-29 SWD-20130131125552322 Contents 1 Related resources... 18 2 About BlackBerry Enterprise Server

More information

PowerShell-Module Documentation. Release docs

PowerShell-Module Documentation. Release docs PowerShell-Module Documentation Release docs December 29, 2016 User Documentation 1 Requirements 3 2 Installation 5 2.1 Option 1: Installer Script......................................... 5 2.2 Option

More information

Advanced Automated Administration with Windows PowerShell

Advanced Automated Administration with Windows PowerShell Advanced Automated Administration with Windows PowerShell Course 10962B - Three days - Instructor-led - Hands-on Introduction This three-day instructor-led course is a follow on course from the 10961:

More information

Security Tips in Oracle Reports Services Release 6i with Oracle Portal Release 3.0. An Oracle Technical White Paper October 2000

Security Tips in Oracle Reports Services Release 6i with Oracle Portal Release 3.0. An Oracle Technical White Paper October 2000 Release 6i with Oracle Portal Release 3.0 An Oracle Technical White Paper INTRODUCTION Oracle Reports Services uses Oracle Portal to perform a security check that ensures that users have the necessary

More information

Active Directory Domain Add-on for Wyse 5070 Thin Client Version

Active Directory Domain Add-on for Wyse 5070 Thin Client Version Rev. A00 2018-09 Active Directory Domain Add-on for Wyse 5070 Thin Client Version 1.0.0.1 Software releases are created to correct defects, make enhancements, or add new features. These releases are tested

More information

Automating Administration with Windows PowerShell 2.0

Automating Administration with Windows PowerShell 2.0 Automating Administration with Windows PowerShell 2.0 Course No. 10325 5 Days Instructor-led, Hands-on Introduction This course provides students with the knowledge and skills to utilize Windows PowerShell

More information

WHITE PAPER: DELL MANAGEMENT CONSOLE TRIGGERS NETBACKUP 7 JOBS

WHITE PAPER: DELL MANAGEMENT CONSOLE TRIGGERS NETBACKUP 7 JOBS WHITE PAPER: DELL MANAGEMENT CONSOLE TRIGGERS NETBACKUP 7 JOBS White Paper: Dell Management Console Integrates with NetBackup 7 March 2010 Third-party information brought to you courtesy of Dell. Revision

More information

OpenManage Integration for VMware vcenter Quick Install Guide for vsphere Client, Version 2.3.1

OpenManage Integration for VMware vcenter Quick Install Guide for vsphere Client, Version 2.3.1 OpenManage Integration for VMware vcenter Quick Install Guide for vsphere Client, Version 2.3.1 Notes, Cautions, and Warnings NOTE: A NOTE indicates important information that helps you make better use

More information

How to Lift-and-Shift a Line of Business Application onto Google Cloud Platform

How to Lift-and-Shift a Line of Business Application onto Google Cloud Platform How to Lift-and-Shift a Line of Business Application onto Google Cloud Platform by Andy Wu, Solutions Architect, Magenic White Paper How to Lift-and-Shift a Line of Business Application onto Google Cloud

More information

Have documentation feedback? Submit a Documentation Feedback support ticket using the Support Wizard on support.air-watch.com.

Have documentation feedback? Submit a Documentation Feedback support ticket using the Support Wizard on support.air-watch.com. VMware AirWatch Email Notification Service Installation Guide Providing real-time email notifications to ios devices with AirWatch Inbox and VMware Boxer AirWatch v9.1 Have documentation feedback? Submit

More information

Microsoft System Center Configuration Manager 2007, Configuring

Microsoft System Center Configuration Manager 2007, Configuring Microsoft System Center Configuration Manager 2007, Configuring Number: 70-401 Passing Score: 800 Time Limit: 120 min File Version: 1.0 http://www.gratisexam.com/ Exam A QUESTION 1 You have a System Center

More information

Administering Windows Server 2012

Administering Windows Server 2012 Course 20411D: Administering Windows Server 2012 Module 1: Configuring and Troubleshooting Domain Name System This module explains how to configure and troubleshoot DNS, including DNS replication and caching.

More information

ZENworks Mobile Workspace High Availability Environments. September 2017

ZENworks Mobile Workspace High Availability Environments. September 2017 ZENworks Mobile Workspace High Availability Environments September 2017 Legal Notice For information about legal notices, trademarks, disclaimers, warranties, export and other use restrictions, U.S. Government

More information

Let s manage agents. Tom Sightler, Principal Solutions Architect Dmitry Popov, Product Management

Let s manage agents. Tom Sightler, Principal Solutions Architect Dmitry Popov, Product Management Let s manage agents Tom Sightler, Principal Solutions Architect Dmitry Popov, Product Management Agenda Inventory management Job management Managed by backup server jobs Managed by agent jobs Recovery

More information

OpenManage Integration for VMware vcenter Quick Install Guide for vsphere Client, Version 2.3

OpenManage Integration for VMware vcenter Quick Install Guide for vsphere Client, Version 2.3 OpenManage Integration for VMware vcenter Quick Install Guide for vsphere Client, Version 2.3 Notes, Cautions, and Warnings NOTE: A NOTE indicates important information that helps you make better use of

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

Active Directory Synchronisation

Active Directory Synchronisation Active Directory Synchronisation Table of Contents Overview... 3 Important Notes... 3 Installation & Configuration... 4 Configuration & Field Mappings... 4 Attribute Mappings... 7 Adding New Mappings...

More information

Automating Administration with Windows PowerShell (M10961)

Automating Administration with Windows PowerShell (M10961) Automating Administration with Windows PowerShell (M10961) COURSE OVERVIEW: In this PowerShell course, you will gain the fundamental knowledge and skills to use Windows PowerShell for administering and

More information

UCT Application Development Lifecycle. UCT Business Applications

UCT Application Development Lifecycle. UCT Business Applications UCT Business Applications Page i Table of Contents Planning Phase... 1 Analysis Phase... 2 Design Phase... 3 Implementation Phase... 4 Software Development... 4 Product Testing... 5 Product Implementation...

More information

[MS10962]: Advanced Automated Administration With Windows PowerShell

[MS10962]: Advanced Automated Administration With Windows PowerShell [MS10962]: Advanced Automated Administration With Windows PowerShell Length : 3 Days Audience(s) : IT Professionals Level : 300 Technology : Windows Server Delivery Method : Instructor-led (Classroom)

More information

Microsoft.Braindumps v by.CONNIE.36q. Exam Code: R2-Update-Fixed-Answers

Microsoft.Braindumps v by.CONNIE.36q. Exam Code: R2-Update-Fixed-Answers Microsoft.Braindumps.70-410.v2014-04-01.by.CONNIE.36q Number: 70-410 Passing Score: 700 Time Limit: 120 min File Version: 20.5 http://www.gratisexam.com/ Exam Code: 70-410-R2-Update-Fixed-Answers Exam

More information

METADATA FRAMEWORK 6.3 AND CYBERARK AIM INTEGRATION

METADATA FRAMEWORK 6.3 AND CYBERARK AIM INTEGRATION METADATA FRAMEWORK 6.3 AND CYBERARK AIM INTEGRATION Publishing Information Software version 6.3.187 Document version 4 Publication date August 22, 2017 1 INTRODUCTION Integrating CyberArk Application Identity

More information

Control access to your super user accounts

Control access to your super user accounts Control access to your super user accounts Dell Solutions Tour 2015 Ingvar Johansson, Dell Software ingvar.johansson@software.dell.com What is? Privilege Privilege Ensure that privileged users can get

More information

BlackBerry Enterprise Server for Microsoft Exchange Version: 5.0. Feature and Technical Overview

BlackBerry Enterprise Server for Microsoft Exchange Version: 5.0. Feature and Technical Overview BlackBerry Enterprise Server for Microsoft Exchange Version: 5.0 Feature and Technical Overview SWDT305802-524791-0331031644-001 Contents 1 Overview: BlackBerry Enterprise Server... 5 New in this release...

More information

Importing Connections from Metadata Manager to Enterprise Information Catalog

Importing Connections from Metadata Manager to Enterprise Information Catalog Importing Connections from Metadata Manager to Enterprise Information Catalog Copyright Informatica LLC, 2018. Informatica, the Informatica logo, and PowerCenter are trademarks or registered trademarks

More information

TECHNICAL OVERVIEW OF NEW AND IMPROVED FEATURES OF EMC ISILON ONEFS 7.1.1

TECHNICAL OVERVIEW OF NEW AND IMPROVED FEATURES OF EMC ISILON ONEFS 7.1.1 TECHNICAL OVERVIEW OF NEW AND IMPROVED FEATURES OF EMC ISILON ONEFS 7.1.1 ABSTRACT This introductory white paper provides a technical overview of the new and improved enterprise grade features introduced

More information

BlackBerry Enterprise Server Express for Microsoft Exchange

BlackBerry Enterprise Server Express for Microsoft Exchange BlackBerry Enterprise Server Express for Microsoft Exchange Version: 5.0 Service Pack: 3 Feature and Technical Overview Published: 2011-04-11 SWDT305802-1526466-0411010819-001 Contents 1 Overview: BlackBerry

More information

BlackBerry Enterprise Server Express for IBM Lotus Domino

BlackBerry Enterprise Server Express for IBM Lotus Domino BlackBerry Enterprise Server Express for IBM Lotus Domino Version: 5.0 Service Pack: 3 Feature and Technical Overview Published: 2011-04-11 SWDT305802-1526466-0411011002-001 Contents 1 Overview: BlackBerry

More information

EDAConnect-Dashboard User s Guide Version 3.4.0

EDAConnect-Dashboard User s Guide Version 3.4.0 EDAConnect-Dashboard User s Guide Version 3.4.0 Oracle Part Number: E61758-02 Perception Software Company Confidential Copyright 2015 Perception Software All Rights Reserved This document contains information

More information

Windows PowerShell. The next generation command line scripting

Windows PowerShell. The next generation command line scripting The next generation command line scripting Presented by Bob McCoy, CISSP/ISSAP, MCSE Microsoft Services Cyber Security Forum 07/18/2007 Windows PowerShell cmd.exe and command.com Lack of scriptable functionality

More information

Have documentation feedback? Submit a Documentation Feedback support ticket using the Support Wizard on support.air-watch.com.

Have documentation feedback? Submit a Documentation Feedback support ticket using the Support Wizard on support.air-watch.com. VMware AirWatch Email Notification Service Installation Guide Providing real-time email notifications to ios devices with AirWatch Inbox and VMware Boxer Workspace ONE UEM v9.4 Have documentation feedback?

More information

COURSE OUTLINE: OD10961B Automating Administration with Windows PowerShell

COURSE OUTLINE: OD10961B Automating Administration with Windows PowerShell Course Name OD10961B Automating Administration with Windows Course Duration 2 Days Course Structure Online Course Overview Learn how with Windows 4.0, you can remotely manage multiple Windows based servers

More information

Excel4apps Wands 5 Architecture Excel4apps Inc.

Excel4apps Wands 5 Architecture Excel4apps Inc. Excel4apps Wands 5 Architecture 2014 Excel4apps Inc. Table of Contents 1 Introduction... 3 2 Overview... 3 3 Client... 3 4 Server... 3 4.1 Java Servlet... 4 4.2 OAF Page... 4 4.3 Menu and Function... 4

More information

INFOBrief. Dell OpenManage Client Administrator 3.0. Key Points

INFOBrief. Dell OpenManage Client Administrator 3.0. Key Points Dell OpenManage Client Administrator 3.0 Key Points Dell OpenManage Client Administrator is an integrated suite of client management applications developed in partnership with Altiris. This product provides

More information

Veritas Desktop and Laptop Option 9.2

Veritas Desktop and Laptop Option 9.2 1. Veritas Desktop and Laptop Option 9.2 Quick Reference Guide for DLO Installation and Configuration 24-Jan-2018 Veritas Desktop and Laptop Option: Quick Reference Guide for DLO Installation and Configuration.

More information

Developing Microsoft Azure Solutions

Developing Microsoft Azure Solutions Course 20532C: Developing Microsoft Azure Solutions Course details Course Outline Module 1: OVERVIEW OF THE MICROSOFT AZURE PLATFORM This module reviews the services available in the Azure platform and

More information

Lotus Domino Security NSL, Web SSO, Notes ID vault. Collin Murray Program Director, Lotus Domino Product Management

Lotus Domino Security NSL, Web SSO, Notes ID vault. Collin Murray Program Director, Lotus Domino Product Management Lotus Domino Security NSL, Web SSO, Notes ID vault Collin Murray Program Director, Lotus Domino Product Management Challenge: Reduce Cost of Ownership IBM Lotus Notes and Domino have been providing a secure

More information

Package keyringr. R topics documented: February 17, Type Package

Package keyringr. R topics documented: February 17, Type Package Type Package Package keyringr February 17, 2017 Title Decrypt Passwords from Gnome Keyring, Windows Data Protection API and macos Keychain Version 0.4.0 Author Josh Gilfillan Maintainer Josh Gilfillan

More information

Remote Control in Detail: PowerShell Remoting

Remote Control in Detail: PowerShell Remoting Remote Control in Detail: PowerShell Remoting Remoting with Microsoft PowerShell consolidates all server management into a single port and protocol PowerShell is highly configurable PowerShell provides

More information

Puppet on the AWS Cloud

Puppet on the AWS Cloud Puppet on the AWS Cloud Quick Start Reference Deployment AWS Quick Start Reference Team March 2016 This guide is also available in HTML format at http://docs.aws.amazon.com/quickstart/latest/puppet/. Contents

More information

10961C: Automating Administration with Windows PowerShell

10961C: Automating Administration with Windows PowerShell 10961C: Automating Administration with Windows Course Details Course Code: Duration: Notes: 10961C 5 days This course syllabus should be used to determine whether the course is appropriate for the students,

More information

Corporate Training Centre (306)

Corporate Training Centre   (306) Corporate Training Centre www.sbccollege.ca/corporate (306)244-6340 corporate@sbccollege.ca Windows PowerShell Scripting and Toolmaking: 55039 5 Day Training Program November 4-8, 2019 Cost: $2,800.00

More information

Administering a SQL Database Infrastructure (M20764)

Administering a SQL Database Infrastructure (M20764) Administering a SQL Database Infrastructure (M20764) COURSE OVERVIEW: In this Microsoft online training course, you will learn the skills required to maintain a Microsoft SQL Server 2012 or 2014 database

More information

Workspace ONE UEM Notification Service. VMware Workspace ONE UEM 1811

Workspace ONE UEM  Notification Service. VMware Workspace ONE UEM 1811 Workspace ONE UEM Email Notification Service VMware Workspace ONE UEM 1811 You can find the most up-to-date technical documentation on the VMware website at: https://docs.vmware.com/ If you have comments

More information

Modern BIOS Management from the Cloud

Modern BIOS Management from the Cloud Modern BIOS Management from the Cloud Josué Negrón Sr. Solutions Architect VMware Brooks Peppin EUS Systems Engineer VMware Agenda Modern Management Challenges Cloud Architecture Microsoft BIOS & Firmware

More information

Administering Windows Server 2012

Administering Windows Server 2012 Administering Windows Server 2012 Course Details Course Outline Module 1: Configuring and Troubleshooting Domain Name System This module explains how to configure and troubleshoot DNS, including DNS replication

More information

Skills Management Installation Guide for Microsoft Azure

Skills Management Installation Guide for Microsoft Azure Skills Management 9.0.0 Installation Guide for Microsoft Azure Information contained herein is proprietary and confidential and cannot be disclosed or duplicated without the prior written consent of Genesys

More information

Intel Trusted Execution Technology

Intel Trusted Execution Technology May 2015 Revision 1.0 Revision History Revision Date Comments 1.0 May 2015 Initial Release (Intel Public). 2 Contents 1.0 Introduction... 5 1.1 Required Files... 5 1.1.1 Prerequisites... 5 1.2 Asset Tag

More information