Hands-On Lab. Launching Contextual Conversations from the Lync Controls. Lab version: 1.0 Last updated: 12/17/2010

Size: px
Start display at page:

Download "Hands-On Lab. Launching Contextual Conversations from the Lync Controls. Lab version: 1.0 Last updated: 12/17/2010"

Transcription

1 Hands-On Lab Launching Contextual Conversations from the Lync Controls Lab version: 1.0 Last updated: 12/17/2010

2 CONTENTS OVERVIEW... 3 System Requirements 3 EXERCISE 1: INTEGRATE LAUNCH LINK AND DATA INTO A LYNC 2010 CONVERSATION... 3 Task 1 Beginning the Exercise... 3 Task 2 Registering the Package... 4 Task 3 Setting Contextual Data... 5 Task 4 Registering the Application... 8 EXERCISE 2: EXTENDING THE CONVERSATION WINDOW WITH SILVERLIGHT... 9 Task 1 Beginning the Exercise... 9 Task 2 Registering the Package Task 3 Adding the Silverlight Extension to the Conversation Window SUMMARY... 13

3 Overview Lab Time: 45 minutes Lab Folder: C:\%UC14TrainingKit%\Labs\3\Source\Before The After folder contains the completed lab exercises. Lab Overview: The Microsoft Lync 2010 Managed API provides several mechanisms for adding contextual conversation functionality to applications. In this lab, you will see how to deploy contextual application components to provide a rich context experience in a communications-enabled application. In this lab, you will: Register your application with Microsoft Lync 2010 so contextual conversation features will beavailable to all participants in the conversation. Start a contextual conversation that includes an application launch link and application data. Extend the Lync 2010 conversation window with a Silverlight application that displays application data. System Requirements You must have the following items to complete this lab: Microsoft Visual Studio 2010 Microsoft Lync 2010 Microsoft Lync 2010 SDK Lync Controls Microsoft Lync 2010 Managed API Two accounts (referred to as the primary and secondary lab users in this document), provisioned for the Microsoft Lync Server 2010, that are able to successfully sign in to Lync Exercise 1: Integrate Launch Link and Data into a Lync 2010 Conversation Task 1 Beginning the Exercise In this task, you will open the project and configure it to run with your accounts.

4 1. Navigate to Start >> All Programs >> Microsoft Visual Studio Click on the Microsoft Visual Studio 2010 icon to start Visual Studio Select File >> Open Project. 4. Navigate to the folder C:\%UC14TrainingKit%\Labs\3\Source\Before. 5. Open the AddingContexttoConversations.sln solution. 6. In Solution Explorer, right-click the LaunchLink project and select Set as Startup Project. 7. Open the LaunchLink project. 8. In Solution Explorer, open the App.config file. 9. Change the PrimaryLabUserId and SecondaryLabUserId values to the SIP URI of your primary and secondary lab accounts. 10. Replace the ApplicatonGuid with a new Guid. 11. Select View >> Task List and select Comments from the menu. 12. Start a remote desktop session as the secondary lab user. 13. Return to the primary lab user s session. Generate a new Guid with the Guid Generator tool. Go to Tools >> Create Guid in the Visual Studio 2010 menu or go to Start >> All Programs >> Visual Studio 2010 >> Microsoft Windows SDK Tools >> Guid Generator. Select option 4. Registry Format, click the New Guid button, click the Copy button and paste that value into the App.config file. Task 2 Registering the Package In this task, you will add the registry settings to deploy the contextual conversation components. 1. In Solution Explorer, open PackageRegistration_LaunchLink.reg. 2. Copy the new GUID from Task 1 into the [HKEY_CURRENT_USER\Software\Microsoft\Communicator\ContextPackages\{<GUID>}] value. 3. Change the Path entry to the path of LaunchLink.exe in the project s output directory, i.e. bin\debug. When entering the Path, use \\ instead of \. 4. Save the file. 5. Right-click the Launch Link project and select Open Folder in Windows Explorer. 6. Double click the.reg file to run it. 7. Open the Registry Editor by going to the Start menu and typing regedit.exe into the search field.

5 8. Navigate to HKEY_CURRENT_USER\Software\Microsoft\Communicator\ContextPackages\<GUID>. a. This is the GUID from the.reg file. 9. Confirm that the settings match those in the.reg file. 10. Copy the.reg file to the clipboard and switch to the secondary lab user s remote desktop session. 11. Paste the file to the desktop and double click to run it and create the same registry settings on the secondary lab user s desktop. If the secondary user does not have permission to view the solution, or is logged in to a different computer, copy the solution over and modify the path in the.reg file to point to the local copy of LaunchLink.exe. Task 3 Setting Contextual Data In this task, you will add launch link contextual data to the Lync Controls. 1. Navigate to TODO: Add the following code after the TODO: comment. This defines the contextual information for the conversation. ConversationContextualInfo context = new ConversationContextualInfo(); context.subject = selectedaccount.accountname; context.applicationid = _applicationguid; context.applicationdata = "AccountId:" + selectedaccount.id.tostring(); 3. The Subject specifies the text displayed in the invite to join the conversation, the ApplicationId specifies GUID of the registered application, and the ApplicationData specifies the command line arguments when the application is run. This configures the conversation window with a launch link for the application. 4. Navigate to TODO: Add the following code after the TODO: comment. This sets the context of the StartInstantMessagingButton and StartAudioCallButton controls to the object defined previously.

6 startinstantmessagingbutton.contextualinformation = context; startaudiocallbutton.contextualinformation = context; 6. Navigate to TODO: Add the following code after the TODO: comment. This retrieves the ConversationContextualInfo.ApplicationData conversation context from the command line arguments used to launch the application from the LaunchLink. if (App.CommandLineArgs.Count > 0 && App.CommandLineArgs["AccountId"]!= null) { LoadSelectedAccount(Convert.ToInt32(App.CommandLineArgs["AccountId"])); } 8. Navigate to TODO: Add the following code after the TODO: comment. This selects the account specified in the command line arguments in the list of accounts. foreach (var account in _accounts) { if(account.id == accountid) { accountslist.selecteditem = account; break; } } 10. Go to Start >> Start Without Debugging or press [Ctrl]+[F5] to start the application. 11. Select the Separate Parts Corporation account from the list.

