Azure Security and Compliance Practical Exercises

Size: px
Start display at page:

Download "Azure Security and Compliance Practical Exercises"

Transcription

1 Azure Security and Compliance Practical Exercises Overview This course includes optional practical exercises where you can try out the technologies described in the course for yourself. This guide lists the steps for the individual practical exercises. See the Overview page under Practical Exercises in your course for information about getting started. Setup If you already have a Microsoft Azure subscription, you can skip this section. Otherwise, follow these steps to create a free trial subscription. You will need to provide a valid credit card number for verification, but you will not be charged for Azure services for more information, see the frequently asked questions on the Azure sign-up page. 1. If you already have a Microsoft account that has not already been used to sign up for a free Azure trial subscription, you re ready to get started. If not, don t worry, just create a new Microsoft account. 2. After you ve created a Microsoft account, create your free Microsoft Azure account. You ll need to sign-in with your Microsoft account if you re not already signed in. Then you ll need to: Enter your cellphone number and have Microsoft send you a text message to verify your identity. Enter the code you have been sent to verify it. Provide valid payment details. This is required for verification purposes only your credit card won t be charged for any services you use during the trial period, and the account is automatically deactivated at the end of the trial period unless you explicitly decide to keep it active. Install Azure PowerShell (if needed)

2 In this exercise, you will install Azure PowerShell. Note: If you have already installed Azure PowerShell you can skip this exercise. 1. From your computer, open an elevated PowerShell prompt. Cmdlets for Resource Manager 2. Run the Install-Module AzureRM command. This will install the AzureRM module which represents resource management. 3. If you get prompted to install and import the NuGet provider, Type Y and then press the Enter key. 4. If you are notified that the repository is untrusted, confirm that you want to install the modules by typing Y and then pressing the Enter key. The installation process will take several minutes as packages are downloaded and installed. 5. After the download and installation is finished, run the Import-Module AzureRM command. 6. Note: If you receive a message about running scripts on your computer has been disabled, temporarily change the execution policy: Set-ExecutionPolicy Unrestricted After the import command is complete, return the execution policy to restricted. Set-ExecutionPolicy Restricted Cmdlets for Service Manager (Classic) also includes basic cmdlets such as subscription management 1. Run the Install-Module Azure command. This will install the Azure module which represents service management. 2. If you are notified that the repository is untrusted, confirm that you want to install the modules by typing Y and then pressing the Enter key. 3. Once the download and installation is finished, run the Import-Module Azure command. Explore storage cmdlets and update the Help pages 1. Run Get-Command *azurestorage* to view storage cmdlets you can use in this course. 2. This is a good time to run Update-Help so you have the latest help pages. Don t be concerned if some libraries don t update. You can always find the Help pages on TechNet. If you have trouble installing the PowerShell modules from the PowerShell gallery, you can try the WebPI method instead. Visit to download and install the modules.

3 Module 2 Key Vault Create a Key Vault (Portal) In this exercise, you will create a new key vault in the Azure portal. 1. Navigate to the Azure portal and sign in. 2. On the Hub menu, click More Services. 3. Type key vault in the filter to reveal the available option for managing cryptographic information in the Azure Portal. Mark Key vaults as a favorite to pin it to your Hub menu. 4. Click Key vaults. If you have any existing key vaults they will appear in this list. 5. On the Key vaults blade, click Add. 6. On the Create Key Vault blade, fill in the following values to create a new key vault. Click Create when you are finished entering the information. Name: KeyVault-<RandomAlphaNumericString> where <RandomAlphaNumericString> is a random assortment of letters and numbers to make the name unique across Azure. Subscription: <YourSubscription> Resource Group: Create a new resource group named KeyVaultRG Location: <YourLocation> Pricing tier: P1 Premium Access policies: Leave as default Advanced access policy: Enable all options 7. On the menu bar, monitor the alerts for progress as the new key vault is created. 8. On the Hub menu, click Key vaults. Confirm that the new key vault has been created. 9. Select your key vault. 10. Take a few minutes to explore the various configuration options that are available. For example, Access control (IAM), Keys, Secrets, Access policies, and Advanced access policies. These areas will be explored the following labs for this module.

4 Add Security to the Key Vault In this exercise, you will create a new group and assign key and secret permissions. 1. Navigate to the Azure Portal and sign in. 2. On the Hub menu, click Azure Active Directory. 3. On the Azure Active Directory blade, click Users and groups. 4. On the Users and groups blade, under MANAGE, click All groups. 5. Click + Add to create a new group with the following information: Name: Network Operations Team Description:<YourDescription> Membership type: Assigned Members:<Add yourself to the group> 6. Click Create to create the new Azure Active Directory group. 7. On the Dashboard, navigate to your key vault. 8. On the Key vault blade, under SETTINGS, click Access policies. 9. Click Add new to create a new Access policy with the following information: Select principal: Network Operations Team Configure from template (optional): <leave as default value> Key permissions: Get and List Secret permissions: Get and List Authorized application: None selected 10. Click OK to add the key vault access policy. 11. On the Key vault blade, under SETTINGS, click Access control (IAM). 12. Click + Add and review the Roles that are available. Specifically, notice the Reader and Key Vault Contributor roles. 13. Select Reader and Network Operation Team as a user. 14. Confirm the Network Operation Team the Key Vault Contributor role.

5 Create a Key (Portal) In this exercise, you will create a new key using the Azure portal and PowerShell. Create a key in the portal 1. Navigate to the Azure portal and sign in. 2. Navigate to your key vault. 3. Under Assets, click Keys. 4. On the Keys blade, click + Add. 5. Notice the three options to create a key: Generate, Upload, and Restore Backup. 6. On the Create a key blade, fill in the following values to create a new key. Click Create when you are finished entering the information. Options: Generate Name: Key1 Key Type: Software key Set activation date: Unchecked Set expiration date: Unchecked Enabled: Yes 7. On the menu bar, monitor the alerts for progress as the new key is created. 8. Confirm the key was added to the key vault. Create a key using PowerShell 1. Open an elevated PowerShell cmd prompt. 2. Login to Azure. In the Sign in to your account window, enter your Azure administrative credentials and then click Sign in. Complete your authentication as needed (for example, if you have two-factor authentication enabled, you might be prompted for the second authentication factor). Login-AzureRmAccount 3. Generate a software key and store it in a variable. $key2 = Add-AzureKeyVaultKey -Name Key2 -VaultName <your key vault> - Destination software 4. View the URI for the key. $key2.id 5. Return to the portal and confirm your new key was created. Notice the Key Identifier URI. 6. Notice that all the operations are permitted.

