Building an ASP.NET MVC Application Using Azure DocumentDB

Size: px
Start display at page:

Download "Building an ASP.NET MVC Application Using Azure DocumentDB"

Transcription

1 Building an ASP.NET MVC Application Using Azure DocumentDB

2 Contents Overview and Azure account requrements... 3 Create a DocumentDB database account... 4 Running the DocumentDB web application Walk-thru the ASP.NET MVC application Deploy application to Azure Websites Conclusion Roll back Azure changes Terms of use Introduction to Azure SQL Database Service Tiers

3 Overview and Azure account requirements Estimated time to complete lab is minutes. Overview To highlight how customers can efficiently leverage Azure DocumentDB to store and query JSON documents, this document provides an end-toend walk-through of building a ToDo List web application using Azure Document DB. This walk-through shows you how to use DocumentDB service provided by Azure to store and access data from an ASP.NET MVC web application hosted on Azure and presumes that you have some prior experience using ASP.NET MVC and Azure Websites. You will learn: 1. Creating and provisioning a DocumentDB Account 2. Creating a ASP.NET MVC Application 3. Connecting to and using Azure DocumentDB from your web application 4. Deploying the Web Application to Azure Websites By following this walkthrough, you will walk-thru a simple web-based task-management application that allows creating, retrieving and completing of tasks. The tasks will be stored as JSON documents in Azure DocumentDB. The resulting application allows you to create, edit, display and delete items stored in the DocumentDB database as shown below. Azure account requirements Introduction to Azure SQL Database Service Tiers 3

4 While carrying all of the exercises within this hands on lab you will either be making use of the the Azure Preview portal at To perform this lab, you will require a Microsoft Azure account. If you do not have an Azure account, you can request a free trial version by going to Within the one-month trial version, you can perform other SQL Server 2014 hands on labs along with other tutorials available on Azure. Note, to sign up for a free trial, you will need a mobile device that can receive text messages and a valid credit card. Be sure to follow the Roll back Azure changes section at the end of this exercise after creating the Azure database so that you can make the most use of your $200 free Azure credit. Create a DocumentDB database account DocumentDB is a fully-managed document database-as-a-service with rich query and indexing capabilities over a schema-free JSON data model. It offers configurable and reliable performance, native JavaScript transactional processing, and is built for the cloud with elastic scale. Let s get started! Connect to SQLONE computer 1. Click on SQL2014DEMO-SQLO button on right side of the screen to connect to the SQLONE computer. Note, if you have a monitor that supports a larger screen resolution than 1024 x 768, you can change the screen resolution Introduction to Azure SQL Database Service Tiers 4

5 for the lab to go as high as 1920 x By going to a higher screen resolution, it will be easier to use SQL Server Management Studio. 2. Right click on the desktop and click on Screen resolution. 3. Select 1366 x 786 (a good minimum screen size for using SSMS) and click OK. 4. Click Keep Changes. 5. Resize the client hollaunchpad Online window for the lab to fit your screen resolution. 6. During the setup you will need to record credentials and server locations. Open notepad.exe to keep track of information Sign in to the Azure preview portal 1. Click on the IE toolbar button at the bottom of the desktop to launch IE with the Azure Management Portal. 2. Enter in your Microsoft ID that is associated with your Azure subscription and click Continue. This process validates your Microsoft ID to verify that it is associated with an Azure subscription. Introduction to Azure SQL Database Service Tiers 5

6 3. Enter in your password for the Sign in page and click Sign in to continue. 4. You should now be logged into the Azure Management portal. In order to create a DocumentDB database, you need to use the new Azure portal at Click on the Preview Portal in the IE favorites bar to go to the new portal. Create a DocumentDB account 1. Within the portal, click on the New button at the lower left portion if the page and then scroll down to you see DocumentDB and click on DocumentDB. Introduction to Azure SQL Database Service Tiers 6

7 2. The Azure portal then displays the New DocumentDB (Preview) blade to enter in the database specifics. For the ID, enter in the name of your database such as docdbtodo. The green smile icon will indicate that the ID is valid and not a duplicate of an existing name. Introduction to Azure SQL Database Service Tiers 7

8 3. Change the LOCATION to West US and leave the other items with the provided defaults. Click Create to create the database. Introduction to Azure SQL Database Service Tiers 8

9 The provisioning process will begin creating your database account. When the provisioning process is complete this can take up to 10 minutes you should see a notification appear in the notifications area of the portal and the tile on your start screen (if you selected to create one) will change to show the completed action. 4. Once provisioning is complete, clicking the DocumentDB tile from the start screen will bring up the main blade for this newly created DocumentDB account. 5. Open a blank Notepad window by clicking on the Notepad icon on the desktop toolbar. You will use this as a scratchpad to Introduction to Azure SQL Database Service Tiers 9

10 record the HTTP endpoint and Key values for your DocuementDB database. 6. Go back to the Azure portal and click the Keys button to display the Keys blade for your database. 7. Click on the clipboard icon next to the URI value and then paste it into your Notepad window. 8. Click on the clipboard icon next to the PRIMARY KEY value and then paste it into your Notepad window. You will use these values in the web application. Running the DocumentDB web application Test driving the ASP.NET web application In this section, you will test out the ASP.NET Model-View-Controller (MVC) Web application that creates the DocumentDB schema and allows you to create, edit and mark items as completed for a simple TODO application. 1. Click on the Visual Studio icon on the task bar to open Visual Studio. 2. On the Start Page, click on the todo project under the Recent list of projects. Introduction to Azure SQL Database Service Tiers 10

11 3. The project should open up with the Web.config file open in the editor. If the file is not open, go to the Solution Explorer and double-click on the Web.config file. 4. Replace the endpoint and authkey values with the URI and PRIMARY KEY settings for your DocuementDB account as shown above. The end result should look as follows. Introduction to Azure SQL Database Service Tiers 11

12 Note: The name of the database for the DocumentDB service will be called ToDoList as specified by the database key. The name of the collection is called Items. We ll go over collections a little later. Adding items to the DocumentDB ToDoList database 1. Click on the Internet Explorer debug toolbar button to start the application. Visual Studio will launch the application in a browser as shown below. 2. Click on the Create New link to go to the Create page. Introduction to Azure SQL Database Service Tiers 12

13 3. Type in a value for Name and Description, such as Name: Learn more about DocumentDB Description: Once I complete this lab, I will know more Introduction to Azure SQL Database Service Tiers 13

14 4. Click Create to add the JSON document with the information to the collection. The application will then show the record in the Index page. 5. Add two more items using steps 2 through On one of the items you just created, click the Delete link for it. This action removes the item from the Index list. Introduction to Azure SQL Database Service Tiers 14