7 12. Click the IM icon at the bottom of the window. 13. Type Can you discuss this account? into the conversation window and press the Enter key. 14. Switch to the secondary lab user s remote desktop session and click the toast message to receive the IM. 15. The toast message will display the name of the selected account. 16. Click on the link in the IM conversation window to launch the application. 17. The application is launch and the Separate Parts Corporation account is selected in the list of accounts. 18. Close the application and all Lync 2010 conversation windows. 19. Return to the primary lab user s remote desktop session.

8 Task 4 Registering the Application In this task, you will register the application so a contextual conversation can interact with a running instance of the application. 1. Navigate to TODO: Add the following code after the TODO: comment. This instantiates the ApplicationRegistration object and allows the conversation window to interact with a running application. private ApplicationRegistration _applicationregistration; 3. Navigate to TODO: Add the following code after the TODO: comment. This registers the application by its GUID and name. _applicationregistration = _lyncclient.createapplicationregistration( _applicationguid, _applicationname); _applicationregistration.addregistration(); 5. Repeat steps from Task 3 to confirm the application still works as it did in the previous task. 6. In the secondary lab user s session, close the IM window, but leave the application running. 7. Return to the primary lab user s session and close the IM window. 8. Select the Central Discount Store account in the application. 9. Click on the IM icon to start another conversation. 10. Type a message and press the Enter key. 11. Switch to the secondary lab user s session. 12. Click the link in the conversation window. 13. Verify that the application automatically selects the account selected in the primary lab user s session.

9 14. Close the IM windows and applications. Exercise 2: Extending the Conversation Window with Silverlight Task 1 Beginning the Exercise In this task, you will open the project and configure it to run with your accounts. 1. Navigate to Start >> All Programs >> Microsoft Visual Studio Click on the Microsoft Visual Studio 2010 icon to start Visual Studio Select File >> Open Project. 4. Navigate to the folder C:\%UC14TrainingKit%\Labs\3\Source\Before. 5. Open the AddingContexttoConversations solution. 6. In Solution Explorer, right-click the LaunchLinkCWE project and select Set as Startup Project. 7. Open the LaunchLinkCWE project. 8. In Solution Explorer, open the app.config file. 9. Change the PrimaryLabUserId and SecondaryLabUserId values to SIP URI of your primary and secondary lab accounts. 10. Replace the ApplicatonGuid with a new GUID.

10 11. Select View >> Task List and select Comments from the menu. 12. Start a remote desktop session with the secondary lab user. 13. Add localhost to Internet Explorer s list of Trusted sites. a. Launch Internet Explorer. b. Navigate to Tools >> Internet Options and select the Security tab. c. Select Trusted sites and click the Sites button. d. Uncheck the Require server verification for all sites in this zone box. e. Add localhost to the list of Websites and click Close. f. Click OK and close Internet Explorer. 14. Return to the primary lab user s session. Generate a new GUID with the GUID Generator tool. Go to Tools >> Create GUID in the Visual Studio 2010 menu or go to Start >> All Programs >> Visual Studio 2010 >> Microsoft Windows SDK Tools >> GUID Generator, select option 4, click the New GUID button, click the Copy button and paste that value into the app.config file. Task 2 Registering the Package In this task, you will add the application to the computer s registry for the primary lab user. 1. In Solution Explorer, open PackageRegistration_LaunchLinkCWE.reg. 2. Copy the new GUID created in the last task into the registry path. 3. Change the Path entry to the path of LaunchLinkCWE.exe in the project s output directory, i.e. bin\debug. When entering the Path, use \\ instead of \. 4. Change the InternalURL and ExternalURL values to the URL of the Silverlight XAP: a. Highlight the LaunchLinkCWE.Silverlight.Web project in the Solution Explorer window and open its properties. b. Click the Web tab. c. Make note of the Port that Visual Studio s Cassini web server will use to host this web application. For this lab, we will use Visual Studio s built in Cassini web server to host the ASP.NET web application. d. Open PackageRegistration_LaunchLinkCWE.reg. e. Replace <PORT> in the value of InternalURL and ExternalURL with the port that Visual Studio s Cassini web server will use to host this web application. 5. Save the file. 6. Right-click the LaunchLinkCWE project and select Open in Windows Explorer.

11 7. Double click the.reg file to run it. 8. Open the Registry Editor by going to Start and typing regedit into the search field. 9. Navigate to HKEY_CURRENT_USER\Software\Microsoft\Communicator\ContextPackages\<GUID>. i. This is the GUID from the.reg file. 10. Check that the settings match those in the file. 11. Copy the.reg file to the clipboard and switch to the secondary lab user s remote desktop file session. 12. Paste the file to the desktop and double click to run it and create the same registry settings on the secondary lab user s desktop. If the secondary user does not have permission to view the solution, or is logged in to a different computer, copy the solution over and modify the path in the.reg file to point to the local copy of LaunchLinkCWE.exe. The same applies to the URLs that point to the Default.aspx file. Make sure Cassini is running before trying to access the application. To start Cassini, set LaunchLinkCWE.Silverlight.Web as your startup project. Then go to Start >> Start Without Debugging or press [Ctrl]+[F5]. Once Cassini is running, close Internet Explorer and change your startup project back to LaunchLinkCWE. Task 3 Adding the Silverlight Extension to the Conversation Window In this task, we will add a Silverlight extension to a conversation window. 1. Navigate to TODO: Add the following code after the TODO: comment. This defines the contextual information and applies that contextual info in the two Lync conversation controls. ConversationContextualInfo context = new ConversationContextualInfo(); context.subject = selectedaccount.accountname; context.applicationid = _applicationguid; context.applicationdata = "AccountId:" + selectedaccount.id.tostring(); startinstantmessagingbutton.contextualinformation = context;