6 7. Return to PowerShell and disable the key. Set-AzureKeyVaultKeyAttributes -Name Key2 -VaultName <your key vault> -Enable $false 8. Verify in the portal that the key is disabled. You may need to Refresh the page.

7 Create a Secret (Portal and PowerShell) In this exercise, you will create a new secret using the Azure portal and PowerShell. Create a secret in the portal 1. Navigate to the Azure portal and sign in. 2. Locate your key vault. 3. Under Assets, click Secrets. 4. On the Secrets blade, click + Add. 5. Notice the upload options: Certificate and Manual. 6. On the Create a secret blade, fill in the following values to create a new secret. Click Create when you are finished entering the information. Options: Manual Name: DBConnectionString1 Value: Pa$$w0rd Content type: Leave blank Set activation date: Unchecked Set expiration date: Unchecked Enabled: Yes 7. On the menu bar, monitor the alerts for progress as the new secret is created. 8. Confirm the secret was added to the key vault. Create a secret using PowerShell 1. Open an elevated PowerShell cmd prompt. 2. Login to Azure. In the Sign in to your account window, enter your Azure administrative credentials and then click Sign in. Complete your authentication as needed (for example, if you have two-factor authentication enabled, you might be prompted for the second authentication factor). Login-AzureRmAccount 3. Create a secure string for the secret value. This is a connection string to the Northwind database. $SecretValue = ConvertTo-SecureString 'Data Source=.\;Initial Catalog=Northwind;Integrated Security=True' -AsPlainText Force command. 4. Create the secret and store it in a variable. $Secret = Set-AzureKeyVaultSecret -VaultName '<YourKeyVault>' -Name 'DbConnectionString2' -SecretValue $SecretValue

8 5. You can now reference the secret that you added to Azure Key Vault by using its URI. $secret.id 6. View the secret. Get-AzureKeyVaultSecret -VaultName <YourKeyVault> 7. Return to the portal and confirm your secret was created.

9 Key Vault Diagnostic Logging (Portal and PowerShell) In this exercise, you will learn about Key Vault logging. Explore diagnostic logging 1. Navigate to the Azure portal and sign in. 2. Locate your key vault. 3. Select Diagnostic Logging and notice the logging is Off. Enable diagnostic logging 4. Open an elevated PowerShell cmd prompt. 5. Login to Azure. In the Sign in to your account window, enter your Azure administrative credentials and then click Sign in. Complete your authentication as needed (for example, if you have two-factor authentication enabled, you might be prompted for the second authentication factor). Login-AzureRmAccount 6. Create a storage account for the diagnostic logs. The name must be unique, and you should use the same datacenter location as your key vault. This may take a minute to complete. $sa = New-AzureRmStorageAccount -ResourceGroupName <your resource group> - Name keyvaultlogs -Type Standard_LRS -Location <YourLocation> 7. Retrieve the key vault name. $kv = Get-AzureRmKeyVault -VaultName <YourKeyVaultName> 8. Enable diagnostic logging. Set-AzureRmDiagnosticSetting -ResourceId $kv.resourceid -StorageAccountId $sa.id - Enabled $True -Categories AuditEvent 9. The output will deplay the details of the StorageAccountId and log retention settings. 10. Return to the portal and verify Diagnostics Logs is now On. Notice your storage account name. 11. Now that diagnostics have been enabled, you can do further exploration on your own. Begin by creating some secrets and keys. 12. View the diagnostic log using the Get-AzureStorageBlob cmdlet or by browsing to the insights-logs-auditevent container in the storage account (you ll need to browse all the way down to the JSON file). To view the JSON file download the file and open in Visual Studio or a text editor.

10 Module 3 Security Center Enable Azure Security Center In this exercise, you will enable the Security Center in the Azure portal and then configure some of the basic settings. 1. Navigate to the Azure portal and sign in. 2. In the left pane, click Security Center. 3. On the Security Center Welcome screen, click Yes! I want to Launch Azure Security Center. 4. You will notice a blue information message stating Security Center is starting and analyzing your data for the first time. This might take a couple of minutes. 5. You may receive a prompt to enable data collection for your subscription(s) to enable all security controls. Click the message at the top of the Security Center blade. On the Security policy blade, ensure Data collection is set to On. 6. Under Policy components, click Prevention policy and review the listed recommendations. For example, you can enable or disable recommendations for System updates or OS vulnerabilities by turning them on or off. 7. Under Policy components, click notifications. 8. Enter your contact address and phone number information. 9. Under Send me s, set the Send me s about alerts option to On and then click OK. 10. Under Policy components, click Pricing tier. 11. Click Standard Free Trial and click Select. The standard tier adds additional features, such as advanced threat detections and is free for 90 days. 12. On the Security policy blade, click Save. 13. On the menu bar, monitor the alerts for progress as settings are processed. 14. On the Security Center Security policy blade, pin the blade to your dashboard. Deploy Resources for Use with the Security Center

