Tips For Customising Configuration Wizards

Size: px
Start display at page:

Download "Tips For Customising Configuration Wizards"

Transcription

1 Tips Fr Custmising Cnfiguratin Wizards ver Cntents Overview... 2 Requirements... 2 Applicatins... 2 WinSCP and Putty... 2 Adding A Service T An Existing Wizard... 3 Gal... 3 Backup Original CW + Create Cpy... 3 Windws Server CW... 3 Disk Read Write Services... 4 Add Read Service T CW Stage Add Write Service T CW Stage Uplad The Custm CW... 9 Test The Custm CW... 9 End Of Chapter... 9 Windws Perfrmance Cunters (WPC) Identifying WPC Extra Backslashes Understanding Hw WPC Are Used In Nagis XI Nagis XI Service Relatinship Map Plugins Cmmand Line / Cmmands Cmmands In Nagis XI End Of Chapter Trubleshting White Screen Abut Me... 15

2 Overview Nagis XI cmes with built in Cnfiguratin Wizards (CW) that allw yu t mnitr a hst with little effrt. Yu may have a handful f services that yu wuld like t add t a CW s yu d nt have t manually create them after the CW has been run. It is easy t mdify an existing CW t include yur custmisatins. Yu can als create yur wn CW nce yu have understd the hw a cnfiguratin wizard wrks. This dcument is a guide f tips t help yu achieve this. This dcument is a wrk in prgress s sme sectins may nt be cmplete r 100% crrect. Requirements My backgrund experience is Micrsft Windws s this guide is fcussed n perfrming all these actins frm a Windws 7 PC. I will direct yu t save files t C:\NagisXI\ as we prgress thrugh the guide. This dcument is based n a running virtual machine f Nagis XI dwnladed frm the Nagis Enterprise website. It is recmmended t be running the mst up t date release versin f Nagis XI. Applicatins There are three main prgrams I use thrughut this guide: Ntepad++ is used as the editr WinSCP is used t transfer files t / frm yur Nagis XI server Putty is used t remtely access yur Nagis XI server t perfrm cnsle cmmands WinSCP and Putty The first time yu cnnect t the Nagis XI server it will present a warning dialg bx abut the Nagis XI hst nt being in the lcal cache, click Yes and yu will nt be prmpted again. All the steps I use with WinSCP are dne using the Cmmander view. T enable this d the fllwing: Click Optins > Preferences Click Interface n the left menu Select the Cmmander radi buttn Click OK

3 Adding A Service T An Existing Wizard Name: Windws Server File name: windwsserver.inc.php Lcatin: /usr/lcal/nagisxi/html/includes/cnfigwizards/windwsserver Gal We ll mdify the existing Windws Server wizard. I want t add disk read and write services fr my Windws hsts. I d nt want t use warning r critical values r receive ntificatins; all I want is the statistical data that will generate pretty graphs. But first let s back it up Backup Original CW + Create Cpy Please create the directry C:\NagisXI\Backup. Open WinSCP Hstname: IP address f yur Nagis XI server Username: rt Passwrd: Yur rt Passwrd (nagisxi by default) Click the Lgin buttn Click in the right pane Click the Open directry/bkmark icn [Remte > Gt > Open directry/bkmark] In the remte directry type in /usr/lcal/nagisxi/html/includes/cnfigwizards/windwsserver Click OK In the left pane brwse t C:\NagisXI\Backup Drag the windwsserver.inc.php file frm the right pane t the left pane Click the Cpy buttn Wait fr the file t cpy In the left pane duble click n.. Parent directry Drag the windwsserver.inc.php file frm the right pane t the left pane Click the Cpy buttn Wait fr the file t cpy Clse WinSCP Windws Server CW Figure 1 is a screensht f the Windws Server CW. Figure 1

4 We will add ur disk read and write services t this sectin f the CW. Nte: in Figure 1 the fields are displayed and can be altered. We dn t require the user t change the fields fr disk read/write s we ll just nt shw them. Here is an example: Figure 2 Disk Read Write Services We are using Windws Perfrmance Cunters (WPC) t btain the data that will be turned int perfrmance graphs. There is a separate sectin in this guide that explains the use f WPC. \PhysicalDisk(0 C:)\Disk Read Bytes/sec \PhysicalDisk(0 C:)\Disk Write Bytes/sec Nte: fr every backslash (\) we need t use an escape character (\) s that the backslash is treated as text instead f being an escape character. This means we will end up with: \\PhysicalDisk(0 C:)\\Disk Read Bytes/sec \\PhysicalDisk(0 C:)\\Disk Write Bytes/sec Add Read Service T CW Stage2 Open the file C:\NagisXI\windwsserver.inc.php in Ntepad++ We are ging t cpy and paste an existing service Press Ctrl + F Type [uptime] and click Find Next Click Clse Highlight the entire uptime service (<tr> t </tr>)

5 Right click yur selectin and select Cpy Figure 3 Press Ctrl + F Type Perfrmance Cunter and click Find Next Yu will be taken t the Perfrmance Cunter sectin f Stage 2 Click Clse After the end f the perfrmance cunters sectin the table ends [see Figure 4] We are ging t add a line break and then create a new table fr ur disk read service [see Figure 5] Figure 4 Figure 5 Nw paste the cntents f yur clipbard in between the table and make sme changes Change: <input type="checkbx" class="checkbx" name="services[uptime]" checked> T: <input type="checkbx" class="checkbx" name="services[disk_0_c_read_bytes_sec]" checked> Change: <b>uptime</b><br> T: <b>disk 0 C: Read Bytes/Sec</b><br> Change: Mnitrs the uptime n the server.<br><br> T: Mnitrs Disk Read Bytes/Sec fr disk 0 C:<br> This shuld leave yu with this:

6 Figure 6 On Figure 6 yu can see that I highlighted services[disk_0_c_read_bytes_sec] This is the name that this service is called by the cnfiguratin wizard We will link this up in the end f the CW Press Crtl + S t save ur changes s far Press Ctrl + F Type case "uptime": and click Find Next Yu will be taken t the service creatin sectin fr the uptime service Click Clse Highlight the entire uptime service (case t break;) Figure 7 Right click yur selectin and select Cpy Figure 7