12 startaudiocallbutton.contextualinformation = context; 3. Navigate to TODO: Add the following code after the TODO: comment. This identifies the GUID of the SilverLight application. string _applicationguid = "{<enter your guid here>}"; Note: Change the _applicationguid to match the value in the registry file. 5. Navigate to TODO: Add the following code after the TODO: comment. This gets a reference to the conversation hosting the Silverlight application. The conversation contains the context that the application will receive and use. conversation = LyncClient.GetHostingConversation() as Conversation; 7. Navigate to TODO: Add the following code after the TODO: comment. This gets the application data by calling GetApplicationData on the conversation hosting the Silverlight application. _appdata = conversation.getapplicationdata(_applicationguid); 9. Navigate to TODO: Add the following code after the TODO: comment. This uses the data that was passed in the conversation s contextual data to load the data for the selected account. int accountid = Convert.ToInt32(_appData.Split(new char[] { ':' })[1]); Account account = _accounts.where(a => a.id == accountid).first(); this.accountname.text = account.accountname; orderslist.itemssource = account.orders; 11. Go to Start >> Start Without Debugging or press [Ctrl]+[F5] to start the application. 12. Select the Separate Parts Corporation account from the list. 13. Click the IM icon at the bottom of the window. 14. Type Can you discuss this account? into the conversation window and press the Enter key. 15. Switch to the secondary lab user s session and click the Toast message to receive the IM. 16. The invite should display the name of the account selected in the primary lab user s session.

13 17. Verify that the conversation window contains the Silverlight extension. 18. Click on the link in the conversation window. 19. Verify that it loads the LaunchLink application and selects the Separate Parts Corporation account from the primary lab user s session. 20. Close the IM windows and the application and return to the primary lab user s session. Summary Adding context to conversations can streamline communications by immediately getting all conversation participants on the same page. In this lab, you learned how to start an instant messaging conversation that used contextual conversation components to launch an application and set its context, enabling contextual collaboration between participants in the conversation. You also saw how to start an instant messaging conversation that embedded contextual data in Silverlight application in the Lync 2010 conversation window

14

Hands-On Lab. Advanced UCMA 3.0 Development. Lab version: 1.0 Last updated: 12/17/2010

Hands-On Lab. Advanced UCMA 3.0 Development. Lab version: 1.0 Last updated: 12/17/2010 Hands-On Lab Advanced UCMA 3.0 Development Lab version: 1.0 Last updated: 12/17/2010 CONTENTS OVERVIEW... 3 System Requirements 3 EXERCISE 1: BACK-TO-BACK CALL FUNCTIONALITY... 4 Task 1 Open the Visual

More information

Hands-On Lab. Introduction to the Unified Communications Managed API 3.0. Lab version: 1.0 Last updated: 12/17/2010

Hands-On Lab. Introduction to the Unified Communications Managed API 3.0. Lab version: 1.0 Last updated: 12/17/2010 Hands-On Lab Introduction to the Unified Communications Managed API 3.0 Lab version: 1.0 Last updated: 12/17/2010 CONTENTS OVERVIEW... 3 System Requirements 3 EXERCISE 1: PROVISION AN APPLICATION ENDPOINT

More information

Hands-On Lab. Getting Started with the UCMA 3.0 Workflow SDK. Lab version: 1.0 Last updated: 12/17/2010

Hands-On Lab. Getting Started with the UCMA 3.0 Workflow SDK. Lab version: 1.0 Last updated: 12/17/2010 Hands-On Lab Getting Started with the UCMA 3.0 Workflow SDK Lab version: 1.0 Last updated: 12/17/2010 CONTENTS OVERVIEW... 3 System Requirements 3 EXERCISE 1: UCMA 3.0 WORKFLOW SDK WORKFLOW ACTIVITIES...

More information

Zoom - CDU Zoom Website

Zoom - CDU Zoom Website Zoom - CDU Zoom Website Join Where to connect to a meeting with a Meeting ID Host Start a meeting and manage meeting setups ie schedule meetings, mute participants etc. Sign in Where you can access your

More information

ETC WEBCHAT USER GUIDE

ETC WEBCHAT USER GUIDE ETC WEBCHAT USER GUIDE CONTENTS Overview... 2 Agent and User Experience... 2 Agent Extention Window... 3 Etc WebChat Admin Portal... 4 Agent Groups... 5 Create, Edit, Delete A Group... 5 Create, Edit,

More information

EntraPass (W10) Installation Guide Kantech-OnBoard systems

EntraPass (W10) Installation Guide Kantech-OnBoard systems Overview Purpose ExacqVision recorders now include Kantech EntraPass Corporate Edition software. The purpose of this document is to guide the technician or installer through the process of installing and

More information

This topic explains how to use the Microsoft Lync interface. Use this topic to assist you in navigating the interface.

This topic explains how to use the Microsoft Lync interface. Use this topic to assist you in navigating the interface. NAVIGATING LYNC This topic explains how to use the Microsoft Lync interface. Use this topic to assist you in navigating the interface. Interface Basics The Lync interface contains several symbols and options

More information

Abstract. Avaya Solution & Interoperability Test Lab

Abstract. Avaya Solution & Interoperability Test Lab Avaya Solution & Interoperability Test Lab Application Notes for Configuring Avotus Enhanced Usage Reporting for Unified Communications with Avaya Aura Presence Services Snap-in running on Avaya Breeze

More information

Quick Reference Guide Hosting WebEx Meetings

Quick Reference Guide Hosting WebEx Meetings Quick Reference Guide Hosting WebEx Meetings You can schedule meetings in advance, or start an instant meeting and invite participants to join you. They do not have to subscribe to WebEx. They simply click

More information

Lab - Configure Browser Settings in Windows 8

