NereidProject Documentation

Size: px
Start display at page:

Download "NereidProject Documentation"

Transcription

1 NereidProject Documentation Release Openlabs Technologies & Consulting (P) Limited May 21, 2017

2

3 Contents 1 Welcome To Nereid Project Overview Nereid User Installation Install required OS packages Virtual Environment How to install Nereid Project Getting Started A minimal application Admin Users Launching the application and template Nereid Project Tutorial Creating Your First Project Creating project on Tryton client Adding Participants to Project via Tryton Client The Project Management Screen People and Permission Creating Task Basic RST primer Updating task View my-tasks State of Task Notification Attachment Global Timesheet Project Planning Indices and tables 41 i

4 ii

5 Contents: Contents 1

6 2 Contents

7 CHAPTER 1 Welcome To Nereid Project This documentation is divided into different parts. We recommend that you get started with Installation and then head over to the Getting Started. Nereid Project is an open-source collaborative development platform offered by Team Openlabs. It is mainly used for managing project processes. While it could be used for managing any kind of project, it is primarily used at Openlabs to manage software projects. It is designed to help organise projects & tasks. The aim is to connect everything together on a single interface, avoiding unnecessary time consumption, and track project s progress, task s status, shared files, time spent on individual tasks. Break project into multiple tasks, assign to project teammates to collaborate Gantt chart provides deep insights about progress Collaborative dashboard ties everything together Upload files from personal desktop, or internet link Organize efforts-easily create, assign, and comment on tasks, so user always know what s getting done and who s doing it. Puts tasks together, so user can go to one place for all the history of the work. notifications via make it effortless to stay on top of the details that matter to user. and much more... Overview The goal of nereid project is to provide a friendly web based user interface to stakeholders outside the company to the powerful project management module of Tryton. Separate user accounts for users outside the company (like customers) without giving access to Tryton. Simplify the project management tasks to encourage participation from users who may not be tech savvy. 3

8 Nereid User Nereid introduces a model of user management different from the default user management schema (res.user) of Tryton. Nereid project also makes use of the concept to provide logins to participants of the project. Internal employees of the company should in addition have their user accounts linked to their employee records so that timesheet entries can be marked by users who are also employees. In addition, nereid project also introduces the idea of project administrators. Project administrators are created by adding nereid users to the project admins section on the company module. This is due for deprecation and will be replaced with the permissions system introduced in nereid. Nereid Users with the nereid_project.admin permission will be automatically given admin rights to all projects. Note: Note that the permissions mentioned here are nereid.permissions and not the regular Tryton access control user groups. 4 Chapter 1. Welcome To Nereid Project

9 CHAPTER 2 Installation Install required OS packages Some requirements to get installed, they might be in your package manager: sudo apt-get install python-dev sudo apt-get install python-pip These are required for the Python package lxml: sudo apt-get install libxml2-dev sudo apt-get install libxslt-dev Virtual Environment For getting this running on your local machine, the easy way to do that is setting up the virtualenvwrapper first. virtualenvwrapper virtualenvwrappers are isolated Python environments. This helps isolate your dependencies, especially when used with pip. virtualenvwrapper provides some convenient short-hand shell commands to make virtualenv nicer to use. If you are on Mac OS X or Linux, the following command will work for you in creating a virtualenv $ sudo pip install virtualenvwrapper Set up virtualenvwrapper In your shell initialisation file (eg. ~/.bashrc), add two lines like this: 5

10 export WORKON_HOME=$HOME/.virtualenvs source /usr/local/bin/virtualenvwrapper.sh (Change the path to virtualenvwrapper.sh depending on where it was installed by pip.) WORKON_HOME is a directory where virtualenvwrapper is going to collect the virtualenvs that you use it to create. virtualenvwrapper provides the following commands: mkvirtualenv foo rmvirtualenv foo workon foo # activate the virtualenv called foo deactivate # whatever the currently active virtualenv is Now Create a new virtualenv for project: $ mkvirtualenv myproject New python executable in myproject/bin/python Installing setuptools...done. Installing pip...done. $ cd myproject $ cdvirtualenv Now, whenever you want to work on a project, you only have to activate the corresponding environment. On OS X and Linux, do the following $. venv/bin/activate If you are a Ubuntu user, the following command is for you $ workon myproject (myproject)$ Either way, you should now be using your virtualenv (notice how the prompt of your shell has changed to show the active environment). How to install Nereid Project Nereid Project(a Project management system), has been implemented as a Web application to be accessed using a web browser. To experience this you should have installed tryton client. Following commands is to be followed for installing Nereid Project s desktop client. Nereid project can be installed like any other tryton module or python package as it comes bundled with a setup.py script. Alternatively the latest released version published to PYPI can be installed using PIP. $ pip install trytond_nereid_project A few seconds later and you are good to go. So to start with, install following: pip install psycopg2 pip install blinker 6 Chapter 2. Installation

11 Both above packages should be installed by default but just in case to make sure, it they were not, they get installed in your current working environment. Now, nereid-project is installed, to run the web app, Project Management system, refer Getting Started How to install Nereid Project 7

12 8 Chapter 2. Installation

13 CHAPTER 3 Getting Started Eager to get started? This page gives a good introduction to Nereid Project. It assumes that you already have Nereid and Nereid Project installed. If you do not, head over to then Installation section. A minimal application A minimal Nereid application first requries a Tryton database with the Nereid module installed. If you already have a database with Nereid installed head over to creating website. Setting up a database To create a new Tryton database, you will need to fill out the information as on the screenshot: Server connection : localhost:8000 Tryton Server Password: admin Database name : database_name Admin password : admin 9

14 This is how you can create a new database. Now to login your ERP using the Tryton client, you need the following information: Host : localhost:8000 Database : database_name User name: admin or Ask your administrator for this information. Password : admin or Ask your administrator for this information. Creating a new website Once the nereid module is installed in a Tryton database, open the Websites menu under Nereid/Configuration, and create a new website with the following settings. Field Name URL Map Company Default Language Guest User App User Value abcpartnerportal.com Choose Default Choose your Company English Create a new Nereid User Create or choose a User The default language is the language your website is displayed in. When a user visits the root of the website (say example.com), the user will be redirected to abcpartnerportal.com/default_language/ 10 Chapter 3. Getting Started

15 Example: If English US is selected as Default Language, then the user will be redirected to abcpartnerportal. com/en_us/ This is the tryton user with which the application will run. Ensure that the user you choose has the sufficient permissions (through groups) to access and update tryton models related to project management. When the web site is created. It is recommended to create a new Nereid User. Here in above screenshot a new nereid user as a guest is created. But for giving privileges to the project, you need to create other nereid users also, they can be employee of your company, the clients, the stakeholders, etc. Refer to the nereid.trytond_nereid.website.website for details on what each of the fields mean. Tip: Since version the name of the website is used by the WSGI dispatcher to identify the website that needs to be served. When you test the site locally, it is not usually possible to mimic your production url. This can be overcome by using a simple WSGI middleware which overwrite HTTP_HOST in the environ. Admin Users Project Admin / Manager After creating website as mentioned in creating website, create a new admin user by adding project admin or project manager permission as shown below: Project Admin has complete access to entire project management system Admin Users 11