15 7. Close the browser window for the web application. Explore what happened with DocumentDB Studio DocumentDB Studio is an application available on Github at This program allows you to connect to your DocumentDB service to explore and query items. If you want to use this tool on your own system, you will need to use Visual Studio to connect to the Github project and build the project. Note, on October 27, the Azure Portal will be updated with a new version of the DocumentDB blade that will allow you to perform much of the functionality provided by DocumentDB Studio. 1. Go to the desktop and double click the DocumentDB Studio shortcut. 2. Click on File -> Add Account to enter in the connection information to your DocumentDB. Introduction to Azure SQL Database Service Tiers 15

16 3. Copy your DocumentDB service URI into the Account Endpoint field and the PRIMARY KEY into the Account Secret field. Then, click OK. Note: DocumentDB supports several types of connections. When you select Gateway, DocumentDB routes all requests to through the DocumentDB to the appropriate data partition. The two other Direct connection types are for advanced usage that provides connections to specific data nodes. Use the default value of Gateway. 4. Expand the top node to display the ToDoList database. Expand the ToDoList node to display the Users and Items collection. Expand the Items collection to show the objects in the Introduction to Azure SQL Database Service Tiers 16

17 collection. Click on one of the items with a GUID name to show the items in the document. Notice that there are only two items in the list. When you deleted the item using the web application, it deleted the actual document. 5. To edit an item, right click on the item and click Update Document. 6. Drag the pane splitter so that you can see more of the top pane. Then change iscomplete :false, to iscomplete :true, Introduction to Azure SQL Database Service Tiers 17

18 7. Click on the Execute button to send the HTTP request to DocumentDB. DocumentDB Studio displays the committed result back into the lower pane. The DocumentDB Studio application makes it easy to see the structure of your items in a collection within your database. The DocumentDB Studio application can perform many other tasks. You can learn more about the program through the Github site at Introduction to Azure SQL Database Service Tiers 18

19 Walk-thru the ASP.NET MVC application Now that you have seen the Web application in action and how the data was stored in DocumentDB, the rest of the lab walks you through the key elements of the todo solution. Creating the solution from scratch If you were to create the todo application from scratch, you would perform the following actions in Visual Studio. You don t need to perform these actions in this lab. 1. In Visual Studio, click File - New Project and select the option to create a new ASP.NET MVC Web Application. 2. Name the application todo and specify c:\labs\documentdb for the Location then click Ok. Introduction to Azure SQL Database Service Tiers 19

20 3. Select the box on the lower right to "Host in the cloud". Selecting this option will pre-provision an Azure Website for you and make life a lot easier when it comes times to deploy the final working application. If you aren t signed in, click the Manage Subscriptions link. Click the Sign In button and use your Azure credentials. Click Close once your subscription shows up in the Accounts dialog. 4. Select OK and let Visual Studio scaffold the empty ASP.NET MVC template. If you chose to host this in the Cloud you will see at least one additional screen asking you to login to your Azure account and provide some values for your new Website. Proceed to supply all these Azure values and continue. You don t need to specify a Database server we're going to be using a new Azure DocumentDB database. Introduction to Azure SQL Database Service Tiers 20

21 Once Visual Studio has finished creating the boilerplate MVC application you have an empty ASP.NET application that you can run locally. 5. Install the DocumentDB NuGet package for the needed assemblies by clicking TOOLS -> NuGet Package Manager > Package Manager Console. 6. Type in the following command into the Package Manager Console Install-Package Microsoft.Azure.Documents.Client Pre Introduction to Azure SQL Database Service Tiers 21

22 At this point, your solution would have the necessary assemblies needed to work with DocumentDB. Let s now look at the various files that make up the application in the order they were created. Rather than show all of the code for the files, we will highlight the key elements of the program. Web.config 1. Go back to Visual Studio and review the Web.config file. The Web.config file is used to store configuration information about the web application. Typically, you would include connection string information a SQL Server database. Likewise, the application uses this file for the connection information to your DocumentDB service with the four lines that you modified earlier. <add key="endpoint" value=" <add key="authkey" value="4cwsvbmbsq66wjo99vpcmi5k0rne2mts+azdbohd2fg1jqpireywrqrded2m7hk9dxievrasrj/qbf9ks1183q=="/> <add key="database" value="todolist"/> <add key="collection" value="items"/> Models > Item.cs 1. Expand the Models folder and double click to open the Item.cs file. Introduction to Azure SQL Database Service Tiers 22

23 The Item.cs file is used by the application to capture the structure of the JSON document that captures the schema for the document under the Items collection. public class Item { [JsonProperty(PropertyName="id")] public string Id { get; set; } [JsonProperty(PropertyName = "name")] public string Name { get; set; } [JsonProperty(PropertyName = "description")] public string Description { get; set; } [JsonProperty(PropertyName = "iscomplete")] public bool Completed { get; set; } } All data in DocumentDB is passed over the wire, and stored, as JSON. To control the way your objects are serialized/deserialized by JSON.NET you can use the JsonProperty attribute as demonstrated in the Item class we just created. Not only can you control the format of the property name when it goes in to JSON, but you can entirely rename your.net properties with the Description property. You can, if you like, use JsonConverter objects here as well to completely control how serialization is handled. In order to get Visual Studio to resolve the "JsonProperty" attribute used here you need to add the following using statement to the using section of your class file: using Newtonsoft.Json; private static Database ReadOrCreateDatabase() { var db = Client.CreateDatabaseQuery().Where(d => d.id == DatabaseId).AsEnumerable().FirstOrDefault(); if (db == null) DocumentDBRepository.cs 1. Double click on the DocumentDBRepository.cs file under the todo project. This file contains all of the interaction code between the application and DocumentDB. For example, the following code starting at line 106 performs action to create a new ToDoList database if one doesn t already exist. Introduction to Azure SQL Database Service Tiers 23

24 { } db = Client.CreateDatabaseAsync(new Database { Id = DatabaseId }).Result; } return db; Notes the use for the.where using LINQ query syntax that should be very familiar to.net developers. The following code at line 91 creates the Items collection within the ToDoList database. private static DocumentCollection ReadOrCreateCollection(string databaselink) { var col = Client.CreateDocumentCollectionQuery(databaseLink).Where(c => c.id == CollectionId).AsEnumerable().FirstOrDefault(); if (col == null) { col = Client.CreateDocumentCollectionAsync(databaseLink, new DocumentCollection { Id = CollectionId }).Result; } } return col; The code at line 123 returns the list of items where iscomplete: false in the JSON document. public static List<Item> GetIncompleteItems() { return Client.CreateDocumentQuery<Item>(Collection.DocumentsLink).Where(d =>!d.completed).asenumerable().tolist<item>(); } You can review the other members used to retrieve a specific document based on an ID, update the item and delete the item. Controllers > ItemController.cs 1. Expand the Controllers folder and double click on the ItemController.cs file. The ItemController is responsible for handling the data for the web application and interacting with DocumentDB through the methods defined in the DocumentDBRepository.cs file. For example, Index() displays the items Create() adds a new item Introduction to Azure SQL Database Service Tiers 24