Lab - Configure Browser Settings in Windows 8 Introduction In this lab, you will configure browser settings in Microsoft Internet Explorer. Recommended Equipment A computer with Windows 8 An Internet connection Step 1: Set Internet Explorer as the

More information

Verizon Collaboration Plug-In for Microsoft Office Communicator User Guide

Verizon Collaboration Plug-In for Microsoft Office Communicator User Guide Verizon Collaboration Plug-In for Microsoft Office Communicator User Guide Version 2.11 Last Updated: July 2011 2011 Verizon. All Rights Reserved. The Verizon and Verizon Business names and logos and all

More information

Chime for Lync High Availability Setup

Chime for Lync High Availability Setup Chime for Lync High Availability Setup Spring 2017 Copyright and Disclaimer This document, as well as the software described in it, is furnished under license of the Instant Technologies Software Evaluation

More information

INSTALLATION GUIDE Spring 2017

INSTALLATION GUIDE Spring 2017 INSTALLATION GUIDE Spring 2017 Copyright and Disclaimer This document, as well as the software described in it, is furnished under license of the Instant Technologies Software Evaluation Agreement and

More information

Key Features: Learning Objectives: Table of Contents:

Key Features: Learning Objectives: Table of Contents: Key Features: Skype for Business is a communications platform available on Windows, Mac, and mobile devices. Skype for Business is designed to allow user interaction between colleagues and external contacts.

More information

Getting Started with Cisco WebEx Meeting Applications

Getting Started with Cisco WebEx Meeting Applications CHAPTER 6 Getting Started with Cisco WebEx Meeting Applications Revised: September, 2010, Contents Modifying Your Provisioned Cisco WebEx Account, page 6-1 Setting Proxy Permissions, page 6-5 Productivity

More information

Click on OneDrive on the menu bar at the top to display your Documents home page.

Click on OneDrive on the menu bar at the top to display your Documents home page. Getting started with OneDrive Information Services Getting started with OneDrive What is OneDrive @ University of Edinburgh? OneDrive @ University of Edinburgh is a cloud storage area you can use to share

More information

exacqvision-entrapass (W10) Installation Guide

exacqvision-entrapass (W10) Installation Guide 1 Overview Purpose ExacqVision recorders now include Kantech Entrapass CE software. The purpose of this document is to guide the technician or installer through the process of installing and registering

More information

For Windows Microsoft Corporation. All rights reserved.

For Windows Microsoft Corporation. All rights reserved. For Windows 1 About Skype for Business... 4 Skype for Business Window... 5 Audio... 6 Set up your audio device... 6 Make a call... 6 Answer a call... 7 Use audio call controls... 7 Check voicemail... 8

More information

Lync Create an Online Meeting

Lync Create an Online Meeting Lync 2010 - Create an Online Meeting Creating and Joining an Online Meeting After opening Outlook 2010, navigate to the Home tab and select New Items > Online Meeting You'll want to take a moment to make

More information

HOW PERSISTENT CHAT SERVER WORKS

HOW PERSISTENT CHAT SERVER WORKS HOW PERSISTENT CHAT SERVER WORKS LYNC SERVER 2013 Lync Server 2013, Persistent Chat Server enables you to participate in multiparty, topic-based conversations that persist over time. Persistent Chat Server

More information

Using Breakout Sessions for Group Work

Using Breakout Sessions for Group Work WebEx Using Breakout Sessions for Group Work A breakout session is a private content sharing session that includes two or more participants. Breakout sessions allow participants to brainstorm and collaborate

More information

Bluebeam Revu 2016: Studio Invitation Process Guide. (YOGI v1.0)

Bluebeam Revu 2016: Studio Invitation Process Guide. (YOGI v1.0) Bluebeam Revu 2016: Studio Invitation Process Guide (YOGI v1.0) PAGE 2 Revu Studio Invitation Process Guide 2016 Table of Contents TABLE OF CONTENTS...3 1.0 FORMAT DRAWINGS PRIOR TO STUDIO SESSION...4

More information

CST8152 Compilers Creating a C Language Console Project with Microsoft Visual Studio.Net 2005

CST8152 Compilers Creating a C Language Console Project with Microsoft Visual Studio.Net 2005 CST8152 Compilers Creating a C Language Console Project with Microsoft Visual Studio.Net 2005 The process of creating a project with Microsoft Visual Studio 2005.Net is similar to the process in Visual

More information

5.5.3 Lab: Managing Administrative Settings and Snap-ins in Windows XP

5.5.3 Lab: Managing Administrative Settings and Snap-ins in Windows XP 5.5.3 Lab: Managing Administrative Settings and Snap-ins in Windows XP Introduction Print and complete this lab. In this lab, you will use administrative tools to monitor system resources. You will also

More information

Quick Start Guide. Kaseya 2

Quick Start Guide. Kaseya 2 LiveConnect Quick Start Guide Kaseya 2 February 13, 2010 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

Integration to Microsoft Outlook in the Webex Meetings Desktop App

Integration to Microsoft Outlook in the Webex Meetings Desktop App Cisco Webex Meetings Updated as of 8/20/18 Integration to Microsoft Outlook in the Webex Meetings Desktop App Integration to Microsoft Outlook Introduction Using the Webex Meetings Desktop App Start a

More information

Managing the Startup Folder in Windows 8

Managing the Startup Folder in Windows 8 Managing the Startup Folder in Windows 8 Introduction In this lab, you will customize the Startup Folder and the Run Key in the Registry to manage what applications are started automatically when Windows

More information

Lync 2013 Getting Started

Lync 2013 Getting Started Lync 2013 Getting Started Information Technology September 1, 2014 1 P a g e The Lync Window Personal Information Navigation Buttons Options Button Add Contact Button Personal Information access your personal

More information

ENABLING WEBCHAT HOSTED USER GUIDE