7 Paste this between the uptime service and the disk service Errr! Reference surce nt fund. Figure 8 Change: case "uptime" T: case "disk_0_c_read_bytes_sec": Change: "service_descriptin" => "Uptime", T: "service_descriptin" => "Disk 0 C: Read Bytes/Sec", Change: "check_cmmand" => "check_xi_service_nsclient!".$passwrd."!uptime", T: "check_cmmand" => "check_xi_service_nsclient!".$passwrd."!counter! -l "\\PhysicalDisk(0 C:)\\Disk Read Bytes/sec","Disk 0 C: Read Bytes/Sec is %.f"", Yu shuld nw have a screen that lks like Figure 9: Figure 9 Yu can see that I ve highlighted disk_0_c_read_bytes_sec This is hw we link Stage 2 f the CW with the case sectin that des the service creatin In Figure 6, line 380 ends with " checked> This defines that the check bx will be checked when the wizard runs If yu want the user t make this chice, remve the wrd checked "> When the checkbx disk_0_c_read_bytes_sec is checked, this tells the CW t prcess the case sectin later in the script. The case sectin is the bit that actually defines the services that are ging t be created

8 Press Crtl + S t save ur changes s far Add Write Service T CW Stage2 Yu can fllw the same steps in Add Read Service T CW Stage2, simply replace the wrk Read with Write thrughut the steps. Yu will end up with smething similar t Figure 10 and Figure 11. Figure 10

9 Figure 11 Uplad The Custm CW Open WinSCP Hstname: IP address f yur Nagis XI server Username: rt Passwrd: Yur rt Passwrd (nagisxi by default) Click the Lgin buttn Click in the right pane Click the Open directry/bkmark icn [Remte > Gt > Open directry/bkmark] In the remte directry type in /usr/lcal/nagisxi/html/includes/cnfigwizards/windwsserver Click OK In the left pane brwse t C:\NagisXI\ Drag the windwsserver.inc.php file frm the left pane t the right pane Click the Cpy buttn Wait fr the file t cpy Clse WinSCP Test The Custm CW Lgin t Nagis XI and run yur Custm CW Yu will nw have the disk read and write checks available fr selectin Finish the wizard and yu ll see yur new services yu ve created fr the hst yu ran the CW against End Of Chapter This cmpletes this sectin n adding a service t an existing cnfiguratin wizard.

10 Windws Perfrmance Cunters (WPC) We can use WPC as a way f btaining pint in time data frm a Windws hst. NSClient++ is the agent n the Windws hst that Nagis XI cmmunicates thrugh. Surce Infrmatin A perfrmance bject is any resurce, applicatin, r service that can be measured. Yu can select perfrmance bjects, cunters and instances t cllect data abut the perfrmance f system cmpnents r installed sftware. Identifying WPC Hw d yu knw what WPC are available n yur Windws hst? We use Perfrmance Mnitr t brwse the currently available cunters. I am lking fr a disk read bytes cunter. Lg nt yur Windws hst Start > Run > perfmn > OK Click the + icn [Add] We are lking fr disk cunters, in the list yu ll find PhysicalDisk Figure 12 Select Disk Read Bytes/sec Select 0 C: Click the Add >> buttn Click OK

11 Right click Disk Read Bytes/sec and select Prperties Figure 13 Figure 14 Yu can see here the cunter is expressed as: \PhysicalDisk(0 C:)\Disk Read Bytes/sec Click Cancel Extra Backslashes When we use WPC in Nagis XI we need t add extra characters. Fr every backslash (\) we need t use an escape character (\) s that the backslash is treated as plain text. This means we will end up with: \\PhysicalDisk(0 C:)\\Disk Read Bytes/sec I need a link here t sme dcumentatin that explains this crrectly. Understanding Hw WPC Are Used In Nagis XI There are several cmpnents that make yur service checks pssible. I will attempt t explain hw these cmpnents wrk tgether in Nagis XI. It is assumed that yu will already have used NSClient++. Nagis XI Service Relatinship Map Please refer t the Nagis XI Service Relatinship Map diagram that shws a graphical representatin f hw these cmpnents wrk tgether. This is a separate PDF file nt included with this guide. The relatinship map and the tpics belw shuld hpefully give yu a basic understanding f hw WPC are used in Nagis XI. Plugins A plugin is a script that is respnsible fr cmmunicating with devices t gather the infrmatin yu require A plugin culd make use f SNMP Gather infrmatin frm a switch r ruter using SNMP Requires n agent SNMP is widely used in enterprise hardware / sftware Sme plugins use an agent t perfrm the checks NSClient++ is an example f an agent

12 The agent is installed n a windws hst Nagis XI talks t the agent and issues the request The agent then respnds back with the results f the request check_nt is a plugin that is included with NSClient++ We use check_nt fr ur WPC checks Mre infrmatin abut check_nt can be fund here Cmmand Line / Cmmands Every check yu perfrm n yur Nagis XI server is issued frm the cmmand line The plugins used n the cmmand line vary fr each type f check Here is an example f the check_nt cmmand fr WPC: check_nt -H hstname -s passwrd -p v COUNTER -l "\\<perfrmance bject>\\cunter","<descriptin>" Nw lets translate that cmmand int \PhysicalDisk(0 C:)\Disk Read Bytes/sec check_nt -H hstname -s passwrd -p v COUNTER -l "\\PhysicalDisk(0 C:)\\Disk Read Bytes/sec","Disk Read Bytes/sec is %f" Yu can see that I added extra backslashes t the WPC as this is what is required by NSClient++ I als added the descriptin field that will return the result in the frmat I require, %f is the returning value frm the check_nt cmmand Cmmands In Nagis XI Here is an example f hw Nagis XI uses the check_nt plugin: Figure 15 is the check_xi_service_nsclient cmmand Figure 16 is frm an existing service using a WPC Figure 15

13 Figure 16 The service is using the check cmmand check_xi_service_nsclient The check cmmand check_xi_service_nsclient is using the check_nt plugin The $ARG1$ $ARG2$... fields in the service is hw we pass the infrmatin we require thrugh t the check_nt cmmand $ARG1$ is nt ppulated as I was nt using a passwrd t cnnect t this hst Yu can add yur wn cmmands t Nagis XI Uplad yur plugin via the Manage Plugins page Using Cre Cnfiguratin Manager g t the Cmmands sectin Add yur wn cmmand that runs yur upladed plugin End Of Chapter This cmpletes this sectin n WPC.

14 Trubleshting White Screen Quite ften when there is a mistake in yur custm CW cde, yu will get a blank screen when yu try t access the Cnfigure menu as seen in Figure 17. Figure 17 One way t diagnse is t watch the web server lg file in real time. Access the Cnsle f yur Nagis XI server r use Putty t cnnect t it remtely Username: rt Passwrd: Yur rt Passwrd (nagisxi by default) Type tail -f /var/lg/httpd/errr_lg and press Enter Initially yu will be shwn the mst recent errrs Press Enter a cuple f times t mve the text up the screen Nw g back t yur Nagis XI sessin and click Cnfigure n the tp blue menu Yur Putty sessin shuld have updated with sme reference t the errr, this shuld help yu t determine where in cde yur mistake lies Figure 18 Yu can see in Figure 18 that it is pinting ut an errr n line 510

