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

Size: px
Start display at page:

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

Transcription

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

2 CONTENTS OVERVIEW... 3 EXERCISE 1: RELEASE MANAGEMENT OVERVIEW... 4 EXERCISE 2: CONFIGURING RELEASE MANAGEMENT EXERCISE 3: DEFINING A RELEASE PATH AND TEMPLATE EXERCISE 4: RELEASE AUTOMATION EXAMPLE... 30

3 Overview In this lab, you will learn about Release Management for Visual Studio 2013 and its suite of release and deployment tools that automate the deployment of applications across the desktop, server, and the cloud. Release Management for Visual Studio 2013 helps development and operations teams integrate with Team Foundation Server 2013 to configure and automate complex deployments of their automated builds to target environments more easily. Development teams can also model their release processes and track approvals, sign-offs, and visualize their release status. Note: If you want to skip the overview and configuration exercises and go straight to a live demonstration in action, you can start with Exercise 4. If you are new to Release Management, however, it is recommended that you at least read the first few exercises for some background information. Prerequisites In order to complete this lab you will need the Visual Studio 2013 virtual machine provided by Microsoft. For more information on acquiring and using this virtual machine, please see this blog post. About the Fabrikam Fiber Scenario This set of hands-on-labs uses a fictional company, Fabrikam Fiber, as a backdrop to the scenarios you are learning about. Fabrikam Fiber provides cable television and related services to the United States. They are growing rapidly and have embraced Windows Azure to scale their customer-facing web site directly to end-users to allow them to self-service tickets and track technicians. They also use an onpremises ASP.NET MVC application for their customer service representatives to administer customer orders. In this set of hands-on labs, you will take part in a number of scenarios that involve the development and testing team at Fabrikam Fiber. The team, which consists of 8-10 people, has decided to use Visual Studio application lifecycle management tools to manage their source code, run their builds, test their web sites, and plan and track the project. Exercises This hands-on lab includes the following exercises: 1. Release Management Overview 2. Configuring Release Management

4 3. Defining a Release Path and Template 4. Release Automation Example Estimated time to complete this lab: 60 minutes. Exercise 1: Release Management Overview In this exercise, you will learn about the Release Management product and how it interfaces with Team Foundation Server to provide an automated deployment solution. You will also see what an example release workflow looks like from the Release Management web client. 1. Log in as Brian Keller (VSALM\Brian). All user passwords are P2ssw0rd. 2. The goal of Release Management s architecture is to provide a mechanism where application components can be deployed automatically to various target servers in different environments. The components may require different configurations on the various servers but we still want to deploy the same package to all of them. Another key goal is to keep all the configuration information centralized and manage the deployments as part of a business driven release workflow that involves multiple roles in the organization. 3. In order to accomplish these goals, Release Management is based on four main components. Figure 1 Release Management components

5 Release Management Server. The server component is the heart of the solution and consists of the database, the workflow controller, and a dispatcher that synchronizes activities with the target servers. Release Management Client. The client comes in two flavors, a Windows Presentation Foundation (WPF) based client that exposes all the functionalities of the application and a webclient designed for testers, user acceptance approvers and managers. Release Management Deployer. The deployer is a service that is installed on the target servers where the application components need to be deployed. It is important to note that the Release Management Server does not require access to the target servers as all operations are based on a pull mechanism from the Deployer. Deployer Tools. The Release Management solution provides various installation tools that assist different deployment scenarios such as uninstalling/installing components, deploying reports to Microsoft SQL Reporting Services, and moving files to specific locations. Note: This self-contained virtual machine has all Release Management components installed on it for demonstration purposes, including the deployment service. 4. It is important to note that the Release Manage product, after having been acquired by Microsoft, will continue to be transformed and integrated into existing tools. The release management authoring components will be included in Visual Studio Test Professional, Visual Studio Premium, and Visual Studio Ultimate. Everything needed to participate in a release process will be included in the Team Foundation Server CAL. Server components will be integrated into Team Foundation Server The deployers (which are required for each node you deploy on) will continue to be licensed separately. 5. The basic mechanism used in Release Management is to have the users interact with the server through the appropriate client where new release requests or stage approvals will trigger deployment requests to the next stage in the release path. Launch the Release Management web application by navigating to Note that we do not currently have any pending approval requests.

6 Figure 2 Release Management web application 6. Select the Previously Approved link and note that there was a release triggered by a build of the Fabrikam Call Center. Figure 3 Viewing previous approvals 7. Select the link displaying the number of deployed components (just underneath the name Brian Keller). Figure 4

7 Location of components link 8. This shows us the components that were deployed during each stage of the release path. In this particular case, it was just a specific build of a web site. Figure 5 Viewing components deployed 9. Press the Escape key to close the dialog window. 10. Note that we can see at a glance that the deployment is currently in the production stage. Select the stages link to view the historical workflow and approvals that occurred to get to that point. Figure 6 Location of stages link 11. This dialog window shows the workflow steps and results that occurred in the Prod (production) stage. It was manually accepted from the previous stage by Brian Keller, automatically installed to the deployment environment, and finally validated by Brian once again.

8 Figure 7 Prod stage historical workflow 12. Select the Previous Stage link. Figure 8

9 Location of Previous Stage link 13. This stage was setup to be for QA. Note that this stage has more workflow automation in place it automatically accepts, installs, and validates the application and then waits for a QA team member to approve it. Figure 9 QA stage historical workflow Note: The setup used for the stages seen in this lab are for demonstration purposes only. In normal scenarios, the QA stage would not automate the acceptance step. It would usually be setup for an owner of that stage to decide when to deploy a new version. 14. Select the Previous Stage link to view the Dev (development) stage history. There is quite a bit of automation going on here as well, but note that manual approval was necessary in order for transition to the QA stage. This final approver simply indicates that the current version meets all needed quality gates and should be made available to the next stage (QA in this case). We will see how all of this is configured later on in this lab, but for now just remember that the flow through the different stages (Dev -> QA -> Prod) is what we refer to as the release path.

10 Figure 10 Dev stage historical workflow 15. Press the Escape key to close the dialog window. 16. The paths are composed on the various servers grouped in environments on which the testing for the stage is performed. Once an application needs to be deployed to a new environment, the server will queue deployment requests to all the required target servers for each component of the application. This allows an atomic deployment of all the components. 17. The Release Management Deployer running on each target server monitors the Release Management server continually (at a configurable interval) and will pick the installation requests for the one or more components it needs to install locally. 18. The Deployer will then find and download the release package, provided by the Release Management Server that calculates the location using the TFS API - if built by TFS - or using a predefined UNC path - if not. 19. Finally, the Deployer downloads any additional executable (batch file, PowerShell script,.exe) to be ran as part of the installation. These are additional deployment activities beyond the installation itself; creating test data or triggering automated tests are common scenarios here. Exercise 2: Configuring Release Management

