System Center 2012 R2 Service Management Automation

Size: px
Start display at page:

Download "System Center 2012 R2 Service Management Automation"

Transcription

1 System Center 2012 R2 Service Management Automation WHITEPAPER Version Author Michael Rüefli, Microsoft MVP for CDM, Cloud Architect at itnetx gmbh, Switzerland Blog: Reviewers Michel Lüscher, Datacenter Architect, CoE, Microsoft Blog: Kristian Nese, Microsoft MVP for CDM, Infrastructure Ranger, CTO at Lumagate, Norway Blog: Aleksandar Nikolic, PowerShell MVP, the co-founder and editor of PowerShell Magazine Blog:

2 Document History Version Author Changes / Comments Michael Rüefli Initial version after review Michael Rüefli Minor corrections to referenced blog posts according to input by Jim Britt Michael Rüefli Added some more info about Remoting and variables within workflows Michael Rüefli Corrections to chapter 5.7 (linking SMA Runbooks with VM Clouds). Additions to chapter 5.5 (using external editors) Added some links to chapter Michael Rüefli Added comments / hints by Aleksandar Nikolic. Corrected typos and errors in examples. Added some FAQ Added topics to debugging / logging Added topics to Workflow Checkpoints Acknowledgements I want to shout out a big thank you to Michel, Kristian and Aleksandar, the reviewers, for their time invested to review this whitepaper. Also I d like to thank Jim Britt (MSFT) for his ad-hoc help and feedbacks. This whitepaper wouldn't be possible without your help guys! Special thanks go to my wife Eva and my family always supporting me doing all the community stuff beside the long work days.

3 Contents Version... 1 Author... 1 Reviewers... 1 Document History... 2 Acknowledgements Introduction What can you expect from reading this paper SMA Architecture Components of SMA Framework SMA Database OData REST Web Service Service Management Portal Runbook Worker Runbooks Jobs Installing SMA Prerequisites Installing the SMA Web Service Installing the SMA Runbook Worker Installing the SMA PowerShell Module Registering SMA Endpoint Scaling Out a SMA Deployment Installing Additional Runbook Workers Stop All Runbook Worker Services Add a New Runbook Worker Deployment to SMA Start the Service on All Runbook Workers Creating and Using Runbooks Modules and Consoles Local Execution Remote Execution (PowerShell Remoting) Creating Runbooks Anatomy of a PowerShell Workflow Creating the Runbook Note on Testing Runbook... 26

4 5.3 Creating Schedules Adding Connections, Credentials and other Assets Adding Connections Referencing a Connection in a Runbook Adding Credential Objects Referencing a Credential Object in a Runbook Adding Variables Referencing a SMA Variable in a Runbook Using External Development Environments Nesting Runbooks/Publishing Data Linking Runbooks to VM Cloud Action Events Getting Runbook Parameters and Resource Objects Getting Runbook Parameters and Resource Objects via OData Calling an Orchestrator Runbook from SMA Calling an SMA Runbook from Orchestrator Importing and Exporting Runbooks Exporting a Runbook Converting Orchestrator to SMA Runbooks Extending SMA with Additional Modules Adding/Importing Modules Extending SMA with custom Modules Portable Modules Checkpoints Resuming a Workflow Debugging and Logging Best Practice for Logging in SMA Runbooks Logging behavior inside an InlineScript Getting Output and Debug Information via PowerShell Event Log FAQ Useful Resources and Links Appendix A (Limitations of PowerShell Workflows) Appendix B (sample code) SMA Runbook (Cleanup-VMCheckpoint) SMA (Get Job Parameter from linked SPF Event) SMA (Call SC Orchestrator Runbook from SMA)... 67

5 Disclaimer Feedback... 68

6 1. Introduction This whitepaper covers basic architecture, installation, and use of System Center 2012 R2 Service Management Automation (SMA). Basic examples how to create, link, and integrate Runbooks from SMA to Orchestrator and vice versa are included as well. A FAQ section includes the most common questions and answers around SMA. Sample Runbook code used and referred in this whitepaper is located in the appendix section. 1.1 What can you expect from reading this paper After reading this whitepaper, you will be familiar with the following topics: Concepts and architecture of System Center 2012 R2 Service Management Automation Prerequisites to deploy SMA in your organization Installing and configuring the various SMA components Basics on PowerShell Workflow scripting Creating and authoring SMA Runbooks Linking Runbooks to SPF/VM Cloud action events Interoperability with System Center Orchestrator Runbooks Converting Orchestrator Runbooks to SMA Scaling an SMA infrastructure Extending SMA with custom modules Additionally you ll find a collection of useful links on SMA, PowerShell Workflow concepts and Windows Azure Pack. I hope this document can help you with a jump start on Service Management Automation. Happy reading! Cheers Michael

7 2. SMA Architecture Service Management Automation integrates with Windows Azure Pack and the Service Provider Foundation. The primary target using SMA is to automate your private/hybrid cloud services such as Virtual Machine, Clouds, Web Sites, SQL and MySQL database deployments. However, as SMA relies on PowerShell, everything you can do inside a PowerShell Workflow can be automated Figure 1: SMA Architecture (source: Microsoft)

8 The following image illustrates how SMA integrates with other System Center components and 3 rd party systems. The pluggable module architecture of SMA allows integration of almost any management infrastructure which ships with PowerShell modules. Figure 2: Component Integration (source: Microsoft)

9 2.1 Components of SMA Framework SMA Database This is the so called heart of SMA, hosting Runbooks, their state, and configuration. It stores schedules and mappings as well. By default, the name of the database object is SMA OData REST Web Service As other components of Windows Azure Pack, SMA uses a REST-based API and web service for Management Portal and orchestration. Its primary job is to display information on the SMA Management Portal and to submit requests to the SMA database. The database returns Runbook and job states back to the web service Service Management Portal The SOAP-based portal is used to author and manage Runbooks, assets and schedules. It also displays job results as well as some statistical data Runbook Worker As the name says, the Runbook Worker start or execute SMA Runbooks. As you can have multiple of them, the solution scales very well. A Runbook Worker picks up queued jobs from the SMA database, executes them and reports back to the database. Having multiple Runbook Worker by default has a kind of randomization effect. The workers pick up tasks randomly to spread the load and jobs to be executed. Quote from MSFT: Service Management Automation uses static queue partitions to load balance work among Runbook Workers. Because of this, queues are never changed on the fly to respond to worker additions or workers going offline. If a worker in the current deployment goes offline, it is still allocated jobs but cannot process them. Similarly, if a new worker is started but is not specifically defined in the current Runbook Worker deployment, it does not pick up any jobs because it is not being assigned any jobs Runbooks SMA Runbooks are similar to Orchestrator Runbooks regarding their scope with one big difference. SMA Runbooks are PowerShell Workflows, exclusively. This basically means that there is no graphical user interface to design Runbooks at this time Jobs When a Runbook is executed, a new instance, so called Job is started. The details output and results can be found in the Job Log for each Runbook.

10 3. Installing SMA 3.1 Prerequisites Service Management Automation is a solution that ships with System Center Orchestrator 2012 R2 and requires SPF (Service Provider Foundation) and WAP (Windows Azure Pack) as a prerequisite. As SMA relies on Windows Azure Pack Admin Portal Web Sites components and APIs, installing Windows Azure Pack in a basic configuration is NOT a mandatory step to take before installing SMA. However, to manage and operate Runbooks from a web gui, WAP Admin components have to be deployed. For more information on how to deploy Windows Azure Pack see the TechNet documentation. See here on how to install SPF as part of the integration between WAP, SMA, and your VM Cloud resources: It s a best practice to deploy Windows Azure Pack as a distributed architecture. Therefore the SMA web service as well as the Runbook Worker should be deployed to dedicated servers. The SMA database can be deployed to the same SQL instance as WAP and SPF. It is a best practice to put the Runbook Worker service on the same hosts as the SMA Web service. Other Prerequisites Server 2012 R2 IIS 7.5 or higher IIS Security Basic Authentication IIS Security Windows Authentication IIS URL Authorization IIS Application Development ASP.NET 4.5.NET Features 4.5 WCF Services HTTP Activation Install-WindowsFeature Web-Server,Web-Common-Http,Web-Basic-Auth,Web-Windows- Auth,Web-URL-Auth,Web-Net-Ext45,Web-Asp-Net45,Web-Mgmt-Console,Web-Mgmt- Console,NET-WCF-HTTP-Activation45