16 Though project manager is limited just to: Global Timesheet Performance Graph Tasks By Employee All the project admins / managers of company can be seen on company s screen using Project Admins or Project Managers tab. 12 Chapter 3. Getting Started

17 Admin Member Admin member is project specific nereid user with role as admin. This admin member is allowed to do anything but only inside the entire project where he is added as an admin member. There can be multiple admin members of a project. To add admin member of the project, open the project and add members using Participants tab as shown below. Alternatively, projects can be added with admin rights to nereid user. To add projects with admin rights, open nereid user and add projects using Member Of Projects tab as shown below: 3.2. Admin Users 13

18 Launching the application and template Once the website is created, a python script which loads nereid and runs the application needs to be written. This script is used to load Nereid, configure your application settings and also serves as an APP_MODULE if you plan to use WSGI HTTP servers like Gunicorn Note: DATABASE_NAME has to be changed in application.py. Mention the database name you have created while setting the database in tryton client, and also the site name which you mentioned while creating the website. #!/usr/bin/env python from nereid import Nereid CONFIG = dict( # The name of database DATABASE_NAME = 'database_name', # Static file root. The root location of the static files. The static/ will # point to this location. It is recommended to use the web server to serve # static content STATIC_FILEROOT = 'static/', # Tryton Config file path TRYTON_CONFIG = '../etc/trytond.conf', # If the application is to be configured in the debug mode DEBUG = False, ) # Load the template from FileSystem in the path below instead of the # default Tryton loader where templates are loaded from Database TEMPLATE_LOADER_CLASS = 'nereid.templating.filesystemloader', TEMPLATE_SEARCH_PATH = '.', # Create a new application app = Nereid() # Update the configuration with the above config values app.config.update(config) # Initialise the app, connect to cache and backend app.initialise() class NereidHostChangeMiddleware(object): """ A middleware which alters the HTTP_HOST so that you can test the site locally. This middleware replaces the HTTP_HOST with the value you prove to the :attr: site :param app: The application for which the middleware needs to work :param site: The value which should replace HTTP_HOST WSGI Environ """ def init (self, app, site): self.app = app self.site = site 14 Chapter 3. Getting Started

19 def call (self, environ, start_response): environ['http_host'] = self.site return self.app(environ, start_response) if name == ' main ': # The name of the website site = 'abcpartnerportal.com' app.wsgi_app = NereidHostChangeMiddleware(app.wsgi_app, site) app.debug = True app.static_folder = '%s/static' % site app.run(' ') You can now test run the application $ python application.py The above command launches a single threaded HTTP Server for debugging purposes which listens to the port Point your browser to localhost:5000 Now the installation is successful. Refer Nereid Project Tutorial Launching the application and template 15

20 16 Chapter 3. Getting Started

21 CHAPTER 4 Nereid Project Tutorial This tutorial gives an overview into how nereid project is organized and how it works with the Tryton project module. Familiarity with the tryton project module is not assumed, but could make the project easier to understand. Follow Getting Started before starting this tutorial. Creating Your First Project For getting started you need to have a project and team members working on it. So let s get started with creating a project. When logged in as a project admin, see Admin Users, the admin can create a new project, invite new or existing users to the project and change the setting related to the project. Now when project is created, all the feature regarding that project is visible. Click the New Project button (found at the top right of every Project Management Page) A modal window will then slide into view, where you will find fields for entering the title of the project. Once you are done, click Save. You will now be taken to the Project overview screen, you have just created your first project! 17

22 See the screen-shot shown below: You can invite your team members to collaborate and work together on a project. The invites can be your team member and also your client for whom you have created this project. To invite a use go to People and Permissions and enter the address of the person you wanted to invite. An invitation will be sent to the user. The user can now check the project, create tasks, mark time etc. Note: Only the project admin <Admin Users> can create the projects on Project Management System. Creating project on Tryton client Alternatively projects could be created from your preferred Tryton client, go to Projects from the left panel and follow the steps below: 1. Click the Create New button (found at the top left of every form view in Tryton) 18 Chapter 4. Nereid Project Tutorial

23 2. Where you will find fields for entering the title of the project, the type (whether project or a task), Company, participants or assignee (if any), State of the project(opened or done). 3. Once you are done, click on Save button found at top left of the form view, next to New button. If the project admin adds the project, or performs any changes through Tryton client, it also gets updated to webinterface, and vice-versa. Adding Participants to Project via Tryton Client Through project permissions you can control your employees access. The participants to the project can only be added by the project admin through Tryton client as shown below in the screenshot, participants are then allowed to do list of following things - can view project, contributes to the project, create tasks, updates the progress made so far, change the state of the task, assign the task to other participant of that project, mark their time, etc. This below figure shows how to add the project participants on Tryton client: 4.3. Adding Participants to Project via Tryton Client 19

24 Changing State: The project can be in open or done state. Status of the project can be changed by a project admin. To close a project simply from the admin page. Note: State can be changed only by project admin The Project Management Screen The screenshot shown above is the main dashboard of the system. You can open a project and you will start working on it. You can see there are some side menus available on the left hand side of the screen. You can go to the Task menu and start creating tickets for the project. So at the very top we have the project title, next we have the following features: Dashboard: Where a list of of all projects are shown depending upon the permissions granted to that nereid user. For more information, see dashboard. 20 Chapter 4. Nereid Project Tutorial

25 Tasks: Every single project can have multiple tasks assigned to it. Participant of the project can create tasks depending upon the requirements to achieve the goal of the project as soon as possible. The tasks are displayed according to the states. This view is called Kanban View. See tasks. Time Sheets: The timesheet module allows to track the time spent by employees on various tasks. This module also comes with several reports that show the time spent by employees. For more refer timesheet. Planning: This uses the feature of gantt charts and it allows all the team members to check the planned task according to its estimated time. The Nereid Project has a wonderful interface that is completely intuitive. Refer planning. Files: Attaching a file is very easy in the Nereid Project. You can attach as many as files you want. You can also see the preview of the images on the task itself. Learn more about it in files. People and Permissions: The project admin or admin member of the project can invite and remove users from here. See invitation. Tags : Creating a tag is only possible by project admin or admin member of the project. The admin can select a colour for tags and create tags. User can add tags along with the task. You can click the tags from the task view and see all the tasks tagged with it. For example, tag several tasks as Priority now you can just click the tag from the Kanban view and you can see all the task under that tag. Estimated Effort : You can also estimate a task. You just need to put the time needed to do one task. Learn more about it estimated effort. People and Permission Nereid project makes it very easy collaborate and work together on a project. You can invite as many as user you want to your project. Only the project admin or admin member of the project can send the invitations. To invite a user just go to the people and permission tab on the project view and add the address of the user you wanted to invite. That user can accept the invitation and start collaborating to the project. This user can be a developer, designer, customer/client, vendor, etc. Everybody can work together, and create tickets and assign it to each other. The nereid project makes it very easy to get updated about the current project. Where 4.5. People and Permission 21