ENABLING WEBCHAT HOSTED USER GUIDE ENABLING WEBCHAT HOSTED USER GUIDE CONTENTS... 1 Sign up Process... 2 Sign up Process (Continued)... 3 Logging In/ Out... 4 Admin Dashboard... 5 Creating, Edit, Delete A User... 5 Creating, Edit, Delete

More information

1. TriPOS update instructions to support TLS1.2

1. TriPOS update instructions to support TLS1.2 Content page 1. TriPOS update instructions to support TLS1.2 2 2. Web Browser configuration to support TLS 1.2 to make sure Vantiv Hosted Payments 3 Platform works properly. How I know my web browser supports

More information

Microsoft Lync 2013 Quick-Start Guide. ThinkTel Communications Professional Services Last Updated: June 18, 2013

Microsoft Lync 2013 Quick-Start Guide. ThinkTel Communications Professional Services Last Updated: June 18, 2013 Microsoft Lync 2013 Quick-Start Guide ThinkTel Communications Professional Services Last Updated: June 18, 2013 Instant Messaging & Presence Accept an IM request Click anywhere on the picture display area

More information

PANOPTO GUIDE Version 1.2 October 2016

PANOPTO GUIDE Version 1.2 October 2016 Version 1.2 October 2016 Contents INTRODUCTION:... 2 PREREQUISITES... 2 INSTRUCTIONS... 2 Log into Panopto Online... 2 Using the Recorder... 2 Larger Recorder Preview (Broadcast)... 5 View Your Session...

More information

Colligo Contributor Pro 4.4 SP2. User Guide

Colligo Contributor Pro 4.4 SP2. User Guide 4.4 SP2 User Guide CONTENTS Introduction... 3 Benefits... 3 System Requirements... 3 Software Requirements... 3 Client Software Requirements... 3 Server Software Requirements... 3 Installing Colligo Contributor...

More information

5.4.8 Optional Lab: Managing System Files with Built-in Utilities in Windows Vista

5.4.8 Optional Lab: Managing System Files with Built-in Utilities in Windows Vista 5.4.8 Optional Lab: Managing System Files with Built-in Utilities in Windows Vista Introduction Print and complete this lab. In this lab, you will use Windows built-in utilities to gather information about

More information

Workspace Desktop Edition Help. Using Workspace Plugin for Skype for Business

Workspace Desktop Edition Help. Using Workspace Plugin for Skype for Business Workspace Desktop Edition Help Using Workspace Plugin for Skype for Business 12/2/2017 Using Workspace Plugin for Skype for Business Contents 1 Using Workspace Plugin for Skype for Business 1.1 Logging

More information

Desktop and Mobile Guide Utility Telecom Accession Meeting

Desktop and Mobile Guide Utility Telecom Accession Meeting Desktop and Mobile Guide Utility Telecom Accession Meeting This guide is intended to help you navigate through Accession Meeting on your desktop and mobile phone. If you have any questions, call us at

More information

Live Connect. Live Connect

Live Connect. Live Connect 2 Chapter 9 - Introduction Fig. 9.1 Brief Overview Pop-up Window provides single machine interface to give you full control over your endpoints with minimal end user interruption. It is built to help you

More information

Lab Android Development Environment

Lab Android Development Environment Lab Android Development Environment Setting up the ADT, Creating, Running and Debugging Your First Application Objectives: Familiarize yourself with the Android Development Environment Important Note:

More information

Cisco Jabber User Guide for Mac

Cisco Jabber User Guide for Mac Cisco Jabber User Guide for Mac Cisco Jabber is a unified communication tool to manage phone calls, contacts, voicemail, instant messaging, and your availability status via a software application on your

More information

Delegate Access in Skype for Business 2016

Delegate Access in Skype for Business 2016 Delegate Access In Skype for Business 2016 Delegate Access in Skype for Business 2016 DELEGATE ACCESS IN SKYPE FOR BUSINESS 2016 2 Contents Delegate Defined 3 Set up Delegate Access in Skype for Business

More information

Client Installation Guide

Client Installation Guide Client Installation Guide Version 2.3 April 2014 Purpose of this document This document is designed to assist you in installing the RMS client onto your workstations. The RMS client needs to be installed

More information

AGENT TRAINING USER GUIDE. Instant Chime for Microsoft Lync

AGENT TRAINING USER GUIDE. Instant Chime for Microsoft Lync AGENT TRAINING USER GUIDE Instant Chime for Microsoft Lync April 2018 Copyright and Disclaimer This document, as well as the software described in it, is furnished under license of the Instant Technologies

More information

Browser Configuration Reference

Browser Configuration Reference Sitecore CMS 7.0 or later Browser Configuration Reference Rev: 2013-09-30 Sitecore CMS 7.0 or later Browser Configuration Reference Optimizing Internet Explorer and other web browsers to work with Sitecore

More information

Breaking News CloudAXIS Suite 1.0

Breaking News CloudAXIS Suite 1.0 August 2013 Level 2 Breaking News CloudAXIS Suite 1.0 Product Release Date: October, 2012 Disclaimer 2013 Polycom, Inc. All rights reserved. Polycom, Inc. 6001 America Center Dr San Jose, CA 95002 USA

More information

ENABLING ASKTHEEXPERT USER GUIDE

ENABLING ASKTHEEXPERT USER GUIDE ENABLING ASKTHEEXPERT USER GUIDE CONTENTS What Is Enabling AskTheExpert?... 2 Client Settings... 2 Enabling AskTheExpert Settings Interface... 3 Buttons... 4 Home Page... 5 Background... 5 Home Page Views...

More information

Lab - Task Manager in Windows 7 and Vista

Lab - Task Manager in Windows 7 and Vista Lab - Task Manager in Windows 7 and Vista Introduction In this lab, you will explore Task Manager and manage processes from within Task Manager. Recommended Equipment The following equipment is required

More information

Polycom ContentConnect Quick User Guide

Polycom ContentConnect Quick User Guide Polycom ContentConnect Quick User Guide Version 1.5 3725-03252-001A1 June 2015 In this guide, you will learn how to share and view content during a conference call when the Polycom ContentConnect is deployed.