11 In this exercise, you will deploy several resources in Azure for the purpose of generating data for the Azure Security Center. Once the resources are fully deployed, the Security Center can then scan the resources and provide recommendations that an administrator can take action upon to enhance their security profile. The goal of this exercise is to generate data and resources for Security Center. You might need to take further action to generate security related information and alerts. If you already have other resources deployed in your subscription, you might have alerts being generated already. As a follow-on to these practical exercises, consider leaving the resources running for an extended period of time to further explore Security Center. 1. Navigate to the Azure portal and sign in. Create a Windows 2016 Datacenter virtual machine 2. Create a new virtual machine running Windows Server 2016 Datacenter with the following settings: Name: SERVER-01 VM disk type: HDD User name: <YourFirstName> Password: Pa$$w0rd12345 Subscription: <YourSubscription> Resource group: Create a new one named Server2016-RG Location: <YourLocation> Size: A0 Basic (note that you might need to View all of the available sizes so that you can use the A0 Basic size) 3. On the settings blade, review the default options for storage, network, extensions, high availability, and monitoring and then click OK. 4. On the Summary blade, review the configuration and then click OK. 5. On the menu bar, monitor the alerts for progress as the new virtual machine is created. Create a second Windows Server 2016 Datacenter virtual machine 6. Create a second virtual machine named SERVER-02 by using the same settings as you used for SERVER-01. Create a SQL database

12 7. In the left pane, click SQL databases. 8. On the SQL databases, click + Add 9. Create the SQL database with the following settings and then click Create. Database name: Sample Subscription: <YourSubscription> Resource group: Use the existing resource group named Server2016-RG Select source: Sample Select sample: AdventureWorksLT [V12] Server: Click Configure required settings, click Create a new server, and then create a new SQL server with the following information: i. Server name: SQL-<YourName> ii. Server admin login: Admin-<YourName> iii. Password: Pa$$w0rd12345 iv. Confirm password: Pa$$w0rd12345 v. Location: <YourLocation> Pricing tier: Basic Collation: <LeaveAsDefault> Create a Red Hat Linux virtual machine 10. In the left pane, click + New. 11. Click Compute, click Red Hat Enterprise Linux 7.2, and then click Create. 12. Create a virtual machine menu in the Basics blade using the following settings: Name: Linux VM Disk type: HDD User name: Admin-<YourLastName> Authentication type: Password Password: Pa$$w0rd12345 Confirm password: Pa$$w0rd12345 Subscription: <YourSubscription> Resource group: Use the existing resource group named Server2016-RG Location: <YourLocation> Size: A0 Basic (note that you might need to View all of the available sizes so that you can use the A0 Basic size) 13. On the menu bar, monitor the alerts for progress as the new resources are deployed. Use the Security Center

13 In this exercise, you will use the Azure Security Center to review security health and recommendations. Once the scans are run and the recommendations are available, you will walk through some of the remediation steps. 1. Navigate to the Azure Portal and sign in. 2. On the Dashboard, click Security Center. 3. On the Security Center Overview blade, under Prevention, you will be presented with a high level status of all resources containing both High Severity and Low Severity indicators. 4. You will notice a Recommendations graphic that encompasses all resources. Click Recommendations to review the list. When viewing the recommendations for the first time, it may take a few minutes for Azure to generate the list. Your list of recommendations may be different. That is okay, just remediate the ones you have. Feel free to explore others that are not listed here. Remediate Endpoint Protection 5. On the Recommendations blade, you will see a recommendation to Install Endpoint Protection on two virtual machines with a High Severity designation. Click Install Endpoint Protection. 6. On the Install Endpoint Protection blade, click Install on 2 VMs. 7. On the Select Endpoint Protection blade, click Microsoft Antimalware then click Create. 8. On the Install Microsoft Antimalware blade, click OK. 9. On the menu bar, monitor the alerts for progress as endpoint protection is being installed to your two Windows virtual machines. Remediate Next Generation Firewall 10. Return to the Recommendations blade and click Add a Next Generation Firewall for your endpoints. 11. On the Add a Next Generation Firewall blade, click Linux-ip and then click Create New. 12. On the Create a New Next Generation Firewall, click Barracuda Networks, Inc. then click Create. 13. On the Create virtual machine menu, on the Basics blade, configure the virtual machine with the standard configuration and click OK. 14. On the Purchase blade, click Purchase to purchase the Barracuda NextGen Firewall F-Series then click Create.

14 15. On the menu bar, monitor the alerts for progress as the next generation firewall virtual machine is being deployed. Remediate Data Encryption 16. On the Recommendations blade, click Enable Transparent Data Encryption for the Sample database. 17. On the Enable Transparent Data Encryption on SQL databases blade, click Sample. 18. On the Transparent data encryption blade, select On then click Save. 19. You can review the Encryption status in real time on this blade. After a few moments, encryption will be enabled. Filter and continue to resolve 20. On the Recommendations blade, you will eventually see that some of the items have an updated state showing that they have been resolved. 21. Click Filter under Recommendations and uncheck the Resolved status. 22. In the background, you will see some of the recommendations disappear. 23. Close the Filter blade to return to the Recommendations menu. 24. Once you receive the alert that the Next Generation Firewall solution has been successfully provisioned, click Add a Next Generation Firewall on the Recommendations blade. 25. You should have two previously deployed Windows Server 2016 virtual machines. Click SERVER-01-ip. 26. Select the Barracuda Networks, Inc. Next Generation Firewall from this menu and click OK. 27. Repeat the steps for SERVER-02-ip. 28. Explore the partner solutions (optional) by clicking Partner solutions on the Security Center blade. This will enable you to view all partner solutions connected to Azure Security Center. It also provides recommendations for resources that are linked to this partner solution.

Azure for On-Premises Administrators Practice Exercises

Azure for On-Premises Administrators Practice Exercises Azure for On-Premises Administrators Practice Exercises Overview This course includes optional practical exercises where you can try out the techniques demonstrated in the course for yourself. This guide

More information

Azure Virtual Machines Practice Exercises

Azure Virtual Machines Practice Exercises Azure Virtual Machines Practice Exercises Overview This course includes optional practical exercises where you can try out the techniques demonstrated in the course for yourself. This guide lists the steps

More information

Databases in Azure Practical Exercises

Databases in Azure Practical Exercises Databases in Azure Practical Exercises Overview This course includes optional exercises where you can try out the techniques demonstrated in the course for yourself. This guide lists the steps for the

More information

Querying with Transact-SQL

Querying with Transact-SQL Querying with Transact-SQL Getting Started with Azure SQL Database / SQL Server Overview Transact-SQL is an essential skill for database professionals, developers, and data analysts working with Microsoft