15 Abut Me My name is Try and I am a Systems Administratr / Engineer based in Newcastle Australia. I can be cntacted thrugh the nagis frums as the user Bx293 r via my address nagisxi@westnet.cm.au (cntact thrugh frums preferred).

These tasks can now be performed by a special program called FTP clients.

These tasks can now be performed by a special program called FTP clients. FTP Cmmander FAQ: Intrductin FTP (File Transfer Prtcl) was first used in Unix systems a lng time ag t cpy and mve shared files. With the develpment f the Internet, FTP became widely used t uplad and dwnlad

More information

Enabling Your Personal Web Page on the SacLink

Enabling Your Personal Web Page on the SacLink 53 Enabling Yur Persnal Web Page n the SacLink *Yu need t enable yur persnal web page nly ONCE. It will be available t yu until yu graduate frm CSUS. T enable yur Persnal Web Page, fllw the steps given

More information

Campuses that access the SFS nvision Windows-based client need to allow outbound traffic to:

Campuses that access the SFS nvision Windows-based client need to allow outbound traffic to: Summary This dcument is a guide intended t guide yu thrugh the prcess f installing and cnfiguring PepleTls 8.55.27 (r current versin) via Windws Remte Applicatin (App). Remte App allws the end user t run

More information

ClassFlow Administrator User Guide

ClassFlow Administrator User Guide ClassFlw Administratr User Guide ClassFlw User Engagement Team April 2017 www.classflw.cm 1 Cntents Overview... 3 User Management... 3 Manual Entry via the User Management Page... 4 Creating Individual

More information

1 Getting and Extracting the Upgrader

1 Getting and Extracting the Upgrader Hughes BGAN-X 9202 Upgrader User Guide (PC) Rev 1.0 (23-Feb-12) This dcument explains hw t use the Hughes BGAN-X Upgrader prgram fr the 9202 User Terminal using a PC. 1 Getting and Extracting the Upgrader

More information

STIDistrict AL Rollover Procedures

STIDistrict AL Rollover Procedures 2009-2010 STIDistrict AL Rllver Prcedures General Infrmatin abut STIDistrict Rllver IMPORTANT NOTE! Rllver shuld be perfrmed between June 25 and July 25 2010. During this perid, the STIState applicatin

More information

BMC Remedyforce Integration with Remote Support

BMC Remedyforce Integration with Remote Support BMC Remedyfrce Integratin with Remte Supprt 2003-2018 BeyndTrust, Inc. All Rights Reserved. BEYONDTRUST, its lg, and JUMP are trademarks f BeyndTrust, Inc. Other trademarks are the prperty f their respective

More information

Sircon User Guide A Guide to Using the Vertafore Sircon Self-Service Portal

Sircon User Guide A Guide to Using the Vertafore Sircon Self-Service Portal Sircn User Guide A Guide t Using the Vertafre Sircn Self-Service Prtal September 2016 Versin 16.8 Cntents Cntents Using the Vertafre Sircn Self-Service Prtal... 3 Lg In... 3 Hme Page... 4 Lg New Cases...

More information

Telkom VPN-Lite router setup User Manual Billion 800VGT

Telkom VPN-Lite router setup User Manual Billion 800VGT Telkm VPN-Lite ruter setup User Manual Billin 800VGT Cntents 1. Intrductin... 3 2. Befre yu start... 4 3. VPN-Lite Setup Using Windws Utility... 5 4. VPN-Lite Setup using yur web brwser... 7 5. VPN-Lite

More information

CROWNPEAK DESKTOP CONNECTION (CDC) INSTALLATION GUIDE VERSION 2.0

CROWNPEAK DESKTOP CONNECTION (CDC) INSTALLATION GUIDE VERSION 2.0 TECHNICAL DOCUMENTATION CROWNPEAK DESKTOP CONNECTION (CDC) INSTALLATION GUIDE VERSION 2.0 AUGUST 2012 2012 CrwnPeak Technlgy, Inc. All rights reserved. N part f this dcument may be reprduced r transmitted

More information

Telkom VPN-Lite router setup User Manual Billion 810VGTX

Telkom VPN-Lite router setup User Manual Billion 810VGTX Telkm VPN-Lite ruter setup User Manual Billin 810VGTX Cntents Intrductin... 3 Befre yu start... 4 VPN-Lite Setup Using Windws Utility... 5 VPN-Lite Setup using yur web brwser... 7 VPN-Lite Manual Setup

More information

BMC Remedyforce Integration with Bomgar Remote Support

BMC Remedyforce Integration with Bomgar Remote Support BMC Remedyfrce Integratin with Bmgar Remte Supprt 2017 Bmgar Crpratin. All rights reserved wrldwide. BOMGAR and the BOMGAR lg are trademarks f Bmgar Crpratin; ther trademarks shwn are the prperty f their

More information

RISKMAN REFERENCE GUIDE TO USER MANAGEMENT (Non-Network Logins)

RISKMAN REFERENCE GUIDE TO USER MANAGEMENT (Non-Network Logins) Intrductin This reference guide is aimed at managers wh will be respnsible fr managing users within RiskMan where RiskMan is nt cnfigured t use netwrk lgins. This guide is used in cnjunctin with the respective

More information

1 Getting and Extracting the Upgrader

1 Getting and Extracting the Upgrader Hughes BGAN-X 9202 Upgrader User Guide (Mac) Rev 1.0 (23-Feb-12) This dcument explains hw t use the Hughes BGAN Upgrader prgram fr the 9202 User Terminal using a Mac Nte: Mac OS X Versin 10.4 r newer is

More information

REFWORKS: STEP-BY-STEP HURST LIBRARY NORTHWEST UNIVERSITY