26 people from different zone can collaborate together. Creating Task You can click the New Task button on the top right section and create a task. You can assign the task to another user of the same project, out the start date and end date of the task, put estimation on the task and save the task. Once the task is created, it automatically goes to the backlog state. You can update the task and keep assigning it to other members. Task is having following features: You can update the task and assign it to another project member. 22 Chapter 4. Nereid Project Tutorial

27 You can also notify another member on the task by clicking the notify button along with the comment box. You can attach files on the task. Attaching files can be done by clicking the attach button next to Files. You can also directly drag and drop the file into the comment section. You can put the time you are taking to work on the task. You can change the state of the task from Backlog to, planning, in progress and Done. You can also watch someones task, by clicking the watch icon next to the task heading. All the members of the project will get notification on their for every activity happening on the tasks they are watching or participating. Note: Any nereid user having access to the project can create task, update the task, putt comments, upload files into it, and assign it to other nereid user of that project. See update. Basic RST primer This section is a brief introduction to restructuredtext (rest) concepts and syntax, rest was designed to be a simple, unobtrusive markup language. For more refer RST primer 4.7. Basic RST primer 23

28 Lists Just place an asterisk at the start of a paragraph and indent properly. The same goes for numbered lists; they can also be autonumbered using a # sign: * This is a bulleted list. * It has two items, the second item uses two lines. 1. This is a numbered list. 2. It has two items too. #. This is a numbered list. #. It has two items too. Paragraph As in Python, indentation is significant in rest, so all lines of the same paragraph must be left-aligned to the same level of indentation. Inline markup The standard rest inline markup is quite simple: use one asterisk: *text* for emphasis (italics), two asterisks: **text** for strong emphasis (boldface), and backquotes: ``text`` for code samples. Code Highlighting The highlighting language can be changed using the highlight directive, by default, this is 'python' as the majority of files will have to highlight Python snippets used as follows:.. highlight:: c An example in python code highlighting:.. code-block:: python def some_function(): interesting = False print 'This is ' print 'code highlighting' print '...' Updating task Task updates can be formatted using rest primer syntax for making comments or updates looks clear. For more rest(restructured Text) 24 Chapter 4. Nereid Project Tutorial

29 Updates can be written to clarify progress made so far for the task, for changing the state of the task, for marking time i.e., the time spent by the employee on that task etc. While marking time user can also update the state 4.8. Updating task 25

30 26 Chapter 4. Nereid Project Tutorial

31 Marking Time Nereid Project enables the team to record their time directly on their tasks on every update. Each time the employee comments on a task, the time entered is updated along with it. For marking time, see below: Tip: User will need to understand how much time they are devoting to each task and mark time in hours. For marking time in minutes, convert those minutes to hours, like, for entering 6 minutes - mark.1, for 30 minutes - mark.5 and so on. View my-tasks Project participants can see their task list, and these lists easily help user to keep track of every assigned tasks on a project, quickly tells the state, and with tag (if associated to it)! And, by the way... Drag and Drop- To change the state of the task, just drag and drop task from one state to the necessary state View my-tasks 27

32 View all tasks The participants can view all the tasks on a particular project. All the tasks is listed according to Kanban View. So it is easy to check all the tasks according to their states. Click Tasks from the side menu and see all the tasks according to their states. You can also search for a particular task. Features: Striped multi-colour tasks in Nereid Project - tasks with different colors signifies different state You can instantly search for a task through task id or name. The All Tasks tab shows all the open and closed tasks. So the history of the project is also maintained. To see All Tasks, Open Tasks, Done Tasks just click on the Tasks Button shown on the left, for reference see below: 28 Chapter 4. Nereid Project Tutorial

33 State of Task Ideally all the user should keep the task updated to their respective states. It will increase the transparency amongst the team members and the customer involved in the project. All the states are explained below: Backlog: When you create a new task, by default it goes to the backlog state. You can either drag and drop the task to another state or update the state through the task view. Planning: If a task has been planned and the user know well, what needs to be done on that task, then it is kept on the planning state. In Progress: Once the user starts developing the task, he/she can drag and drop the task to In Progress state State of Task 29

34 Review: Now once the user is done with the task he/she can assign the task to the assignee for review. The review state can go through several iteration before it get accepted by the assignee. Done: If requirements meets the scope of the task, then the task can be marked as Done. In their simplest, the tasks are categorized into the work stages: from Backlog > Planning from Planning > In Progress from In Progress > Review/ QA from Review/QA > Done Notify another participant The participants can notify each other on their respective tasks. While updating a task just click on Notify People button to add or remove participants from the task. Now whenever this task will be updated, all the participants will get notified through . See below, from where to add-remove participants for the current task: Notification An integral feature of the Nereid Project is notification. All the project participant receives an automated notification from system. Estimated Effort This feature allow a user to estimate the efforts that is going to be used for a particular task. As there would be time consumption on each task. This creates a more routine environment for the team members allowing them to spend time on a planned way. So that every task has achievable schedule objectives. Tip: To enter the estimated time afterwards creating the task. Click the Estimated Hours button on the left side of the web-interface, a modal window will slide into view, where you can enter the time. 30 Chapter 4. Nereid Project Tutorial

35 Attachment The user can attach files directly to tasks. There are two ways for attaching file: Drag and drop the file into the comment section, Upload the file from your local machine or from dropbox. To upload attachments to Nereid Project, follow these steps: Attachment 31

36 Open up the task to attach a file, click Files button on the left side for attaching files or link, a modal window slide into view and from the drop-down menu, select type to attach i.e., to attach a link from the internet, or file to upload. Select the file/link you d like to attach. Your file will appear in your task as shown in figure below. The Files button shows all files that have been attached through individual posted to the task. Files attached to the system are collected and displayed here in Files section, along with filename, the description along with it, and a link to the area where that file is being attached.the original file is included along with a link to download the file. Dashboard The project dashboard gives a summary of active projects. Nereid Project s Dashboard is a customized project information system containing list of projects, for tracking team progress toward completing an iteration. Tip: Only those projects are visible to user whose permission is provided by project admin. 32 Chapter 4. Nereid Project Tutorial

37 Global Timesheet For Project Managers, and Owners - this Timesheet information completes the picture of project productivity and progress. Team members do not have access to a global timesheet calendar which details every step within the project timeline. It helps to delegate and track project tasks and manage the projects effectively. This timesheet and online project management application helps to track, or monitor every hour that is spent on a project, by whom and how they did with regards to staying within your expected target durations Global Timesheet 33

38 Tip: Project admin can filter the performance by employees also. See top-left side of this global timesheet page, there is a search box, enter the name of employee to checkout the performance, to track total hours spent by individual on that task. Use timesheet to efficiently record the Hours Worked (per Project, or Task). By using this, project admin can view the team s progress and determine whether the team is making sufficient progress. 34 Chapter 4. Nereid Project Tutorial