More information

Developing SQL Databases

Developing SQL Databases Developing SQL Databases Getting Started Overview Database development is more than just creating a table with rows and columns. This course introduces features and technologies for developing a database.

More information

Provisioning Databases

Provisioning Databases DAT219x Provisioning Databases Lab 00 Getting Started Estimated time to complete this lab is 60 minutes Overview In this lab, you will provision a Microsoft Azure Virtual Machine (VM) that will be used

More information

Azure Application Deployment and Management: Service Fabric Create and Manage a Local and Azure hosted Service Fabric Cluster and Application

Azure Application Deployment and Management: Service Fabric Create and Manage a Local and Azure hosted Service Fabric Cluster and Application Azure Application Deployment and Management: Service Fabric Create and Manage a Local and Azure hosted Service Fabric Cluster and Application Overview This course includes optional practical exercises

More information

Azure 209x Practical Exercises Overview

Azure 209x Practical Exercises Overview Azure 209x Practical Exercises Overview This course includes optional exercises where you can try out the techniques demonstrated in the course for yourself. This guide lists the steps for the individual

More information

Microsoft Cloud Workshops. Enterprise-Ready Cloud Hackathon Leader Guide

Microsoft Cloud Workshops. Enterprise-Ready Cloud Hackathon Leader Guide Microsoft Cloud Workshops Enterprise-Ready Cloud Hackathon Leader Guide August 2017 2017 Microsoft Corporation. All rights reserved. This document is confidential and proprietary to Microsoft. Internal

More information

Microsoft Azure Fundamentals: Azure identity Practical Exercises

Microsoft Azure Fundamentals: Azure identity Practical Exercises Microsoft Azure Fundamentals: Azure identity Practical Exercises Overview This course includes optional practical exercises where you can try out the techniques demonstrated in the course for yourself.

More information

Veriato Recon / 360. Version 9.0.3

Veriato Recon / 360. Version 9.0.3 Veriato Recon / 360 Version 9.0.3 1/3/2018 Upgrade Guide January 3, 2018 Table of Contents Before You Begin... 1 What's New... 1 How the System Works... 1 Upgrade Support... 6 Update Antivirus Exclusions...

More information

Tableau Server on Microsoft Azure:

Tableau Server on Microsoft Azure: Tableau Server on Microsoft Azure: Deployment Guidelines and Best Practices April 2017 Table of Contents Abstract...3 Introduction to Tableau With Microsoft Azure...3 Option 1 Self Deployment via Azure

More information

Actual4Dumps. Provide you with the latest actual exam dumps, and help you succeed

Actual4Dumps.   Provide you with the latest actual exam dumps, and help you succeed Actual4Dumps http://www.actual4dumps.com Provide you with the latest actual exam dumps, and help you succeed Exam : 70-533 Title : Implementing Microsoft Azure Infrastructure Solutions Vendor : Microsoft

More information

Introduction to the Azure Portal

Introduction to the Azure Portal Page 1 of 17 Introduction to the Azure Portal The new Azure portal is an all-in-one, work-anywhere experience. Now you can manage App Service Apps, databases and Visual Studio Team Services projects in

More information

Step 1 - Set Up Essentials for Office 365

Step 1 - Set Up Essentials for Office 365 The standalone Office 365 Standalone Email Security option is available for purchase only through the Barracuda Self-Service Gateway or Barracuda MSP. This article assumes you are deploying Barracuda Services

More information

Microsoft Cloud Workshop

Microsoft Cloud Workshop Microsoft Cloud Workshop Hands-on lab step-by-step October 2017 Information in this document, including URL and other Internet Web site references, is subject to change without notice. Unless otherwise

More information

Docker on Windows Server 2016

Docker on Windows Server 2016 Docker on Windows Server 2016 Friday, August 4, 2017 2:26 PM Install and configure Docker, along with deploying and managing Windows-based containers, on a Windows Server 2016 server. This is a short workshop

More information

How-to Guide: Tenable Nessus for Microsoft Azure. Last Updated: April 03, 2018

How-to Guide: Tenable Nessus for Microsoft Azure. Last Updated: April 03, 2018 How-to Guide: Tenable Nessus for Microsoft Azure Last Updated: April 03, 2018 Table of Contents How-to Guide: Tenable Nessus for Microsoft Azure 1 Introduction 3 Auditing the Microsoft Azure Cloud Environment

More information

CloudHealth. AWS and Azure On-Boarding

CloudHealth. AWS and Azure On-Boarding CloudHealth AWS and Azure On-Boarding Contents 1. Enabling AWS Accounts... 3 1.1 Setup Usage & Billing Reports... 3 1.2 Setting Up a Read-Only IAM Role... 3 1.3 CloudTrail Setup... 5 1.4 Cost and Usage

More information

AvePoint Online Services for Partners 2

AvePoint Online Services for Partners 2 AvePoint Online Services for Partners 2 User Guide Service Pack 1 Issued June 2017 Table of Contents What s New in this Guide...4 About...5 Submitting Documentation Feedback to AvePoint...6 Browser Support

More information

Step 1 - Set Up Essentials for Office 365

Step 1 - Set Up Essentials for Office 365 For each Barracuda Cloud Control account, you can have either a linked Barracuda Email Security Gateway appliance or a Barracuda Email Security Service subscription. You cannot use a single Barracuda Cloud

More information

EASYSECURITY SYMANTEC V1.0

EASYSECURITY SYMANTEC V1.0 EASYSECURITY SYMANTEC V1.0 CONTENTS 1 Introduction... 2 2 Creating a virtual machine... 3 3 Installing Endpoint Protection 14:... 8 9/1/2017 EasySecurity Symantec 1 1 INTRODUCTION EasySecurity Symantec

More information

StreamOne Cloud Marketplace. Order and Management Guide

StreamOne Cloud Marketplace. Order and Management Guide StreamOne Cloud Marketplace Order and Management Guide StreamOne Cloud Marketplace Order and Management Table of Contents Navigating to the StreamOne Cloud Marketplace Creating a Quote Converting a Quote