11 In this exercise, you will learn about the main configuration points that are needed to connect Release Management to Team Foundation Server, various settings for Release Management including those that apply to the Deployer services, the configuration of groups and users, and finally the configuration of servers and environments. 1. Launch the Release Management client from the taskbar. Figure 11 Release Management client splash screen 2. By default, Release Management will load the Traffic Overview tab which shows deployments moving through all release paths and stages. This shows us that the Fabrikam Call Center application has already had a deployment go through each stage of deployment without any failures. Figure 12 Traffic overview

12 3. Let s take a quick look at some of the main configuration tasks that need to be addressed when installing and configuring Release Management. Select the Administration tab followed by the Manage TFS link. Figure 13 TFS connection configuration 4. Double-click on the TFS connection that has already been setup. Figure 14 Loading configuration for TFS connection 5. This connection was setup in the virtual machine ahead of time, but it is important to note that the user account used by Release Management needs to have the Make requests on behalf of others permission within TFS. Figure 15 Configuring account to connect to TFS 6. Other important settings can be configured in Administration System Settings. The System System Settings tab (default) shows various timeouts, version information, SMTP configuration, and license information. These settings are all defaults that were set during the creation of this virtual machine.

13 Figure 16 System settings 7. Select the Deployer Settings tab to view the configuration options for all deployer services. For example, you can set how often you want the deployer services to poll the Release Management server for packages to deploy. Figure 17 Deployer settings 8. Let s take a quick look at the setup of users and groups for Release Management. Navigate to Administration Manage Users.

14 Figure 18 User configuration 9. Double-click on the Brian Keller user. Figure 19 Viewing user configuration details 10. The Brian Keller user is associated with the windows account VSALM\Brian, is designated a Release Manager, and is an active member of a few different teams. Figure 20 Viewing user configuration details 11. Navigate to Administration Manage Groups to take a quick look at how groups can be setup.

15 Figure 21 Group configuration 12. Note that you can create new groups from scratch or you can import them from Active Directory or Team Foundation Server. Groups that are imported from AD or TFS in this way are linked by default, and will therefore remain synchronized. Figure 22 Importing groups from AD and TFS Note: Synchronization is manual (using the Refresh button) unless the setting AD/TFS-Based Group Refresh Interval is setup to something other than 0 minutes (which is the default). 13. Double-click on the QA Team. Figure 23 Viewing group details

16 14. The Members tab shows the individual users that are part of the QA Team. You can add more users here if desired (since the group is not linked to AD or TFS). Figure 24 Viewing group members 15. Select the Security tab. Figure 25 Location of Security tab 16. The Security tab allows you to specify what Release Management permissions that the group has. For the purposes of this virtual machine, the team members have full control. Figure 26 Group security settings 17. Navigate to Administration Manage Pick Lists and take note of the Stage Types defined here. The stage type names defined here are completely arbitrary, and therefore can be molded to fit your desired release strategy.

17 Figure 27 Configuring stage types 18. Servers to be used for deployment must have the Release Management Deployer service installed and configured to connect to the Release Management Server over HTTP or HTTPS. In addition, these servers must be explicitly added to Release Management Server. Navigate to Configure Paths Servers and note that the Deployer service has already been setup and configured for this virtual machine. Figure 28 Configuring servers Note: Although we won t do so here, the recommended way to add additional deployment servers is to select the drop-down arrow next to the New button and then select Scan for New. 19. Double-click on the VSALM server.

18 Figure 29 Configuring servers 20. There are many options shown here for the selected deployment server, but the general takeaway is that you want to configure servers that you add to be uniquely identifiable so that Release Management Sever can target them. It is possible to used cloned servers, configure the address type to be a gateway, and to have the server use HTTP(S) to grab the deployment bits from the drop location (if it a UNC path is not an option). Figure 30 Configuring servers 21. Navigate to Configure Paths Environments. Figure 31 Viewing environment configuration

19 22. Servers are grouped into environments so that servers are decoupled from release path definitions and so that various stages of the release path can be restricted to certain environments. Double-click on the first environment named Int-Dev. Figure 32 Viewing environment configuration 23. As the description states, this environment is meant to define the group of servers used for a development environment. If you wanted to restrict the use of this environment to specific stages, you could do so in the Stage Type Security tab. Figure 33 Viewing environment configuration Exercise 3: Defining a Release Path and Template In this exercise, you will learn how a release path and release template are created and configured. You will also see how to use the actions and tools provided to deploy an application to the correct environment. 1. Now let s look at a release path definition. Navigate to Configure Paths Release Paths and double-click on the Fabrikam Call Center release path.

20 Figure 34 Viewing release path 2. This release path defines a three-stage path through Dev -> QA -> Prod using the selected environments. Most steps for the first two stages are automated, so the assigned user or group does not intervene. Both the Dev and QA stages required approval before the next stage could begin. Figure 35 Viewing release path 3. Now let s look at how the Fabrikam Fiber team defined the process used to deploy their web application. Navigate to Configure Apps Release Templates and then double-click on the Fabrikam Call Center template.

21 Figure 36 Configuring release template 4. The release template designer has a toolbox with control flow building blocks, servers, custom components, and a bunch of other actions and tools to help with deployment. Select the Properties link. Figure 37 Viewing release template properties 5. Here you can see that the release template is set and a build definition is assigned. Also, note the option to allow builds to trigger releases. Triggering a release from a build requires the use of a modified build template and the installation of the Release Management Client on the build server.

22 Figure 38 Viewing release template properties 6. Press the Escape key to close the Properties window. 7. The first stage should be selected with its deployment sequence shown below. For the purposes of this lab, the deployment sequence is relatively simple to help illustrate the concept. Select the Collapse All button so that we can dig into the example deployment sequence starting at a high level of detail. Figure 39 Location of Collapse All button 8. The collapsed view shows just the VSALM server, which means that all deployment tasks will occur on just this server. If you look at the Toolbox, you will notice that there is a Servers node.