More information

Password Reset Utility. Configuration

Password Reset Utility. Configuration Password Reset Utility Configuration 1 Table of Contents 1. Uninstalling Legacy Password Reset... 2 2. Password Reset Utility: How to deploy and configure via Group Policy... 2 3. Configuring Group Policy

More information

What desktop integrations are available using Productivity Tools?

What desktop integrations are available using Productivity Tools? General Questions, page 1 Installation and Configuration, page 2 Scheduling Meetings using, page 4 Instant Meetings using, page 5 Site Administration, page 8 General Questions What are WebEx? What desktop

More information

Course CLD221x: Enabling Office 365 Clients

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

More information

Hands-On Lab New Collaboration Experiences for Development Teams using Team Foundation Server 2013 Lab version: Last updated: 11/25/2013

Hands-On Lab New Collaboration Experiences for Development Teams using Team Foundation Server 2013 Lab version: Last updated: 11/25/2013 Hands-On Lab New Collaboration Experiences for Development Teams using Team Foundation Server 2013 Lab version: 12.0.21005.1 Last updated: 11/25/2013 CONTENTS OVERVIEW... 3 EXERCISE 1: TEAM ROOM COLLABORATION...

More information

Utica City School District Microsoft Lync

Utica City School District Microsoft Lync Utica City School District Microsoft Lync Version 1.0 11/14/2013 Last Updated: 11/14/2013 This document is not a complete guide to all of the options in Microsoft Lync. The Help feature in Lync offers

More information

CS3240 Human-Computer Interaction Lab Sheet Lab Session 5 Navigation Framework

CS3240 Human-Computer Interaction Lab Sheet Lab Session 5 Navigation Framework CS3240 Human-Computer Interaction Lab Sheet Lab Session 5 Navigation Framework CS3240 Lab SEM 1 2009/2010 Page 1 Overview In this lab, students will familiarize themselves with creating and get to learn

More information

ScreenBeam 1200 Skype for Business Installation Guide. Version 1

ScreenBeam 1200 Skype for Business Installation Guide. Version 1 ScreenBeam 1200 Skype for Business Installation Guide Version 1 Table of Contents Table of Contents... 2 1. Introduction... 3 1.1 Skype for Business Architecture...3 1.2 Skype for Business Flow Chart...3

More information

Quick Start Guide Red Box Call Recording v5 18/08/2016

Quick Start Guide Red Box Call Recording v5 18/08/2016 1 Quick Start Guide Red Box Call Recording v5 18/08/2016 The Red Box Call Recording service keeps recording of your calls online for you to view and download via a dedicated web interface. IMPORTANT: The

More information

Mission Guide: Dropbox

Mission Guide: Dropbox Mission Guide: Dropbox Your Mission: Use F-Response to collect Dropbox account data Using F-Response to collect Dropbox Cloud Storage contents Important Note Disclaimer: F-Response provides access to 3rd

More information

Integrate Microsoft Office Communicator Client and Microsoft Lync Client for Cisco UC

Integrate Microsoft Office Communicator Client and Microsoft Lync Client for Cisco UC Integrate Microsoft Office Communicator Client and Microsoft Lync Client for Cisco UC Overview, page 1 Limitations and considerations, page 2 Microsoft Office Communicator, page 3 Microsoft Lync, page

More information

ERC: Portal Favorites Advanced Options Quick Reference Guide

ERC: Portal Favorites Advanced Options Quick Reference Guide When you have created Portal Favorites for frequently visited areas of the Employee Resource Center (ERC) there are additional preferences you can set. This QRG will provide you with several options for

More information

Lab - System Utilities in Windows

Lab - System Utilities in Windows Introduction In this lab, you will use Windows utilities to configure operating system settings. Recommended Equipment The following equipment is required for this exercise: A computer running Windows

More information

An Introduction to Microsoft Lync

An Introduction to Microsoft Lync An Introduction to Microsoft Lync Microsoft Lync is a communication tool that allows users to collaborate in real-time via text chat, audio/video chat, and desktop sharing. Microsoft Lync talks with the

More information

Admin Panel for MEETS. User Guide

Admin Panel for MEETS. User Guide Admin Panel for MEETS User Guide The MEETS Admin Panel Thank you for choosing CirQlive's Media Enhanced Education & Training Suite (MEETS), the Online Live Education Platform. This platform will enhance,

More information

Last updated: January 19, Webtop Setup User Guide

Last updated: January 19, Webtop Setup User Guide Last updated: January 19, 2017 Webtop Setup User Guide Table of Contents ServicePRO Webtop Setup User Guide... 2 1. ServicePRO Portal Setup Information to Note... 2 2. Setting up ServicePRO Webtop in Client

More information

Installation and Configuration Guide Simba Technologies Inc.

Installation and Configuration Guide Simba Technologies Inc. Simba ServiceNow ODBC Driver with SQL Connector Installation and Configuration Guide Simba Technologies Inc. Version 1.1.1 June 30, 2017 Copyright 2017 Simba Technologies Inc. All Rights Reserved. Information

More information

MY MEDIASITE. https://mediasite.ecu.edu/ms/mymediasite

MY MEDIASITE. https://mediasite.ecu.edu/ms/mymediasite MY MEDIASITE https://mediasite.ecu.edu/ms/mymediasite My Mediasite provides tools for managing your recordings. All faculty have access to My Mediasite and the ability to download the Desktop Recorder.

More information

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

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

More information

How to Test and Use the Cisco WebEx Client

How to Test and Use the Cisco WebEx Client Introduction When you register for one of our classes, all of the information you ll need to attend the class, access labs and reach out for support are centralized in our Registration Info Tab in the

More information

Jabber Messenger Online Help

Jabber Messenger Online Help Jabber Messenger 3.2.1 Online Help Table Of Contents Welcome... 1 Welcome... 1 What's New in this Release?... 2 Getting Started... 3 Logging In... 3 Creating a New Account... 6 Using Jabber Messenger...