More information

VMware vfabric Data Director 2.5 EVALUATION GUIDE

VMware vfabric Data Director 2.5 EVALUATION GUIDE VMware vfabric Data Director 2.5 EVALUATION GUIDE Introduction... 2 Pre- requisites for completing the basic and advanced scenarios... 3 Basic Scenarios... 4 Install Data Director using Express Install...

More information

How-to Guide: Tenable.io for Microsoft Azure. Last Updated: November 16, 2018

How-to Guide: Tenable.io for Microsoft Azure. Last Updated: November 16, 2018 How-to Guide: Tenable.io for Microsoft Azure Last Updated: November 16, 2018 Table of Contents How-to Guide: Tenable.io for Microsoft Azure 1 Introduction 3 Auditing the Microsoft Azure Cloud Environment

More information

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

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

More information

Course AZ-100T01-A: Manage Subscriptions and Resources

Course AZ-100T01-A: Manage Subscriptions and Resources Course AZ-100T01-A: Manage Subscriptions and Resources Module 1: Managing Azure Subscriptions In this module, you ll learn about the components that make up an Azure subscription and how management groups

More information

AvePoint Online Services 2

AvePoint Online Services 2 2 User Guide Service Pack 7 Issued August 2017 Table of Contents What s New in this Guide...6 About...7 Versions: Commercial and U.S. Government Public Sector...7 Submitting Documentation Feedback to AvePoint...8

More information

Developing Microsoft Azure Solutions

Developing Microsoft Azure Solutions 1 Developing Microsoft Azure Solutions Course Prerequisites A general understanding of ASP.NET and C# concepts Upon Completion of this Course, you will accomplish following: Compare the services available

More information

EASYHA SQL SERVER V1.0

EASYHA SQL SERVER V1.0 EASYHA SQL SERVER V1.0 CONTENTS 1 Introduction... 2 2 Install SQL 2016 in Azure... 3 3 Windows Failover Cluster Feature Installation... 7 4 Windows Failover Clustering Configuration... 9 4.1 Configure

More information

Ansible Tower Quick Setup Guide

Ansible Tower Quick Setup Guide Ansible Tower Quick Setup Guide Release Ansible Tower 2.4.5 Red Hat, Inc. Jun 06, 2017 CONTENTS 1 Quick Start 2 2 Login as a Superuser 3 3 Import a License 4 4 Examine the Tower Dashboard 6 5 The Setup

More information

AZURE SELF-HOSTED INSTALLATION GUIDE

AZURE SELF-HOSTED INSTALLATION GUIDE AZURE SELF-HOSTED INSTALLATION GUIDE TABLE OF CONTENTS AZURE SETUP... 3 Install a Virtual Machine... 3 Attach a Data Disk... 9 CLOUDCHECKR SETUP... 17 2 AZURE SETUP To set up the self-hosted version of

More information

User Guide. Version R94. English

User Guide. Version R94. English AuthAnvil User Guide Version R94 English March 8, 2017 Copyright Agreement The purchase and use of all Software and Services is subject to the Agreement as defined in Kaseya s Click-Accept EULATOS as updated

More information

User Guide. Version R92. English

User Guide. Version R92. English AuthAnvil User Guide Version R92 English October 9, 2015 Agreement The purchase and use of all Software and Services is subject to the Agreement as defined in Kaseya s Click-Accept EULATOS as updated from

More information

SECURE Gateway with Microsoft Azure Installation Guide. Version Document Revision 1.0

SECURE  Gateway with Microsoft Azure Installation Guide. Version Document Revision 1.0 SECURE Email Gateway with Microsoft Azure Installation Guide Version 4.7.0 Document Revision 1.0 Copyright Revision 1.0, November, 2017 Published by Clearswift Ltd. 1995 2017 Clearswift Ltd. All rights

More information

Handbook: Carbonite Safe

Handbook: Carbonite Safe 1 Welcome to Carbonite! Important Things to Know...4 Carbonite Features...5 Setting Up and Installing...6 Starting a Trial... 7 Installing Carbonite for the First Time... 7 Buying a Subscription...9 Subscription

More information

Amazon AppStream 2.0: SOLIDWORKS Deployment Guide

Amazon AppStream 2.0: SOLIDWORKS Deployment Guide 2018 Amazon AppStream 2.0: SOLIDWORKS Deployment Guide Build an Amazon AppStream 2.0 environment to stream SOLIDWORKS to your users June 2018 https://aws.amazon.com/appstream2/ 1 Welcome This guide describes

More information

How to Deploy the Barracuda Security Gateway in the New Microsoft Azure Management Portal

How to Deploy the Barracuda  Security Gateway in the New Microsoft Azure Management Portal How to Deploy the Barracuda Email Security Gateway in the New Microsoft Azure Management Portal This guide walks you through the steps to deploy and provision the Barracuda Email Security Gateway on Microsoft

More information

StoragePoint Advanced Installation Guide

StoragePoint Advanced Installation Guide A StoragePoint January 16, 2018 www.metalogix.com info@metalogix.com 202.609.9100 Copyright 2018 Copyright Metalogix International GmbH All rights reserved. No part or section of the contents of this material

More information

Installation Guide Live Maps for System Center

Installation Guide Live Maps for System Center Installation Guide Live Maps 8.9.0 for System Center Contents 1. Introduction... 5 1.1 About This Guide... 5 1.2 Supported Products... 5 1.3 Related Documents... 5 1.4 Understanding Live Maps... 5 1.5

More information

Deploying and Provisioning the Barracuda Web Application Firewall in the New Microsoft Azure Management Portal

Deploying and Provisioning the Barracuda Web Application Firewall in the New Microsoft Azure Management Portal Deploying and Provisioning the Barracuda Web Application Firewall in the New Microsoft Azure Management Deploying and Provisioning the Barracuda Web Application Firewall Using the Azure Resource Manager

More information

MOVEit Transfer on Azure Marketplace Quickstart Guide. How to deploy and use MOVEit Transfer from Microsoft Azure Marketplace