23 This toolbox node shows all servers available to the environment configured for the currently selected stage. Figure 40 Deployment sequence showing server 9. Expand the VSALM node. In summary of the details to follow, the general deployment sequence involves removing the existing web site from IIS, backing up the current bits, xcopy deploying the new bits from the build, re-creating the web site in IIS, and finally rolling back if there are failures. Figure 41

24 Deployment sequence 10. Expand the Remove Web Site node. This action was dragged and dropped onto the deployment sequence from the IIS toolbox node. It is configured to remove the FabrikamDev site from IIS. Figure 42 Remove Web Site node 11. Expand the Copy File or Folder node. This action is from the Windows OS toolbox node and is configured to back up the current web site location to a backup folder. Figure 43 Copy File or Folder node 12. Expand the Call Center Site node. Note the puzzle piece icon on the top-left, which indicates that it is an instance of a custom component. Figure 44 Call Center Site node 13. Let s look at this component by navigating to Configure Apps Components and then doubleclicking on the Call Center Site component.

25 Figure 45 Viewing custom component configuration 14. In the Source tab, note that the Builds with application option is selected. This means that the component will inherit the team project and build definition from the release template. The path to the package to deploy is currently set to [Build Drop Location]\_PublishedWebsites\FabrikamFiber.Web. Figure 46 Viewing custom component configuration 15. Select the Deployment tab.

26 Figure 47 Location of Deployment tab 16. This component uses the XCopy Deployer tool, which is backed by a script named irxcopy.cmd. The Arguments property is setup to copy all deployment source files to the Installation Path parameter (which is exposed on the release template design surface). Figure 48 Viewing custom component configuration 17. Return to the Fabrikam Call Center release template and expand the Create Web Site node. This creates the specified site in IIS. Figure 49 Create Web Site node

27 18. Finally, look at the Rollback sequence, which restores the backup and re-creates the original web site in IIS (if needed). Figure 50 Rollback sequence 19. All stages of this demonstration release template have an identical structure, albeit with different parameters.

28 Figure 51 Viewing QA stage Note: In the likely event that your stages have a similar structure, you can copy and paste elements from one stage to another. You can even copy the entire deployment sequence from one stage to another. In the event that some servers are not available on the target stage, you will be prompted to replace those servers with available ones. Copying an entire deployment sequence can be accomplished by right-clicking on a stage node in the Release Template and then selecting the option to copy. 20. Before we move on to see a release in action, let s take a peek at the available tools and actions. Navigate to Inventory Tools.

29 Figure 52 Location of Tools tab 21. The current set of configured tools provides the ability to execute command line statements, manipulate files and processes, deploy databases and websites, install applications, manage Azure virtual machines, and even run automated tests defined in Microsoft Test Manager. Some of the tools are backed by scripts, while others are backed by executables. You can easily add in your own tools if needed. 22. Select the Actions tab. Figure 53 Location of Actions tab 23. Actions are specific applications of the tools. For example, a number of the defined actions perform tasks in IIS using the IIS Deployer tool.

30 Figure 54 Viewing available actions Exercise 4: Release Automation Example In this exercise, you will configure a Team Foundation Server build for continuous integration, ensure that it automatically triggers a release, and then execute/follow that release all the way through the development, QA, and production stages. 1. Log in as Brian Keller (VSALM\Brian). All user passwords are P2ssw0rd. 2. Launch Visual Studio 2013 from the taskbar and open Team Explorer. You should now be connected to the FabrikamFiber team project. If you are not automatically connected to the FabrikamFiber project, select the Connect to Team Projects button ( ) to do so.

31 Figure 55 Team Explorer Home view 3. Select the Builds tile. Figure 56 Location of Builds tile 4. Right-click on the Nightly Fabrikam (Dev) build definition and select the Edit Build Definition option. Figure 57 Editing build definition 5. Select the Trigger tab.

32 Figure 58 Location of Trigger tab 6. The name of the build implies that the Fabrikam Fiber application is built each night, even though it is currently set to be manually triggered. Let s say that the team has decided to go with the Continuous Integration option, to build on each check-in, so select that option. Figure 59 Selecting Continuous Integration option 7. Select the Process tab.

33 Figure 60 Location of Process tab 8. As we pointed out in the previous exercise, a custom build process template needs to be used in order for builds to be handed off to Release Management. Note that the ReleaseDefaultTemplate.11.1.xaml template is selected. Figure 61 Custom build process template Note: The Release Management build process template can be found in the \Microsoft Visual Studio 12.0\Release Management\bin folder. 9. As a quick aside, the custom build process template also contains the logic to tokenize your configuration files. This logic assumes that in your solution, you have two versions of your configuration files. One version is your normal configuration file used during local development, and the other is a corresponding file that has the same content, except that instead of having local values for your variables, tokens have been put there. The build activity will swap those two files before doing the build, so that you end up with the tokenized version of the configuration files in the drop location. 10. Here is an example of how to achieve this: Let s say your solution contains a file called web.config. You would need to copy that file (and keep them in sync), and name it

34 web.config.token. Your web.config file will stay the way it is now (and that will be used when you run the app locally). The web.config.token file will contain tokens instead of values. Figure 62 Example of token file 11. Back to our build configuration, scroll down to the Release Management section of the build process parameters and note that the Release Build parameter is set to True. Both the build definition and Release Management need to be configured in order to allow a build to trigger a release. Figure 63 Location of Release Build option Note: In the case of a nightly build, it may make sense to set the Release Target Stage to be something other than production, perhaps a development or QA stage, but for demonstration purposes, we will take the release all the way to production. 12. Press Ctrl + S to save the build definition. Everything should now be in place for a continuous integration scenario where a source check in will trigger both a build and a release. 13. In Team Explorer Home, double-click on the first FabrikamFiber.CallCenter.sln solution.

35 Figure 64 Loading FabrikamFiber solution 14. Launch Internet Explorer from the taskbar and select the FF DEV button from the favorites bar to load the Fabrikam Fiber site currently deployed to the development environment. You ll have to play along with the scenario here, as the QA and Production versions of the site are also on the same machine, albeit on different ports. Figure 65 Location of Fabrikam Fiber link (development) 15. To pick a simple but visual change to the site for demonstration purposes, let s say that we need to change Fabrikam Fiber Support to Fabrikam Fiber Support v2.0. Back in Visual Studio, open _Layout.cshtml from FabrikamFiber.Web Views Shared.

36 Figure 66 Location of _Layout.cshtml 16. In _Layout.cshtml, locate the h2 tag that contains the Support text and change it to be Support v2.0. Figure 67 Modifying the web site