11 3.2 Installing the SMA Web Service First we kick off the SMA Web Service Setup. You can find the binaries on System Center Orchestrator 2012 R2 media. Note: At this point we assume we have an existing Windows Azure Pack deployment in place. As an absolute minimum, you need the Admin API, Admin Portal and the Tenand API of WAP to manage SMA via web browser. SMA Portal and API installation

12 Choose a local or remote SQL instance to host the SMA database

13 It s best practice to use a domain user for the App pool service account Although you can use a selfsigned certificate for PoC environments, it s a best practice to use a valid webserver SSL certificate for production environments

14 After choosing CEIP and Update Options, click INSTALL to kick off the installation

15 3.3 Installing the SMA Runbook Worker This will install the Automation Runbook Worker Service. As a best practice, Runbook Workers are deployed to dedicated machines together with the SMA Web Service.

16 See chapter 6 for questions about SMA licensing. Choose the SQL instance hosting the SMA database deployed before.

17 Choose the same user account as for the SMA web service After choosing CEIP and Update Options, click INSTALL to kick off the installation

18 3.4 Installing the SMA PowerShell Module Installing the SMA PowerShell module to a Runbook Worker or any other machine can be useful because SMA comes with cmdlets to automate the SMA deployment configuration. Additionally you can import and export SMA Runbooks, gather Runbook and job information, and start/stop/suspend SMA Runbooks using the cmdlets. There s nothing more than choosing to install the Module. A small MSI Setup will kick in and deploy the SMA PowerShell Module: Microsoft.SystemCenter.Service ManagementAutomation

19 3.5 Registering SMA Endpoint Open Azure Pack Admin Portal: h:30091 Switch to Automation Pane Choose to register a new SMA Endpoint. This links the SMA web service and API to Azure Pack. Provide the SMA web service endpoint and the credentials to register the endpoint. The account used here must be a member of the smaadmingroup local group on the SMA web service machine.

20 4. Scaling Out a SMA Deployment The different components can be made highly available. Especially the Runbook Workers, taking most of the SMA load, can be scaled out to as many simultaneous workers as needed. The API and Portal components would usually be made highly available and load-balanced using NLB or any supported 3 rd -party load balancer. The next few chapters focus on how to scale out the Runbook Workers 4.1 Installing Additional Runbook Workers To distribute the Runbook workloads, additional Runbook Workers need to be deployed. The secondary installation procedure is exactly the same as for the primary worker. After the installation you have to reconfigure the SMA environment to recognize the additional worker(s). Note: If you reference external files, scripts, log files or modules in your Runbooks, make sure they exist on each of the Runbook Workers or use InlineScript blocks to connect to remote machines with the appropriate modules and consoles installed. 4.2 Stop All Runbook Worker Services Start a PowerShell console with elevated rights. First, let s configure the drain time, meaning the time we give the existing Runbook Worker to finish running jobs. After hitting the drain time value, they won t pick up new jobs until restarted. Set-SmaAdminConfiguration -DrainTimeInSeconds 300 We ll wait here for 5 minutes and get ourselves a coffee. Note: The maximum drain time allowed by the workers is 20 minutes While we wait for the drain time to kick in, we can gather some nice info about SMA Jobs. To show all running jobs you can use the following cmdlet: Get-SmaJob -WebServiceEndpoint where {$_.JobStatus -eq 'Running'} To display an underlying Runbook behind a job, note the job ID and pass it to the Get-SmaRunbook cmdlet: Get-SmaRunbook -WebServiceEndpoint -ID "fb47c86e-1bd9-4b78-b b8d62f5f4" Then we finally stop the Runbook service on all current configured workers: Get-SmaRunbookWorkerDeployment -WebServiceEndpoint Foreach-Object {Invoke-Command $_.Computername {Stop-Service rbsvc}}

21 4.2.1 Add a New Runbook Worker Deployment to SMA You have to be careful here. As the New-SmaRunbookWorkerDeployment cmdlet overwrites the Runbook servers registered to SMA with the new values. Therefore we create an array of the existing servers and add our new Runbook server to the array before calling the cmdlet. $newworkerhost = "SRVRBWRK02" $webservice = " $workers -WebServiceEndpoint $webservice).computername) $workers += $newworkerhost New-SmaRunbookWorkerDeployment -WebServiceEndpoint $webservice -ComputerName $workers After this we can review the currently configured Runbook workers in our SMA deployment. Get-SmaRunbookWorkerDeployment -WebServiceEndpoint This should now show all your Runbook Worke Runbook Worker Start the Service on All Runbook Workers In this last step, we are going to start or restart the rbsvc (Runbook Service) on every deployed Runbook Worker: Get-SmaRunbookWorkerDeployment -WebServiceEndpoint ForEach-Object { Set-Service rbsvc -ComputerName $_.Computername Status running }

22 5. Creating and Using Runbooks 5.1 Modules and Consoles Local Execution As you already know, Runbooks are executed by one or more Runbook Worker. So be sure you install all required management consoles, PowerShell modules and other files you need to reference inside your Runbooks on all of the Runbook Workers. As an example, if you want to automate SCVMM, SCCM, SCOM or any other solution which is delivered with appropriate PowerShell modules, you have to install the management components on each of the Runbook Workers. If we take SCVMM as an example here, you have to deploy the SCVMM console to each Worker Remote Execution (PowerShell Remoting) If you are using remote PowerShell sessions, be sure to use persistent sessions for multiple commands to the same remote machine. Also ensure that the required modules are present on the remote machine. Persistent PowerShell sessions have huge advantages over non-persistent aka adhoc sessions. Persistent PowerShell sessions can be referenced for multiple sequential commands or script blocks being executed remotely on the target machines while leveraging a single WinRM connection. Additionally they are fault tolerant against network outages during execution. A persistent PowerShell remote session tries to reconnect itself to a disconnected endpoint while the remote jobs are continued to be executed on the remote machine. If you are unfamiliar with PowerShell Remoting and persistent sessions refer to these link: Note: As a best practice use PSComputerName and PSCredential parameters when using inline scripts instead of multiple Invoke-Command calls.

23 5.2 Creating Runbooks A SMA Runbook is basically a PowerShell Workflow. Therefore almost anything within a regular PowerShell script can be used in SMA Runbooks. However, keep in mind that PowerShell Workflows are slightly different to regular PowerShell scripts. PowerShell Workflows are translated on execution time into a Windows Workflow Foundation compatible code. The WWF then executes the compiled PowerShell code. Workflows have some limitations and syntactical differences to regular scripts. Before we look at how to create a new Runbook inside SMA, there is some need to know about PowerShell Workflows Anatomy of a PowerShell Workflow Windows PowerShell Workflows are designed for scenarios where these attributes are required: Long-running activities Repeatable activities Frequently executed activities Running activities in parallel across one or more machines Interruptible activities that can be stopped and restarted, which includes surviving a reboot of the system against which the workflow is executing Here is an example of a PowerShell Workflow executed on a SCVMM remotely, cleaning up VM checkpoints, where the creation date is older than a defined amount of days. I ll refer to this example a few times as we look more under the hood of the code below. Additionally you can find all the sample code under appendix B (chapter 9). Some side notes on the example here: In this example I m using a PowerShell remote session towards VMM, therefore I had to include the code into an InlineScript block. To use the variables and parameters defined on the root scope of the workflow within the InlineScript block, I had to refer to them via the Using scope modifier. While workflows have some additional capabilities they also have some restrictions. Refer to chapter 8 for more information about these restrictions.

24 5.2.2 Creating the Runbook But for now, we ll leave the PowerShell Workflow theory and dig into the SMA Portal to create the first SMA Runbook. As an example, we ll create a Runbook to cleanup VM checkpoints (delete or commit them if older than a defined amount of days). Open the Azure Pack Admin Portal: h:30091 Switch to Automation Pane Give the Runbook a nice name. You should consider to use the official PowerShell naming convention: Use this as an Example: Verb-SingularNoun Allowed are: letters, numbers, dashes, underscores. Has to begin with a letter. E.g. cleanup-vmcheckpoint Note: It s a best practice to use PowerShell approved nouns and verbs. Also keep the in mind that the Runbook name can t be different to the workflow name inside the Runbook code! So choose your names wisely. We will leave the TAGS empty for now. We ll have a deeper look at the TAGS later in this paper