MOVEit Transfer on Azure Marketplace Quickstart Guide. How to deploy and use MOVEit Transfer from Microsoft Azure Marketplace MOVEit Transfer on Azure Marketplace Quickstart Guide How to deploy and use MOVEit Transfer from Microsoft Azure Marketplace Copyright Notice 1991-2017 Ipswitch, Inc. All rights reserved. This document,

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

Student Lab Manual MS100.1x: Office 365 Management

Student Lab Manual MS100.1x: Office 365 Management Student Lab Manual MS100.1x: Office 365 Management Lab Scenario You are the system administrator for Adatum Corporation, and you have Office 365 deployed in a virtualized lab environment. In this lab,

More information

Microsoft Architecting Microsoft Azure Solutions.

Microsoft Architecting Microsoft Azure Solutions. Microsoft 70-535 Architecting Microsoft Azure Solutions https://killexams.com/pass4sure/exam-detail/70-535 QUESTION: 106 Your organization has developed and deployed several Azure App Service Web and API

More information

Student Lab Manual MS101.1x: Microsoft 365 Security Management

Student Lab Manual MS101.1x: Microsoft 365 Security Management Student Lab Manual MS101.1x: Microsoft 365 Security Management Lab Scenario You are the system administrator for Adatum Corporation, and you have Microsoft 365 deployed in a virtualized lab environment.

More information

Community Edition Getting Started Guide. July 25, 2018

Community Edition Getting Started Guide. July 25, 2018 Community Edition Getting Started Guide July 25, 2018 Copyright 2018 by Qualys, Inc. All Rights Reserved. Qualys and the Qualys logo are registered trademarks of Qualys, Inc. All other trademarks are the

More information

GRS Enterprise Synchronization Tool

GRS Enterprise Synchronization Tool GRS Enterprise Synchronization Tool Last Revised: Thursday, April 05, 2018 Page i TABLE OF CONTENTS Anchor End User Guide... Error! Bookmark not defined. Last Revised: Monday, March 12, 2018... 1 Table

More information

ForeScout Extended Module for Tenable Vulnerability Management

ForeScout Extended Module for Tenable Vulnerability Management ForeScout Extended Module for Tenable Vulnerability Management Version 2.7.1 Table of Contents About Tenable Vulnerability Management Module... 4 Compatible Tenable Vulnerability Products... 4 About Support

More information

Handbook: Carbonite Safe

Handbook: Carbonite Safe 1 Important Things to Know... 4 Carbonite Features... 5 Setting Up and Installing... 6 Starting a Trial... 7 Installing Carbonite for the First Time... 7 Buying a Subscription... 8 Subscription Pricing...

More information

Amazon S3 Glacier. Developer Guide API Version

Amazon S3 Glacier. Developer Guide API Version Amazon S3 Glacier Developer Guide Amazon S3 Glacier: Developer Guide Table of Contents What Is Amazon S3 Glacier?... 1 Are You a First-Time Glacier User?... 1 Data Model... 2 Vault... 2 Archive... 3 Job...

More information

Course Outline. Module 1: Microsoft Azure for AWS Experts Course Overview

Course Outline. Module 1: Microsoft Azure for AWS Experts Course Overview Course Outline Module 1: Microsoft Azure for AWS Experts Course Overview In this module, you will get an overview of Azure services and features including deployment models, subscriptions, account types

More information

Speed Lab 2! System Center 2012 R2: Introduction to Automation, Service & Application Management

Speed Lab 2! System Center 2012 R2: Introduction to Automation, Service & Application Management Speed Lab 2! System Center 2012 R2: Introduction to Automation, Service & Application Management Lab Guide System Center 2012 R2 is the industry s leading datacenter management system, providing a variety

More information

271 Waverley Oaks Rd. Telephone: Suite 206 Waltham, MA USA

271 Waverley Oaks Rd. Telephone: Suite 206 Waltham, MA USA Contacting Leostream Leostream Corporation http://www.leostream.com 271 Waverley Oaks Rd. Telephone: +1 781 890 2019 Suite 206 Waltham, MA 02452 USA To submit an enhancement request, email features@leostream.com.

More information

Remote Support 19.1 Web Rep Console

Remote Support 19.1 Web Rep Console Remote Support 19.1 Web Rep Console 2003-2019 BeyondTrust Corporation. All Rights Reserved. BEYONDTRUST, its logo, and JUMP are trademarks of BeyondTrust Corporation. Other trademarks are the property

More information

Welcome to the. Migrating SQL Server Databases to Azure

Welcome to the. Migrating SQL Server Databases to Azure Welcome to the 1 Migrating SQL Server Databases to Azure Migrating SQL Server Databases to Azure Agenda Overview of SQL Server in Microsoft Azure Getting started with SQL Server in an Azure virtual machine

More information

Getting Started with the Ed-Fi ODS and Ed-Fi ODS API

Getting Started with the Ed-Fi ODS and Ed-Fi ODS API Getting Started with the Ed-Fi ODS and Ed-Fi ODS API Ed-Fi ODS and Ed-Fi ODS API Version 2.0 - Technical Preview January 2015 2014-2015 Ed-Fi Alliance, LLC. All rights reserved. Ed-Fi is a registered trademark

More information

Azure Developer Immersions Application Insights

Azure Developer Immersions Application Insights Azure Developer Immersions Application Insights Application Insights provides live monitoring of your applications. You can detect and diagnose faults and performance issues, as well as discover how users

More information

ForeScout Extended Module for IBM BigFix

ForeScout Extended Module for IBM BigFix ForeScout Extended Module for IBM BigFix Version 1.0.0 Table of Contents About this Integration... 4 Use Cases... 4 Additional BigFix Documentation... 4 About this Module... 4 Concepts, Components, Considerations...

More information

Sync User Guide. Powered by Axient Anchor

Sync User Guide. Powered by Axient Anchor Sync Powered by Axient Anchor TABLE OF CONTENTS End... Error! Bookmark not defined. Last Revised: Wednesday, October 10, 2018... Error! Bookmark not defined. Table of Contents... 2 Getting Started... 7