25 Edit() changes the existing item Delete() deletes the item The Views 1. For each of the items above, there is a set of.cshtml files that handles the display of the page elements based on the data. Expand the Views -> Item folders to see the view files. 2. Open up each of these files: Create.cshtml, Details.cshtml, Edit.cshtml and Index.cshtml to see how the page elements are handled. 3. Under the Views -> Shared folder, is the _Layout.cshtml file. This file controls the overall frame for the application. Routing commands 1. Expand the App_Start folder and open the RouteConfig.cs file. 2. Starting at line 16, the following code changes the routine behavior to use the Item controller instead of the Home controller and use Index as the view to display. routes.maproute( name: "Default", url: "{controller}/{action}/{id}", defaults: new { controller = "Item", action = "Index", id = UrlParameter.Optional } ); Now if you run the application, it will call in to your ItemController and return the results of the GetIncompleteItems method to the Views\Item\Index view. The rest of code The rest of the files in the application were generated as part of the ASP.NET MVC Web Application template. To learn more about this type of web application, see the ASP.NET topic at Introduction to Azure SQL Database Service Tiers 25

26 Deploy application to Azure Websites Now that you have the complete application working correctly against DocumentDB we're going to deploy this to Azure Websites. Steps you will perform to publish the application as an Azure Website 1. Right-click on the Project in Solution Explorer (make sure you're not still running it locally) and select Publish. 2. Click on Microsoft Azure Websites under Select a publish target. Introduction to Azure SQL Database Service Tiers 26

27 3. Click on the Sign In button. 4. Follow the prompts to enter your Microsoft ID credentials used for your Azure subscription. Note: When you sign in with your credentials, be sure to choose the option to save them. Otherwise, Visual Studio will prompt you several times during the process to use the current credentials. 5. Click on New once you are signed in. Introduction to Azure SQL Database Service Tiers 27

28 6. Enter in a valid web site name and make sure that the name validates. Change the Region value to US West to match the location of your DocumentDB service. Leave the Database server and No database since you are connecting to DocumentDB in the application. 7. Click Create to create the Azure Website. Once the action is complete, you will see the Connection page for the publishing process. Introduction to Azure SQL Database Service Tiers 28

29 Conclusion 8. Click Publish to complete the process. Visual Studio then launches the application on your Azure Website. Congratulations! You have just built your first ASP.NET MVC Application using Azure DocumentDB and published it to Azure Websites. Try extending the application Now that you have the application up and running, try modifying to do something different. For example, instead of Delete actually deleting the item, try changing the code update the IsComplete value to true. Introduction to Azure SQL Database Service Tiers 29

30 Or, try adding a new view that shows items that are marked as IsCompete or just show all the items. Roll back Azure changes Let s clean up the assets we have used during this hands on lab. Here are the items you should be delete from your subscription: Delete the Azure Website 1. Go to the Azure Preview Portal by clicking on the Preview Portal link on the IE favorites bar. 2. Click BROWSE on the left pane. 3. Click Websites in the Browse control. 4. Click in the Website name you created in the Websites blade. Introduction to Azure SQL Database Service Tiers 30

31 5. Click on the Delete button within the properties blade for your Website. 6. Click Yes to confirm. Delete DocumentDB 1. Scroll the preview back to the main Portal blade. Introduction to Azure SQL Database Service Tiers 31

32 2. Click on your DocumentDB tile as shown above. 3. Click on the Delete icon displayed in the DocumentDB database properties blade. 4. Click Yes to confirm. Note: As of October 15 th 2014, the Delete command does not work. You can now close the lab environment. Terms of use 2014 Microsoft Corporation. All rights reserved. By using this Hands-on Lab, you agree to the following terms: The technology/functionality described in this Hands-on Lab is provided by Microsoft Corporation in a sandbox testing environment for purposes of obtaining your feedback and to provide you with a learning experience. You may only use the Hands-on Lab to evaluate such technology features and functionality and provide feedback to Microsoft. You may not use it for any other purpose. You may not modify, copy, distribute, transmit, display, perform, reproduce, publish, license, create derivative works from, transfer, or sell this Hands-on Lab or any portion thereof. Introduction to Azure SQL Database Service Tiers 32

33 COPYING OR REPRODUCTION OF THE HANDS-ON LAB (OR ANY PORTION OF IT) TO ANY OTHER SERVER OR LOCATION FOR FURTHER REPRODUCTION OR REDISTRIBUTION IS EXPRESSLY PROHIBITED. THIS HANDS-ONLAB PROVIDES CERTAIN SOFTWARE TECHNOLOGY/PRODUCT FEATURES AND FUNCTIONALITY, INCLUDING POTENTIAL NEW FEATURES AND CONCEPTS, IN A SIMULATED ENVIRONMENT WITHOUT COMPLEX SET-UP OR INSTALLATION FOR THE PURPOSE DESCRIBED ABOVE. THE TECHNOLOGY/CONCEPTS REPRESENTED IN THIS HANDS-ON LAB MAY NOT REPRESENT FULL FEATURE FUNCTIONALITY AND MAY NOT WORK THE WAY A FINAL VERSION MAY WORK. WE ALSO MAY NOT RELEASE A FINAL VERSION OF SUCH FEATURES OR CONCEPTS. YOUR EXPERIENCE WITH USING SUCH FEATURES AND FUNCITONALITY IN A PHYSICAL ENVIRONMENT MAY ALSO BE DIFFERENT. FEEDBACK. If you give feedback about the technology features, functionality and/or concepts described in this Hands-on Lab to Microsoft, you give to Microsoft, without charge, the right to use, share and commercialize your feedback in any way and for any purpose. You also give to third parties, without charge, any patent rights needed for their products, technologies and services to use or interface with any specific parts of a Microsoft software or service that includes the feedback. You will not give feedback that is subject to a license that requires Microsoft to license its software or documentation to third parties because we include your feedback in them. These rights survive this agreement. MICROSOFT CORPORATION HEREBY DISCLAIMS ALL WARRANTIES AND CONDITIONS WITH REGARD TO THE HANDS-ON LAB, INCLUDING ALL WARRANTIES AND CONDITIONS OF MERCHANTABILITY, WHETHER EXPRESS, IMPLIED OR STATUTORY, FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON- INFRINGEMENT. MICROSOFT DOES NOT MAKE ANY ASSURANCES OR REPRESENTATIONS WITH REGARD TO THE ACCURACY OF THE RESULTS, OUTPUT THAT DERIVES FROM USE OF THE VIRTUAL LAB, OR SUITABILITY OF THE INFORMATION CONTAINED IN THE VIRTUAL LAB FOR ANY PURPOSE. DISCLAIMER This lab contains only a portion of new features and enhancements in Microsoft SQL Server Some of the features might change in future releases of the product. In this lab, you will learn about some, but not all, new features. Introduction to Azure SQL Database Service Tiers 33

Migrating to Azure SQL Database