25 Check if the Runbook has been created successfully Click on the created Runbook to edit it. Choose AUTHOR / DRAFT Place your code here. The editor provides basic syntax highlighting and autocompletion. However, for complex workflows you might use an external editor like PowerShell ISE, which is part of Windows, or any other professional development environment. Refer to Chapter 5.5 for details on how to use external editors.

26 1. Choose SAVE to keep the changes Test the Runbook. The Status should switch from QUEUED to STARTING within a few seconds as it gets picked up by a Runbook Worker. The Output pane shows errors and messages you pump out using the Write-Output cmdlet. Refer to chapter 5.14 for information about debugging and logging 3. Choose Publish to make the Runbook available. While you continue to edit and author your Runbook, you always have two versions of it available, the published one and the draft one. Testing the Runbook always targets the draft version Note on Testing Runbook System Center Orchestrator ships with a tool called Runbook Tester, where you can test your Runbook and step through the Runbook actions. These tests are always executed as the user account which started the Runbook Designer tool. SMA does not have a dedicated testing tool yet, so even if you choose to invoke a test run of your Runbook, it ll be picked up by a Runbook Worker and executed as the Runbook Service user account.

27 5.3 Creating Schedules Choose a Runbook and create a new schedule. You can also link an existing schedule to a Runbook. For our example we want the Runbook to be executed daily. Name the schedule. Spaces are allowed, but consider to use underscores instead of dashes, to keep you free from escaping characters when modifying a schedule using PowerShell

28 This screen appears if the scheduled Runbook has parameters. Parameters defined as mandatory have to be submitted on execution, such declared as optional can be left empty. So you have to define the parameter values within the schedule object. You can of course create multiple schedules for the same Runbook to have it executed with different parameters. So, for example, we want to delete checkpoint from productive VMs after 2 days, while we keep checkpoints for dev and test VMs for up to 30 days.

29 5.4 Adding Connections, Credentials and other Assets Global assets inside SMA are: Runbooks Connections (to other systems) Credentials Schedules Variables These type of objects share more or less the same idea of configurations and variables in Orchestrator. They can be used to keep your workflow code clean and free of hardcoded values. On the Automation pane you can add other types of SMA objects such as connections for SCVMM, SC Configuration Manager, OpsManager, etc., as well as credentials and variables to be reference inside Runbooks. In the example above I used a Connection Object for SCVMM to keep the workflow code clean of server names and hardcoded credentials.

30 5.4.1 Adding Connections An Automation Connection contains the information required to connect to an external system. External means outside SMA. You can also link a SMA instance with another by creating an SMA connection object. Connection objects typically store server/port connection information as well as credentials to connect to external systems. By using Connection Objects we can keep out Runbook-code clean from hardcoded server names and credentials. If a server name or credential changes, we just have to edit the Connection Object instead of touching all affected Runbooks. (Automation / Assets / Add Settings) For our demo script we need a VMM Connection Object.

31 The Server, Username and Password to connect to VMM. Note: There are two ways connecting to VMM in this case. Either you install the VMM console on each Runbook Worker, or you create a remote PowerShell session within an InlineScript block in your Runbook. Or via PowerShell $websvc = " -Name VMM_LAB - ConnectionTypeName VirtualMachineManager mesecurepassword"} -Description "Connection to Virtual Machine Manager" - WebServiceEndpoint $websvc Referencing a Connection in a Runbook An Automation Connection contains the information required to connect to an external system. External means outside SMA. You can also link a SMA instance with another by creating an SMA connection object. Connection objects typically store server / port connection information as well as credentials to connect to external systems. $con = Get-AutomationConnection Name VMM_LAB $securepw = ConvertTo-SecureString AsPlainText String $con.password Force $credential = New-Object TypeName System.Management.Automation.PSCredential ArgumentList $con.username, $securepw Get-SCVMMServer Computername $con.computername Credential $credential Unfortunately the connection object does not store credentials as a PSCredential object. Therefore we have to generate one first. We need a PSCredential as the VMM connection will run within an InlineScript block within the Runbook. Note: The activity Get- AutomationConnection along with all other activities beginning with Get-Automation* do only exist inside an SMA Runbook To use them with an external IDE, refer to chapter: 5.5 In this example we are going to connect a VMM instance

32 And here is a code extract from our Runbook example: Note: Explained again here. Using InlineScript activity saves us from deploying SCVMM Console binaries and modules to the Runbook Workers, as we are remoting directly to SCVMM.

33 5.4.3 Adding Credential Objects Credential objects are mostly used when connecting to remote computers within a Runbook and an appropriate Connection Type for a Connection Object is not available. Add a new credential object (Automation / Assets / Add Settings) Or via PowerShell $websvc = " $cred = Get-Credential Set-SmaCredential Name "Host_Management_Account" -WebServiceEndpoint $websvc Value $creds Referencing a Credential Object in a Runbook $cred = Get-AutomationPSCredential Name "Host_Management_Account This is pretty straightforward by issuing the Get-SmaCredential

34 5.4.5 Adding Variables Add a new SMA variable (Automation / Assets / Add Settings) and define the data type The default setting is not to encrypt the variable value. You might want to choose to encrypt it, if it contains sensitive information. But doing so makes your Runbooks less portable as the information can t be exported. Or via PowerShell $websvc = " $value = "$ENV:SYSTEMDRIVE\Logs\SMA" Set-SmaVariable -Name "GlobalLogPath" -Value $value -Description "a variable we can use in multiple Runbooks" -WebServiceEndpoint $websvc

35 5.4.6 Referencing a SMA Variable in a Runbook $logpath = Get-AutomationVariable -Name "GlobalLogPath" This goes as well pretty straightforward by issuing Get-AutomationVariable inside a Runbook 5.5 Using External Development Environments As already mentioned, the built-in web editor to create and edit SMA workflows is not really powerful. You might want to use PowerShell_ISE which is part of Windows, SAPIEN PowerShell Studio or any other PowerShell aware development environment. To make external code transportable you have to import some PowerShell modules, which are available to the SMA editor, but not to external environments. Given an example that you re using Connection and Credential assets as described in the chapters before, by default the required cmdlets are not available outside the SMA web editor. Thankfully, we can download a module called EmulatedAutomationActivities from TechNet, so we get those cmdlets back in our ISE external editor. See this link for download and how to install the module: Nesting Runbooks/Publishing Data As we all know, Orchestrator has a data bus to which you can publish data being available to further actions or Runbooks. SMA doesn t have this kind of store for passing output data to the next Runbook. But hey, as it s all PowerShell Workflow-based, of course we can nest Runbooks, meaning call another Runbook inside a Runbook and pass output from the first to subsequent Runbooks using parameters. The big thing here is we have to respect the variable scopes in PowerShell Workflows. Especially when using remoting or InlineScript activity, there are some limitations. Variables within InlineScript blocks are not visible to the workflow. Also remember that using scope modifier is not available to pass local variables to a remote PowerShell session within a workflow. Using scope modifier is reserved to pass variables from the parent workflow scope to an InlineScript activity. For more information on how to pass local variables into a remote session inside an InlineScript block refer to chapter 8

36 Workflow Get-Parameter { param( [Parameter(Mandatory=$true)] [DateTime]$DateFromOtherWF ) Write-Output $DateFromOtherWF } Workflow Test-Parameter { $result = InlineScript } { $date = Get-Date Return $date } Get-Parameter -DateFromOtherWF $result In the example above we return a variable explicitly back from the InlineScript block to the parent workflow. Afterwards we call another workflow, where we use the returned value as a parameter. Chris Sanders (MSFT) has a great blog post about nested Runbooks: Runbook-input-output-and-nested-Runbooks.aspx

37 5.7 Linking Runbooks to VM Cloud Action Events SMA Runbooks can be linked to VM Cloud events. The following table represents the different events, which can be used within a VM Cloud to link Runbooks with. As an example, you might want to kick off a workflow, each time a virtual machine gets stopped, created or deleted, or maybe perform some additional network script actions each time a tenant creates a new network. The following table illustrates the different VM Cloud action-triggered events, where you can link SMA Runbooks being invoked upon one or more of those events. Refer to the following TechNet article for more information:

38 Before continuing you have to register SMA with your VM Cloud within WAP Portal. See here for a how to: To link an existing Runbook to a VM Cloud action/event, the Runbook has first to be tagged. The corresponding tag is SPF SPF stands for the Service Provider Foundation which is, as you already know, part of the Windows Azure Pack deployment.