39 The timesheet line express the fact that one employee spend a part of his/her time on a specific work at a given date. The list of timesheet lines of employees associated to the project and its tasks. These timesheet lines are used to analyse employee s productivity & job costs. Weekly Analysis To gather data weekly on the actual time spent by employee. For time tracking to monitor employees performance. The Admin Users can analyse the progress of the team of the project. You can filter it by employee s name also. Refer image: Global Timesheet 35

40 Task by employees It show the task assigned to all your employees throughout the project management system in Kanban view. It is visible to only project admin or project manager. Admin Users 36 Chapter 4. Nereid Project Tutorial

41 Calendar The calendar is directly tied to the ongoing projects. The calendar show a graphical calendar interface with all of the pertinent ongoing tasks. It is able to filter by month, week or day. Access to calendars and the tasks held within follow the same access, setup for projects. So that users will only see the calendar items of the projects they are invited to. For project admin, calendar provides a number of powerful filters. These filters let project admin see performance of employees. This is a great feature for project admin to track your progress on the graphical Gantt charts for their most highly valued projects Global Timesheet 37

42 Here the logged in user can view the timesheet of his current project, and also his performance for that project. Note: For admin, its easy-to-use, for tracking employee s marked time and performance. The row on timesheet lines shows their name, time they worked for which task. Shows total time, the employee worked per day. 38 Chapter 4. Nereid Project Tutorial

43 Project Planning Creating a project plan is the first thing a user should do when taking any kind of project by putting start and end time on its task. Project planning is a feature used to reflect the duration of a task within a certain time period. It is a known fact that a good project plan can make the difference between the success or failure of a project. Planning organize, schedule and ensure that tasks get done on time. On short it can boost productivity. By being better organized and more focused on what have to be done, and saves time. This feature is used for projects, but only consist of a list of tasks. To access it, go to Dashboard Projects Home New Project Planning ( Here New Project is the name of the selected project ). User can select single project at a time to see the planning. It shows the Gantt chart for tasks with start and end time of task or just the duration Project Planning 39

44 40 Chapter 4. Nereid Project Tutorial

45 CHAPTER 5 Indices and tables genindex modindex search 41

Microsoft Windows SharePoint Services

Microsoft Windows SharePoint Services Microsoft Windows SharePoint Services SITE ADMIN USER TRAINING 1 Introduction What is Microsoft Windows SharePoint Services? Windows SharePoint Services (referred to generically as SharePoint) is a tool

More information

open-helpdesk Documentation

open-helpdesk Documentation open-helpdesk Documentation Release 0.9.9 Simone Dalla Nov 16, 2017 Contents 1 Overview 3 1.1 Dependencies............................................... 3 1.2 Documentation..............................................

More information

One of the fundamental kinds of websites that SharePoint 2010 allows

One of the fundamental kinds of websites that SharePoint 2010 allows Chapter 1 Getting to Know Your Team Site In This Chapter Requesting a new team site and opening it in the browser Participating in a team site Changing your team site s home page One of the fundamental

More information

OpenProject AdminGuide

OpenProject AdminGuide OpenProject AdminGuide I. Contents I. Contents... 1 II. List of figures... 2 1 Administration... 2 1.1 Manage projects...2 1.2 Manage users...5 1.3 Manage groups...11 1.4 Manage roles and permissions...13

More information

Getting Started Guide

Getting Started Guide Getting Started Guide for education accounts Setup Manual Edition 7 Last updated: September 15th, 2016 Note: Click on File and select Make a copy to save this to your Google Drive, or select Print, to

More information

GLOBALMEET USER GUIDE

GLOBALMEET USER GUIDE GLOBALMEET USER GUIDE Release 3.8.1 July 2016 TABLE OF CONTENTS GlobalMeet Overview 4 Get the GlobalMeet Desktop Tools 5 Download and Install GlobalMeet 5 System Requirements 5 Getting Started 6 Sign in

More information

Plorma Documentation. Release 0.4. Torsten Irländer

Plorma Documentation. Release 0.4. Torsten Irländer Plorma Documentation Release 0.4 Torsten Irländer November 11, 2015 Contents 1 Introduction 1 1.1 What is Plorma.............................................. 1 1.2 Licence..................................................

More information

Getting Help...71 Getting help with ScreenSteps...72

Getting Help...71 Getting help with ScreenSteps...72 GETTING STARTED Table of Contents Onboarding Guides... 3 Evaluating ScreenSteps--Welcome... 4 Evaluating ScreenSteps--Part 1: Create 3 Manuals... 6 Evaluating ScreenSteps--Part 2: Customize Your Knowledge

More information

Volume. User Manual and Resource Guide

Volume. User Manual and Resource Guide Volume 1 User Manual and Resource Guide User Manual and Resource Guide Game Gurus United States Telephone: (415) 800-3599 Brazil Telephone: 55 84-8723-2557 Email: info@gamegurus.com Table of Contents What

More information

Go paperless by using OneNote 2013

Go paperless by using OneNote 2013 Work Smart by Microsoft IT Go paperless by using OneNote 2013 Customization note: This document contains guidance and/or step-by-step installation instructions that can be reused, customized, or deleted

More information

Liferay Portal 4 - Portal Administration Guide. Joseph Shum Alexander Chow Redmond Mar Jorge Ferrer

Liferay Portal 4 - Portal Administration Guide. Joseph Shum Alexander Chow Redmond Mar Jorge Ferrer Liferay Portal 4 - Portal Administration Guide Joseph Shum Alexander Chow Redmond Mar Jorge Ferrer Liferay Portal 4 - Portal Administration Guide Joseph Shum Alexander Chow Redmond Mar Jorge Ferrer 1.1

More information

Welcome to the Investor Experience

Welcome to the Investor Experience Welcome to the Investor Experience Welcome to the Black Diamond Investor Experience, a platform that allows advisors to customize how they present information to their clients. This document provides important

More information

DEVICE MAGIC New User s Guide. Everything You Need to Know to Get Started. DeviceMagic.com (855)

DEVICE MAGIC New User s Guide. Everything You Need to Know to Get Started. DeviceMagic.com (855) DEVICE MAGIC New User s Guide Everything You Need to Know to Get Started 1 Table of Contents Connect Get to Know Your Dashboard...3 Connecting a Device to Your Organization...5 Build Building Your First

More information

#define 4 User Guide. Version 4.0. CGI Group Inc.

#define 4 User Guide. Version 4.0. CGI Group Inc. #define 4 User Guide Version 4.0 CGI Group Inc. Table of Contents Section Slides Wiki 5-7 Tickets 8-12 Files 13-15 Planning 16-21 Cooperate 22-24 Settings 25-31 Agile Features 32-34 Desktop Applications

More information

ZENworks Reporting System Reference. January 2017

ZENworks Reporting System Reference. January 2017 ZENworks Reporting System Reference January 2017 Legal Notices For information about legal notices, trademarks, disclaimers, warranties, export and other use restrictions, U.S. Government rights, patent