More information

WatchGuard Dimension v2.1.1 Update 3 Release Notes

WatchGuard Dimension v2.1.1 Update 3 Release Notes WatchGuard Dimension v2.1.1 Update 3 Release Notes Build Number 567758 Release Date 8 August 2018 Release Notes Revision Date 8 August 2018 On 8 August 2018, WatchGuard released the Dimension v2.1.1 Update

More information

Azure SQL Database Training. Complete Practical & Real-time Trainings. A Unit of Sequel Gate Innovative Technologies Pvt. Ltd.

Azure SQL Database Training. Complete Practical & Real-time Trainings. A Unit of Sequel Gate Innovative Technologies Pvt. Ltd. Azure SQL Database Training Complete Practical & Real-time Trainings A Unit of Sequel Gate Innovative Technologies Pvt. Ltd. AZURE SQL / DBA Training consists of TWO Modules: Module 1: Azure SQL Database

More information

Integrate your CSP Direct Agreement

Integrate your CSP Direct Agreement Overview: - The information needed to integrate your CSP Direct tenant is contained in this PDF Guide. You will be asked to create and access various authentication keys and which you need to do in the

More information

Mediant Virtual Edition (VE) SBC

Mediant Virtual Edition (VE) SBC Installation Manual AudioCodes Mediant Family of Session Border Controllers (SBC) Mediant Virtual Edition (VE) SBC Deployment in Microsoft Azure Version 7.2 Installation Manual Contents Table of Contents

More information

Developing Microsoft Azure Solutions (70-532) Syllabus

Developing Microsoft Azure Solutions (70-532) Syllabus Developing Microsoft Azure Solutions (70-532) Syllabus Cloud Computing Introduction What is Cloud Computing Cloud Characteristics Cloud Computing Service Models Deployment Models in Cloud Computing Advantages

More information

VMware AirWatch Database Migration Guide A sample procedure for migrating your AirWatch database

VMware AirWatch Database Migration Guide A sample procedure for migrating your AirWatch database VMware AirWatch Database Migration Guide A sample procedure for migrating your AirWatch database For multiple versions Have documentation feedback? Submit a Documentation Feedback support ticket using

More information

Settings tab. User guide

Settings tab. User guide Settings tab User guide Contents 1. Introduction... 2 Documentation... 2 Licensing... 2 Settings overview... 2 2. Settings tab selections... 3 Backup user identity... 3 Email server settings... 4 Email

More information

Installation Guide for Pulse on Windows Server 2012

Installation Guide for Pulse on Windows Server 2012 USER GUIDE MADCAP PULSE 4 Installation Guide for Pulse on Windows Server 2012 Copyright 2018 MadCap Software. All rights reserved. Information in this document is subject to change without notice. The

More information

Microsoft Azure for AWS Experts

Microsoft Azure for AWS Experts Microsoft Azure for AWS Experts OD40390B; On-Demand, Video-based Course Description This course provides an in-depth discussion and practical hands-on training of Microsoft Azure Infrastructure Services

More information

Sophos Enterprise Console

Sophos Enterprise Console secure network quick startup guide Product Version: 5.5 Contents About this guide... 1 Limitations on the secure network...2 What do I install?...3 What are the key steps?... 4 Download the installers...5

More information

Course CLD221x: Enabling Office 365 Clients

Course CLD221x: Enabling Office 365 Clients Course CLD221x: Enabling Office 365 Clients Student Lab Manual Lab Design There are five exercises in this lab, each of which contains one or more tasks. For a successful outcome to the lab, the exercises

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

Installation Guide. EventTracker Enterprise. Install Guide Centre Park Drive Publication Date: Aug 03, U.S. Toll Free:

Installation Guide. EventTracker Enterprise. Install Guide Centre Park Drive Publication Date: Aug 03, U.S. Toll Free: EventTracker Enterprise Install Guide 8815 Centre Park Drive Publication Date: Aug 03, 2010 Columbia MD 21045 U.S. Toll Free: 877.333.1433 Abstract The purpose of this document is to help users install

More information

End User Manual. December 2014 V1.0

End User Manual. December 2014 V1.0 End User Manual December 2014 V1.0 Contents Getting Started... 4 How to Log into the Web Portal... 5 How to Manage Account Settings... 6 The Web Portal... 8 How to Upload Files in the Web Portal... 9 How

More information

NTP Software VFM Administration Web Site

NTP Software VFM Administration Web Site NTP Software VFM Administration Web Site User Manual Version 7.1 This guide details the method for using NTP Software VFM Administration Web Site, from an administrator s perspective. Upon completion of

More information

Anchor User Guide. Presented by: Last Revised: August 07, 2017

Anchor User Guide. Presented by: Last Revised: August 07, 2017 Anchor User Guide Presented by: Last Revised: August 07, 2017 TABLE OF CONTENTS GETTING STARTED... 1 How to Log In to the Web Portal... 1 How to Manage Account Settings... 2 How to Configure Two-Step Authentication...

More information

RAP as a Service Active Directory Security: Prerequisites

RAP as a Service Active Directory Security: Prerequisites RAP as a Service Active Directory Security: Prerequisites This document explains the required steps to configure the RAP as a Service for Active Directory Security. There are two scenarios available to

More information

Xton Access Manager GETTING STARTED GUIDE

Xton Access Manager GETTING STARTED GUIDE Xton Access Manager GETTING STARTED GUIDE XTON TECHNOLOGIES, LLC PHILADELPHIA Copyright 2017. Xton Technologies LLC. Contents Introduction... 2 Technical Support... 2 What is Xton Access Manager?... 3

More information

List of Virtual Machines Used in This Lab

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

More information

Azure SQL Database Training. Complete Practical & Real-time Trainings. A Unit of SequelGate Innovative Technologies Pvt. Ltd.

Azure SQL Database Training. Complete Practical & Real-time Trainings. A Unit of SequelGate Innovative Technologies Pvt. Ltd. Azure SQL Database Training Complete Practical & Real-time Trainings A Unit of SequelGate Innovative Technologies Pvt. Ltd. AZURE SQL / DBA Training consists of TWO Modules: Module 1: Azure SQL Database