39 In this example we choose the event creation of a standalone VM and link our Runbook to the event Note! The host running SPF must trust the SSL certificate bound to the SMA web service endpoint to fire up SMA Runbook based on SPF-triggered events.

40 5.7.1 Getting Runbook Parameters and Resource Objects What if we want to get the job parameters from a Runbook which has been invoked by SPF, because we linked a VM Cloud action to a SMA Runbook? Linking a Runbook for an SPF action invokes the Runbook with tons of parameters and information about the original object the Runbook was targeted. But how to access those parameters? SMA jobs have a variable called $PSPrivateMetaData. ( Special thanks to Jim Britt, MSFT for this hint). Usually this parameter includes private job data like JobID and JobContextID. You can easily output the content of this variable. Here s an example: workflow Get-VMCreatedInfo { #Get Job Parameters and object information $objectname = $PSPrivateMetaData.Name $sourceobj = $PSPrivateMetaData.resourceObject $action = $PSPrivateMetaData.Action $params = $PSPrivateMetaData.params $VMMJobID = $PSPrivateMetaData.VMMJobId #Format the parameters and create a hash table with keys and values because we get it as a string first #We use an InlineScript activity because (add) method to hash table is not supported natively in workflows $params = $params -split (',') -replace ('"','') -replace ('{','') -replace ('}','') $sourceobj = $sourceobj -split (',') -replace ('"','') -replace ('{','') - replace ('}','') $params = InlineScript { $paramhashtable foreach ($p in $using:params) { $key = ($p -split (':'))[0] $value = ($p -split (':'))[1] $paramhashtable.add($key,$value) } } #Return the hash table back to the workflow return $paramhashtable } Write-Output $params

41 5.7.2 Getting Runbook Parameters and Resource Objects via OData Thanks to the OData model of SMA web service, you can also browse the SMA s OData structure using a browser or via Invoke-RestMethod cmdlet. The good news, you can browse the OData model of SMA via web browser: To view the structure in XML format you have to disable the Feed Reading View in IE s content tab To view a specific object type browse to it using the following schema: /<objecttype> But of course you don t want to use the browser to gather information about Runbooks, jobs, or their parameters. PowerShell has an Invoke-RestMethod cmdlet which lets you browser an ODatabased REST web service or invoke REST requests as GET/PUT etc. The following sample script gathers all running jobs of a specific SMA Runbook, searches for referenced job execution context and displays job parameters. Additionally it gets the referenced VMM Job ID as well as the GUID of

42 the virtual machine being created on VMM. Refer to chapter 5.7 for more information on how to link SMA Runbooks based on VM Cloud action events.

43 5.8 Calling an Orchestrator Runbook from SMA This can be useful whether you want to integrate with an existing Orchestrator deployment or just want to leave some logic in Orchestrator. Given the example that you have an SC Orchestrator Runbook which performs action on VMs when they are created, updated, or deleted. SMA allows you to simply trigger a SMA Runbook based on VM Cloud action events, as seen earlier in this whitepaper. So you could use SMA to trigger and fire up a small Runbook in SMA which then kicks of the Orchestrator Runbook. 2 First we need to define a connection object for the Orchestrator Web Service Connection. 1 Open the Azure Pack Admin Portal and navigate to Automation. Choose the Assets tab and click on Add Setting 3 Choose Add Connection

44 Choose an Orchestrator Connection Object Name it and optionally add a description Add the Server name, Port, Username and Password to connect. Remember that this user has to be granted to execute Runbooks on the Orchestrator server.

45 Create a new SMA Runbook and edit it. c/runbooks To get the Runbook ID from your Orchestrator you can browse the Orchestrator Web Service

46 5.9 Calling an SMA Runbook from Orchestrator For this task we need a few things as well A Runbook (workflow) in SMA with or without parameters depending on the requirements SMA PowerShell module Installed from System Center Orchestrator R2 media on all Orchestrator Runbook servers An Orchestrator Runbook with a PowerShell/Script execution activity to kick off the SMA Runbook (Optional but recommended: Orchestrator Integration Pack for PowerShell Script Execution V1.2 Install the SMA PowerShell module on all System Center Orchestrator Runbook servers

47 Create a SMA Runbook. In this example we use again the Runbook to delete any Hyper-V VM checkpoints (snapshot) where its creation date is older than a defined amount of dates. The parameter $gracedays has to be submitted. We will submit it when calling the Runbook from an Orchestrator activity. Save and publish the Runbook (Get-SmaRunbook -Name vmm-cleanup-vmcheckpoints - WebServiceEndpoint Get the Runbook ID using SMA PowerShell module. Node the ID, run this command in a PowerShell console, no evaluated rights are required for this command We now switch to the SC Orchestrator Console. Navigate to Global Settings Variables to define the SMA web service endpoint. Now this variable can be easily used in all Orchestrator Runbooks without knowing the full URL Create Execute PowerShell Script Runbook Activity in Orchestrator. The Parameter value is of type hash table. So if your SMA Runbook requires more than one parameter, define them by using a simple hash table e.g. =999}

48 5.10 Importing and Exporting Runbooks While the default SMA PowerShell cmdlets allow to import Runbooks, they do not allow exporting them. Here s where SMART comes into play. SMA Runbook Toolkit is a PowerShell-based solution which helps with these tasks. Beside importing and exporting Runbooks together with their properties, SMART also comes with a conversion helper for Orchestrator Runbooks. See chapter 5.11 for more information on how to convert an Orchestrator Runbook to SMA. You can download the SMART solution under the following link: Automation Service Management Automation SMA Runbook Toolkit Spotlight SMART for Runbook Import and Export After downloading the solution you have to deploy it to your SMA instance. Make sure you unblock all PS1 files after download. The installation script returns success on completion: After this you should see 4 new Runbooks inside SMA Portal

49 Exporting a Runbook While the default SMA PowerShell cmdlets allow to import Runbooks, they do not allow exporting $WebServiceEndpoint = " $ExportDirectory = "C:\temp\RunbookExport" $RunbookName = "VMM-add-VMRolePermission" # Find the RunbookRunbook named Runbook-Example $Runbook = Get-SmaRunbook -WebServiceEndpoint $WebServiceEndpoint Where-Object -Match -Property RunbookName "$RunbookName" E:\SMA\Tools\SMART\Export-SMARunbooktoXML.ps1 - RunbookName $Runbook.RunbookName -ExportDirectory $ExportDirectory ` -WebServiceEndpoint $WebServiceEndpoint EnableScriptOutput $True ` -ExportPS1 $True ExportVars $False ExportCreds $False ExportSchedules $False ` -ExportAssets $False This little example exports a specific Runbook to a local folder. The Runbook Metadata and the plain PowerShell code are exported separately For more examples and information about SMART refer to the original blog post:

50 5.11 Converting Orchestrator to SMA Runbooks SMART has another great tool helping to perform the transition from Orchestrator to SMA, the SMART Runbook Conversion Helper (SMART RCH). For details and the download link click here: Automation Service Management Automation SMA Runbook Toolkit Spotlight SMART Runbook Conversion Helper Keep in mind that the SMART solution is not officially supported, and you use it at your own risk. Once downloaded, unblock the file and run it with PowerShell. The tool tries to connect to the local server trying to find a local SQL instance with Orchestrator database deployed. You can change to a remote host of course by supplying the required parameters..\sma-runbookconversionhelper.ps1 -DBServer sco.demonet.ch -DBPort DBName Orchestrator The tool lists the Orchestrator Runbook Hierarchy From here you can select a Runbook to convert by selecting the specific Runbook and clicking on Export.

51 By default the Runbook will be converted to a PowerShell Workflow and displayed in a PowerShell_ISE window. The next steps would be to check the code, clean it up and import the Runbook using SMART into SMA, and here s your first converted Orchestrator Runbook in SMA. For more detailed information and examples refer to the original blog post:

52 5.12 Extending SMA with Additional Modules Although SMA comes with a huge set of included PowerShell modules, you might like to import additional modules into the framework. In fact, modules replace Orchestrator Integration Packs. Creating and importing custom modules has a huge advantage. Imported modules are distributed automatically among all Runbook Workers, additionally their cmdlets are transparent to the web editor auto-completion feature Adding/Importing Modules In this example, we re going to import the Active Directory (ADDS) PowerShell module into SMA. Adding or importing a module into the SMA portal makes the exported cmdlets available to the SMA portal. Note! Modules you d like to import, have to be zipped and have all referenced assemblies and other external code to fit a single folder. If the external module can t fit a single folder for all references, consider to create a so called Portable Module. Refer to next chapter for more information about Portable Modules. Note! There is no need to manually distribute modules among the Runbook Workers, as soon as they are imported into SMA. Install-WindowsFeature RSAT-AD-PowerShell C:\Windows\System32\WindowsPowerShell\v1.0\Modules\A ctivedirectory First you have to install the Active Directory RSAT PowerShell module on all Runbook Workers Create a ZIP file containing the module folder. Copy the zipped module to the SMA web module directory

53 Switch to the SMA Admin Portal and go to Automation / Assets Choose Import Module Browse and select the ZIP file we created before Import was successful

54 Extending SMA with custom Modules SMA ships with a default set of Powershell modules already integrated into SMA. Additional modules such as your own custom modules can be imported into SMA. Importing custom modules makes them available to all Runbook Workers, without the need to distribute them using other deployment technologies. Additionally, the activities (cmdlets) are available to the SMA web editor. Joe Levy from MSFT has a great blog post on how to create and import your own custom modules into SMA Portable Modules Portable modules can be compared to DNS Stub Zones. As DNS Stub Zones, portable modules have all authoritative information inside the module code, but they do not contain any functionality. A portable module contains all functions and cmdlets of its original parent module, but not the plain code, just a stub link to it. The execution is "proxied" to the original module. But hey! What are they used for? As mentioned earlier, SMA requires imported modules to be packaged within a single zipped folder. System Center Components like SCVMM and OpsMgr, require additional DLL references outside of the plain module, so they can t be directly imported into SMA. Therefore they are used as portable modules. Trying to call a cmdlet from a portable module directly in the SMA Runbook will result in the following error: <your worker> does not have the Azure module installed. Either this cmdlet must be called from an inlinescript against a machine with the Azure module installed, or you must install the Azure module on <your worker> (<your worker> does not have the Azure module installed. Either this cmdlet must be called from an inlinescript against a machine with the Azure module installed, or you must install the Azure module on <your worker>) So what does us this error message want to tell? Exactly what it seems. As the cmdlets exposed in the portable module are currently not available on the Runbook Worker, which executed the Runbook. We have either the possibility to use a InlineScript activity and call the cmdlets on a remote machine, or we install the required native modules or console components on all the Runbook Workers.

55

56 5.14 Checkpoints As SMA Runbooks are PowerShell Workflows, they support Checkpoints. Checkpoints within Workflows are used to mark the progress of a workflow. So if at any point, the workflow gets suspended because of an error or exception, it can be resumed from the last successful checkpoint. By Default, Workflows get a checkpoint at launch and another one at the end of the workflow. Additional checkpoints can be set as follows: After each successful executed cmdlet (valid for all cmdlets supporting the PSPersist parameter Workflow test-wfcheckpoint { get-process cmd -PSPersist $true }..or manually at any time or if the cmdlet does not support PSPersist parameter Workflow test-wfcheckpoint { Param( [Parameter(Mandatory=$true)] [STRING]$PoolName ) } Get-StoragePool $PoolName Checkpoint-Workflow Note! InlineScripts do not support Workflow checkpoints. A checkpoint has to be set either before or after the execution of an inlinescript Resuming a Workflow To resume a Workflow just use the SMA Web Gui..or the SMA Powershell cmdlet Resume-SMAJob

57 5.16 Debugging and Logging Somewhere, sometime things go wrong. So logging and debugging SMA Runbooks can become quite important. That being said, it might be a valuable way to develop outside the SMA portal, complete testing and import the Runbook into SMA. But sometimes this is just not possible. You can t link an external Runbook code to a VM Cloud action triggered event. SMA has three logging and debugging options for each Runbook. By default all three options are disabled, meaning set to False. You can of course set these options via PowerShell: $websvc = " Set-SmaRunbookConfiguration RunbookName "cleanup-vmcheckpoint" LogDebug $true LogVerbose $true LogProgress $true After Runbook execution you can find the logging records on the history tab of the referenced job context within the SMA portal.

58 Before enable all logging (Only default output available where you explicitly used Write-Output) And after enabling all logging options (Even verbose cmdlet output)

59 Best Practice for Logging in SMA Runbooks As a best practice you should use Write-Verbose as your default logging method inside the SMA Runbooks. To have verbose messages appearing in draft version of Runbooks while testing, use the parameter $VerbosePreference = "Continue" To have verbose messages appearing in published version, activate the "Log verbose records" option on the Runbook. Note! You should comment out the $VerbosePreference = "Continue" line in published versions of your Runbooks! Logging behavior inside an InlineScript To have the above parameter being valid inside an inlinescript, it must be referenced by the using sope modifier. $VerbosePreference = [System.Management.Automation.ActionPreference]$Using:VerbosePreference Getting Output and Debug Information via PowerShell Job output can of course also be gathered via PowerShell. To do this you have to install the SMA PowerShell module. $websvc = $jobs = Get-SmaJob -RunbookId "4501f6a0-4be5-4ccc-b16f-072ddf3e5bd8" - WebServiceEndpoint $websvc foreach ($job in $jobs) {Get-SmaJobOutput -Id "$($job.jobid.guid)" -Stream Any - WebServiceEndpoint $websvc} Here s an example to get the debug stream of a specific job: (Get-SmaJobOutput -Id "22f6d175-f805-4c2e-9de6-e1886b90c89b" -WebServiceEndpoint $websvc -Stream Debug).StreamText

60 Event Log SMA Runbook activities are logged under Microsoft Service Management Automation Event Log. Or get it more comfortable via PowerShell: Get-WinEvent -ProviderName "Microsoft-ServiceManagementAutomation" where {$_.LevelDisplayName -eq 'Error'}

61 6. FAQ Q: How does SMA compete with Orchestrator, which solution should I use? A: This hardly depends on your company strategy and on the efforts you may have invested into an existing System Center Orchestrator solution. Microsoft puts a lot of effort in Azure and the onpremises product Windows Azure Pack. While System Center Orchestrator ships with a graphical user interface to create and edit Runbooks, SMA does not yet. If you want to minimize a lock-in to Integration Pack native actions it could be a wise decision, to use PowerShell activities in your Runbooks instead of native ones, so transition to SMA will be smother in the future. If you are not sure why you should have a look at SMA I definitely recommend the following blog post by Christian Booth (MSFT) Q: Which permissions should I assign to the Runbook Service Account? A: If serving multi-tenant environments it s a best practice not to assign administrative permissions and use SMA Connection, and Credential assets instead. If deployed in a single-tenant environment you could decide to grant administrative permissions to the SMA Runbook Service Account on managed target systems and applications. However, be aware that while the deployment is growing, you re creating a kind master of disaster account which has at least to be protected with a strong password to be changed frequently. As a best practice, create dedicated connection objects per tenant and product to automate. Q: How can I delegate SMA administrative permissions? A: At the time being, there is role based access model for SMA. Either you are an SMA Admin or you're not. At the end this does not differ a lot from System Center Orchestrator concept. As SMA is v1.0, it will evolve. Q: How can I design and arrange SMA Runbooks, which tool do I have to use? A: At the time being, there is no graphical user interface to design and arrange Runbooks or activities. SMA Runbooks are written in PowerShell as workflow elements. Best authored in PowerShell_ISE and imported to SMA. The built-in editor inside the SMA portal is good for small number of code lines and supports auto-completion and syntax highlighting.

62 Q: How is SMA licensed? A: As SMA is part of the System Center Orchestrator 2012 R2, it requires either Standard or Datacenter license for System Center 2012 R2. Q: Can SMA be deployed as a standalone product? A: Yes. However, to benefit of a graphical interface (SMA Portal) for editing, invoking gathering log information, Windows Azure Pack Admin Portal components are a prerequisite. Q: Am I limited to use the WAP portal for authoring and execution of SMA Runbooks? A: Absolutely not. Runbooks can be authored outside of the SMA portal as they can be called without touching the portal. Refer to chapter 5 and following on how to create, edit and run SMA Runbooks. Q: Is there any graphical user interface to create and arrange SMA Runbooks? A: No, at the moment this is pure PowerShell work. Refer to chapter 5 and following on how to create, edit and run SMA Runbooks. Q: We spent ages configuring and customizing our Orchestrator Runbooks. If we want to start with SMA, do we have to re-engineer all the existing Runbooks? A: Well the concepts of Orchestrator and SMA Runbooks are completely different. If you ve used a lot of native actions available through integration packs instead of PowerShell scripts, then you might have to invest more time for transition and integration. However, you can start with SMA while keeping the most work intensive Runbooks on Orchestrator. See chapters 5.8 and 5.9 for how to integrate Orchestrator Runbooks with SMA. Q: Why are my Runbooks linked to VM Cloud Automation events not triggered? A: There are two main reasons for that. First, the machine running SPF must trust the SMA web service endpoint certificate. Second, you might have linked the Runbook to an incorrect VM Cloud Automation Event. Refer to the following link for a reference:

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

Automatizace Private Cloud. Petr Košec, Microsoft MVP, MCT, MCSE www.kosecsolutions.cz, @PetrKosec

Automatizace Private Cloud. Petr Košec, Microsoft MVP, MCT, MCSE www.kosecsolutions.cz, @PetrKosec Automatizace Private Cloud Petr Košec, Microsoft MVP, MCT, MCSE www.kosecsolutions.cz, @PetrKosec Session Objectives and Takeaways Introduction to Orchestrator Introduction to Service Management Automation

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

AUTOMATED DISASTER RECOVERY SOLUTION USING AZURE SITE RECOVERY FOR FILE SHARES HOSTED ON STORSIMPLE

AUTOMATED DISASTER RECOVERY SOLUTION USING AZURE SITE RECOVERY FOR FILE SHARES HOSTED ON STORSIMPLE AUTOMATED DISASTER RECOVERY SOLUTION USING AZURE SITE RECOVERY FOR FILE SHARES HOSTED ON STORSIMPLE Copyright This document is provided "as-is." Information and views expressed in this document, including

More information

Setup Guide for AD FS 3.0 on the Apprenda Platform

Setup Guide for AD FS 3.0 on the Apprenda Platform Setup Guide for AD FS 3.0 on the Apprenda Platform Last Updated for Apprenda 6.0.3 The Apprenda Platform leverages Active Directory Federation Services (AD FS) to support identity federation. AD FS and

More information

Step-By-Step Guide to Deploying Lync Server 2010 Enterprise Edition

Step-By-Step Guide to Deploying Lync Server 2010 Enterprise Edition Step-By-Step Guide to Deploying Lync Server 2010 Enterprise Edition The installation of Lync Server 2010 is a fairly task-intensive process. In this article, I will walk you through each of the tasks,

More information

Microsoft Windows PowerShell v2 For Administrators

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

More information

Connection Broker Managing User Connections to Workstations, Blades, VDI, and More. Quick Start with Microsoft Hyper-V

Connection Broker Managing User Connections to Workstations, Blades, VDI, and More. Quick Start with Microsoft Hyper-V Connection Broker Managing User Connections to Workstations, Blades, VDI, and More Quick Start with Microsoft Hyper-V Version 8.1 October 21, 2015 Contacting Leostream Leostream Corporation http://www.leostream.com

More information

Web Sites, Virtual Machines, Service Management Portal and Service Management API Beta Installation Guide

Web Sites, Virtual Machines, Service Management Portal and Service Management API Beta Installation Guide Web Sites, Virtual Machines, Service Management Portal and Service Management API Beta Installation Guide Contents Introduction... 2 Environment Topology... 2 Virtual Machines / System Requirements...

More information

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

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

More information

RoomWizard Synchronization Software Manual Installation Instructions

RoomWizard Synchronization Software Manual Installation Instructions 2 RoomWizard Synchronization Software Manual Installation Instructions Table of Contents Exchange Server Configuration... 4 RoomWizard Synchronization Software Installation and Configuration... 5 System

More information

Learning System Center App Controller

Learning System Center App Controller Fr System Center App Controller provides an integrated console that helps you manage public and private clouds, as well as cloud-based virtual machines and services. Learning System Center App Controller

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

Team Foundation Server 2012 Installation Guide

Team Foundation Server 2012 Installation Guide Team Foundation Server 2012 Installation Guide Page 1 of 143 Team Foundation Server 2012 Installation Guide Benjamin Day benday@benday.com v1.0.0 November 15, 2012 Team Foundation Server 2012 Installation

More information

Solution Overview. 2015, Hitachi Data Systems, Inc. Page 3 of 39 pages. Figure 1

Solution Overview. 2015, Hitachi Data Systems, Inc. Page 3 of 39 pages. Figure 1 Deploying Windows Azure Pack on Unified Compute Platform for Microsoft Private Cloud Tech Note Jason Giza/Rick Andersen Hitachi Unified Compute Platform Director is a converged platform architected to

More information

Deployment Guide: Unidesk and Hyper- V

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

More information

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

Setting Up Resources in VMware Identity Manager

Setting Up Resources in VMware Identity Manager Setting Up Resources in VMware Identity Manager VMware Identity Manager 2.4 This document supports the version of each product listed and supports all subsequent versions until the document is replaced

More information

DEPLOYMENT GUIDE DEPLOYING F5 AUTOMATED NETWORK PROVISIONING FOR VMWARE INFRASTRUCTURE

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

More information

Exam Ref 70-247 Configuring and Deploying a Private Cloud. Orin Thomas

Exam Ref 70-247 Configuring and Deploying a Private Cloud. Orin Thomas Exam Ref 70-247 Configuring and Deploying a Private Cloud Orin Thomas PUBLISHED BY Microsoft Press A Division of Microsoft Corporation One Microsoft Way Redmond, Washington 98052-6399 Copyright 2014 by

More information

RDS Migration Tool Customer FAQ Updated 7/23/2015

RDS Migration Tool Customer FAQ Updated 7/23/2015 RDS Migration Tool Customer FAQ Updated 7/23/2015 Amazon Web Services is now offering the Amazon RDS Migration Tool a powerful utility for migrating data with minimal downtime from on-premise and EC2-based

More information

WebSpy Vantage Ultimate 2.2 Web Module Administrators Guide

WebSpy Vantage Ultimate 2.2 Web Module Administrators Guide WebSpy Vantage Ultimate 2.2 Web Module Administrators Guide This document is intended to help you get started using WebSpy Vantage Ultimate and the Web Module. For more detailed information, please see

More information

Best Practices for Deploying System Center Virtual Machine Manager in Multiple Locations

Best Practices for Deploying System Center Virtual Machine Manager in Multiple Locations Best Practices for Deploying System Center Virtual Machine Manager in Multiple Locations Author: Damian Flynn, MVP Published: 25 October, 2013 1 Even with the continuous evolution of Microsoft s Windows

More information

Introduction to Mobile Access Gateway Installation

Introduction to Mobile Access Gateway Installation Introduction to Mobile Access Gateway Installation This document describes the installation process for the Mobile Access Gateway (MAG), which is an enterprise integration component that provides a secure

More information

Password Reset Server Installation Guide Windows 8 / 8.1 Windows Server 2012 / R2

Password Reset Server Installation Guide Windows 8 / 8.1 Windows Server 2012 / R2 Password Reset Server Installation Guide Windows 8 / 8.1 Windows Server 2012 / R2 Last revised: November 12, 2014 Table of Contents Table of Contents... 2 I. Introduction... 4 A. ASP.NET Website... 4 B.

More information

Team Foundation Server 2013 Installation Guide

Team Foundation Server 2013 Installation Guide Team Foundation Server 2013 Installation Guide Page 1 of 164 Team Foundation Server 2013 Installation Guide Benjamin Day benday@benday.com v1.1.0 May 28, 2014 Team Foundation Server 2013 Installation Guide

More information

Step by step guide for installing highly available System Centre 2012 Virtual Machine Manager Management server:

Step by step guide for installing highly available System Centre 2012 Virtual Machine Manager Management server: Step by step guide for installing highly available System Centre 2012 Virtual Machine Manager Management server: Here are the pre-requisites for a HA VMM server installation: 1. Failover clustering feature

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

Secure Messaging Server Console... 2

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

More information

Log Analyzer Reference

Log Analyzer Reference IceWarp Unified Communications Log Analyzer Reference Version 10.4 Printed on 27 February, 2012 Contents Log Analyzer 1 Quick Start... 2 Required Steps... 2 Optional Steps... 3 Advanced Configuration...

More information

Installing and Configuring vcloud Connector

Installing and Configuring vcloud Connector Installing and Configuring vcloud Connector vcloud Connector 2.7.0 This document supports the version of each product listed and supports all subsequent versions until the document is replaced by a new

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

SafeGuard Enterprise Web Helpdesk

SafeGuard Enterprise Web Helpdesk SafeGuard Enterprise Web Helpdesk Product version: 5.60 Document date: April 2011 Contents 1 SafeGuard web-based Challenge/Response...3 2 Installation...5 3 Authentication...8 4 Select the Web Help Desk

More information

App Orchestration 2.0

App Orchestration 2.0 App Orchestration 2.0 Integrated Provisioning Deployment Guide Prepared by: Nicholas Ceballos Commissioning Editor: Linda Belliveau Version: 6.0 Last Updated: December 12, 2013 Page 1 Contents Integrated

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

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

5nine Cloud Security Azure Pack Extension. Version 5.2

5nine Cloud Security Azure Pack Extension. Version 5.2 5nine Cloud Security Azure Pack Extension Version 5.2 June 2015 2015 5nine Software. All rights reserved. All trademarks are the property of their respective owners. No part of this publication may be

More information

THE WINDOWS AZURE PROGRAMMING MODEL

THE WINDOWS AZURE PROGRAMMING MODEL THE WINDOWS AZURE PROGRAMMING MODEL DAVID CHAPPELL OCTOBER 2010 SPONSORED BY MICROSOFT CORPORATION CONTENTS Why Create a New Programming Model?... 3 The Three Rules of the Windows Azure Programming Model...

More information

Authoring for System Center 2012 Operations Manager

Authoring for System Center 2012 Operations Manager Authoring for System Center 2012 Operations Manager Microsoft Corporation Published: November 1, 2013 Authors Byron Ricks Applies To System Center 2012 Operations Manager System Center 2012 Service Pack

More information

Click Studios. Passwordstate. Upgrade Instructions to V7 from V5.xx

Click Studios. Passwordstate. Upgrade Instructions to V7 from V5.xx Passwordstate Upgrade Instructions to V7 from V5.xx This document and the information controlled therein is the property of Click Studios. It must not be reproduced in whole/part, or otherwise disclosed,

More information

Secret Server Installation Windows 8 / 8.1 and Windows Server 2012 / R2

Secret Server Installation Windows 8 / 8.1 and Windows Server 2012 / R2 Secret Server Installation Windows 8 / 8.1 and Windows Server 2012 / R2 Table of Contents Table of Contents... 1 I. Introduction... 3 A. ASP.NET Website... 3 B. SQL Server Database... 3 C. Administrative

More information

Assignment # 1 (Cloud Computing Security)

Assignment # 1 (Cloud Computing Security) Assignment # 1 (Cloud Computing Security) Group Members: Abdullah Abid Zeeshan Qaiser M. Umar Hayat Table of Contents Windows Azure Introduction... 4 Windows Azure Services... 4 1. Compute... 4 a) Virtual

More information

RSA Authentication Manager 8.1 Virtual Appliance Getting Started

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

More information

SafeGuard Enterprise upgrade guide. Product version: 6.1

SafeGuard Enterprise upgrade guide. Product version: 6.1 SafeGuard Enterprise upgrade guide Product version: 6.1 Document date: February 2014 Contents 1 About this guide...3 2 Check the system requirements...4 3 Download installers...5 4 About upgrading...6

More information

Orchestrating Document and Media Management using CMIS

Orchestrating Document and Media Management using CMIS Orchestrating Document and Media Management using CMIS Technical Note - Integrating ActiveVOS with Alfresco CMIS Services AN ACTIVE ENDPOINTS TECHNICAL NOTE 2009 Active Endpoints Inc. ActiveVOS is a trademark

More information

SafeGuard Enterprise Web Helpdesk. Product version: 6.1

SafeGuard Enterprise Web Helpdesk. Product version: 6.1 SafeGuard Enterprise Web Helpdesk Product version: 6.1 Document date: February 2014 Contents 1 SafeGuard web-based Challenge/Response...3 2 Scope of Web Helpdesk...4 3 Installation...5 4 Allow Web Helpdesk

More information

SchoolBooking SSO Integration Guide

SchoolBooking SSO Integration Guide SchoolBooking SSO Integration Guide Before you start This guide has been written to help you configure SchoolBooking to operate with SSO (Single Sign on) Please treat this document as a reference guide,

More information

MicrosoftDynam ics GP 2015. TenantServices Installation and Adm inistration Guide

MicrosoftDynam ics GP 2015. TenantServices Installation and Adm inistration Guide MicrosoftDynam ics GP 2015 TenantServices Installation and Adm inistration Guide Copyright Copyright 2014 Microsoft Corporation. All rights reserved. Limitation of liability This document is provided as-is.

More information

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

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

More information

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

Migrating to vcloud Automation Center 6.1

Migrating to vcloud Automation Center 6.1 Migrating to vcloud Automation Center 6.1 vcloud Automation Center 6.1 This document supports the version of each product listed and supports all subsequent versions until the document is replaced by a

More information

SafeGuard Enterprise Web Helpdesk. Product version: 6 Document date: February 2012

SafeGuard Enterprise Web Helpdesk. Product version: 6 Document date: February 2012 SafeGuard Enterprise Web Helpdesk Product version: 6 Document date: February 2012 Contents 1 SafeGuard web-based Challenge/Response...3 2 Installation...5 3 Authentication...8 4 Select the Web Helpdesk

More information

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

Specops Command. Installation Guide

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

More information

Deploy Remote Desktop Gateway on the AWS Cloud

Deploy Remote Desktop Gateway on the AWS Cloud Deploy Remote Desktop Gateway on the AWS Cloud Mike Pfeiffer April 2014 Last updated: May 2015 (revisions) Table of Contents Abstract... 3 Before You Get Started... 3 Three Ways to Use this Guide... 4

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

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

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

SPHOL205: Introduction to Backup & Restore in SharePoint 2013. Hands-On Lab. Lab Manual

SPHOL205: Introduction to Backup & Restore in SharePoint 2013. Hands-On Lab. Lab Manual 2013 SPHOL205: Introduction to Backup & Restore in SharePoint 2013 Hands-On Lab Lab Manual This document is provided as-is. Information and views expressed in this document, including URL and other Internet

More information

Smart Cloud Integration Pack. For System Center Operation Manager. v1.1.0. User's Guide

Smart Cloud Integration Pack. For System Center Operation Manager. v1.1.0. User's Guide Smart Cloud Integration Pack For System Center Operation Manager v1.1.0 User's Guide Table of Contents 1. INTRODUCTION... 6 1.1. Overview... 6 1.2. Feature summary... 7 1.3. Supported Microsoft System

More information

AppLoader 7.7. Load Testing On Windows Azure

AppLoader 7.7. Load Testing On Windows Azure AppLoader 7.7 Load Testing On Windows Azure CONTENTS INTRODUCTION... 3 PURPOSE... 3 CREATE A WINDOWS AZURE ACCOUNT... 3 CREATE A LOAD TESTING ENVIRONMENT ON THE CLOUD... 6 CONFIGURE A WINDOWS AZURE STORAGE

More information

SafeGuard Enterprise upgrade guide. Product version: 7

SafeGuard Enterprise upgrade guide. Product version: 7 SafeGuard Enterprise upgrade guide Product version: 7 Document date: December 2014 Contents 1 About this guide...3 2 Check the system requirements...4 3 Download installers...5 4 About upgrading...6 4.1

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

Windows Intune Walkthrough: Windows Phone 8 Management

Windows Intune Walkthrough: Windows Phone 8 Management Windows Intune Walkthrough: Windows Phone 8 Management This document will review all the necessary steps to setup and manage Windows Phone 8 using the Windows Intune service. Note: If you want to test

More information

Implementing Moodle on a Windows High Availability Environment

Implementing Moodle on a Windows High Availability Environment Implementing Moodle on a Windows High Availability Environment Implementing Moodle 1.9 on 2 Microsoft Load Balanced Web Front End Server and a Microsoft SQL Server 2008 R2 Cluster environment Written by:

More information

Introduction to the EIS Guide

Introduction to the EIS Guide Introduction to the EIS Guide The AirWatch Enterprise Integration Service (EIS) provides organizations the ability to securely integrate with back-end enterprise systems from either the AirWatch SaaS environment

More information

How to Scale out SharePoint Server 2007 from a single server farm to a 3 server farm with Microsoft Network Load Balancing on the Web servers.

How to Scale out SharePoint Server 2007 from a single server farm to a 3 server farm with Microsoft Network Load Balancing on the Web servers. 1 How to Scale out SharePoint Server 2007 from a single server farm to a 3 server farm with Microsoft Network Load Balancing on the Web servers. Back to Basics Series By Steve Smith, MVP SharePoint Server,

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

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

Course 20533: Implementing Microsoft Azure Infrastructure Solutions

Course 20533: Implementing Microsoft Azure Infrastructure Solutions Course 20533: Implementing Microsoft Azure Infrastructure Solutions Overview About this course This course is aimed at experienced IT Professionals who currently administer their on-premises infrastructure.

More information

How To Install Powerpoint 6 On A Windows Server With A Powerpoint 2.5 (Powerpoint) And Powerpoint 3.5.5 On A Microsoft Powerpoint 4.5 Powerpoint (Powerpoints) And A Powerpoints 2

How To Install Powerpoint 6 On A Windows Server With A Powerpoint 2.5 (Powerpoint) And Powerpoint 3.5.5 On A Microsoft Powerpoint 4.5 Powerpoint (Powerpoints) And A Powerpoints 2 DocAve 6 Service Pack 1 Installation Guide Revision C Issued September 2012 1 Table of Contents About the Installation Guide... 4 Submitting Documentation Feedback to AvePoint... 4 Before You Begin...

More information

Implementing Microsoft Azure Infrastructure Solutions

Implementing Microsoft Azure Infrastructure Solutions Course Code: M20533 Vendor: Microsoft Course Overview Duration: 5 RRP: 2,025 Implementing Microsoft Azure Infrastructure Solutions Overview This course is aimed at experienced IT Professionals who currently

More information

How To Install An Aneka Cloud On A Windows 7 Computer (For Free)

How To Install An Aneka Cloud On A Windows 7 Computer (For Free) MANJRASOFT PTY LTD Aneka 3.0 Manjrasoft 5/13/2013 This document describes in detail the steps involved in installing and configuring an Aneka Cloud. It covers the prerequisites for the installation, the

More information

Dell Enterprise Reporter 2.5. Configuration Manager User Guide

Dell Enterprise Reporter 2.5. Configuration Manager User Guide Dell Enterprise Reporter 2.5 2014 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

More information

Hyper-V Protection. User guide

Hyper-V Protection. User guide Hyper-V Protection User guide Contents 1. Hyper-V overview... 2 Documentation... 2 Licensing... 2 Hyper-V requirements... 2 2. Hyper-V protection features... 3 Windows 2012 R1/R2 Hyper-V support... 3 Custom

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

Virtualizing your Datacenter

Virtualizing your Datacenter Virtualizing your Datacenter with Windows Server 2012 R2 & System Center 2012 R2 Part 2 Hands-On Lab Step-by-Step Guide For the VMs the following credentials: Username: Contoso\Administrator Password:

More information

System Center 2012 Suite SYSTEM CENTER 2012 SUITE. BSD BİLGİSAYAR Adana

System Center 2012 Suite SYSTEM CENTER 2012 SUITE. BSD BİLGİSAYAR Adana 2013 System Center 2012 Suite SYSTEM CENTER 2012 SUITE BSD BİLGİSAYAR Adana Configure and manage apps, services, computers, and VMs... 1 Operations Manager... 3 Configuration Manager... 4 Endpoint Protection...

More information

E-mail Listeners. E-mail Formats. Free Form. Formatted

E-mail Listeners. E-mail Formats. Free Form. Formatted E-mail Listeners 6 E-mail Formats You use the E-mail Listeners application to receive and process Service Requests and other types of tickets through e-mail in the form of e-mail messages. Using E- mail

More information

Mod 2: User Management

Mod 2: User Management Office 365 for SMB Jump Start Mod 2: User Management Chris Oakman Managing Partner Infrastructure Team Eastridge Technology Stephen Hall CEO & SMB Technologist District Computers 1 Jump Start Schedule

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

BUILDER 3.0 Installation Guide with Microsoft SQL Server 2005 Express Edition January 2008

BUILDER 3.0 Installation Guide with Microsoft SQL Server 2005 Express Edition January 2008 BUILDER 3.0 Installation Guide with Microsoft SQL Server 2005 Express Edition January 2008 BUILDER 3.0 1 Table of Contents Chapter 1: Installation Overview... 3 Introduction... 3 Minimum Requirements...

More information

Introduction. Just So You Know... PCI Can Be Difficult

Introduction. Just So You Know... PCI Can Be Difficult Introduction For some organizations, the prospect of managing servers is daunting. Fortunately, traditional hosting companies offer an affordable alternative. Picking the right vendor and package is critial

More information

FioranoMQ 9. High Availability Guide

FioranoMQ 9. High Availability Guide FioranoMQ 9 High Availability Guide Copyright (c) 1999-2008, Fiorano Software Technologies Pvt. Ltd., Copyright (c) 2008-2009, Fiorano Software Pty. Ltd. All rights reserved. This software is the confidential

More information

Murano User Guide. v0.2. Publication date 2013-09-09. Abstract. This document is intended for individuals who wish to use Murano Product.

Murano User Guide. v0.2. Publication date 2013-09-09. Abstract. This document is intended for individuals who wish to use Murano Product. Murano User Guide Murano User Guide v0.2 Publication date 2013-09-09 Abstract This document is intended for individuals who wish to use Murano Product. Table of Contents 1. How can I use Murano Service?...

More information

Kollaborate Server Installation Guide!! 1. Kollaborate Server! Installation Guide!

Kollaborate Server Installation Guide!! 1. Kollaborate Server! Installation Guide! Kollaborate Server Installation Guide 1 Kollaborate Server Installation Guide Kollaborate Server is a local implementation of the Kollaborate cloud workflow system that allows you to run the service in-house

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

Zerto Virtual Manager Administration Guide

Zerto Virtual Manager Administration Guide Zerto Virtual Manager Administration Guide AWS Environment ZVR-ADVA-4.0U2-01-23-07-15 Copyright 2015, Zerto Ltd. All rights reserved. Information in this document is subject to change without notice and

More information

AVG Business SSO Connecting to Active Directory

AVG Business SSO Connecting to Active Directory AVG Business SSO Connecting to Active Directory Contents AVG Business SSO Connecting to Active Directory... 1 Selecting an identity repository and using Active Directory... 3 Installing Business SSO cloud

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

Deploy App Orchestration 2.6 for High Availability and Disaster Recovery

Deploy App Orchestration 2.6 for High Availability and Disaster Recovery Deploy App Orchestration 2.6 for High Availability and Disaster Recovery Qiang Xu, Cloud Services Nanjing Team Last Updated: Mar 24, 2015 Contents Introduction... 2 Process Overview... 3 Before you begin...

More information

Installing and Configuring vcloud Connector

Installing and Configuring vcloud Connector Installing and Configuring vcloud Connector vcloud Connector 2.0.0 This document supports the version of each product listed and supports all subsequent versions until the document is replaced by a new

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

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

How to get MOSS 2007 dev. environment set up in Vista with sample project.

How to get MOSS 2007 dev. environment set up in Vista with sample project. How to get MOSS 2007 dev. environment set up in Vista with sample project. 1. Download MOSS 2007 SP1 setup file from Microsoft. Or use the OfficeServerwithSP1.exe file in the installers folder. 2. Download

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

File Share Navigator Online 1

File Share Navigator Online 1 File Share Navigator Online 1 User Guide Service Pack 3 Issued November 2015 Table of Contents What s New in this Guide... 4 About File Share Navigator Online... 5 Components of File Share Navigator Online...

More information

App Orchestration 2.0

App Orchestration 2.0 App Orchestration 2.0 Configuring NetScaler Load Balancing and NetScaler Gateway for App Orchestration Prepared by: Christian Paez Version: 1.0 Last Updated: December 13, 2013 2013 Citrix Systems, Inc.

More information

IceWarp Server. Log Analyzer. Version 10

IceWarp Server. Log Analyzer. Version 10 IceWarp Server Log Analyzer Version 10 Printed on 23 June, 2009 i Contents Log Analyzer 1 Quick Start... 2 Required Steps... 2 Optional Steps... 2 Advanced Configuration... 5 Log Importer... 6 General...

More information

Office 365 deployment checklists

Office 365 deployment checklists Chapter 128 Office 365 deployment checklists This document provides some checklists to help you make sure that you install and configure your Office 365 deployment correctly and with a minimum of issues.

More information