37 17. In Team Explorer Pending Changes, select the Check In button. Select Yes if prompted to save changes and check in. Figure 68 Checking in change 18. If you quickly open Team Explorer Builds, you should see that the check in triggered a build. Double-click on the build. Figure 69 Opening build in progress 19. Wait for the build to finish and then select the View Log link.

38 Figure 70 Location of View Log link 20. If you scroll down through the activity log, you should see the steps that have to do with Release Management. Figure 71 Activity log showing steps involving Release Management 21. Launch the Release Management desktop client and navigate to Releases Traffic Overview.

39 Figure 72 Loading Release Management traffic overview 22. Note that the Fabrikam Call Center release path now shows that another deployment is in process in the development stage. Figure 73 Traffic overview showing release in process 23. Double-click on the Dev stage for the Fabrikam Call Center release path.

40 Figure 74 Loading detailed traffic view for Dev stage 24. Assuming that you have waited long enough for the deployment to complete, you should see that the most recent release (top) is currently in the Dev stage waiting for approval. Figure 75 Release history showing release in progress 25. As a refresher, let s take a look at the Dev stage workflow once again. No need to navigate there in the application, just refer to the screenshot below.

41 Figure 76 Dev stage workflow configuration 26. As you can see, the acceptance, deployment, and validation steps are all automated while we are awaiting explicit approval before moving on to the QA stage. Specifically, the release is waiting for Brian Keller to provide approval. Although not configured in this virtual machine, Brian would receive an alerting him about the pending approval. 27. Select the My Approval Requests link to view pending approvals. Figure 77 Location of My Approval Requests 28. Double-click on the pending approval.

42 Figure 78 Loading pending approval details 29. Select the View Sequence link. Figure 79 Location of View Sequence link 30. We can look at the deployment sequence and see all of the specific parameters that were (or will be) used for each stage. Note that these ultimately become historical (and read-only) for each specific release. Figure 80

43 Deployment sequence showing parameters 31. Select the View Log link. Figure 81 Location of View Log link 32. The log shows the details and status for each step of the release process. This shows that the deployment was automatically accepted, deployed, and validated for the Dev stage and is now waiting for approval. The Deploy step also has additional details select the ellipses button in the details column. Figure 82 Location of ellipses button Note: You can view future steps as well by selecting the Include Future Steps option at the bottom of the log. 33. The deployment log shows details for each action performed. Select the View Log link for the Remove Web Site action. Use Notepad if prompted. Figure 83 Viewing action log

44 Note: If a specific action fails, the output from the underlying tool used should provide debugging information to help determine if there is a problem with the target environment or the deployment sequence. 34. This log shows that the FabrikamDev web site was deleted successfully. Figure 84 Viewing successful action log 35. Close the Notepad window and the Deployment Log window. 36. Before we approve the release, let s look at the deployed site in Internet Explorer. Select the FF DEV link from the favorites bar. Figure 85 Location of FF DEV link 37. Here we can see that Support v2.0 shows up as expected.

45 Figure 86 Deployment to the development environment is a success 38. In Release Management, return to My Approval Requests, select the release, and then select the Approve button. Figure 87 Approving the release to the development stage 39. In the Approval Confirmation window, enter a comment such as Dev deployment looks good and then select the OK button. Figure 88 Adding an approval confirmation comment 40. The deployment will then transition to the QA stage and automatically deploy the web site to the configured environment. Refresh the My Approval Requests view until the release stops for QA approval.

46 Figure 89 Waiting for QA approval 41. Once the deployment is complete and automatically validated, someone from the QA Team will need to approve the release. Brian is a member of the team, so go ahead and load the QA site using the FF QA favorite link in Internet Explorer. Figure 90 Deployment to the QA environment is a success 42. Back in Release Management, navigate to the My Approval Requests view, select the deployment, and then select the Approve button. Figure 91 Approving the release to the QA stage 43. In the Approval Confirmation window, enter a comment such as QA deployment looks good and then select the OK button.

47 Figure 92 Adding an approval confirmation comment 44. As a refresher, let s take a look at the Prod stage workflow once again. No need to navigate there in the application, just refer to the screenshot below. Note that the acceptance step is not automated as it was for the previous stages. This means that the assigned approver must explicitly sign off on before the actual deployment to production will begin. Figure 93 Prod stage workflow configuration 45. Select the pending approval request in My Approval Requests and note that Brian has a few options to consider besides approval - including reassignment and rejection. Let s go ahead and

48 approve the deployment to production since the QA Team signed off on the previous stage. Select the Approve button. Figure 94 Approve the request to deploy to production 46. In the Approval Confirmation window, enter a comment such as Ready for production. Note that you can deploy immediately or schedule the deployment for later. Use the default option to deploy now and then select the OK button. Figure 95 Approve the request now 47. Go ahead and load the production site using the FF PROD favorite in Internet Explorer. You may need to refresh the page a few times before the build is deployed (displaying Support v2.0 ). Figure 96 Deployment to the production environment is a success

49 48. The Ops Team now needs to validate the deployment. Select the request and then select the Approve button. Figure 97 Approving the deployment to production 49. In the Successful Deployment Confirmation window, enter a comment such as Ops approved and then select the OK button. The operations team may have their own suite of tests that they run to ensure that everything is running as expected and ready for end-users. Figure 98 Approve the deployment to production 50. Navigate to Releases Releases and note that the release has made it to the target stage of Prod and has a Status of Released. Figure 99 Build has been released to production 51. There are circumstances where being able to manually trigger the release of a specific build using the same process would be useful. For example, let s say that it has been discovered that the production site has some scaling issues (that unfortunately weren t discovered before the previous release made it to production), and we would like the QA team to do some comparative testing using their toolset against the QA environment.

50 52. Select the New button in the Releases tab. Figure 100 Location of New button 53. Name the release QA Testing, select the Fabrikam Call Center release template, select a target stage of QA (we don t want to go all the way to production), and then select the Select link next to the Build field. Figure 101 Manually triggering a release 54. In the Search Builds window, select the oldest build. Figure 102 Selecting a build 55. To start the release, select the Start button (optional).

51 Figure 103 Location of Start button 56. If you followed this release to the target stage using the same process as before, you would end up with the desired build deployed to the QA environment. 57. To learn more about Release Management, please visit To give feedback please write to Copyright 2014 by Microsoft Corporation. All rights reserved.

User Guide Release Management for Visual Studio 2013