More information

SharePoint General Instructions

SharePoint General Instructions SharePoint General Instructions Table of Content What is GC Drive?... 2 Access GC Drive... 2 Navigate GC Drive... 2 View and Edit My Profile... 3 OneDrive for Business... 3 What is OneDrive for Business...

More information

Administrator Quick Guide

Administrator Quick Guide 1 Administrator Quick Guide Login Screen The first page employees will see when visiting their training site is the login screen. This is where employees must enter their username and password to access

More information

FirstClass and the NLC Intranet. Version 12

FirstClass and the NLC Intranet. Version 12 FirstClass and the NLC Intranet Version 12 Date Modified 15/06/2016 Use of the FirstClass E-mail system Introduction Please read the following in conjunction with the Internet and E-mail Policies issued

More information

Administrator Manual. Last Updated: 15 March 2012 Manual Version:

Administrator Manual. Last Updated: 15 March 2012 Manual Version: Administrator Manual Last Updated: 15 March 2012 Manual Version: 1.6 http://www.happyfox.com Copyright Information Under the copyright laws, this manual may not be copied, in whole or in part. Your rights

More information

Inside JIRA scheme, everything can be configured, and it consists of. This section will guide you through JIRA Issue and it's types.

Inside JIRA scheme, everything can be configured, and it consists of. This section will guide you through JIRA Issue and it's types. JIRA Tutorial What is JIRA? JIRA is a tool developed by Australian Company Atlassian. It is used for bug tracking, issue tracking, and project management. The name "JIRA" is actually inherited from the

More information

HarePoint HelpDesk for SharePoint. User Guide

HarePoint HelpDesk for SharePoint. User Guide HarePoint HelpDesk for SharePoint For SharePoint Server 2016, SharePoint Server 2013, SharePoint Foundation 2013, SharePoint Server 2010, SharePoint Foundation 2010 User Guide Product version: 16.2.0.0

More information

Quick-start guide for installing the client software and starting your first review

Quick-start guide for installing the client software and starting your first review User s Guide Getting Started with the Collaborator Client Quick-start guide for installing the client software and starting your first review Contents Introduction...2 Download Client Software...2 Installation

More information

HOBY s DotProject v

HOBY s DotProject v HOBY s DotProject v. 2.0.4 August 12, 2006 1 of 38 Introduction.3 Logging into dotproject.. 5 Companies Adding.9 Editing 10 Project Adding 12 Editing 14 Tasks Viewing..15 Editing 17 Adding 19 Assigning

More information

Administrator Manual. Last Updated: 15 March 2012 Manual Version:

Administrator Manual. Last Updated: 15 March 2012 Manual Version: Administrator Manual Last Updated: 15 March 2012 Manual Version: 1.6 http://www.helpdeskpilot.com Copyright Information Under the copyright laws, this manual may not be copied, in whole or in part. Your

More information

USER MANUAL. MageMob Admin TABLE OF CONTENTS. Version: 1.0.0

USER MANUAL. MageMob Admin TABLE OF CONTENTS. Version: 1.0.0 USER MANUAL TABLE OF CONTENTS Introduction... 1 Benefits of MageMob Admin... 1 Installation & Activation... 2 Pre-requisite... 2 Installation Steps... 2 Installation via Composer... 4 Extension Activation...

More information

Scheduling WebEx Meetings with Microsoft Outlook

Scheduling WebEx Meetings with Microsoft Outlook Scheduling WebEx Meetings with Microsoft Outlook About WebEx Integration to Outlook, page 1 Scheduling a WebEx Meeting from Microsoft Outlook, page 2 Starting a Scheduled Meeting from Microsoft Outlook,

More information

EMPLOYEE DIRECTORY (SHAREPOINT ADD-IN)

EMPLOYEE DIRECTORY (SHAREPOINT ADD-IN) EMPLOYEE DIRECTORY (SHAREPOINT ADD-IN) Global, Global Plus version Updated: March 2018 Version 1.0.0.7 Copyright Beyond Intranet 2017. All Rights Reserved i Notice. This is a controlled document. Unauthorized

More information

The Guide. A basic guide for setting up your Samanage application

The Guide. A basic guide for setting up your Samanage application The Guide A basic guide for setting up your Samanage application Table of Contents Introduction.............................................................. 3 Contacting Samanage for Assistance.........................................

More information

MEDIASEAL Encryptor Client Manual

MEDIASEAL Encryptor Client Manual MEDIASEAL Encryptor Client Manual May 2018 Version 3.7.1 Fortium Technologies Ltd www.fortiumtech.com Copyright 2018 - Fortium Technologies Ltd Information contained in this document is subject to change

More information

MS SharePoint Tip Sheet

MS SharePoint Tip Sheet MS SharePoint Tip Sheet FOR USERS: What is SharePoint? SharePoint Online is a collection of online tools that makes it easy to store, share and manage your team s documents. Your SharePoint Online Team

More information

SharePoint 2013 Site Owner

SharePoint 2013 Site Owner SharePoint 2013 Site Owner Effective Content and Document Collaboration with Axalta Teams 9 May 2014 Instructor: Jason Christie Site Owner Course Topics to be Covered Content Management Creating and configuring

More information

Magento OpenERP Integration Documentation

Magento OpenERP Integration Documentation Magento OpenERP Integration Documentation Release 2.0dev Openlabs Technologies & Consulting (P) Limited Jul 28, 2017 Contents 1 Introduction 3 1.1 Installation................................................

More information

TABLE OF CONTENTS CREATE AN ACCOUNT...3. TO LOG IN AproPLAN HOMEPAGE...5 ADMINISTRATION CONSOLE...6 PROJECT...7

TABLE OF CONTENTS CREATE AN ACCOUNT...3. TO LOG IN AproPLAN HOMEPAGE...5 ADMINISTRATION CONSOLE...6 PROJECT...7 1 TABLE OF CONTENTS 1. CREATE AN ACCOUNT...3 2. TO LOG IN AproPLAN 3. HOMEPAGE...5 4. ADMINISTRATION CONSOLE...6 5. PROJECT...7 6. LIST...20 7. POINT CREATION...29 8. INSTALL ON MOBILE...31 9. INTRODUCTION

More information

Customizing and Administering Project Server Access

Customizing and Administering Project Server Access WEB Customizing and Administering Project Server Access In this chapter Creating and Deleting Users from Project Server 2 Managing User Groups Project Server User Security 4 Using Categories to Control

More information

AIRCALL GUIDE FOR ADMINS

AIRCALL GUIDE FOR ADMINS AIRCALL GUIDE FOR ADMINS 1 TABLE OF CONTENTS Welcome to Aircall! 1. Configure your Account Configure your numbers Manage your agents Explore Analytics Choose your plan & pricing 2. Configure your App Make

More information

Voyant Connect User Guide