REFWORKS: STEP-BY-STEP HURST LIBRARY NORTHWEST UNIVERSITY REFWORKS: STEP-BY-STEP HURST LIBRARY NORTHWEST UNIVERSITY Accessing RefWrks Access RefWrks frm a link in the Bibligraphy/Citatin sectin f the Hurst Library web page (http://library.nrthwestu.edu) Create

More information

1 Getting and Extracting the Upgrader

1 Getting and Extracting the Upgrader Hughes BGAN-X 9211 Upgrader User Guide (Mac) Rev 1.2 (6-Jul-17) This dcument explains hw t use the Hughes BGAN Upgrader prgram fr the 9211 User Terminal using a Mac Nte: Mac OS X Versin 10.4 r newer is

More information

NiceLabel LMS. Installation Guide for Single Server Deployment. Rev-1702 NiceLabel

NiceLabel LMS. Installation Guide for Single Server Deployment. Rev-1702 NiceLabel NiceLabel LMS Installatin Guide fr Single Server Deplyment Rev-1702 NiceLabel 2017. www.nicelabel.cm 1 Cntents 1 Cntents 2 2 Architecture 3 2.1 Server Cmpnents and Rles 3 2.2 Client Cmpnents 3 3 Prerequisites

More information

User Guide. Document Version: 1.0. Solution Version:

User Guide. Document Version: 1.0. Solution Version: User Guide Dcument Versin: 1.0 Slutin Versin: 365.082017.3.1 Table f Cntents Prduct Overview... 3 Hw t Install and Activate Custmer Satisfactin Survey Slutin?... 4 Security Rles in Custmer Satisfactin

More information

WorldShip PRE-INSTALLATION INSTRUCTIONS: INSTALLATION INSTRUCTIONS: Window (if available) Install on a Single or Workgroup Workstation

WorldShip PRE-INSTALLATION INSTRUCTIONS: INSTALLATION INSTRUCTIONS: Window (if available) Install on a Single or Workgroup Workstation PRE-INSTALLATION INSTRUCTIONS: This dcument discusses using the WrldShip DVD t install WrldShip. Yu can als install WrldShip frm the Web. G t the fllwing Web page and click the apprpriate dwnlad link:

More information

Please contact technical support if you have questions about the directory that your organization uses for user management.

Please contact technical support if you have questions about the directory that your organization uses for user management. Overview ACTIVE DATA CALENDAR LDAP/AD IMPLEMENTATION GUIDE Active Data Calendar allws fr the use f single authenticatin fr users lgging int the administrative area f the applicatin thrugh LDAP/AD. LDAP

More information

Element Creator for Enterprise Architect

Element Creator for Enterprise Architect Element Creatr User Guide Element Creatr fr Enterprise Architect Element Creatr fr Enterprise Architect... 1 Disclaimer... 2 Dependencies... 2 Overview... 2 Limitatins... 3 Installatin... 4 Verifying the

More information

Oracle Universal Records Management Oracle Universal Records Manager Adapter for Documentum Installation Guide

Oracle Universal Records Management Oracle Universal Records Manager Adapter for Documentum Installation Guide Oracle Universal Recrds Management Oracle Universal Recrds Manager Adapter fr Dcumentum Installatin Guide December 2009 Universal Recrds Manager Adapter fr Dcumentum Installatin Guide, Cpyright 2009, Oracle.

More information

Enterprise Installation

Enterprise Installation Enterprise Installatin Mnnit Crpratin Versin 3.6.0.0 Cntents Prerequisites... 3 Web Server... 3 SQL Server... 3 Installatin... 4 Activatin Key... 4 Dwnlad... 4 Cnfiguratin Wizard... 4 Activatin... 4 Create

More information

VMware AirWatch Certificate Authentication for Cisco IPSec VPN

VMware AirWatch Certificate Authentication for Cisco IPSec VPN VMware AirWatch Certificate Authenticatin fr Cisc IPSec VPN Fr VMware AirWatch Have dcumentatin feedback? Submit a Dcumentatin Feedback supprt ticket using the Supprt Wizard n supprt.air-watch.cm. This

More information

LiveEngage and Microsoft Dynamics Integration Guide Document Version: 1.0 September 2017

LiveEngage and Microsoft Dynamics Integration Guide Document Version: 1.0 September 2017 LiveEngage and Micrsft Dynamics Integratin Guide Dcument Versin: 1.0 September 2017 Cntents Intrductin... 3 Step 1: Sign Up... 3 CRM Widget Signing Up... 3 Step 2: Cnfiguring the CRM Widget... 4 Accessing

More information

To start your custom application development, perform the steps below.

To start your custom application development, perform the steps below. Get Started T start yur custm applicatin develpment, perfrm the steps belw. 1. Sign up fr the kitewrks develper package. Clud Develper Package Develper Package 2. Sign in t kitewrks. Once yu have yur instance

More information

INSERTING MEDIA AND OBJECTS

INSERTING MEDIA AND OBJECTS INSERTING MEDIA AND OBJECTS This sectin describes hw t insert media and bjects using the RS Stre Website Editr. Basic Insert features gruped n the tlbar. LINKS The Link feature f the Editr is a pwerful

More information

Quick Start Guide. Basic Concepts. DemoPad Designer - Quick Start Guide

Quick Start Guide. Basic Concepts. DemoPad Designer - Quick Start Guide Quick Start Guide This guide will explain the prcess f installing & using the DemPad Designer sftware fr PC, which allws yu t create a custmised Graphical User Interface (GUI) fr an iphne / ipad & embed

More information

Troubleshooting Citrix- Published Resources Configuration in VMware Identity Manager

Troubleshooting Citrix- Published Resources Configuration in VMware Identity Manager Trubleshting Citrix- Published Resurces Cnfiguratin in VMware Identity Manager VMware Identity Manager A U G U S T 2 0 1 7 V1 Table f Cntents Overview... 1 Supprted Versins f Cmpnents... 1 Prerequisites...

More information

The screenshots/advice are based on upgrading Controller 10.1 RTM to 10.1 IF6 on Win2003

The screenshots/advice are based on upgrading Controller 10.1 RTM to 10.1 IF6 on Win2003 Overview The screenshts/advice are based n upgrading Cntrller 10.1 RTM t 10.1 IF6 n Win2003 Other Interim Fix (IF) upgrades are likely t be similar, but the authr cannt guarantee that the dcumentatin is

More information

Wave IP 4.5. CRMLink Desktop User Guide

Wave IP 4.5. CRMLink Desktop User Guide Wave IP 4.5 CRMLink Desktp User Guide 2015 by Vertical Cmmunicatins, Inc. All rights reserved. Vertical Cmmunicatins and the Vertical Cmmunicatins lg and cmbinatins theref and Vertical ViewPint, Wave Cntact

More information

Element Creator for Enterprise Architect

Element Creator for Enterprise Architect Element Creatr User Guide Element Creatr fr Enterprise Architect Element Creatr fr Enterprise Architect... 1 Disclaimer... 2 Dependencies... 2 Overview... 2 Limitatins... 3 Installatin... 4 Verifying the

More information

USER MANUAL. RoomWizard Administrative Console

USER MANUAL. RoomWizard Administrative Console USER MANUAL RmWizard Administrative Cnsle Cntents Welcme... 3 Administer yur RmWizards frm ne lcatin... 3 Abut This Manual... 4 Setup f the Administrative Cnsle... 4 Installatin... 4 The Cnsle Windw...

More information

Using the Swiftpage Connect List Manager

Using the Swiftpage Connect List Manager Quick Start Guide T: Using the Swiftpage Cnnect List Manager The Swiftpage Cnnect List Manager can be used t imprt yur cntacts, mdify cntact infrmatin, create grups ut f thse cntacts, filter yur cntacts

More information

Configuring the McAfee Windows Event Collector Management Utility *Also can provide client transmission of other non-windows log files*

Configuring the McAfee Windows Event Collector Management Utility *Also can provide client transmission of other non-windows log files* Cnfiguring the McAfee Windws Event Cllectr Management Utility *Als can prvide client transmissin f ther nn-windws lg files* Utility Install 1. Dwnlad the MFE Nitr Windws Agent (chse latest versin) https://secure.mcafee.cm/apps/dwnlads/my-prducts/cmpnent-prductlist.aspx?regin=us

More information

BANNER BASICS. What is Banner? Banner Environment. My Banner. Pages. What is it? What form do you use? Steps to create a personal menu

BANNER BASICS. What is Banner? Banner Environment. My Banner. Pages. What is it? What form do you use? Steps to create a personal menu BANNER BASICS What is Banner? Definitin Prduct Mdules Self-Service-Fish R Net Lg int Banner Banner Envirnment The Main Windw My Banner Pages What is it? What frm d yu use? Steps t create a persnal menu

More information

Able2Extract Server 3.0. User Guide

Able2Extract Server 3.0. User Guide 3.0 User Guide TABLE OF CONTENTS: 1 INTRODUCTION... 5 1.1 System Requirements... 5 2 BEFORE INSTALLING ABLE2EXTRACT SERVER... 6 2.1 Required Sftware Updates... 6 2.2 Additinal Requirements fr Windws Vista...

More information

TRAINING GUIDE. Overview of Lucity Spatial

TRAINING GUIDE. Overview of Lucity Spatial TRAINING GUIDE Overview f Lucity Spatial Overview f Lucity Spatial In this sessin, we ll cver the key cmpnents f Lucity Spatial. Table f Cntents Lucity Spatial... 2 Requirements... 2 Setup... 3 Assign

More information

Procurement Contract Portal. User Guide

Procurement Contract Portal. User Guide Prcurement Cntract Prtal User Guide Cntents Intrductin...2 Access the Prtal...2 Hme Page...2 End User My Cntracts...2 Buttns, Icns, and the Actin Bar...3 Create a New Cntract Request...5 Requester Infrmatin...5

More information

Kaltura MediaSpace TM Enterprise 2.0 Requirements and Installation

Kaltura MediaSpace TM Enterprise 2.0 Requirements and Installation Kaltura MediaSpace TM Enterprise 2.0 Requirements and Installatin Updated Aug 30, 2011 Server Requirements Hardware The hardware requirements are mstly dependent n the number f cncurrent users yu expect

More information

ROCK-POND REPORTING 2.1

ROCK-POND REPORTING 2.1 ROCK-POND REPORTING 2.1 AUTO-SCHEDULER USER GUIDE Revised n 08/19/2014 OVERVIEW The purpse f this dcument is t describe the prcess in which t fllw t setup the Rck-Pnd Reprting prduct s that users can schedule

More information

Exercise 1: Deploying Windows Server 2012

Exercise 1: Deploying Windows Server 2012 Highlight Nte Lab Answer Key: Mdule 1: Deplying and Managing Windws Server 2012 Lab: Deplying and Managing Windws Server 201 2 Exercise 1: Deplying Windws Server 2012 10. In the Windws Setup Wizard, n

More information

Upgrading Kaltura MediaSpace TM Enterprise 1.0 to Kaltura MediaSpace TM Enterprise 2.0

Upgrading Kaltura MediaSpace TM Enterprise 1.0 to Kaltura MediaSpace TM Enterprise 2.0 Upgrading Kaltura MediaSpace TM Enterprise 1.0 t Kaltura MediaSpace TM Enterprise 2.0 Assumptins: The existing cde was checked ut f: svn+ssh://mediaspace@kelev.kaltura.cm/usr/lcal/kalsurce/prjects/m ediaspace/scial/branches/production/website/.

More information

IBM SPSS Interviewer Setting up Data Entry Supervisor machines for Synchronization

IBM SPSS Interviewer Setting up Data Entry Supervisor machines for Synchronization IBM SPSS Interviewer 6.0.1 Setting up Data Entry Supervisr machines fr Synchrnizatin V e r s i n 1. 1 P a g e 1 Table f Cntents 1 Overview... 3 2 Create Data Entry Supervisr s ISA (aka DimensinNet) User

More information

Quick Guide on implementing SQL Manage for SAP Business One

Quick Guide on implementing SQL Manage for SAP Business One Quick Guide n implementing SQL Manage fr SAP Business One The purpse f this dcument is t guide yu thrugh the quick prcess f implementing SQL Manage fr SAP B1 SQL Server databases. SQL Manage is a ttal

More information

Date: October User guide. Integration through ONVIF driver. Partner Self-test. Prepared By: Devices & Integrations Team, Milestone Systems

Date: October User guide. Integration through ONVIF driver. Partner Self-test. Prepared By: Devices & Integrations Team, Milestone Systems Date: Octber 2018 User guide Integratin thrugh ONVIF driver. Prepared By: Devices & Integratins Team, Milestne Systems 2 Welcme t the User Guide fr Online Test Tl The aim f this dcument is t prvide guidance

More information

Kaltura Video Extension for SharePoint 2013 Deployment Guide for Microsoft Office 365. Version: 1.0

Kaltura Video Extension for SharePoint 2013 Deployment Guide for Microsoft Office 365. Version: 1.0 Kaltura Vide Extensin fr SharePint 2013 Deplyment Guide fr Micrsft Office 365 Versin: 1.0 Kaltura Business Headquarters 250 Park Avenue Suth, 10th Flr, New Yrk, NY 10003 Tel.: +1 800 871 5224 Cpyright

More information

Backing Up and Restoring Assured Complete

Backing Up and Restoring Assured Complete Backing Up and Restring Assured Cmplete Step 1 Befre yur Begin 1. T perfrm a Manual Backup, wrk frm yur Server machine where Assured Cmplete is installed alng with Micrsft SQL Server Management Studi Express

More information

Proper Document Usage and Document Distribution. TIP! How to Use the Guide. Managing the News Page

Proper Document Usage and Document Distribution. TIP! How to Use the Guide. Managing the News Page Managing the News Page TABLE OF CONTENTS: The News Page Key Infrmatin Area fr Members... 2 Newsletter Articles... 3 Adding Newsletter as Individual Articles... 3 Adding a Newsletter Created Externally...

More information

TRAINING GUIDE. Lucity Mobile

TRAINING GUIDE. Lucity Mobile TRAINING GUIDE The Lucity mbile app gives users the pwer f the Lucity tls while in the field. They can lkup asset infrmatin, review and create wrk rders, create inspectins, and many mre things. This manual

More information

TechSmith Relay 5.1.5

TechSmith Relay 5.1.5 TechSmith Relay 5.1.5 WHAT END USERS NEED TO KNOW This upgrade cmes with new features that will be available t yu. Fr all f these feature t be installed n yur cmputer few steps will need t be taken. After

More information

HPE AppPulse Mobile. Software Version: 2.1. IT Operations Management Integration Guide

HPE AppPulse Mobile. Software Version: 2.1. IT Operations Management Integration Guide HPE AppPulse Mbile Sftware Versin: 2.1 IT Operatins Management Integratin Guide Dcument Release Date: Nvember 2015 Cntents Overview: The IT Operatins Management Integratin 3 System Requirements 3 Hw t

More information

SpiraPlan & SpiraTeam Version Control Integration User Guide Inflectra Corporation

SpiraPlan & SpiraTeam Version Control Integration User Guide Inflectra Corporation SpiraPlan & SpiraTeam Versin Cntrl Integratin User Guide Inflectra Crpratin Date: June 4th, 2017 Cntents 1. Intrductin... 1 2. Integrating with Subversin... 2 3. Integrating with Perfrce... 7 4. Integrating

More information

Using the Turnpike Materials ProjectSolveSP System (Materials & ProjectSolveSP Admin)

Using the Turnpike Materials ProjectSolveSP System (Materials & ProjectSolveSP Admin) PROCESS FOR ADDING/EDITING A TECHNICIAN TO THE PROJECTSOLVESP SYSTEM Fr new users: Cnsultant will btain Persnnel Apprval fr the technician Cnsultant will enter the infrmatin int the Add/Update a New Technician

More information

Troubleshooting of network problems is find and solve with the help of hardware and software is called troubleshooting tools.

Troubleshooting of network problems is find and solve with the help of hardware and software is called troubleshooting tools. Q.1 What is Trubleshting Tls? List their types? Trubleshting f netwrk prblems is find and slve with the help f hardware and sftware is called trubleshting tls. Trubleshting Tls - Hardware Tls They are

More information

Integrating QuickBooks with TimePro

Integrating QuickBooks with TimePro Integrating QuickBks with TimePr With TimePr s QuickBks Integratin Mdule, yu can imprt and exprt data between TimePr and QuickBks. Imprting Data frm QuickBks The TimePr QuickBks Imprt Facility allws data

More information

Planning, installing, and configuring IBM CMIS for Content Manager OnDemand

Planning, installing, and configuring IBM CMIS for Content Manager OnDemand Planning, installing, and cnfiguring IBM CMIS fr Cntent Manager OnDemand Cntents IBM CMIS fr Cntent Manager OnDemand verview... 4 Planning fr IBM CMIS fr Cntent Manager OnDemand... 5 Prerequisites fr installing

More information

Technical Paper. Installing and Configuring SAS Environment Manager in a SAS Grid Environment

Technical Paper. Installing and Configuring SAS Environment Manager in a SAS Grid Environment Technical Paper Installing and Cnfiguring SAS Envirnment Manager in a SAS Grid Envirnment Last Mdified: Octber 2016 Release Infrmatin Cntent Versin: Octber 2016. Trademarks and Patents SAS Institute Inc.,

More information

Click Studios. Passwordstate. RSA SecurID Configuration

Click Studios. Passwordstate. RSA SecurID Configuration Passwrdstate RSA SecurID Cnfiguratin This dcument and the infrmatin cntrlled therein is the prperty f Click Studis. It must nt be reprduced in whle/part, r therwise disclsed, withut prir cnsent in writing

More information

August 22, 2006 IPRO Tech Client Services Tip of the Day. Concordance and IPRO Camera Button / Backwards DB Link Setup

August 22, 2006 IPRO Tech Client Services Tip of the Day. Concordance and IPRO Camera Button / Backwards DB Link Setup Cncrdance and IPRO Camera Buttn / Backwards DB Link Setup When linking Cncrdance and IPRO, yu will need t update the DDEIVIEW.CPL file t establish the camera buttn. Setting up the camera buttn feature

More information

Access the site directly by navigating to in your web browser.

Access the site directly by navigating to   in your web browser. GENERAL QUESTIONS Hw d I access the nline reprting system? Yu can access the nline system in ne f tw ways. G t the IHCDA website at https://www.in.gv/myihcda/rhtc.htm and scrll dwn the page t Cmpliance

More information

Bike MS My Account Guide

Bike MS My Account Guide Bike MS My Accunt Guide Utilize the tls available thrugh My Accunt! A custmizable My Accunt is available t each registered participant t help with recruiting and fundraising. Tls within My Accunt include:

More information

Towne Information Systems, Inc. Inter-Office Correspondence

Towne Information Systems, Inc. Inter-Office Correspondence Twne Infrmatin Systems, Inc. Inter-Office Crrespndence Date: 2/25/2019 Frm: Bill Salyers Subject: Getting Started with O365 By nw yu shuld have read abut ur mve t Micrsft O365 a new versin f Micrsft Office.

More information

WebEx Web Conferencing Quick Start Guide

WebEx Web Conferencing Quick Start Guide WebEx Web Cnferencing Quick Start Guide WebEx allws the curse instructr and participants t cnnect using web cnferencing and VIP using yur cmputer r smart device. WebEx's allws yu t share cntent, chat,

More information

PL-2302 Mac OS Driver MAC/PC and PC/MAC Communication Software

PL-2302 Mac OS Driver MAC/PC and PC/MAC Communication Software PL-2302 Mac OS Driver MAC/PC and PC/MAC Cmmunicatin Sftware Windws Netwrk User Manual Prlific Technlgy Inc. Table f Cntents 1. Scpe... 3 1.1. Overview... 3 1.2. Supprted Platfrms and Tested Sftware...3

More information

Model WM100. Product Manual

Model WM100. Product Manual Mdel WM100 Prduct Manual Table f Cntents Sectin Page 1. Hardware... 3 2. Sftware... 4 3. Features... 5 4. Installatin... 6 5. App Devices... 9 6. App Rms... 12 7. App Scenes... 14 8. App Setup... 18 Cntents

More information

Outlook Web Application (OWA) Basic Training

Outlook Web Application (OWA) Basic Training Outlk Web Applicatin (OWA) Basic Training Requirements t use OWA Full Versin: Yu must use at least versin 7 f Internet Explrer, Safari n Mac, and Firefx 3.X. (Ggle Chrme r Internet Explrer versin 6, yu

More information

Entering an NSERC CCV: Step by Step

Entering an NSERC CCV: Step by Step Entering an NSERC CCV: Step by Step - 2018 G t CCV Lgin Page Nte that usernames and passwrds frm ther NSERC sites wn t wrk n the CCV site. If this is yur first CCV, yu ll need t register: Click n Lgin,

More information

Using the Swiftpage Connect List Manager

Using the Swiftpage Connect List Manager Quick Start Guide T: Using the Swiftpage Cnnect List Manager The Swiftpage Cnnect List Manager can be used t imprt yur cntacts, mdify cntact infrmatin, create grups ut f thse cntacts, filter yur cntacts

More information

from DDS on Mac Workstations

from DDS on Mac Workstations Email frm DDS n Mac Wrkstatins Intrductin This dcument describes hw t set email up t wrk frm the Datacn system n a Mac wrkstatin. Yu can send email t anyne in the system that has an email address, such

More information

UiPath Automation. Walkthrough. Walkthrough Calculate Client Security Hash

UiPath Automation. Walkthrough. Walkthrough Calculate Client Security Hash UiPath Autmatin Walkthrugh Walkthrugh Calculate Client Security Hash Walkthrugh Calculate Client Security Hash Start with the REFramewrk template. We start ff with a simple implementatin t demnstrate the

More information

Municode Website Instructions

Municode Website Instructions Municde Website instructins Municde Website Instructins The new and imprved Municde site allws yu t navigate t, print, save, e-mail and link t desired sectins f the Online Cde f Ordinances with greater

More information

Launching Xacta 360 Marketplace AMI Guide June 2017

Launching Xacta 360 Marketplace AMI Guide June 2017 Launching Xacta 360 Marketplace AMI Guide June 2017 Tels Crpratin 2017. All rights reserved. U.S. patents Ns. 6,901,346; 6,980,927; 6,983,221; 6,993,448; and 7,380,270. Xacta is a registered trademark

More information

Adverse Action Letters

Adverse Action Letters Adverse Actin Letters Setup and Usage Instructins The FRS Adverse Actin Letter mdule was designed t prvide yu with a very elabrate and sphisticated slutin t help autmate and handle all f yur Adverse Actin

More information

TN How to configure servers to use Optimise2 (ERO) when using Oracle

TN How to configure servers to use Optimise2 (ERO) when using Oracle TN 1498843- Hw t cnfigure servers t use Optimise2 (ERO) when using Oracle Overview Enhanced Reprting Optimisatin (als knwn as ERO and Optimise2 ) is a feature f Cntrller which is t speed up certain types

More information

Renewal Reminder. User Guide. Copyright 2009 Data Springs Inc. All rights reserved.

Renewal Reminder. User Guide. Copyright 2009 Data Springs Inc. All rights reserved. Renewal Reminder User Guide Cpyright 2009 Data Springs Inc. All rights reserved. Renewal Reminder 2.5 User Guide Table f cntents: 1 INTRODUCTION...3 2 INSTALLATION PROCEDURE...4 3 ADDING RENEWAL REMINDER

More information

Tips and Tricks in Word 2000 Part II. Presented by Carla Torgerson

Tips and Tricks in Word 2000 Part II. Presented by Carla Torgerson Tips and Tricks in Wrd 2000 Part II Presented by Carla Trgersn (cnt2@psu.edu) 1. using styles Styles are used t create frmatting shrtcuts s yu can create a dcument that has frmatting cnsistency. Fr example,

More information

FollowMe. FollowMe. Q-Server Quick Integration Guide. Revision: 5.4 Date: 11 th June Page 1 of 26

FollowMe. FollowMe. Q-Server Quick Integration Guide. Revision: 5.4 Date: 11 th June Page 1 of 26 Q-Server Quick Integratin Guide Revisin: 5.4 Date: 11 th June 2009 Page 1 f 26 Cpyright, Disclaimer and Trademarks Cpyright Cpyright 1997-2009 Ringdale UK Ltd. All rights reserved. N part f this publicatin

More information

Online Banking for Business USER GUIDE

Online Banking for Business USER GUIDE Online Banking fr Business estatements USER GUIDE Cntents Cntents... 1 Online Banking fr Business Getting Started... 2 Technical Requirements... 2 Supprted brwsers... 2 Minimum system requirements... 2

More information

Scroll down to New and another menu will appear. Select Folder and a new

Scroll down to New and another menu will appear. Select Folder and a new Creating a New Flder Befre we begin with Micrsft Wrd, create a flder n yur Desktp named Summer PD. T d this, right click anywhere n yur Desktp and a menu will appear. Scrll dwn t New and anther menu will

More information

Configuring Database & SQL Query Monitoring With Sentry-go Quick & Plus! monitors

Configuring Database & SQL Query Monitoring With Sentry-go Quick & Plus! monitors Cnfiguring Database & SQL Query Mnitring With Sentry-g Quick & Plus! mnitrs 3Ds (UK) Limited, Nvember, 2013 http://www.sentry-g.cm Be Practive, Nt Reactive! One f the best ways f ensuring a database is

More information

Proficy* SmartSignal 6.1 Installation Guide

Proficy* SmartSignal 6.1 Installation Guide Prficy* SmartSignal 6.1 IG_P-SS_6.1 R0 Prficy* SmartSignal 6.1 Disclaimer f Warranties and Liability The infrmatin cntained in this manual is believed t be accurate and reliable. Hwever, GE Intelligent

More information

Avigilon Control Center Server User Guide. Version 6.4

Avigilon Control Center Server User Guide. Version 6.4 Avigiln Cntrl Center Server User Guide Versin 6.4 2006-2017, Avigiln Crpratin. All rights reserved. AVIGILON, the AVIGILON lg, AVIGILON CONTROL CENTER, ACC, and TRUSTED SECURITY SOLUTIONS.AVIGILON, the

More information

BI Publisher TEMPLATE Tutorial

BI Publisher TEMPLATE Tutorial PepleSft Campus Slutins 9.0 BI Publisher TEMPLATE Tutrial Lessn T2 Create, Frmat and View a Simple Reprt Using an Existing Query with Real Data This tutrial assumes that yu have cmpleted BI Publisher Tutrial:

More information

User Guide. ACE Data Source. OnCommand Workflow Automation (WFA) Abstract PROFESSIONAL SERVICES

User Guide. ACE Data Source. OnCommand Workflow Automation (WFA) Abstract PROFESSIONAL SERVICES PROFESSIONAL SERVICES User Guide OnCmmand Wrkflw Autmatin (WFA) ACE Data Surce Prepared fr: ACE Data Surce - Versin 2.0.0 Date: Octber 2015 Dcument Versin: 2.0.0 Abstract The ACE Data Surce (ACE-DS) is

More information

EBSCOhost User Guide Print/ /Save. Print, , Save, Notetaking, Export, and Cite Your Search Results. support.ebsco.com

EBSCOhost User Guide Print/ /Save. Print,  , Save, Notetaking, Export, and Cite Your Search Results. support.ebsco.com EBSCOhst User Guide Print/E-Mail/Save Print, E-mail, Save, Ntetaking, Exprt, and Cite Yur Search Results supprt.ebsc.cm Table f Cntents Inside this User Guide... 3 Printing Yur Results... 3 E-mailing Yur

More information

Graduate Application Review Process Documentation

Graduate Application Review Process Documentation Graduate Applicatin Review Prcess Cntents System Cnfiguratin... 1 Cgns... 1 Banner Dcument Management (ApplicatinXtender)... 2 Banner Wrkflw... 4 Navigatin... 5 Cgns... 5 IBM Cgns Sftware Welcme Page...

More information

istartsmart 3.5 Upgrade - Installation Instructions

istartsmart 3.5 Upgrade - Installation Instructions istartsmart 3.5 Upgrade - Installatin Instructins Minimum System Requirements: Hatch All-In-One istartsmart Cmputer Learning Center v1.0 r v1.1 Internet access - either hard-wired r wireless cnnectin is

More information

The Login Page Designer

The Login Page Designer The Lgin Page Designer A new Lgin Page tab is nw available when yu g t Site Cnfiguratin. The purpse f the Admin Lgin Page is t give fundatin staff the pprtunity t build a custm, yet simple, layut fr their

More information

Getting Started with the Web Designer Suite

Getting Started with the Web Designer Suite Getting Started with the Web Designer Suite The Web Designer Suite prvides yu with a slew f Dreamweaver extensins that will assist yu in the design phase f creating a website. The tls prvided in this suite

More information

Gmail and Google Drive for Rutherford County Master Gardeners

Gmail and Google Drive for Rutherford County Master Gardeners Gmail and Ggle Drive fr Rutherfrd Cunty Master Gardeners Gmail Create a Ggle Gmail accunt. https://www.yutube.cm/watch?v=kxbii2dprmc&t=76s (Hw t Create a Gmail Accunt 2014 by Ansn Alexander is a great

More information

TUTORIAL --- Learning About Your efolio Space

TUTORIAL --- Learning About Your efolio Space TUTORIAL --- Learning Abut Yur efli Space Designed t Assist a First-Time User Available t All Overview Frm the mment yu lg in t yur just created myefli accunt, yu will find help ntes t guide yu in learning

More information

Internet Explorer Configuration Reference

Internet Explorer Configuration Reference Sitecre CMS 6.2 r later Internet Explrer Cnfiguratin Reference Rev: 2013-10-04 Sitecre CMS 6.2 r later Internet Explrer Cnfiguratin Reference Optimize Micrsft Internet Explrer fr Use with Sitecre Table

More information

Faculty Textbook Adoption Instructions

Faculty Textbook Adoption Instructions Faculty Textbk Adptin Instructins The Bkstre has partnered with MBS Direct t prvide textbks t ur students. This partnership ffers ur students and parents mre chices while saving them mney, including ptins

More information

Technical Paper. Installing and Configuring SAS Environment Manager in a SAS Grid Environment with a Shared Configuration Directory

Technical Paper. Installing and Configuring SAS Environment Manager in a SAS Grid Environment with a Shared Configuration Directory Technical Paper Installing and Cnfiguring Envirnment Manager in a Grid Envirnment with a Shared Cnfiguratin Directry Last Mdified: January 2018 Release Infrmatin Cntent Versin: January 2018. Trademarks

More information

CaseWare Working Papers. Data Store user guide

CaseWare Working Papers. Data Store user guide CaseWare Wrking Papers Data Stre user guide Index 1. What is a Data Stre?... 3 1.1. When using a Data Stre, the fllwing features are available:... 3 1.1.1.1. Integratin with Windws Active Directry... 3

More information

Deploy Your First Cloud Foundry App to Any Cloud Foundry Service Provider

Deploy Your First Cloud Foundry App to Any Cloud Foundry Service Provider Deply Yur First Clud Fundry App t Any Clud Fundry Service Prvider cludwrkshp.rg/cludfundry Presenter: Dave Nielsen Clud Cmputing Evangelist @davenielsen May 2015 Dave Nielsen dnielsen@gmail.cm twitter.cm/davenielsen

More information

Manual for installation and usage of the module Secure-Connect

Manual for installation and usage of the module Secure-Connect Mdule Secure-Cnnect Manual fr installatin and usage f the mdule Secure-Cnnect Page 1 / 1 5 Table f Cntents 1)Cntents f the package...3 2)Features f the mdule...4 3)Installatin f the mdule...5 Step 1: Installatin

More information

Dear Student, Here is a sample of how the immunization process will work for Fall 2018:

Dear Student, Here is a sample of how the immunization process will work for Fall 2018: Dear Student, As a service t all UTHSC students, beginning with the Fall 2018 term, Qualified First, Inc. is the newly named vendr f recrd fr all f yur immunizatins. This service will allw yu the ability

More information

Managing Your Access To The Open Banking Directory How To Guide

Managing Your Access To The Open Banking Directory How To Guide Managing Yur Access T The Open Banking Directry Hw T Guide Date: June 2018 Versin: v2.0 Classificatin: PUBLIC OPEN BANKING LIMITED 2018 Page 1 f 32 Cntents 1. Intrductin 3 2. Signing Up 4 3. Lgging In

More information