Migrating to Azure SQL Database Migrating to Azure SQL Database Contents Azure account required for lab... 3 SQL Azure Migration Wizard Overview... 3 Provisioning an Azure SQL Database... 4 Exercise 1: Analyze and resolve... 8 Exercise

More information

Exploring AlwaysOn Failover Cluster Instances

Exploring AlwaysOn Failover Cluster Instances Exploring AlwaysOn Failover Cluster Instances Contents Data availability (AlwaysOn)... 3 Failover Cluster Instances (FCI)... 3 Terms of use... 23 Exploring AlwaysOn Failover Cluster Instances Data availability

More information

Exploring Organizational Security and Auditing

Exploring Organizational Security and Auditing Exploring Organizational Security and Auditing Contents Organizational security and audit... 3 Scenario 1: SQL Server audit... 3 Scenario 2: Contained Database Authentication...16 Scenario 3: User Defined

More information

Exploring Manual and Automatic Database Backup Using Microsoft Azure Storage

Exploring Manual and Automatic Database Backup Using Microsoft Azure Storage Exploring Manual and Automatic Database Backup Using Microsoft Azure Storage Contents Predictable, efficient and flexible data backups certainty of availability... 3 Provisioning a Windows Azure Storage

More information

Exploring SQL Server Data Tools in Visual Studio 2013

Exploring SQL Server Data Tools in Visual Studio 2013 Exploring SQL Server Data Tools in Visual Studio 2013 Contents Azure account required for last exercise... 3 Optimized productivity One set of tools for everything... 3 Using SSIS project to export a table

More information

Exploring SQL Server 2014 Database Deployment in Microsoft Azure Virtual Machines

Exploring SQL Server 2014 Database Deployment in Microsoft Azure Virtual Machines Exploring SQL Server 2014 Database Deployment in Microsoft Azure Virtual Machines Contents Provisioning a Windows Azure Storage Account... 3 Provisioning a SQL Server VM in Windows Azure.. 9 Prepare client

More information

Using Application Insights to Monitor your Applications

Using Application Insights to Monitor your Applications Using Application Insights to Monitor your Applications Overview In this lab, you will learn how to add Application Insights to a web application in order to better detect issues, solve problems, and continuously

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 October 2014 2014 Ed-Fi Alliance, LLC. All rights reserved. Ed-Fi is a registered trademark

More information

Using Microsoft Azure for Students

Using Microsoft Azure for Students Using Microsoft Azure for Students Dive into Azure through Microsoft Imagine s free new offer and learn how to develop and deploy to the cloud, at no cost! To take advantage of Microsoft s cloud development

More information

Building a web application with ASP.NET MVC using DocumentDB

Building a web application with ASP.NET MVC using DocumentDB Page 1 of 34 Building a web application with ASP.NET MVC using DocumentDB Azure DocumentDB is a fully-managed, highly-scalable, NoSQL document database service provided by Azure. Its many benefits include

More information

Working with SQL Server Integration Services

Working with SQL Server Integration Services SQL Server Integration Services (SSIS) is a set of tools that let you transfer data to and from SQL Server 2005. In this lab, you ll work with the SQL Server Business Intelligence Development Studio to

More information

System Administration Training Guide. S100 Installation and Site Management

System Administration Training Guide. S100 Installation and Site Management System Administration Training Guide S100 Installation and Site Management Table of contents System Requirements for Acumatica ERP 4.2... 5 Learning Objects:... 5 Web Browser... 5 Server Software... 5

More information

Dell Statistica Document Management System (SDMS) Installation Instructions

Dell Statistica Document Management System (SDMS) Installation Instructions Dell Statistica Document Management System (SDMS) Installation Instructions 2015 Dell Inc. ALL RIGHTS RESERVED. This guide contains proprietary information protected by copyright. The software described

More information

DreamFactory on Microsoft SQL Azure

DreamFactory on Microsoft SQL Azure DreamFactory on Microsoft SQL Azure Account Setup and Installation Guide For general information about the Azure platform, go to http://www.microsoft.com/windowsazure/. For general information about the

More information

Scribe Online Integration Services (IS) Tutorial

Scribe Online Integration Services (IS) Tutorial Scribe Online Integration Services (IS) Tutorial 7/6/2015 Important Notice No part of this publication may be reproduced, stored in a retrieval system, or transmitted in any form or by any means, photocopying,

More information

Exploring In-Memory OLTP

Exploring In-Memory OLTP Exploring In-Memory OLTP Contents See the Impact of In-Memory Features... 3 Faster Way to Process Data... 8 Creating Memory-Optimized Data and Filegroups.. 9 Creating Memory-Optimized Tables and Indexes...15

More information

Citrix Virtual Classroom. Deliver file sharing and synchronization services using Citrix ShareFile. Self-paced exercise guide

Citrix Virtual Classroom. Deliver file sharing and synchronization services using Citrix ShareFile. Self-paced exercise guide Deliver file sharing and synchronization services using Citrix ShareFile Self-paced exercise guide Table of Contents Table of Contents... 2 Overview... 3 Exercise 1: Setting up a ShareFile Account... 6

More information

Interworks. Interworks Cloud Platform Installation Guide

Interworks. Interworks Cloud Platform Installation Guide Interworks Interworks Cloud Platform Installation Guide Published: March, 2014 This document contains information proprietary to Interworks and its receipt or possession does not convey any rights to reproduce,

More information

Introduction to Building Windows Store Apps with Windows Azure Mobile Services

Introduction to Building Windows Store Apps with Windows Azure Mobile Services Introduction to Building Windows Store Apps with Windows Azure Mobile Services Overview In this HOL you will learn how you can leverage Visual Studio 2012 and Windows Azure Mobile Services to add structured

More information

SQL Server 2005 Reporting Services (SSRS)

SQL Server 2005 Reporting Services (SSRS) SQL Server 2005 Reporting Services (SSRS) Author: Alex Payne and Brian Welcker Published: May 2005 Summary: SQL Server 2005 Reporting Services is a key component of SQL Server 2005. Reporting Services

More information

Getting Started with Elastic DB Database Tools with Azure SQL

Getting Started with Elastic DB Database Tools with Azure SQL Page 1 of 15 Getting Started with Elastic DB Database Tools with Azure SQL Growing and shrinking capacity on demand is one of the key cloud computing promises. Delivering on this promise has historically

More information

BID2WIN Workshop. Advanced Report Writing

BID2WIN Workshop. Advanced Report Writing BID2WIN Workshop Advanced Report Writing Please Note: Please feel free to take this workbook home with you! Electronic copies of all lab documentation are available for download at http://www.bid2win.com/userconf/2011/labs/

More information

Learn About Analysis, Interactive Reports, and Dashboards

Learn About Analysis, Interactive Reports, and Dashboards Learn About Analysis, Interactive Reports, and Dashboards This document supports Pentaho Business Analytics Suite 5.0 GA and Pentaho Data Integration 5.0 GA, documentation revision February 3, 2014, copyright

More information