User Guide Release Management for Visual Studio 2013 User Guide Release Management for Visual Studio 2013 ABOUT THIS GUIDE The User Guide for the release management features is for administrators and users. The following related documents for release management

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

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

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

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

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

Deploying Microsoft Operations Manager with the BIG-IP system and icontrol

Deploying Microsoft Operations Manager with the BIG-IP system and icontrol Deployment Guide Deploying Microsoft Operations Manager with the BIG-IP system and icontrol Deploying Microsoft Operations Manager with the BIG-IP system and icontrol Welcome to the BIG-IP LTM system -

More information

Installing and Configuring Login PI

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

More information

Advanced Service Design

Advanced Service Design vcloud Automation Center 6.0 This document supports the version of each product listed and supports all subsequent versions until the document is replaced by a new edition. To check for more recent editions

More information

Introduction to Source Control ---

Introduction to Source Control --- Introduction to Source Control --- Overview Whether your software project is large or small, it is highly recommended that you use source control as early as possible in the lifecycle of your project.

More information

Using DSC with Visual Studio Release Management

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

More information

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

NetIQ. How to guides: AppManager v7.04 Initial Setup for a trial. Haf Saba Attachmate NetIQ. Prepared by. Haf Saba. Senior Technical Consultant

NetIQ. How to guides: AppManager v7.04 Initial Setup for a trial. Haf Saba Attachmate NetIQ. Prepared by. Haf Saba. Senior Technical Consultant How to guides: AppManager v7.04 Initial Setup for a trial By NetIQ Prepared by Haf Saba Senior Technical Consultant Asia Pacific 1 Executive Summary This document will walk you through an initial setup

More information

User Manual. Onsight Management Suite Version 5.1. Another Innovation by Librestream

User Manual. Onsight Management Suite Version 5.1. Another Innovation by Librestream User Manual Onsight Management Suite Version 5.1 Another Innovation by Librestream Doc #: 400075-06 May 2012 Information in this document is subject to change without notice. Reproduction in any manner

More information

LAB: Enterprise Single Sign-On Services. Last Saved: 7/17/2006 10:48:00 PM

LAB: Enterprise Single Sign-On Services. Last Saved: 7/17/2006 10:48:00 PM LAB: Enterprise Single Sign-On Services LAB: Enterprise Single Sign-On Services 2 TABLE OF CONTENTS HOL: Enterprise Single Sign-On Services...3 Objectives...3 Lab Setup...4 Preparation...5 Exercise 1:

More information

MultiSite Manager. User Guide

MultiSite Manager. User Guide MultiSite Manager User Guide Contents 1. Getting Started... 2 Opening the MultiSite Manager... 2 Navigating MultiSite Manager... 2 2. The All Sites tabs... 3 All Sites... 3 Reports... 4 Licenses... 5 3.

More information

Dashboard Admin Guide

Dashboard Admin Guide MadCap Software Dashboard Admin Guide Pulse Copyright 2014 MadCap Software. All rights reserved. Information in this document is subject to change without notice. The software described in this document

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

Introduction to Hyper-V High- Availability with Failover Clustering

Introduction to Hyper-V High- Availability with Failover Clustering Introduction to Hyper-V High- Availability with Failover Clustering Lab Guide This lab is for anyone who wants to learn about Windows Server 2012 R2 Failover Clustering, focusing on configuration for Hyper-V

More information

SQL Server 2005: Report Builder

SQL Server 2005: Report Builder SQL Server 2005: Report Builder Table of Contents SQL Server 2005: Report Builder...3 Lab Setup...4 Exercise 1 Report Model Projects...5 Exercise 2 Create a Report using Report Builder...9 SQL Server 2005:

More information

Lab 1: Windows Azure Virtual Machines

Lab 1: Windows Azure Virtual Machines Lab 1: Windows Azure Virtual Machines Overview In this hands-on Lab, you will learn how to deploy a simple web page to a Web server hosted in Windows Azure and configure load balancing. Objectives In this

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

CTERA Agent for Linux

CTERA Agent for Linux User Guide CTERA Agent for Linux September 2013 Version 4.0 Copyright 2009-2013 CTERA Networks Ltd. All rights reserved. No part of this document may be reproduced in any form or by any means without written

More information

SonicWALL CDP 5.0 Microsoft Exchange InfoStore Backup and Restore

SonicWALL CDP 5.0 Microsoft Exchange InfoStore Backup and Restore SonicWALL CDP 5.0 Microsoft Exchange InfoStore Backup and Restore Document Scope This solutions document describes how to configure and use the Microsoft Exchange InfoStore Backup and Restore feature in

More information

Administration Guide for the System Center Cloud Services Process Pack

Administration Guide for the System Center Cloud Services Process Pack Administration Guide for the System Center Cloud Services Process Pack Microsoft Corporation Published: May 7, 2012 Author Kathy Vinatieri Applies To System Center Cloud Services Process Pack This document

More information

Installing LearningBay Enterprise Part 2

Installing LearningBay Enterprise Part 2 Installing LearningBay Enterprise Part 2 Support Document Copyright 2012 Axiom. All Rights Reserved. Page 1 Please note that this document is one of three that details the process for installing LearningBay

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

PROJECTIONS SUITE. Database Setup Utility (and Prerequisites) Installation and General Instructions. v0.9 draft prepared by David Weinstein

PROJECTIONS SUITE. Database Setup Utility (and Prerequisites) Installation and General Instructions. v0.9 draft prepared by David Weinstein PROJECTIONS SUITE Database Setup Utility (and Prerequisites) Installation and General Instructions v0.9 draft prepared by David Weinstein Introduction These are the instructions for installing, updating,

More information

Deploying the BIG-IP LTM system and Microsoft Windows Server 2003 Terminal Services

Deploying the BIG-IP LTM system and Microsoft Windows Server 2003 Terminal Services Deployment Guide Deploying the BIG-IP System with Microsoft Windows Server 2003 Terminal Services Deploying the BIG-IP LTM system and Microsoft Windows Server 2003 Terminal Services Welcome to the BIG-IP

More information

INTEGRATING MICROSOFT DYNAMICS CRM WITH SIMEGO DS3

INTEGRATING MICROSOFT DYNAMICS CRM WITH SIMEGO DS3 INTEGRATING MICROSOFT DYNAMICS CRM WITH SIMEGO DS3 Often the most compelling way to introduce yourself to a software product is to try deliver value as soon as possible. Simego DS3 is designed to get you

More information