Voyant Connect User Guide Voyant Connect User Guide WELCOME TO VOYANT CONNECT 3 INSTALLING VOYANT CONNECT 3 MAC INSTALLATION 3 WINDOWS INSTALLATION 4 LOGGING IN 4 WINDOWS FIRST LOGIN 6 MAKING YOUR CLIENT USEFUL 6 ADDING CONTACTS

More information

Introduction. User Privileges. PEPFAR SharePoint: Poweruser Guide

Introduction. User Privileges. PEPFAR SharePoint: Poweruser Guide PEPFAR SharePoint: Poweruser Guide Introduction Welcome to your role as a Poweruser of a PEPFAR SharePoint site! This guide will give you an overview of your roles and responsibilities in maintaining the

More information

TheBrain Pro Companion Guide for TeamBrain Services

TheBrain Pro Companion Guide for TeamBrain Services TheBrain Pro Companion Guide for TeamBrain Services Posted November 2012 2012. TheBrain Technologies LP. All Rights Reserved. TheBrain, TheBrain, TeamBrain, Brain, Thought, Thoughts, and Work the Way You

More information

International Partnerships System

International Partnerships System International Partnerships System User Guide Version 1.0 Contents Chapter One - Introduction... 1 How to use this guide... 1 Application Purpose... 1 How to get help... 1 Online resources... 1 University

More information

GOOGLE APPS. If you have difficulty using this program, please contact IT Personnel by phone at

GOOGLE APPS. If you have difficulty using this program, please contact IT Personnel by phone at : GOOGLE APPS Application: Usage: Program Link: Contact: is an electronic collaboration tool. As needed by any staff member http://www.google.com or http://drive.google.com If you have difficulty using

More information

Center for Faculty Development and Support. Google Docs Tutorial

Center for Faculty Development and Support. Google Docs Tutorial Center for Faculty Development and Support Google Docs Tutorial Table of Contents Overview... 3 Learning Objectives... 3 Access Google Drive... 3 Introduction... 4 Create a Google Document... 4 Upload

More information

USER MANUAL TABLE OF CONTENTS. Admin Actions Audit Log. Version: 0.1.1

USER MANUAL TABLE OF CONTENTS. Admin Actions Audit Log. Version: 0.1.1 USER MANUAL TABLE OF CONTENTS Introduction... 1 Benefits of Admin Actions Audit Log... 1 Installation... 2 Installation Steps... 2 Installation (Custom Theme)... 3 Extension Activation... 3 Configuration...

More information

Unit 8: Working with Actions

Unit 8: Working with Actions Unit 8: Working with Actions Questions Covered What are actions? How are actions triggered? Where can we access actions to create or edit them? How do we automate the sending of email notifications? How

More information

TeamViewer 12 Manual Management Console. Rev

TeamViewer 12 Manual Management Console. Rev TeamViewer 12 Manual Management Console Rev 12.1-201704 TeamViewer GmbH Jahnstraße 30 D-73037 Göppingen www.teamviewer.com Table of content 1 About the TeamViewer Management Console 4 1.1 About the Management

More information

BeetleEye Application User Documentation

BeetleEye Application User Documentation BeetleEye Application User Documentation BeetleEye User Documentation 1 Table of Contents Welcome to the BeetleEye Application... 6 Overview... 6 Navigation... 6 Access BeetleEye... 6 Update account information...

More information

Atlassian JIRA Introduction to JIRA Issue and Project Tracking Software Tutorial 1

Atlassian JIRA Introduction to JIRA Issue and Project Tracking Software Tutorial 1 Atlassian JIRA Introduction to JIRA Issue and Project Tracking Software Tutorial 1 Once again, we are back with another tool tutorial. This time it s the Issue and Project Tracking Software Atlassian JIRA.

More information

Workshare Desktop App. User Guide

Workshare Desktop App. User Guide Workshare Desktop App User Guide February 2018 Workshare Desktop App User Guide Table of Contents Introducing the Workshare Desktop App...4 What is the Desktop App?... 5 Key features of the Workshare desktop

More information

The following pages will give you a quick overview over your new XELOS intranet and help you with the first steps. 1. Overview over the user interface

The following pages will give you a quick overview over your new XELOS intranet and help you with the first steps. 1. Overview over the user interface XELOS 7 First Steps Overview XELOS is a professional Enterprise.0 software that is used by companies mainly as an intranet solution to improve collaboration within teams and in the company. The brilliant

More information

Ansible Tower Quick Setup Guide

Ansible Tower Quick Setup Guide Ansible Tower Quick Setup Guide Release Ansible Tower 2.4.5 Red Hat, Inc. Jun 06, 2017 CONTENTS 1 Quick Start 2 2 Login as a Superuser 3 3 Import a License 4 4 Examine the Tower Dashboard 6 5 The Setup

More information

Easy Worklog for JIRA. User Manual

Easy Worklog for JIRA. User Manual User Manual Supported versions: 3.1.2 Date: 14.09.2017 1. User Manual..................................................................................... 3 1.1 Overview...................................................................................

More information

kalmstrom.com Business Solutions

kalmstrom.com Business Solutions Kanban Task Manager for Outlook Manual Table of contents 1 INTRODUCTION...3 1.1 LANGUAGES...4 1.2 REQUIREMENTS...4 1.3 SYSTEMS...4 2 INSTALLATION OF KANBAN TASK MANAGER...6 2.1 INTRODUCTION...6 2.2 PROCESS...6

More information

Ge#ng Started Guide New Users and Starter Edi/on

Ge#ng Started Guide New Users and Starter Edi/on Ge#ng Started Guide New Users and Starter Edi/on Goal Thank you for taking the time to use Viewpath as your project management solution. Our goal in providing this guide is to help streamline the process

More information

Admin Table is oftr Caoto ntr e s U ntsser Guide Table of Contents Introduction Accessing the Portal

Admin Table is oftr Caoto ntr e s U ntsser Guide Table of Contents Introduction Accessing the Portal Administrator s Table of Contents User Guide Table of Contents Introduction 3 Accessing the Portal 3 Create User Accounts 4 Enable / Disable User Accounts 5 Manage Users from an LDAP Server 5 User Roles

More information

ITaP Confluence Guide. Instructions for Getting Started with Confluence a Purdue

ITaP Confluence Guide. Instructions for Getting Started with Confluence a Purdue ITaP Confluence Guide Instructions for Getting Started with Confluence a Purdue This instruction set was developed by ITaP for instructor and student use. For comments, suggestions, correction, etc. please

More information

EventCenter Training SEPTEMBER CrowdCompass 2505 SE 11 th Ave, Suite #300 Portland, OR

EventCenter Training SEPTEMBER CrowdCompass 2505 SE 11 th Ave, Suite #300 Portland, OR EventCenter Training SEPTEMBER 2014 CrowdCompass 2505 SE 11 th Ave, Suite #300 Portland, OR www.crowdcompass.com Toll-free: +1.888.889.3069 Fax: +1.877.615.6699 Contents Familiarize Yourself... 3 Introduction...

More information

4 phases to understand owncloud