More information

Message Networking 5.2 Administration print guide

Message Networking 5.2 Administration print guide Page 1 of 421 Administration print guide This print guide is a collection of system topics provided in an easy-to-print format for your convenience. Please note that the links shown in this document do

More information

LoadMaster for Azure Resource Manager. Feature Description

LoadMaster for Azure Resource Manager. Feature Description LoadMaster for Azure Resource Manager Feature Description UPDATED: 16 October 2017 Copyright Notices Copyright 2002-2017 KEMP Technologies, Inc. All rights reserved. KEMP Technologies and the KEMP Technologies

More information

D365 DATA ARCHIVAL & RETENTION

D365 DATA ARCHIVAL & RETENTION MICROSOFT LABS OCTOBER 12, 2018 D365 DATA ARCHIVAL & RETENTION Highly scalable, secured and re-usable solution for Archive, Retain and Delete the Microsoft D365 data Contents Introduction... 2 Archiving...

More information

Installation on Windows Server 2008

Installation on Windows Server 2008 USER GUIDE MADCAP PULSE 4 Installation on Windows Server 2008 Copyright 2018 MadCap Software. All rights reserved. Information in this document is subject to change without notice. The software described

More information

ForeScout Extended Module for Symantec Endpoint Protection

ForeScout Extended Module for Symantec Endpoint Protection ForeScout Extended Module for Symantec Endpoint Protection Version 1.0.0 Table of Contents About the Symantec Endpoint Protection Integration... 4 Use Cases... 4 Additional Symantec Endpoint Protection

More information

INF204x Module 1, Lab 3 - Configure Windows 10 VPN

INF204x Module 1, Lab 3 - Configure Windows 10 VPN INF204x Module 1, Lab 3 - Configure Windows 10 VPN Estimated Time: 40 minutes Your organization plans to allow Windows 10 users to connect to the internal network by using the VPN client built into the

More information

Azure Learning Circles

Azure Learning Circles Azure Learning Circles Azure Management Session 1: Logs, Diagnostics & Metrics Presented By: Shane Creamer shanec@microsoft.com Typical Customer Narratives Most customers know how to operate on-premises,

More information

ForeScout Extended Module for MobileIron

ForeScout Extended Module for MobileIron Version 1.8 Table of Contents About MobileIron Integration... 4 Additional MobileIron Documentation... 4 About this Module... 4 How it Works... 5 Continuous Query Refresh... 5 Offsite Device Management...

More information

Best Practices for Migrating Servers to Microsoft Azure with PlateSpin Migrate

Best Practices for Migrating Servers to Microsoft Azure with PlateSpin Migrate White Paper PlateSpin Transformation Manager PlateSpin Migrate Best Practices for Migrating Servers to Microsoft Azure with PlateSpin Migrate Updated for PlateSpin Transformation Manager 1.1 and PlateSpin

More information

Acronis Backup & Recovery 10 Advanced Editions

Acronis Backup & Recovery 10 Advanced Editions Acronis Backup & Recovery 10 Advanced Editions Quick Start Guide This document describes how to install and start using any of the following editions of Acronis Backup & Recovery 10: Acronis Backup & Recovery

More information

RAP as a Service for Exchange Server: Prerequisites

RAP as a Service for Exchange Server: Prerequisites RAP as a Service for Exchange Server: Prerequisites This document explains the required steps to configure the RAP as a Service for Exchange Server. There are two scenarios available to configure the assessment.

More information

Developing Microsoft Azure Solutions

Developing Microsoft Azure Solutions Developing Microsoft Azure Solutions Duration: 5 Days Course Code: M20532 Overview: This course is intended for students who have experience building web applications. Students should also have experience

More information

SAS Viya 3.3 Administration: Identity Management

SAS Viya 3.3 Administration: Identity Management SAS Viya 3.3 Administration: Identity Management Identity Management Overview................................................................. 2 Getting Started with Identity Management......................................................

More information

Installation Guide Worksoft Analyze

Installation Guide Worksoft Analyze Installation Guide Worksoft Analyze Worksoft, Inc. 15851 Dallas Parkway, Suite 855 Addison, TX 75001 www.worksoft.com 866-836-1773 Worksoft Analyze Installation Guide Version 1.0.0 Copyright 2018 by Worksoft,

More information

20532D: Developing Microsoft Azure Solutions

20532D: Developing Microsoft Azure Solutions 20532D: Developing Microsoft Azure Solutions Course Details Course Code: Duration: Notes: 20532D 5 days Elements of this syllabus are subject to change. About this course This course is intended for students

More information

Handbook: Carbonite Safe

Handbook: Carbonite Safe 1 Welcome to Carbonite! Important Things to Know...4 Carbonite Features...5 Advanced/Add-On Features... 5 Setting Up and Installing...6 Starting a Trial... 7 Installing Carbonite for the First Time...

More information

Paperless Tax Office Automation

Paperless Tax Office Automation _ Topics in this Quick Start Guide Key steps for using GruntWorx in your tax practice How to submit jobs How to Populate UltraTax CS client tax files with GruntWorx How to purchase GruntWorx credits and

More information

ForeScout Extended Module for Qualys VM

ForeScout Extended Module for Qualys VM ForeScout Extended Module for Qualys VM Version 1.2.1 Table of Contents About the Qualys VM Integration... 3 Additional Qualys VM Documentation... 3 About This Module... 3 Components... 4 Considerations...

More information

FAMCare Connect Admin Guide

FAMCare Connect Admin Guide 2011-2012 FAMCare Connect Admin Guide 2011-2012 The FAMCare Connect Administrator Guide will help a FAMCare administrator setup and configure the system. Contents How to Define Security Needs... 3 Security

More information

XFINITY Welcome Packet

XFINITY Welcome Packet XFINITY Welcome Packet Welcome! Your building comes with a fast, reliable property-wide WiFi network as well as access to our popular XFINITY TV video streaming service for university students. In the

More information