Using RD Gateway with Azure Multifactor Authentication

Using RD Gateway with Azure Multifactor Authentication Using RD Gateway with Azure Multifactor Authentication We have a client that uses RD Gateway to allow users to access their RDS deployment from outside their corporate network. They have about 1000+ users.

More information

Getting Started with BarTender

Getting Started with BarTender Getting Started with BarTender MANUAL Contents Getting Started with BarTender 3 Installation 4 Choosing What to Install 4 Automation Editions (Automation and Enterprise Automation) 4 Installing BarTender

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

Extensibility. vcloud Automation Center 6.0 EN-001328-00

Extensibility. vcloud Automation Center 6.0 EN-001328-00 vcloud Automation Center 6.0 This document supports the version of each product listed and supports all subsequent versions until the document is replaced by a new edition. To check for more recent editions

More information

Kaseya Server Instal ation User Guide June 6, 2008

Kaseya Server Instal ation User Guide June 6, 2008 Kaseya Server Installation User Guide June 6, 2008 About Kaseya Kaseya is a global provider of IT automation software for IT Solution Providers and Public and Private Sector IT organizations. Kaseya's

More information

Installation Guide. Release Management for Visual Studio 2013

Installation Guide. Release Management for Visual Studio 2013 1 Installation Guide Release Management for Visual Studio 2013 This document is provided as-is. Information and views expressed in this document, including URL and other Internet Web site references, may

More information

Integrating with BarTender Integration Builder

Integrating with BarTender Integration Builder Integrating with BarTender Integration Builder WHITE PAPER Contents Overview 3 Understanding BarTender's Native Integration Platform 4 Integration Builder 4 Administration Console 5 BarTender Integration

More information

Step-by-step installation guide for monitoring untrusted servers using Operations Manager ( Part 3 of 3)

Step-by-step installation guide for monitoring untrusted servers using Operations Manager ( Part 3 of 3) Step-by-step installation guide for monitoring untrusted servers using Operations Manager ( Part 3 of 3) Manual installation of agents and importing the SCOM certificate to the servers to be monitored:

More information

ILTA HANDS ON Securing Windows 7

ILTA HANDS ON Securing Windows 7 Securing Windows 7 8/23/2011 Table of Contents About this lab... 3 About the Laboratory Environment... 4 Lab 1: Restricting Users... 5 Exercise 1. Verify the default rights of users... 5 Exercise 2. Adding

More information

Building an ASP.NET MVC Application Using Azure DocumentDB

Building an ASP.NET MVC Application Using Azure DocumentDB Building an ASP.NET MVC Application Using Azure DocumentDB Contents Overview and Azure account requrements... 3 Create a DocumentDB database account... 4 Running the DocumentDB web application... 10 Walk-thru

More information

Xythos on Demand Quick Start Guide For Xythos Drive

Xythos on Demand Quick Start Guide For Xythos Drive Xythos on Demand Quick Start Guide For Xythos Drive What is Xythos on Demand? Xythos on Demand is not your ordinary online storage or file sharing web site. Instead, it is an enterprise-class document

More information

KEYWORDS InteractX, database, SQL Server, SQL Server Express, backup, maintenance.

KEYWORDS InteractX, database, SQL Server, SQL Server Express, backup, maintenance. Document Number: File Name: Date: 10/16/2008 Product: InteractX, SQL Server, SQL Server Application Note Associated Project: Related Documents: BackupScript.sql KEYWORDS InteractX, database, SQL Server,

More information

Using Remote Web Workplace Version 1.01

Using Remote Web Workplace Version 1.01 Using Remote Web Workplace Version 1.01 Remote web workplace allows you to access your Windows XP desktop through Small Business Server 2003 from a web browser. 1. Connect to the Internet in your remote

More information

ProSystem fx Document

ProSystem fx Document ProSystem fx Document Server Upgrade from Version 3.7 to Version 3.8 1 This Document will guide you through the upgrade of Document Version 3.7 to Version 3.8. Do not attempt to upgrade from any other

More information

LAB 1: Installing Active Directory Federation Services

LAB 1: Installing Active Directory Federation Services LAB 1: Installing Active Directory Federation Services Contents Lab: Installing and Configuring Active Directory Federation Services... 2 Exercise 1: installing and configuring Active Directory Federation

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

Thin Client Manager. Table of Contents. 1-10ZiG Manager. 2 - Thin Client Management. 3 - Remote client configurations. 1 of 16

Thin Client Manager. Table of Contents. 1-10ZiG Manager. 2 - Thin Client Management. 3 - Remote client configurations. 1 of 16 1 of 16 Thin Client Manager Table of Contents 1-10ZiG Manager 1.1 - Configuring and Managing the Server 1.1.1 - Server Settings 1.1.2 - Starting and Stopping the Server 1.2 - Configuring and Starting the

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

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

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

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

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

Dell KACE Hosted Integration Guide

Dell KACE Hosted Integration Guide Dell KACE Hosted Integration Guide Dell KACE Hosted Integration Guide For customers of the Free Hosted License offer using KACE.BOMGAR.COM Revised: 6/1/2012 Dell KACE Hosted Integration Guide Table of

More information

BSDI Advanced Fitness & Wellness Software

BSDI Advanced Fitness & Wellness Software BSDI Advanced Fitness & Wellness Software 6 Kellie Ct. Califon, NJ 07830 http://www.bsdi.cc SOFTWARE BACKUP/RESTORE INSTRUCTION SHEET This document will outline the steps necessary to take configure the

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 & Configuration Guide

Installation & Configuration Guide Installation & Configuration Guide Bluebeam Studio Enterprise ( Software ) 2014 Bluebeam Software, Inc. All Rights Reserved. Patents Pending in the U.S. and/or other countries. Bluebeam and Revu are trademarks

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

CTERA Agent for Mac OS-X

CTERA Agent for Mac OS-X User Guide CTERA Agent for Mac OS-X June 2014 Version 4.1 Copyright 2009-2014 CTERA Networks Ltd. All rights reserved. No part of this document may be reproduced in any form or by any means without written

More information

GoDaddy (CentriqHosting): Data driven Web Application Deployment