More information

Microsoft Lync FAQ s 6/25/2012

Microsoft Lync FAQ s 6/25/2012 Microsoft Lync FAQ s 6/25/2012 1. What is Microsoft Lync? Microsoft Lync is an enterprise-ready, unified communications platform. With Lync, users can keep track of their contacts availability; send an

More information

Skype for Business Features Overview

Skype for Business Features Overview Introduction Skype for Business is a newly available communications tool for Illinois State University Faculty, Staff, and Students. It contains many features for Instant Messaging, Voice, and Video Chat,

More information

Avaya Solution & Interoperability Test Lab Application Notes for configuring Datatal AB Flexi with Avaya IP Office 500 V2 Standalone R Issue 1.

Avaya Solution & Interoperability Test Lab Application Notes for configuring Datatal AB Flexi with Avaya IP Office 500 V2 Standalone R Issue 1. Avaya Solution & Interoperability Test Lab Application Notes for configuring Datatal AB Flexi with Avaya IP Office 500 V2 Standalone R10.0 - Issue 1.0 Abstract These Application Notes describe the configuration

More information

Integrate Microsoft Office Communicator and Microsoft Lync Clients for Cisco UC

Integrate Microsoft Office Communicator and Microsoft Lync Clients for Cisco UC Integrate Microsoft Office Communicator and Microsoft Lync Clients for Cisco UC Overview, page 1 Limitations and considerations, page 2 Cisco UC Integration for Microsoft Office Communicator client design

More information

CLASS AGENDA. 9:00 9:15 a.m. 9:15 10:00 a.m. 10:00 12:00 p.m. 12:00 1:00 p.m. 1:00 3:00 p.m. 3:00 5:00 p.m.

CLASS AGENDA. 9:00 9:15 a.m. 9:15 10:00 a.m. 10:00 12:00 p.m. 12:00 1:00 p.m. 1:00 3:00 p.m. 3:00 5:00 p.m. CLASS AGENDA INTEL SGX OVERVIEW... DEVELOPER TOOLKIT... DEVELOPING FOR INTEL SGX... BREAK FOR LUNCH... PROVISIONING SECRETS... DATA SEALING...... 9:00 9:15 a.m. 9:15 10:00 a.m. 10:00 12:00 p.m. 12:00 1:00

More information

MXmeeting User Manual for PC Users

MXmeeting User Manual for PC Users MXmeeting User Manual for PC Users Zultys, Inc. 771 Vaqueros Ave Sunnyvale, CA 94085 support@zultys.com http://www.zultys.com Contents Preface... 3 Organization... 3 Terms... 3 1. Setting up MXmeeting...

More information

Microsoft Virtual Labs. Module 1: Getting Started

Microsoft Virtual Labs. Module 1: Getting Started Microsoft Virtual Labs Module 1: Getting Started Table of Contents AdventureWorks Module 1: Getting Started... 1 Exercise 1 Adventure Works Walkthrough... 2 Exercise 2 Development Tools and Web Part Solution...

More information

SFB Mobile App For Android

SFB Mobile App For Android SFB Mobile App For Android UIT is not responsible for charges incurred when using the SFB mobile app on your smart phone. Contents SFB on a Mobile Device... 3 Install SFB... 3 Sign in to SFB... 3 Set Your

More information

Browser Set-Up Instructions

Browser Set-Up Instructions Browser Set-Up Instructions Before visiting the Assessment LinkBC site for the first time, you must configure your Internet Explorer browser: o to recognize the Assessment LinkBC site as a trusted site,

More information

Applications. View All Applications. . Inbox

Applications. View All Applications.  . Inbox View All, page 1 Email, page 1 Jabber, page 7 Meetings, page 11 People, page 14 WebEx, page 20 More, page 23 View All Tap to display all installed applications. Email The Email application allows you to

More information

Abstract. Avaya Solution & Interoperability Test Lab

Abstract. Avaya Solution & Interoperability Test Lab Avaya Solution & Interoperability Test Lab Application Notes for Configuring Trio Enterprise from Enghouse Interactive AB with Avaya Aura Presence Services Snap-in running on Avaya Breeze TM Platform -

More information

CST8152 Compilers Creating a C Language Console Project with Microsoft Visual Studio.Net 2010

CST8152 Compilers Creating a C Language Console Project with Microsoft Visual Studio.Net 2010 CST8152 Compilers Creating a C Language Console Project with Microsoft Visual Studio.Net 2010 The process of creating a project with Microsoft Visual Studio 2010.Net is similar to the process in Visual

More information

BlackBerry Developer Summit. A02: Rapid Development Leveraging BEMS Services and the AppKinetics Framework

BlackBerry Developer Summit. A02: Rapid Development Leveraging BEMS Services and the AppKinetics Framework BlackBerry Developer Summit A02: Rapid Development Leveraging BEMS Services and the AppKinetics Framework Page 2 of 21 Table of Contents 1. Workbook Scope... 4 2. Compatibility... 4 3. Source code download

More information

Applications. View All Applications. People. Contact Details

Applications. View All Applications. People. Contact Details View All, page 1 People, page 1 Email, page 7 Jabber, page 13 Meetings, page 17 WebEx, page 20 More, page 24 View All Tap to display all installed applications. People Use the People application to store,

More information

EVALUATION COPY. Unauthorized Reproduction or Distribution Prohibited SHAREPONT 2013 BUSINESS INTELLIGENCE

EVALUATION COPY. Unauthorized Reproduction or Distribution Prohibited SHAREPONT 2013 BUSINESS INTELLIGENCE SHAREPONT 2013 BUSINESS INTELLIGENCE SharePoint 2013 Business Intelligence (SBI2013 version 1.1.0) Copyright Information Copyright 2016 Webucator. All rights reserved. The Author Bruce Gordon Bruce Gordon

More information