14.1. bs^ir^qfkd=obcib`qflk= Ñçê=emI=rkfuI=~åÇ=léÉåsjp=eçëíë

14.1. bs^ir^qfkd=obcib`qflk= Ñçê=emI=rkfuI=~åÇ=léÉåsjp=eçëíë 14.1 bs^ir^qfkd=obcib`qflk= Ñçê=emI=rkfuI=~åÇ=léÉåsjp=eçëíë bî~äì~íáåö=oéñäéåíáçå=ñçê=emi=rkfui=~åç=lééåsjp=eçëíë This guide walks you quickly through key Reflection features. It covers: Getting Connected

More information

Hands-On Lab. Embracing Continuous Delivery with Release Management for Visual Studio 2013. Lab version: 12.0.21005.1 Last updated: 12/11/2013

Hands-On Lab. Embracing Continuous Delivery with Release Management for Visual Studio 2013. Lab version: 12.0.21005.1 Last updated: 12/11/2013 Hands-On Lab Embracing Continuous Delivery with Release Management for Visual Studio 2013 Lab version: 12.0.21005.1 Last updated: 12/11/2013 CONTENTS OVERVIEW... 3 EXERCISE 1: RELEASE MANAGEMENT OVERVIEW...

More information

Ricardo Perdigao, Solutions Architect Edsel Garcia, Principal Software Engineer Jean Munro, Senior Systems Engineer Dan Mitchell, Principal Systems

Ricardo Perdigao, Solutions Architect Edsel Garcia, Principal Software Engineer Jean Munro, Senior Systems Engineer Dan Mitchell, Principal Systems A Sexy UI for Progress OpenEdge using JSDO and Kendo UI Ricardo Perdigao, Solutions Architect Edsel Garcia, Principal Software Engineer Jean Munro, Senior Systems Engineer Dan Mitchell, Principal Systems

More information

Creating Database Tables in Microsoft SQL Server

Creating Database Tables in Microsoft SQL Server Creating Database Tables in Microsoft SQL Server Microsoft SQL Server is a relational database server that stores and retrieves data for multi-user network-based applications. SQL Server databases are

More information

Windows Azure Pack Installation and Initial Configuration

Windows Azure Pack Installation and Initial Configuration Windows Azure Pack Installation and Initial Configuration Windows Server 2012 R2 Hands-on lab In this lab, you will learn how to install and configure the components of the Windows Azure Pack. To complete

More information

Baylor Secure Messaging. For Non-Baylor Users

Baylor Secure Messaging. For Non-Baylor Users Baylor Secure Messaging For Non-Baylor Users TABLE OF CONTENTS SECTION ONE: GETTING STARTED...4 Receiving a Secure Message for the First Time...4 Password Configuration...5 Logging into Baylor Secure Messaging...7

More information

Hands on Lab: Building a Virtual Machine and Uploading VM Images to the Cloud using Windows Azure Infrastructure Services

Hands on Lab: Building a Virtual Machine and Uploading VM Images to the Cloud using Windows Azure Infrastructure Services Hands on Lab: Building a Virtual Machine and Uploading VM Images to the Cloud using Windows Azure Infrastructure Services Windows Azure Infrastructure Services provides cloud based storage, virtual networks

More information

Contents Notice to Users

Contents  Notice to Users Web Remote Access Contents Web Remote Access Overview... 1 Setting Up Web Remote Access... 2 Editing Web Remote Access Settings... 5 Web Remote Access Log... 7 Accessing Your Home Network Using Web Remote

More information

ICONICS Using the Azure Cloud Connector

ICONICS Using the Azure Cloud Connector Description: Guide to use the Azure Cloud Connector General Requirement: Valid account for Azure, including Cloud Service, SQL Azure and Azure Storage. Introduction Cloud Connector is a FrameWorX Server

More information

Web Remote Access. User Guide

Web Remote Access. User Guide Web Remote Access User Guide Notice to Users 2005 2Wire, Inc. All rights reserved. This manual in whole or in part, may not be reproduced, translated, or reduced to any machine-readable form without prior

More information

Business Portal for Microsoft Dynamics GP 2010. Field Service Suite

Business Portal for Microsoft Dynamics GP 2010. Field Service Suite Business Portal for Microsoft Dynamics GP 2010 Field Service Suite Copyright Copyright 2010 Microsoft. All rights reserved. Limitation of liability This document is provided as-is. Information and views

More information

System Center 2012 R2 Lab 5: Application Management

System Center 2012 R2 Lab 5: Application Management System Center 2012 R2 Lab 5: Application Management Hands-On Lab Step-by-Step Guide For the VMs use the following credentials: Username: Contoso\Administrator Password: Passw0rd! Version: 1.5.5 Last updated:

More information

MICROSOFT BITLOCKER ADMINISTRATION AND MONITORING (MBAM)

MICROSOFT BITLOCKER ADMINISTRATION AND MONITORING (MBAM) MICROSOFT BITLOCKER ADMINISTRATION AND MONITORING (MBAM) MICROSOFT BITLOCKER ADMINISTRATION AND MONITORING (MBAM) Microsoft BitLocker Administration and Monitoring (MBAM) provides a simplified administrative

More information

Lab 00: Configuring the Microsoft Lync Ignite Environment Cloud Hosted Version

Lab 00: Configuring the Microsoft Lync Ignite Environment Cloud Hosted Version Lab 00: Configuring the Microsoft Lync Ignite Environment Cloud Hosted Version DISCLAIMER 2013 Microsoft Corporation. All rights reserved. Microsoft, Active Directory, Forefront, Hyper-V, Internet Explorer,

More information

How To Use Query Console

How To Use Query Console Query Console User Guide 1 MarkLogic 8 February, 2015 Last Revised: 8.0-1, February, 2015 Copyright 2015 MarkLogic Corporation. All rights reserved. Table of Contents Table of Contents Query Console User

More information

Installing Windows Server Update Services (WSUS) on Windows Server 2012 R2 Essentials

Installing Windows Server Update Services (WSUS) on Windows Server 2012 R2 Essentials Installing Windows Server Update Services (WSUS) on Windows Server 2012 R2 Essentials With Windows Server 2012 R2 Essentials in your business, it is important to centrally manage your workstations to ensure

More information

Lab 05: Deploying Microsoft Office Web Apps Server

Lab 05: Deploying Microsoft Office Web Apps Server Lab 05: Deploying Microsoft Office Web Apps Server DISCLAIMER 2013 Microsoft Corporation. All rights reserved. Microsoft, Active Directory, Hyper-V, Internet Explorer, Lync, PowerPoint, Silverlight, SQL

More information

Installation Guide for Pulse on Windows Server 2012

Installation Guide for Pulse on Windows Server 2012 MadCap Software Installation Guide for Pulse on Windows Server 2012 Pulse Copyright 2014 MadCap Software. All rights reserved. Information in this document is subject to change without notice. The software

More information

UP L18 Enhanced MDM and Updated Email Protection Hands-On Lab

UP L18 Enhanced MDM and Updated Email Protection Hands-On Lab UP L18 Enhanced MDM and Updated Email Protection Hands-On Lab Description The Symantec App Center platform continues to expand it s offering with new enhanced support for native agent based device management

More information

Guide to Setting up Docs2Manage using Cloud Services

Guide to Setting up Docs2Manage using Cloud Services COMvantage Solutions Presents: Version 3.x Cloud based Document Management Guide to Setting up Docs2Manage using Cloud Services Docs2Manage Support: Email: service@docs2manage.com Phone: +1.847.690.9900

More information

Microsoft Dynamics GP. Workflow Installation Guide Release 10.0

Microsoft Dynamics GP. Workflow Installation Guide Release 10.0 Microsoft Dynamics GP Workflow Installation Guide Release 10.0 Copyright Copyright 2008 Microsoft Corporation. All rights reserved. Complying with all applicable copyright laws is the responsibility of

More information

NSi Mobile Installation Guide. Version 6.2

NSi Mobile Installation Guide. Version 6.2 NSi Mobile Installation Guide Version 6.2 Revision History Version Date 1.0 October 2, 2012 2.0 September 18, 2013 2 CONTENTS TABLE OF CONTENTS PREFACE... 5 Purpose of this Document... 5 Version Compatibility...

More information

Team Foundation Server 2010, Visual Studio Ultimate 2010, Team Build 2010, & Lab Management Beta 2 Installation Guide

Team Foundation Server 2010, Visual Studio Ultimate 2010, Team Build 2010, & Lab Management Beta 2 Installation Guide Page 1 of 243 Team Foundation Server 2010, Visual Studio Ultimate 2010, Team Build 2010, & Lab Management Beta 2 Installation Guide (This is an alpha version of Benjamin Day Consulting, Inc. s installation

More information

Visual Studio.NET Database Projects

Visual Studio.NET Database Projects Visual Studio.NET Database Projects CHAPTER 8 IN THIS CHAPTER Creating a Database Project 294 Database References 296 Scripts 297 Queries 312 293 294 Visual Studio.NET Database Projects The database project

More information

TIBCO Spotfire Metrics Prerequisites and Installation

TIBCO Spotfire Metrics Prerequisites and Installation TIBCO Spotfire Metrics Prerequisites and Installation Software Release 6.0 November 2013 Two-Second Advantage 2 Important Information SOME TIBCO SOFTWARE EMBEDS OR BUNDLES OTHER TIBCO SOFTWARE. USE OF

More information

owncloud Configuration and Usage Guide

owncloud Configuration and Usage Guide owncloud Configuration and Usage Guide This guide will assist you with configuring and using YSUʼs Cloud Data storage solution (owncloud). The setup instructions will include how to navigate the web interface,

More information

Server Installation Guide ZENworks Patch Management 6.4 SP2

Server Installation Guide ZENworks Patch Management 6.4 SP2 Server Installation Guide ZENworks Patch Management 6.4 SP2 02_016N 6.4SP2 Server Installation Guide - 2 - Notices Version Information ZENworks Patch Management Server Installation Guide - ZENworks Patch

More information

How To Configure A Windows 8.1 On A Windows 7.1.1 (Windows) With A Powerpoint (Windows 8) On A Blackberry) On An Ipad Or Ipad (Windows 7) On Your Blackberry Or Black

How To Configure A Windows 8.1 On A Windows 7.1.1 (Windows) With A Powerpoint (Windows 8) On A Blackberry) On An Ipad Or Ipad (Windows 7) On Your Blackberry Or Black Introduction to Cloud-Based Mobile Device Management with Intune Information in this document, including URLs and other Internet Web site references, is subject to change without notice. Unless otherwise

More information

Basic Web Development @ Fullerton College

Basic Web Development @ Fullerton College Basic Web Development @ Fullerton College Introduction FC Net Accounts Obtaining Web Space Accessing your web space using MS FrontPage Accessing your web space using Macromedia Dreamweaver Accessing your

More information

Using Protection Engine for Cloud Services for URL Filtering, Malware Protection and Proxy Integration Hands-On Lab

Using Protection Engine for Cloud Services for URL Filtering, Malware Protection and Proxy Integration Hands-On Lab Using Protection Engine for Cloud Services for URL Filtering, Malware Protection and Proxy Integration Hands-On Lab Description In this hands-on session, you will learn how to turn your proxy into a security

More information

FOR WINDOWS FILE SERVERS

FOR WINDOWS FILE SERVERS Quest ChangeAuditor FOR WINDOWS FILE SERVERS 5.1 User Guide Copyright Quest Software, Inc. 2010. All rights reserved. This guide contains proprietary information protected by copyright. The software described

More information

Installing OGDI DataLab version 5 on Azure

Installing OGDI DataLab version 5 on Azure Installing OGDI DataLab version 5 on Azure Using Azure Portal ver.2 August 2012 (updated February 2012) Configuring a Windows Azure Account This set of articles will walk you through the setup of the Windows

More information

TSM Studio Server User Guide 2.9.0.0

TSM Studio Server User Guide 2.9.0.0 TSM Studio Server User Guide 2.9.0.0 1 Table of Contents Disclaimer... 4 What is TSM Studio Server?... 5 System Requirements... 6 Database Requirements... 6 Installing TSM Studio Server... 7 TSM Studio

More information

Workflow approval via email

Workflow approval via email Microsoft Dynamics AX Workflow approval via email White Paper This document highlights the functionality in Microsoft Dynamics AX 2012 R2 that allows workflow to be configured so that a user can take approval

More information

Legal Information Trademarks Licensing Disclaimer

Legal Information Trademarks Licensing Disclaimer Scribe Insight Tutorials www.scribesoft.com 10/1/2014 Legal Information 1996-2014 Scribe Software Corporation. All rights reserved. Complying with all applicable copyright laws is the responsibility of

More information

Sample- for evaluation purposes only! Advanced Outlook. TeachUcomp, Inc. A Presentation of TeachUcomp Incorporated. Copyright TeachUcomp, Inc.

Sample- for evaluation purposes only! Advanced Outlook. TeachUcomp, Inc. A Presentation of TeachUcomp Incorporated. Copyright TeachUcomp, Inc. A Presentation of TeachUcomp Incorporated. Copyright TeachUcomp, Inc. 2012 Advanced Outlook TeachUcomp, Inc. it s all about you Copyright: TeachUcomp, Inc. Phone: (877) 925-8080 Web: http://www.teachucomp.com

More information

IC L05: Email Security.cloud Configuring DLP on to your email flow & Applying security to your Office 365 or Google Apps email deployment Hands-On Lab

IC L05: Email Security.cloud Configuring DLP on to your email flow & Applying security to your Office 365 or Google Apps email deployment Hands-On Lab IC L05: Email Security.cloud Configuring DLP on to your email flow & Applying security to your Office 365 or Google Apps email deployment Hands-On Lab Description This session is for existing customers

More information

Using the Query Analyzer

Using the Query Analyzer Using the Query Analyzer Using the Query Analyzer Objectives Explore the Query Analyzer user interface. Learn how to use the menu items and toolbars to work with SQL Server data and objects. Use object

More information

SAS BI Dashboard 4.3. User's Guide. SAS Documentation

SAS BI Dashboard 4.3. User's Guide. SAS Documentation SAS BI Dashboard 4.3 User's Guide SAS Documentation The correct bibliographic citation for this manual is as follows: SAS Institute Inc. 2010. SAS BI Dashboard 4.3: User s Guide. Cary, NC: SAS Institute

More information

Installation Guide v3.0

Installation Guide v3.0 Installation Guide v3.0 Shepherd TimeClock 4465 W. Gandy Blvd. Suite 800 Tampa, FL 33611 Phone: 813-882-8292 Fax: 813-839-7829 http://www.shepherdtimeclock.com The information contained in this document

More information

Search help. More on Office.com: images templates

Search help. More on Office.com: images templates Page 1 of 14 Access 2010 Home > Access 2010 Help and How-to > Getting started Search help More on Office.com: images templates Access 2010: database tasks Here are some basic database tasks that you can

More information

LANDESK Service Desk. Desktop Manager

LANDESK Service Desk. Desktop Manager LANDESK Service Desk Desktop Manager LANDESK SERVICE DESK DESKTOP MANAGER GUIDE This document contains information, which is the confidential information and/or proprietary property of LANDESK Software,

More information

QUANTIFY INSTALLATION GUIDE

QUANTIFY INSTALLATION GUIDE QUANTIFY INSTALLATION GUIDE Thank you for putting your trust in Avontus! This guide reviews the process of installing Quantify software. For Quantify system requirement information, please refer to the

More information

[The BSD License] Copyright (c) 2004-2011 Jaroslaw Kowalski jaak@jkowalski.net

[The BSD License] Copyright (c) 2004-2011 Jaroslaw Kowalski jaak@jkowalski.net Software used by portions of this application require the following license statement: [The BSD License] Copyright (c) 2004-2011 Jaroslaw Kowalski jaak@jkowalski.net All rights reserved. Redistribution

More information

WINDOWS 7 & HOMEGROUP

WINDOWS 7 & HOMEGROUP WINDOWS 7 & HOMEGROUP SHARING WITH WINDOWS XP, WINDOWS VISTA & OTHER OPERATING SYSTEMS Abstract The purpose of this white paper is to explain how your computers that are running previous versions of Windows

More information

Dell Statistica 13.0. Statistica Enterprise Installation Instructions

Dell Statistica 13.0. Statistica Enterprise Installation Instructions Dell Statistica 13.0 2015 Dell Inc. ALL RIGHTS RESERVED. This guide contains proprietary information protected by copyright. The software described in this guide is furnished under a software license or

More information

Silect Software s MP Author

Silect Software s MP Author Silect MP Author for Microsoft System Center Operations Manager Silect Software s MP Author User Guide September 2, 2015 Disclaimer The information in this document is furnished for informational use only,

More information

GP REPORTS VIEWER USER GUIDE

GP REPORTS VIEWER USER GUIDE GP Reports Viewer Dynamics GP Reporting Made Easy GP REPORTS VIEWER USER GUIDE For Dynamics GP Version 2015 (Build 5) Dynamics GP Version 2013 (Build 14) Dynamics GP Version 2010 (Build 65) Last updated

More information

Pipeliner CRM Phaenomena Guide Add-In for MS Outlook. 2015 Pipelinersales Inc. www.pipelinersales.com

Pipeliner CRM Phaenomena Guide Add-In for MS Outlook. 2015 Pipelinersales Inc. www.pipelinersales.com Add-In for MS Outlook 205 Pipelinersales Inc. www.pipelinersales.com Add-In for MS Outlook Learn how to use sales lead management with Pipeliner MS Outlook Add-In. CONTENT. Setting up Pipeliner Add-In

More information

Lab - Building an Internet of Things Application Hands-On Lab

Lab - Building an Internet of Things Application Hands-On Lab Lab - Building an Internet of Things Application Hands-On Lab Table of contents 1. Creating a Bluemix Application... 3 2. Create and add an Internet of Things Service... 4 2.Wire the connected device s

More information

IBM Information Server

IBM Information Server IBM Information Server Version 8 Release 1 IBM Information Server Administration Guide SC18-9929-01 IBM Information Server Version 8 Release 1 IBM Information Server Administration Guide SC18-9929-01

More information

Virtual Owl. Guide for Windows. University Information Technology Services. Training, Outreach, Learning Technologies & Video Production

Virtual Owl. Guide for Windows. University Information Technology Services. Training, Outreach, Learning Technologies & Video Production Virtual Owl Guide for Windows University Information Technology Services Training, Outreach, Learning Technologies & Video Production Copyright 2015 KSU Division of University Information Technology Services

More information

www.dfcconsultants.com 800-277-5561 Microsoft Dynamics GP Audit Trails

www.dfcconsultants.com 800-277-5561 Microsoft Dynamics GP Audit Trails www.dfcconsultants.com 800-277-5561 Microsoft Dynamics GP Audit Trails Copyright Copyright 2010 Microsoft. All rights reserved. Limitation of liability This document is provided as-is. Information and

More information

Dell One Identity Cloud Access Manager 8.0.1 - How to Configure Microsoft Office 365

Dell One Identity Cloud Access Manager 8.0.1 - How to Configure Microsoft Office 365 Dell One Identity Cloud Access Manager 8.0.1 - How to Configure Microsoft Office 365 May 2015 This guide describes how to configure Microsoft Office 365 for use with Dell One Identity Cloud Access Manager

More information

Spotlight on Active Directory 6.8.1. Quick Start Guide

Spotlight on Active Directory 6.8.1. Quick Start Guide Spotlight on Active Directory 6.8.1 Quick Start Guide 2010 Quest Software, Inc. ALL RIGHTS RESERVED. This guide contains proprietary information protected by copyright. The software described in this guide

More information

MATLAB Distributed Computing Server with HPC Cluster in Microsoft Azure

MATLAB Distributed Computing Server with HPC Cluster in Microsoft Azure MATLAB Distributed Computing Server with HPC Cluster in Microsoft Azure Introduction This article shows you how to deploy the MATLAB Distributed Computing Server (hereinafter referred to as MDCS) with

More information

Installation Guide for Pulse on Windows Server 2008R2

Installation Guide for Pulse on Windows Server 2008R2 MadCap Software Installation Guide for Pulse on Windows Server 2008R2 Pulse Copyright 2014 MadCap Software. All rights reserved. Information in this document is subject to change without notice. The software

More information

EventTracker: Support to Non English Systems

EventTracker: Support to Non English Systems EventTracker: Support to Non English Systems Publication Date: April 25, 2012 EventTracker 8815 Centre Park Drive Columbia MD 21045 www.eventtracker.com Introduction This document has been prepared to

More information

Writers: Joanne Hodgins, Omri Bahat, Morgan Oslake, and Matt Hollingsworth

Writers: Joanne Hodgins, Omri Bahat, Morgan Oslake, and Matt Hollingsworth SQL Server Technical Article Writers: Joanne Hodgins, Omri Bahat, Morgan Oslake, and Matt Hollingsworth Technical Reviewer: Dan Jones Published: August 2009 Applies to: SQL Server 2008 R2, August CTP Summary:

More information

Microsoft Dynamics GP 2010. SQL Server Reporting Services Guide

Microsoft Dynamics GP 2010. SQL Server Reporting Services Guide Microsoft Dynamics GP 2010 SQL Server Reporting Services Guide April 4, 2012 Copyright Copyright 2012 Microsoft. All rights reserved. Limitation of liability This document is provided as-is. Information

More information

How To Create An Easybelle History Database On A Microsoft Powerbook 2.5.2 (Windows)

How To Create An Easybelle History Database On A Microsoft Powerbook 2.5.2 (Windows) Introduction EASYLABEL 6 has several new features for saving the history of label formats. This history can include information about when label formats were edited and printed. In order to save this history,

More information

Richmond SupportDesk Web Reports Module For Richmond SupportDesk v6.72. User Guide

Richmond SupportDesk Web Reports Module For Richmond SupportDesk v6.72. User Guide Richmond SupportDesk Web Reports Module For Richmond SupportDesk v6.72 User Guide Contents 1 Introduction... 4 2 Requirements... 5 3 Important Note for Customers Upgrading... 5 4 Installing the Web Reports

More information

EMC ViPR Controller Add-in for Microsoft System Center Virtual Machine Manager

EMC ViPR Controller Add-in for Microsoft System Center Virtual Machine Manager EMC ViPR Controller Add-in for Microsoft System Center Virtual Machine Manager Version 2.3 Installation and Configuration Guide 302-002-080 01 Copyright 2013-2015 EMC Corporation. All rights reserved.

More information

Lab 07: Configuring High Availability and Disaster Recovery in Microsoft Lync Server 2013

Lab 07: Configuring High Availability and Disaster Recovery in Microsoft Lync Server 2013 Lab 07: Configuring High Availability and Disaster Recovery in Microsoft Lync Server 2013 DISCLAIMER 2013 Microsoft Corporation. All rights reserved. Microsoft, Active Directory, Forefront, Hyper-V, Internet

More information

HOTPin Integration Guide: DirectAccess

HOTPin Integration Guide: DirectAccess 1 HOTPin Integration Guide: DirectAccess Disclaimer Disclaimer of Warranties and Limitation of Liabilities All information contained in this document is provided 'as is'; Celestix assumes no responsibility

More information

Event Manager. LANDesk Service Desk

Event Manager. LANDesk Service Desk Event Manager LANDesk Service Desk LANDESK SERVICE DESK EVENT MANAGER GUIDE This document contains information that is the proprietary and confidential property of LANDesk Software, Inc. and/or its affiliated

More information

enicq 5 System Administrator s Guide

enicq 5 System Administrator s Guide Vermont Oxford Network enicq 5 Documentation enicq 5 System Administrator s Guide Release 2.0 Published November 2014 2014 Vermont Oxford Network. All Rights Reserved. enicq 5 System Administrator s Guide

More information

Application. 1.1 About This Tutorial. 1.1.1 Tutorial Requirements. 1.1.2 Provided Files

Application. 1.1 About This Tutorial. 1.1.1 Tutorial Requirements. 1.1.2 Provided Files About This Tutorial 1Creating an End-to-End HL7 Over MLLP Application 1.1 About This Tutorial 1.1.1 Tutorial Requirements 1.1.2 Provided Files This tutorial takes you through the steps of creating an end-to-end

More information

CaseWare Time. CaseWare Cloud Integration Guide. For Time 2015 and CaseWare Cloud

CaseWare Time. CaseWare Cloud Integration Guide. For Time 2015 and CaseWare Cloud CaseWare Time CaseWare Cloud Integration Guide For Time 2015 and CaseWare Cloud Copyright and Trademark Notice Copyright. 2015 CaseWare International Inc. ( CWI ). All Rights Reserved. Use, duplication,

More information

Cloud Administration Guide for Service Cloud. August 2015 E65820-01

Cloud Administration Guide for Service Cloud. August 2015 E65820-01 Cloud Administration Guide for Service Cloud August 2015 E65820-01 Table of Contents Introduction 4 How does Policy Automation work with Oracle Service Cloud? 4 For Customers 4 For Employees 4 Prerequisites

More information

7.5 7.5. Spotlight on Messaging. Evaluator s Guide

7.5 7.5. Spotlight on Messaging. Evaluator s Guide 7.5 Spotlight on Messaging 7.5 Evaluator s Guide 2010 Quest Software, Inc. ALL RIGHTS RESERVED. This guide contains proprietary information protected by copyright. The software described in this guide

More information

Microsoft Office Access 2007 which I refer to as Access throughout this book

Microsoft Office Access 2007 which I refer to as Access throughout this book Chapter 1 Getting Started with Access In This Chapter What is a database? Opening Access Checking out the Access interface Exploring Office Online Finding help on Access topics Microsoft Office Access

More information

User Guide Release 3.5

User Guide Release 3.5 September 19, 2013 User Guide Release 3.5 User Guide Revision/Update Information: September 19, 2013 Software Version: PowerBroker Auditor for File System 3.5 Revision Number: 0 COPYRIGHT NOTICE Copyright

More information

Windows XP File Management

Windows XP File Management Windows XP File Management As you work with a computer creating more and more documents, you need to find a way to keep this information organized. Without a good organizational method, all your files

More information

Managing Software Updates with System Center 2012 R2 Configuration Manager

Managing Software Updates with System Center 2012 R2 Configuration Manager Managing Software Updates with System Center 2012 R2 Configuration Manager Managing Microsoft Updates with Configuration Manager 2012 R2 This document is for informational purposes only. MICROSOFT MAKES

More information

K2 Designer for SharePoint Hands-On Exercise - Leave Request process

K2 Designer for SharePoint Hands-On Exercise - Leave Request process K2 Designer for SharePoint Hands-On Exercise - This hands-on learning module will guide process designers through creating a list-item based workflow using the K2 Designer for SharePoint Contents Module

More information

Customizing Remote Desktop Web Access by Using Windows SharePoint Services Stepby-Step

Customizing Remote Desktop Web Access by Using Windows SharePoint Services Stepby-Step Customizing Remote Desktop Web Access by Using Windows SharePoint Services Stepby-Step Guide Microsoft Corporation Published: July 2009 Updated: September 2009 Abstract Remote Desktop Web Access (RD Web

More information