GoDaddy (CentriqHosting): Data driven Web Application Deployment GoDaddy (CentriqHosting): Data driven Web Application Deployment Process Summary There a several steps to deploying an ASP.NET website that includes databases (for membership and/or for site content and

More information

NovaBACKUP xsp Version 15.0 Upgrade Guide

NovaBACKUP xsp Version 15.0 Upgrade Guide NovaBACKUP xsp Version 15.0 Upgrade Guide NovaStor / November 2013 2013 NovaStor, all rights reserved. All trademarks are the property of their respective owners. Features and specifications are subject

More information

1. Contents 1. Introduction... 2. Installation... 2.1 Preparing for the installation... 2.2 Installing the Pre-Requisites Components... 2.

1. Contents 1. Introduction... 2. Installation... 2.1 Preparing for the installation... 2.2 Installing the Pre-Requisites Components... 2. 1. Contents 1. Introduction... 2. Installation... 2.1 Preparing for the installation... 2.2 Installing the Pre-Requisites Components... 2.3 Installing the Implicit Sync Outlook Add-In... 3. Initial Configuration...

More information

SHAREPOINT 2013 IN INFRASTRUCTURE AS A SERVICE

SHAREPOINT 2013 IN INFRASTRUCTURE AS A SERVICE SHAREPOINT 2013 IN INFRASTRUCTURE AS A SERVICE Contents Introduction... 3 Step 1 Create Azure Components... 5 Step 1.1 Virtual Network... 5 Step 1.1.1 Virtual Network Details... 6 Step 1.1.2 DNS Servers

More information

Configuration Guide. BES12 Cloud

Configuration Guide. BES12 Cloud Configuration Guide BES12 Cloud Published: 2016-04-08 SWD-20160408113328879 Contents About this guide... 6 Getting started... 7 Configuring BES12 for the first time...7 Administrator permissions you need

More information

Automated backup. of the LumaSoft Gas database

Automated backup. of the LumaSoft Gas database Automated backup of the LumaSoft Gas database Contents How to enable automated backup of the LumaSoft Gas database at regular intervals... 2 How to restore the LumaSoft Gas database... 13 BE6040-11 Addendum

More information

CTERA Agent for Windows

CTERA Agent for Windows User Guide CTERA Agent for Windows May 2012 Version 3.1 Copyright 2009-2012 CTERA Networks Ltd. All rights reserved. No part of this document may be reproduced in any form or by any means without written

More information

How To Upgrade Your Microsoft SQL Server for Accounting CS Version 2012.1

How To Upgrade Your Microsoft SQL Server for Accounting CS Version 2012.1 How To Upgrade Your Microsoft SQL Server for Version 2012.1 The first step is to gather important information about your existing configuration. Identify The Database Server and SQL Server Version The

More information

Server Installation: ServerTools

Server Installation: ServerTools Server Installation: ServerTools ServerTools Page 1 Table of Contents To Install ServerTools...3 Backup and Restore...6 Purpose...6 Background...6 Requirements...6 Creating a Backup Schedule using the

More information

PaperStream Connect. Setup Guide. Version 1.0.0.0. Copyright Fujitsu

PaperStream Connect. Setup Guide. Version 1.0.0.0. Copyright Fujitsu PaperStream Connect Setup Guide Version 1.0.0.0 Copyright Fujitsu 2014 Contents Introduction to PaperStream Connect... 2 Setting up PaperStream Capture to Release to Cloud Services... 3 Selecting a Cloud

More information

Using IIS Application Request Routing to Publish Lync Server 2013 Web Services

Using IIS Application Request Routing to Publish Lync Server 2013 Web Services Using IIS Application Request Routing to Publish Lync Server 2013 Web Services DISCLAIMER 2014 Microsoft Corporation. All rights reserved. Microsoft, Active Directory, Hyper-V, Internet Explorer, Lync,

More information

Table of Contents. 1. Content Approval...1 EVALUATION COPY

Table of Contents. 1. Content Approval...1 EVALUATION COPY Table of Contents Table of Contents 1. Content Approval...1 Enabling Content Approval...1 Content Approval Workflows...4 Exercise 1: Enabling and Using SharePoint Content Approval...9 Exercise 2: Enabling

More information

Deploying the BIG-IP System with Oracle E-Business Suite 11i

Deploying the BIG-IP System with Oracle E-Business Suite 11i Deploying the BIG-IP System with Oracle E-Business Suite 11i Introducing the BIG-IP and Oracle 11i configuration Configuring the BIG-IP system for deployment with Oracle 11i Configuring the BIG-IP system

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

Outlook 2010 Essentials

Outlook 2010 Essentials Outlook 2010 Essentials Training Manual SD35 Langley Page 1 TABLE OF CONTENTS Module One: Opening and Logging in to Outlook...1 Opening Outlook... 1 Understanding the Interface... 2 Using Backstage View...

More information

NETWRIX FILE SERVER CHANGE REPORTER

NETWRIX FILE SERVER CHANGE REPORTER NETWRIX FILE SERVER CHANGE REPORTER ADMINISTRATOR S GUIDE Product Version: 3.3 April/2012. Legal Notice The information in this publication is furnished for information use only, and does not constitute

More information

SonicWALL CDP 5.0 Microsoft Exchange User Mailbox Backup and Restore

SonicWALL CDP 5.0 Microsoft Exchange User Mailbox Backup and Restore SonicWALL CDP 5.0 Microsoft Exchange User Mailbox Backup and Restore Document Scope This solutions document describes how to configure and use the Microsoft Exchange User Mailbox Backup and Restore feature

More information

Backups User Guide. for Webroot SecureAnywhere Essentials Webroot SecureAnywhere Complete

Backups User Guide. for Webroot SecureAnywhere Essentials Webroot SecureAnywhere Complete Backups User Guide for Webroot SecureAnywhere Essentials Webroot SecureAnywhere Complete Webroot Software, Inc. 385 Interlocken Crescent Suite 800 Broomfield, CO 80021 www.webroot.com Version 8.0.1 Webroot

More information

Copyright 2012 Trend Micro Incorporated. All rights reserved.

Copyright 2012 Trend Micro Incorporated. All rights reserved. Trend Micro Incorporated reserves the right to make changes to this document and to the products described herein without notice. Before installing and using the software, please review the readme files,

More information

Windows Server Update Services 3.0 SP2 Step By Step Guide

Windows Server Update Services 3.0 SP2 Step By Step Guide Windows Server Update Services 3.0 SP2 Step By Step Guide Microsoft Corporation Author: Anita Taylor Editor: Theresa Haynie Abstract This guide provides detailed instructions for installing Windows Server

More information

Installation Guide. Live Maps 7.4 for System Center 2012

Installation Guide. Live Maps 7.4 for System Center 2012 Installation Guide Live Maps 7.4 for System Center 2012 1 Introduction... 4 1.1 1.2 About This Guide... 4 Supported Products... 4 1.3 1.4 Related Documents... 4 Understanding Live Maps... 4 1.5 Upgrade

More information

Zoom Plug-ins for Adobe

Zoom Plug-ins for Adobe = Zoom Plug-ins for Adobe User Guide Copyright 2010 Evolphin Software. All rights reserved. Table of Contents Table of Contents Chapter 1 Preface... 4 1.1 Document Revision... 4 1.2 Audience... 4 1.3 Pre-requisite...

More information

Appendix E. Captioning Manager system requirements. Installing the Captioning Manager

Appendix E. Captioning Manager system requirements. Installing the Captioning Manager Appendix E Installing and configuring the Captioning Manager The Mediasite Captioning Manager, a separately sold EX Server add-on, allows users to submit and monitor captioning requests through Automatic

More information

2. PMP New Computer Installation. & Networking Instructions

2. PMP New Computer Installation. & Networking Instructions ONTARIO CHIROPRACTIC ASSOCIATION PATIENT MANAGEMENT PROGRAM PUTTING EXPERIENCE INTO PRACTICE PMP New Computer Installation & Networking Instructions This document provides installation instructions for

More information

NTP Software VFM Administration Web Site for EMC Atmos

NTP Software VFM Administration Web Site for EMC Atmos NTP Software VFM Administration Web Site for EMC Atmos User Manual Revision 1.1 - July 2015 This guide details the method for using NTP Software VFM Administration Web Site, from an administrator s perspective.

More information

CTERA Agent for Mac OS-X

CTERA Agent for Mac OS-X User Guide CTERA Agent for Mac OS-X September 2013 Version 4.0 Copyright 2009-2013 CTERA Networks Ltd. All rights reserved. No part of this document may be reproduced in any form or by any means without

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

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

Amicus Link Guide: Outlook/Exchange E-mail

Amicus Link Guide: Outlook/Exchange E-mail Amicus Link Guide: Outlook/Exchange E-mail Applies to: Amicus Premium 2015 Synchronize your Amicus and Outlook e-mail. Choose a client-side link with your local Microsoft Outlook or a Server-side link

More information

Project management integrated into Outlook

Project management integrated into Outlook Project management integrated into Outlook InLoox PM 7.x off-line operation An InLoox Whitepaper Published: October 2011 Copyright: 2011 InLoox GmbH. You can find up-to-date information at http://www.inloox.com

More information

Outlook Email. User Guide IS TRAINING CENTER. 833 Chestnut St, Suite 600. Philadelphia, PA 19107 215-503-7500

Outlook Email. User Guide IS TRAINING CENTER. 833 Chestnut St, Suite 600. Philadelphia, PA 19107 215-503-7500 Outlook Email User Guide IS TRAINING CENTER 833 Chestnut St, Suite 600 Philadelphia, PA 19107 215-503-7500 This page intentionally left blank. TABLE OF CONTENTS Getting Started... 3 Opening Outlook...

More information

Sophos Cloud Migration Tool Help. Product version: 1.0

Sophos Cloud Migration Tool Help. Product version: 1.0 Sophos Cloud Migration Tool Help Product version: 1.0 Document date: June 2015 Contents 1 About the Sophos Cloud Migration Tool...4 2 How does Sophos Cloud differ from on-premise management?...5 3 How

More information

Using HP Systems Insight Manager to achieve high availability for Microsoft Team Foundation Server

Using HP Systems Insight Manager to achieve high availability for Microsoft Team Foundation Server Using HP Systems Insight Manager to achieve high availability for Microsoft Team Foundation Server Executive summary... 2 Audience... 2 Architecture... 3 Prerequisite... 4 Deploying AT servers... 5 Configuring

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

Microsoft IT Camp Hands-On Lab

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

More information

Retention Policy Module Admin and User Guide

Retention Policy Module Admin and User Guide Retention Policy Module Admin and User Guide For Document Manager 24 June 2013 Trademarks Document Manager and Document Manager Administration are trademarks of Document Logistix Ltd. TokOpen, TokAdmin,

More information

Ingenious Testcraft Technical Documentation Installation Guide

Ingenious Testcraft Technical Documentation Installation Guide Ingenious Testcraft Technical Documentation Installation Guide V7.00R1 Q2.11 Trademarks Ingenious, Ingenious Group, and Testcraft are trademarks of Ingenious Group, Inc. and may be registered in the United

More information

Moving the TRITON Reporting Databases

Moving the TRITON Reporting Databases Moving the TRITON Reporting Databases Topic 50530 Web, Data, and Email Security Versions 7.7.x, 7.8.x Updated 06-Nov-2013 If you need to move your Microsoft SQL Server database to a new location (directory,

More information

Migrating helpdesk to a new server

Migrating helpdesk to a new server Migrating helpdesk to a new server Table of Contents 1. Helpdesk Migration... 2 Configure Virtual Web on IIS 6 Windows 2003 Server:... 2 Role Services required on IIS 7 Windows 2008 / 2012 Server:... 2

More information

LANDesk Management Suite 9.0. Getting started with Patch Manager

LANDesk Management Suite 9.0. Getting started with Patch Manager LANDesk Management Suite 9.0 Getting started with Patch Manager DOWNLOAD PATCH CONTENT TO THE CORE SERVER INTRODUCTION This document is intended to assist LANDesk Management Suite administrators with implementing

More information

Hands-On Lab. Building a Data-Driven Master/Detail Business Form using Visual Studio 2010. Lab version: 1.0.0. Last updated: 12/10/2010.

Hands-On Lab. Building a Data-Driven Master/Detail Business Form using Visual Studio 2010. Lab version: 1.0.0. Last updated: 12/10/2010. Hands-On Lab Building a Data-Driven Master/Detail Business Form using Visual Studio 2010 Lab version: 1.0.0 Last updated: 12/10/2010 Page 1 CONTENTS OVERVIEW... 3 EXERCISE 1: CREATING THE APPLICATION S

More information

Microsoft Virtual Labs. Administering the IIS 7 File Transfer Protocol (FTP) Server

Microsoft Virtual Labs. Administering the IIS 7 File Transfer Protocol (FTP) Server Microsoft Virtual Labs Administering the IIS 7 File Transfer Protocol (FTP) Server Table of Contents Exercise 1 Installing the Microsoft FTP Publishing Service for the IIS 7... 1 Exercise 2 Introducing

More information