Introduction. Key features and lab exercises to familiarize new users to the Visual environment

Introduction. Key features and lab exercises to familiarize new users to the Visual environment Introduction Key features and lab exercises to familiarize new users to the Visual environment January 1999 CONTENTS KEY FEATURES... 3 Statement Completion Options 3 Auto List Members 3 Auto Type Info

More information

TRAININGCENTER HOST GUIDE

TRAININGCENTER HOST GUIDE TRAININGCENTER HOST GUIDE TABLE OF CONTENTS How to Set Up and Log Into Your TrainingCenter Account...2 Scheduling a Training Session...2 Using Tests in Training Sessions...6 Setting Up Session and Access

More information

Work Smart: Start a sharing and collaboration session

Work Smart: Start a sharing and collaboration session Work Smart: Start a sharing and collaboration session Use this guide to learn how to have impromptu online meetings and conference calls by using Microsoft Lync 2010 communications software. What do you

More information

TDS managedip Hosted Unified Communication (UC) User Guide

TDS managedip Hosted Unified Communication (UC) User Guide Installation and Setup To Install the Application: The application is available for both PC and MAC. To download, visit the TDS Support Site at: http://support.tdsmanagedip.com/hosted To log into the Application:

More information

Vodafone One Net app Quick Start Guide For PC

Vodafone One Net app Quick Start Guide For PC Vodafone One Net app Quick Start Guide For PC Power to you Contents What is the One Net app? 1 Installing the One Net app 2 Logging in and out 2 Logging in for the first time 2 Starting the One Net app

More information

USER GUIDE Summer 2015

USER GUIDE Summer 2015 USER GUIDE Summer 2015 Copyright and Disclaimer This document, as well as the software described in it, is furnished under license of the Instant Technologies Software Evaluation Agreement and may be used

More information

Force IE to default to your home page with multiple home pages. This was configured on a Windows Server 2008 and with IE8 on all of the desktops.

Force IE to default to your home page with multiple home pages. This was configured on a Windows Server 2008 and with IE8 on all of the desktops. Force IE to default to your home page with multiple home pages This was configured on a Windows Server 2008 and with IE8 on all of the desktops. It is highly recommended that you do not use the "Default

More information

Using SFB Web App for Windows

Using SFB Web App for Windows Using SFB Web App for Windows Table of Contents What Is It?... 3 Required Plug ins... 3 Information for Online Meetings and Conference Calls... 4 Join a Meeting... 5 Access Meeting Audio... 7 View Information

More information

Introduction to IBM Data Studio, Part 1: Get started with IBM Data Studio, Version and Eclipse

Introduction to IBM Data Studio, Part 1: Get started with IBM Data Studio, Version and Eclipse Introduction to IBM Data Studio, Part 1: Get started with IBM Data Studio, Version 1.1.0 and Eclipse Install, work with data perspectives, create connections, and create a project Skill Level: Intermediate

More information

Lab 3: Using Worklight Server and Environment Optimization Lab Exercise

Lab 3: Using Worklight Server and Environment Optimization Lab Exercise Lab 3: Using Worklight Server and Environment Optimization Lab Exercise Table of Contents Lab 3 Using the Worklight Server and Environment Optimizations... 3-4 3.1 Building and Testing on the Android Platform...3-4

More information

Introduction to IBM Data Studio, Part 1: Get started with IBM Data Studio, Version and Eclipse

Introduction to IBM Data Studio, Part 1: Get started with IBM Data Studio, Version and Eclipse Introduction to IBM Data Studio, Part 1: Get started with IBM Data Studio, Version 1.1.0 and Eclipse Install, work with data perspectives, create connections, and create a project Skill Level: Intermediate

More information

PRELIMINARY MEETING PREPARATION For the best quality and experience during your WebEx Meeting, you should have the following:

PRELIMINARY MEETING PREPARATION For the best quality and experience during your WebEx Meeting, you should have the following: HOSTING AN NJIT WEBEX MEETING PRELIMINARY MEETING PREPARATION For the best quality and experience during your WebEx Meeting, you should have the following: Technical Needs: A headset/mic combo unit (preferably

More information

Using Lync on a Mac. Before you start. Which version of Lync? Using Lync for impromptu calls. Starting Lync 2011

Using Lync on a Mac. Before you start. Which version of Lync? Using Lync for impromptu calls. Starting Lync 2011 Using Lync on a Mac Before you start Please read our instructions on how to set up your Lync account and your audio and video devices. Which version of Lync? Because of the features available, we recommend

More information

Altice Business Accession Meeting Quick Start Guide Index:

Altice Business Accession Meeting Quick Start Guide Index: Altice Business Accession Meeting provides audio and video conferencing over the internet, including web collaboration features such as screen sharing, whiteboard annotations, and presentation capabilities.

More information

User Guide. 3CX CRM Plug-in for Zendesk. Version

User Guide. 3CX CRM Plug-in for Zendesk. Version User Guide 3CX CRM Plug-in for Zendesk Version 15.5.89 "Copyright VoIPTools, LLC 2011-2018" Information in this document is subject to change without notice. No part of this document may be reproduced

More information

Introduction: User Privileges

Introduction: User Privileges PEPFAR SharePoint: How to Add and Remove Permissions to the HQ Collaboration Document Library (OU Sites Only) Introduction: User Privileges This chart displays the different PEPFAR SharePoint user roles

More information

Essentials of Developing Windows Store Apps Using C#

Essentials of Developing Windows Store Apps Using C# Essentials of Developing Windows Store Apps Using C# Course 20484A; 5 Days, Instructor-led Course Description In this course, students will learn essential programming skills and techniques that are required

More information

How to setup a Zoom Meeting - Shared Cluster Accounts

How to setup a Zoom Meeting - Shared Cluster Accounts How to setup a Zoom Meeting - Shared Cluster Accounts You will need your cluster's Zoom credentials which should be attached on a separate sheet with these directions You can do the following via a web

More information