4 phases to understand owncloud 4 phases to understand owncloud Introduction Basic Features App Ecosystem Crossplatform Support Outline Introduction Basic Features App Ecosystem Crossplatform Support Introduction: Team Collaboration

More information

Google Sites 101. Mrs. Wilson

Google Sites 101. Mrs. Wilson Google Sites 101 Mrs. Wilson Google Sites 101 Create a site 1. Go to http://sites.google.com/ 2. Login with your Google Account [or Google Apps account] email address and password You can create a Google

More information

NAMI Affiliate Profile Center Contact Manual

NAMI Affiliate Profile Center Contact Manual NAMI Affiliate Profile Center Contact Manual Standards of Excellence/Center for Excellence November 2013 Table of Contents Chapter Page I. NAMI Affiliate Profile Center Contact Training Timetable 3 II.

More information

Vela Web User Guide Vela Systems, Inc. All rights reserved.

Vela Web User Guide Vela Systems, Inc. All rights reserved. The Vela Systems Web application is designed to enable the administration, management, and reporting of the Vela Field Management Suite, as well as give project teams the ability to collaborate on issues,

More information

Chatter Answers Implementation Guide

Chatter Answers Implementation Guide Chatter Answers Implementation Guide Salesforce, Spring 16 @salesforcedocs Last updated: April 27, 2016 Copyright 2000 2016 salesforce.com, inc. All rights reserved. Salesforce is a registered trademark

More information

Breeze at Penn State. About meeting roles and permissions

Breeze at Penn State. About meeting roles and permissions Breeze at Penn State About meeting roles and permissions There are three roles for meeting room attendees: the Host role, the Presenter role, and the Participant role. Each role has different rights in

More information

EFM Community 3.1 Portal Administration Guide

EFM Community 3.1 Portal Administration Guide EFM Community 3.1 Portal Administration Guide WHITE PAPER For technical support please call: 1-800-787-8755 Or visit: Hwww.Vovici.comH Please contact Vovici technical support if you believe any of the

More information

Workshare Client Extranet. Getting Started Guide. for Mac

Workshare Client Extranet. Getting Started Guide. for Mac Workshare Client Extranet Getting Started Guide for Mac Build trust with your clients Share files with your clients and partners in professional, branded workspaces that you control. Create your look Work

More information

Getting started guide for Administrators

Getting started guide for Administrators Getting started guide for Administrators Table of Contents Introduction... 3 Creating the school portal... 5 Navigating the platform... 6 Help Center... 12 Profile... 14 Configuring features... 16 Customizing

More information

Who should use this manual. Signing into WordPress

Who should use this manual. Signing into WordPress WordPress Manual Table of Contents Who should use this manual... 3 Signing into WordPress... 3 The WordPress Dashboard and Left-Hand Navigation Menu... 4 Pages vs. Posts... 5 Adding & Editing Your Web

More information

WebEx Fundamentals User Guide

WebEx Fundamentals User Guide WebEx Fundamentals User Guide June 2017 2017 Kent State University This information is provided by the Division of Information Services, Kent State University and is proprietary and confidential. These

More information

Management Interface User Guide

Management Interface User Guide Management Interface User Guide VIDEO Powered by Table of Contents Accessing the management interface 4 Creating your user account 4 Signing-in 4 Forgot your password 4 Media players menu 5 Checking Player

More information

Introduction to 9.0. Introduction to 9.0. Getting Started Guide. Powering collaborative online communities.

Introduction to 9.0. Introduction to 9.0. Getting Started Guide. Powering collaborative online communities. Introduction to 9.0 Introduction to 9.0 Getting Started Guide Powering collaborative online communities. TABLE OF CONTENTS About FirstClass...3 Connecting to your FirstClass server...3 FirstClass window

More information

DME completely secures the business data on your device so if you lose it or it is stolen, you can be certain that nobody can get to your data.

DME completely secures the business data on your device so if you lose it or it is stolen, you can be certain that nobody can get to your data. WELCOME TO DME BY EXCITOR! DME helps you stay connected with your corporate e-mail, calendar, and contacts any time. What you see on your ios device is what you have on your desktop or laptop computer

More information

click2try Tutorial Redmine 2009 Presage Technologies, LLC.

click2try Tutorial Redmine 2009 Presage Technologies, LLC. click2try Tutorial Redmine 2009 Presage Technologies, LLC. Copyright 2008-2009 Presage Technologies, LLC. You may freely distribute or publish this content provided you publish the content in its entirety

More information

FreeRangeRemote Access

FreeRangeRemote Access City of Westminster User Guide to FreeRangeRemote Access For Android tablets using the native browser (Chrome) https://freerange.cityofwestminster.us IMPORTANT! Some versions of Chrome on Android are unable

More information

Chatter Answers Implementation Guide

Chatter Answers Implementation Guide Chatter Answers Implementation Guide Salesforce, Summer 18 @salesforcedocs Last updated: July 26, 2018 Copyright 2000 2018 salesforce.com, inc. All rights reserved. Salesforce is a registered trademark

More information

Open Telekom Cloud Tutorial: Getting Started. Date published: Estimated reading time: 20 minutes Authors: Editorial Team

Open Telekom Cloud Tutorial: Getting Started. Date published: Estimated reading time: 20 minutes Authors: Editorial Team Date published: 03.08.2018 Estimated reading time: 20 minutes Authors: Editorial Team The bookmarks and navigation in this tutorial are optimized for Adobe Reader. Getting Started 1. Introduction 2. Prerequisites

More information

Poulpe Documentation. Release Edouard Klein

Poulpe Documentation. Release Edouard Klein Poulpe Documentation Release 0.0.5 Edouard Klein Jul 18, 2017 Contents 1 Poulpe 1 1.1 Features.................................................. 1 2 Usage 3 3 Installation 5 4 Contributing 7 4.1 Types

More information

Alfresco Content Services 5.2. Getting Started Guide

Alfresco Content Services 5.2. Getting Started Guide Alfresco Content Services 5.2 Getting Started Guide Contents Contents Getting started with Alfresco Share... 3 Signing in...3 Personalizing Alfresco Share... 4 Setting up your dashboard... 4 Updating your

More information

Privileged Access Access Console User Guide 17.1

Privileged Access Access Console User Guide 17.1 Privileged Access Access Console User Guide 17.1 2017 Bomgar Corporation. All rights reserved worldwide. BOMGAR and the BOMGAR logo are trademarks of Bomgar Corporation; other trademarks shown are the

More information

Contents Using Team Site Calendars... 2

Contents Using Team Site Calendars... 2 SharePoint 2013 End User Training Tutorial Contents Using Team Site Calendars... 2 Adding & Editing Announcements... 4 Using Custom Lists... 6 Creating Alerts to Stay Updated... 9 Communicating Through

More information

LiveProject User Manual

LiveProject User Manual Page 1 of 45 2008, Inc. LiveProject User Manual For all versions of LiveProject. Version 3.1 by Written for version 3.1.2 of LiveProject Page 1/45 Page 2 of 45 2008, Inc. 1 Table of Contents LiveProject

More information

Comodo One Software Version 3.18

Comodo One Software Version 3.18 rat Comodo One Software Version 3.18 Service Desk Staff Guide Guide Version 4.8.122817 Comodo Security Solutions 1255 Broad Street Clifton, NJ 07013 Table of Contents 1 Introduction to Service Desk Module...

More information

Zend Studio 3.0. Quick Start Guide

Zend Studio 3.0. Quick Start Guide Zend Studio 3.0 This walks you through the Zend Studio 3.0 major features, helping you to get a general knowledge on the most important capabilities of the application. A more complete Information Center

More information

Microsoft Office SharePoint Reference Guide for Site Owners

Microsoft Office SharePoint Reference Guide for Site Owners Microsoft Office SharePoint Reference Guide for Site Owners Table of Contents INTRODUCTION...3 REQUESTING A NEW SITE...3 FOLLOWING A SITE...4 NAVIGATION...5 LISTS AND LIBRARIES...6 ADDING PEOPLE TO A SITE...6

More information

The Basics. As of December 12, 2016

The Basics. As of December 12, 2016 The Basics As of December 12, 2016 Accessing REDCap 1. To access REDCap, enter the URL into your internet browser: https://redcap.wakehealth.edu/ 2. Login using your Medical Center ID and password 3. FAQ

More information

Switchvox PBX User Manual

Switchvox PBX User Manual Switchvox PBX User Manual Welcome to the Switchvox PBX, the worlds most powerful, yet easy to configure IP- PBX on the market today. We have tried to make all the operations you do often easy to use and

More information

Caliber 11.0 for Visual Studio Team Systems

Caliber 11.0 for Visual Studio Team Systems Caliber 11.0 for Visual Studio Team Systems Getting Started Getting Started Caliber - Visual Studio 2010 Integration... 7 About Caliber... 8 Tour of Caliber... 9 2 Concepts Concepts Projects... 13 Baselines...

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

Comodo One Software Version 3.26

Comodo One Software Version 3.26 rat Comodo One Software Version 3.26 Service Desk Staff Guide Guide Version 4.16.101018 Comodo Security Solutions 1255 Broad Street Clifton, NJ 07013 Table of Contents 1 Introduction to Service Desk Module...3

More information

ADOBE DREAMWEAVER CS4 BASICS

ADOBE DREAMWEAVER CS4 BASICS ADOBE DREAMWEAVER CS4 BASICS Dreamweaver CS4 2 This tutorial focuses on the basic steps involved in creating an attractive, functional website. In using this tutorial you will learn to design a site layout,

More information

Tyler Dashboard. User Guide Version 6.3. For more information, visit

Tyler Dashboard. User Guide Version 6.3. For more information, visit Tyler Dashboard User Guide Version 6.3 For more information, visit www.tylertech.com. TABLE OF CONTENTS Tyler Dashboard... 4 Tyler Dashboard Features... 4 Search... 5 Browse... 5 Page... 6 Dashboard...

More information

Trend Micro Incorporated reserves the right to make changes to this document and to the product described herein without notice. Before installing and using the product, please review the readme files,

More information

12/3/ Introduction to CenterStage Spaces and roles. My Community My Spaces, My Favorite Spaces

12/3/ Introduction to CenterStage Spaces and roles. My Community My Spaces, My Favorite Spaces Introduction to CenterStage Spaces and roles My Community My Spaces, My Favorite Spaces Inside the space Navigate, watch, share Files Open, import, edit, tag, copy, share Communication tools Wikis, blogs,

More information

Wimba Voice. Version 6.0. User Guide

Wimba Voice. Version 6.0. User Guide Wimba Voice Version 6.0 User Guide Wimba Voice User Guide 1 Introduction 1 About Wimba Voice 1 Wimba Voice Manager 2 Account Roles 3 My Manager 3 Getting Started 4 Voice Board 5 About Voice Boards 5 Voice

More information

AvePoint Meetings Pro for ipad. User Guide

AvePoint Meetings Pro for ipad. User Guide AvePoint Meetings Pro 4.2.3 for ipad User Guide Issued April 2017 Table of Contents About AvePoint Meetings Pro for ipad... 3 Installing AvePoint Meetings Pro for ipad... 4 Getting Started... 5 Logging

More information

Applying for EMSWCD Small Project and Community Events (SPACE) Grants

Applying for EMSWCD Small Project and Community Events (SPACE) Grants ZOOMGRANTS TUTORIAL Applying for EMSWCD Small Project and Community Events (SPACE) Grants Instructions for ZoomGrants ZoomGrants is an online tool that helps facilitate grant applications, committee review,

More information

Service Desk Staff Guide. Software version 4.16 Guide version ITarian 1255 Broad Street Clifton, NJ 07013

Service Desk Staff Guide. Software version 4.16 Guide version ITarian 1255 Broad Street Clifton, NJ 07013 Service Desk Staff Guide Software version 4.16 Guide version 4.16.110618 ITarian 1255 Broad Street Clifton, NJ 07013 Table of Contents 1 Introduction to Service Desk Module...3 1.1 Quick Start...5 1.2

More information

IT Training Services. SharePoint 2013 Getting Started. Version: 2015/2016 V1

IT Training Services. SharePoint 2013 Getting Started. Version: 2015/2016 V1 IT Training Services SharePoint 2013 Getting Started Version: 2015/2016 V1 Table of Contents ACCESSING SHAREPOINT SITE 1 IT Intranet SharePoint Site... 1 Create a SubSite... 1 DOCUMENT LIBRARIES 2 Create

More information

Microsoft Office SharePoint. Reference Guide for Contributors

Microsoft Office SharePoint. Reference Guide for Contributors Microsoft Office SharePoint Reference Guide for Contributors SharePoint: Reference Guide for Contributors Table of Contents INTRODUCTION... 3 FOLLOWING A SITE... 3 NAVIGATION... 4 LISTS AND LIBRARIES...

More information

Secure Client Portal - User Guide

Secure Client Portal - User Guide Secure Client Portal - User Guide March 2014 03.19.2014-16:00 p.m. - CEH Draft Before You Begin Please read this User Guide in it's entirety before submitting a support ticket or calling GetNetSet for

More information

AKCess Pro Server Access Control User Manual

AKCess Pro Server Access Control User Manual www.akcp.com AKCess Pro Server Access Control User Manual Help Version updated till version 118 Copyright 2012, AKCess Pro Co., Ltd.. 1) Introduction A) What is the AKCess Pro Server / Access Control?

More information

Community Edition Getting Started Guide. July 25, 2018

Community Edition Getting Started Guide. July 25, 2018 Community Edition Getting Started Guide July 25, 2018 Copyright 2018 by Qualys, Inc. All Rights Reserved. Qualys and the Qualys logo are registered trademarks of Qualys, Inc. All other trademarks are the

More information

Page 1 of 6 Procedures > Pages > Procedures Use -the-system > MI-generate-report MI - Generate Report I Like It Tags & Notes MI - Generate Report This is an explanation of how to access, view and filter

More information