PDF, Notification, Print, and more with Autodesk Vault Job Processor via powerjobs

Size: px
Start display at page:

Download "PDF, Notification, Print, and more with Autodesk Vault Job Processor via powerjobs"

Transcription

1 PDF, Notification, Print, and more with Autodesk Vault Job Processor via powerjobs Marco Mirandola coolorange Wolfgang Hirner - coolorange CP2641 The Autodesk Vault Jobprocessor comes with great jobs for updating the document and creating a DWF. Further more jobs can be created using.net languages like C#. Such jobs might create PDFs, or sending s, printing, exchanging data, and more. Most technicians have at least some experience with writing code or at least adapting existing code, even if it s just with simple scripting. powerjobs, an extension for the Vault Jobprocessor, brings the Windows PowerShell scripting language into the game. This makes it easy for amateur and professional developers to extend existing and create new jobs. This tutorial will guide you through the basics of the Valult Jobserver and show you how you can achieve the jobs described above via powerjobs. Learning Objectives At the end of this class, you will be able to: Learn all tools around Jobprocessor, and the powerjobs extension Learn how to create PDFs from AutoCAD and Inventor files, with many variations Learn how to create automatic notification to improve your communication Learn how to create jobs for printing, conversion, exchanging About the Speaker Marco is CEO and founder of coolorange, an European based company focused on creating software for Autodesk products and provide services to Autodesk resellers. He is now for more then 15 years in the Autodesk eco-system and worked for 4 years as Product Manager for Data Management at Autodesk. His and his team experience ranges from implementation, on configuration to customization, in many small and big projects around the globe. marco.mirandola@coolorange.com

2 Tools for Jobprocessor and powerjobs In this section we will have a quick look to several tools around Jobprocessor and powerjobs. For the Jobprocessor, we will quickly see the settings within Vault, have a look to the Jobprocessor configuration file and see the LifecycleEventEditor. For powerjobs we will quickly have an insight into the Windows PowerShell scripting language, as it is the foundation of powerjobs, and discover where the relevant files and information are located. The Vault Jobprocessor settings In Vault you have the ability to turn on and off the Jobprocessor queue. In order to queue jobs, it has to be turned on. You can find this setting under [Tools]>[Administrator]>[Global Settings]. On the [Integrations] Tab you will find the Enable Job Server checkbox. Make sure this is checked. Via the menu [Tools]>[Job Queue ] you can have a look into the queue and see which jobs are pending, processing, or in error. The Jobprocessor configuration The configuration file Jobprocessor.exe.config, which is located in the Explorer folder nearby the Jobprocessor.exe, contains the definition for which jobs should be executed by the Jobprocessor, and more. It is an XML file. To open that file, we can use a simple notepad, or better we download the free XML Notepad from the Microsoft website ( 2

3 The section JobHandlers describes which jobs the Jobprocessor knows. The list of jobs described here is the list of jobs you will see in the [Administration]>[Job Types ] dialog of the Jobprocessor. By changing a jobhanlder component in the config file to a comment, the job type will disappear from the Job Types list in the Jobprocessor, and that job will not be processed on that Jobprocessor. We will edit this file later, as we will add custom jobs. The LifecycleEventEditor The Lifefycle Event Editor is a useful application that comes with the Vault SDK. It allows us to add custom jobs to the lifecycle transition. So, for instance if we like to send an on a specific lifecycle transition via the jobserver, we can use the LifecycleEventEditor to configure this. 3

4 In order to use this tool, the SDK must be installed. You can find the setup under C:\Program Files\Autodesk\ADMS Professional 2013\SDK, or in the folder where you have installed the AMDS Server. After running the Setup you will find under C:\Program Files (x86)\autodesk\autodesk Vault 2013 SDK the content of the SDK. The LifecycleEventEditor is located in the Util folder. Just start the tool, login with your Vault credentials, select the lifecycle and the transition you look for, and add the job of interest. PowerShell and PowerGUI As Windows PowerShell is the foundation of powerjobs, lets have a look what this is and which tools are available. On your Windows 7 machine, you will find under [Start]>[All Programms]>[Accessories]>[Windows PowerShell] the PowerShell command line and the PowerShell ISE (Integrates Scripting Engine). Via the command line, it looks like the old DOS days, you can run PowerShell commands interactively. The PowerShell ISE, allows you to create scripts, which will be then executed via the Windows Explorer, or other Windows applications. The scripts can be save with the extension.ps1. 4

5 The PowerShell is also available for earlier version of Windows as download from the Microsoft website. On the other hand, it s a central component for the current and upcoming Windows operating systems, like Windows Server 2008 R2, Windows 8 and more. As an alternative to the tools coming with the operating system, there are other PowerShell editors that bring more capabilities. We will use the PowerGUI ( This editor comes with the so-called intellisense, which means it suggests me how to complete the commands I m writing. This simplifies coding and reduces errors. First steps with PowerShell As the rest of this workshop will be with PowerShell, let s spend a few minutes to get familiar with this language. By running the PowerShell command line, you will notice that it really looks like a DOS command prompt. You actually can use commands like cd for changing directory or dir, copy, etc. However, a new naming has been introduced which should make the PowerShell commands more intuitive. A verb and an object compose the PowerShell commands. Like setlocation is the new name for cd. The Get-Command will give you the whole list of available socalled commandlets or cmdlets. Via Get-Help you can get the help and by adding the commandlet you are interested to, you get the help to that one, including samples. Here is a 2 page overview about the most common PowerShell commands: An here a quick and nice getting started site: The pipeline PowerShell offer great ways for computing objects and lists (arrays) of elements, filter them, sort them, and transform them to different formats. For instance we can get a list of files from a specific folder including subfolder, filter the files newer then a specific date, sort them by name and write them out to a CSV file, in order to open the output in excel. 5

6 The Get-ChildItem commandlet will collect all the files from a specific folder. With the -recurse argument, all files will be captured. The result will be stored in a variable, which starts with a $ sign in PowerShell. The content of the variable will then be filtered and sorted by using the pipeline ( ) and some additional commands. Let s start by collecting all files from the Program Files folder: $files = Get-ChildItem 'c:\program Files' Recurse Now let s filter the collected files for those that has been modified in the last 30 days $today = Get-Date $last30days = $files Where-Object { $_.LastWriteTime -gt $today.adddays(-30) } Now let s sort them by name $last30days = $last30days Sort-Object Name 6

7 Now let s export them to a CSV file in order to open the result with Excel $last30days Export-Csv c:\temp\last30days.csv -Delimiter ";" 7

8 We can save these commands as a ps1 file and execute the script whenever we want. This could be a simple sample on how to find changed files on the local system in an automated way. But, why should we care? What does have this something to do with Vault and Jobserver? PowerShell and Vault In a similar way as we used PowerShell to interact with the operating system, we could also interact with Vault. We just have to load the Vault API and login into the Vault server. The needed file is part of the Vault SDK we just installed before. And here is how it works: [System.Reflection.Assembly]::LoadFrom("c:\Program Files (x86)\autodesk\autodesk Vault 2013 SDK\bin\Autodesk.Connectivity.WebServices.dll") $cred = New-Object Autodesk.Connectivity.WebServicesTools.UserPasswordCredentials("localhost","Vault","Administrator","") $vault = New-Object Autodesk.Connectivity.WebServicesTools.WebServiceManager($cred) These 3 lines, are loading the Vault API and login into Vault, with the credentials you will give. The result is a $vault object, which allow us to interact with Vault. A simple example could be to create a folder in Vault via PowerShell. $rootfolder = $vault.documentservice.getfolderroot() $newfolder = $vault.documentservice.addfolder("coolorange",$rootfolder.id, $false) The first line is getting the root folder from Vault, which is the folder called $. The second line does add a folder to Vault. The requested arguments are the folder name, which we will call coolorange, the parent folder and whether the folder should be a library folder or not. If you run these commands and then check your Vault, a new folder called coolorange should be under $. In similar way as we did for the files on the files system, we can query the Vault for files, filter and sort the result and transform it to CSV or similar. Here the code: $folder = $vault.documentservice.getfolderbypath("$/designs/padlock/assemblies") $files = $vault.documentservice.getlatestfilesbyfolderid($folder.id, $false) $files = $files Sort-Object Name $files Export-Csv c:\temp\last30days.csv -Delimiter ";" 8

9 Here we ask Vault for the files from the folder $/Designs/Padlock/Assemblies. Of course this path can be adapted and other functions like the search can be used. The result is then sorted by name and exported again as CSV. So, now you see how easily the Vault data can be queried and also modified via PowerShell by using the Vault API. As the powerjobs jobs are written with PowerShell language, you may start imagine the things that can be done. PDF with powerjobs Once powerjobs has been installed, standard jobs have been installed too. You will notice in the jobprocessor under [Administration]>[Job Types ] that at the end, the coolorange powerjobs jobs have been added. One of these jobs creates PDF of your Inventor and AutoCAD files. The according script is called coolorange.powerjobs.createpdfasattachment.ps1 and is located under c:\programdata\coolorange\powerjobs\jobs. We will use the LifecycleEventEditor for configuring our PDF job to be triggered once the file gets released. The name of the job that we will add to the given lifecycle state, is the one you will find in the jobprocessor.exe.onfig under JobHandlers. The attribute Name contains the text we look for and we will add via the LifecycleEventEditor to the release state. Once this is completed, we only have to release an 9

10 Inventor or AutoCAD document in Vault, and let the Vault Jobserver run. After completion, a PDF of your document will be in Vault nearby the original document. Now, in different projects, at different customer, different requirements will arise. So, the next steps will show variations of our PDF, in order to get a feeling of the bandwidth. PDF with same category, revision and lifecycle The standard PDF does not have any particular characteristics. Via the Vault Category Rules, you may apply first basic characteristics. In order to have the PDF in the same category, revision and lifecycle, a few changes will have to be applied to the standard job. Here are the 3 relevant lines: $newfile = $vault.docextservice.updatefilecategories(@($newfile.masterid),@($file.cat.catid),"updated category") $newfile = $vault.docextservice.updatefilerevisionnumbers(@($newfile.id),@($file.filerev),"updated Revision") $newfile = $vault.docextservice.updatefilelifecycledefinitions(@($newfile.masterid),@($file.filelfcyc.lfcycdefid),@($file.filelfcyc.lfcycsta teid),"updated lifecycle") These 3 lines basically update the category, revision, lifecycle and state of the PDF to the one of the original file. PDF with the revision in the name In other situations, the requirement might be of having the PDF with a different file name, for instance without the extension of the original file and maybe with the revision in the name. This way, the PDFs of different revisions, will be all immediately visible in Vault. 10

11 At the very beginning of the PDF script, there is a section called settings. There is a variable called PDFfileName. That variable drives the file name of the PDF. By default the file name is the name of the original file with additional the extension.pdf. The next line takes just the name of the files without the extension and ads an underscore, the revision of the original file and finally the extension. $PDFfileName = [System.io.path]::GetFileNameWithoutExtension($file.Name) + "_" + $file.filerev + ".pdf" PDF in an external folder A frequent request is to create a PDF and make this accessible to other systems like an ERP. Now, with what we have seen before with PowerShell and Vault, you may know that a small script could grab the PDF from Vault and save it to the specified folder. However, as the PDF gets created via a job, why not having the job save the PDF to that location, right during the creation process. As by default the PDF must be created locally anyway, and just uploaded to Vault later, we could just grab the local file and copy it to your location. The variable $localdestfile contains the location of there the PDF will be created. After the successful creation, let s copy the file: Copy-Item -LiteralPath $localdestfile -Destination "c:\myfolder\"+$pdffilename 11

12 PDF with Watermark and PDF- A Beyond the basic naming or managing of the PDF, there might be a whish to create PDF with watermark, for instance reflecting the lifecycle state on the PDF. Or you may want to create a PDF-A format of the PDF for long term archiving. So far the creation of PDF has been made via Inventor or AutoCAD, which can create regular PDFs. In order to add watermark to the PDF or create a specific format, additional tools are needed. There are different on the market. We choose itext ( for manipulating PDF and so add Watermark, or even other manipulations, and Ghostscript ( for creating PDF-A. In both cases the PDF generated by the Autodesk application will be post-processed with the tools of above. As we are constantly extending the reach of samples, for these 2 situations we like to point you to the tutorials we wrote on our wiki site: - PDF-A: - Watermark: notification Another great way to use the Vault Jobserver is to improve the automatic notification of Vault and Non-Vault users. Especially when documents gets or leave a specific lifecycle stage, people may want to be informed. The Vault Jobserver can take over this task, and with powerjobs, it s just a simple task to create a little PowerShell script that will send s or other types of notification like twitter or yammer tweets. Notification via In order to send s, you need a SMTP server. So, we assume this is given and you have the credentials. Then, it s an easy game. PowerShell comes with a commandlet called Send- MailMessage. Jus add the given arguments like from, to, subject, body and a valid SMTP server, and you have s sent by the Jobserver at lifecycle transitions. The content of the 12

13 can be configured as needed. Here a sample that sends an with the file name with from and to state in the subject, and a Vault link in the body. If the user clicks on the link, Vault will start and point to the according file. $lfctransid = $vault.job.params["lifecycletransitionid"] $fileid = $vault.job.params["fileid"] $file = $vault.docservice.getfilebyid($fileid) $folders = $vault.docservice.getfoldersbyfilemasterid($file.masterid) $folder = $folders[0] $folderpath = $folder.fullname $folderpath = $folderpath.replace("$","%24").replace("/","%2f") $fullpath = $folderpath + "%2f" + $file.name.replace(" ","+") $link = " lect" $lfctrans =$vault.docextservice.getlifecyclestatetransitionsbyids(@($lfctransid)) $lfcs = $vault.docextservice.getlifecyclestatesbyids(@($lfctrans[0].fromid,$lfctrans[0].toid)) $oldstate = $lfcs[0].dispname $newstate = $lfcs[1].dispname Send-MailMessage -From "marco.mirandola@coolorange.com" -To "marco.mirandola@coolorange.com" -Subject "The file $($file.name) has changed from $oldstate to $newstate" -Body "Dear xxx, if you like to view the related document, just follow this link: $link" - SmtpServer Notification via Yammer If Yammer is used in your company, then you might be interested to connect Vault to this business social network. Yammer offers an API in order to allow developers to connect to this network. We run into this article mand_2d00_line.aspx which shows how PowerShell can take advantage of Yammer. The Set- Yammer-Message commandlet sends a message to your Yammer network. So, for instance at given lifecycle changes in Vault, you may want to notify people via Yammer. In order to do this, follow the tutorial mentioned above, create a new PowerShell file and place it in the powerjobs/jobs folder, add a jobhandler in the Jobprocessor.exe.config and edit the PowerShell script with the following code: Set-Yammer-Message Message here comes your message Of course you can use all the Vault information to format your message the way you want, similar to how we did it for the notification. Printing and Converting Another excellent topic for the Vault Jobserver is to centralize printing and converting. Create DXF on validation Supposing you like to get your flat pattern DXF create automatically when releasing your drawing. One of the default jobs that comes with powerjobs, does exactly this for Inventor files. The script responsible for this is coolorange.powerjobs.savelocalassheetmetaldxf.ps1. This script is set to IPT only. It checks whether the Inventor component contains a flat pattern. If not, then the model will be unfolded and saved. Then a DXF file will be generated with the given parameters. 13

14 The file will be just stored in a local Windows folder. From here on further actions can be taken. Create BMP, STEP, IGS, The script for generating a DXF shows a technique that allows intervening once Inventor has opened the file. At that time it s possible to interact with Inventor and the opened file. One simple thing that can be done is to save the file in a different format. We basically make use of the SaveCopyAs function from within Inventor. The format supported by that function are available also from the API. The add_onbeginpublish function catches the opening of the file and provides some useful variables, like the current opened document. Within this function we can save our document to the path and file we want. The extension will automatically tell Inventor which format to use. Here the command: $document.document.saveas("c:\temp\inventor.step",$true) Unfortunately the settings cannot be passed to this function, so the export will happened exactly with the settings chosen the last time a document has been saved with this format. Print via Inventor In order to print a file via Inventor, a similar approach to the one for creating a DXF can be taken. In this case we just open the file, catch the open event and then trigger the print. For printing, the PrintManager from Inventor is used. This allows us to be quite flexible on the priting requirements. Here is the code: # get the file $fileid = $vault.job.params["fileid"] if(!$fileid) { throw ("File ID not set") } $file = $vault.docservice.getfilebyid($fileid) # get the latest version of the file in case a sync prop has been executed bevore the job $file = $vault.docservice.getlatestfilebymasterid($file.masterid) # limit publishing to 2d inventor files $ext = [System.IO.Path]::GetExtension($file.Name) if($ext.tolower().equals(".idw")) { $publisher=$vault.getpublisher("pdf") $publisher.add_onbeginpublish( { param($publisher, $document) $printmanager = $document.printmanager $printmanager.gettype().invokemember("printer",[reflection.bindingflags]::setproperty, $null, $printmanager, "Microsoft XPS Document Writer") $printmanager.scalemode = [Inventor.PrintScaleModeEnum]::kPrintBestFitScale $printmanager.printrange = [Inventor.PrintRangeEnum]::kPrintAllSheets $printmanager.papersize = [Inventor.PaperSizeEnum]::kPaperSizeA0 $printmanager.submitprint() }) $publisher.outputfile="c:\temp\dummy.pdf" if (!$publisher.open($file.id)) { throw ("Open failed") } } 14

15 Conclusion This workshop had the intention to give you a feeling of the many things that are possible via the Vault Jobserver, how PowerShell can lower the threshold for writing jobs, and how powerjobs leverages this. The web is full of PowerShell communities and information, so before you write, just search. We contribute via out blog ( to topics relevant to Vault. So, if you are now interested, start reading and testing your self, and feel free to send us suggestions on further topics we should work out. Leave a message on our blog, facebook site or support. 15

PL15737 Utilizing the Job Processor Workflow Automation

PL15737 Utilizing the Job Processor Workflow Automation PL15737 Utilizing the Job Processor Workflow Automation Ian Cross A2K Technologies Learning Objectives Learn what the Job Processor is Learn how to get the best out of your Job Processor Learn about coolorange

More information

coolorange Price List EURO

coolorange Price List EURO March 23, 2018 coolorange Price List EURO This price list is valid from April 1, 2018 until March 31, 2019. Prices are subject to change without notice and do not include tax or shipping and handling.

More information

coolorange Price List US$

coolorange Price List US$ coolorange Price List US$ This price list is valid until March 31 st, 2018. Prices are subject to change without notice and do not include tax or shipping and handling. All products are available as electronic

More information

VAULT REVISION TABLE FOR INVENTOR

VAULT REVISION TABLE FOR INVENTOR Automatically Update a Drawing s Revision Table with Vault Data AT A GLANCE ISSUE: The process of manually updating the revision tables on drawings can be time consuming. SOLUTION: The Vault Revision Table

More information

Getting Started with Autodesk Vault Programming

Getting Started with Autodesk Vault Programming Getting Started with Autodesk Vault Programming Doug Redmond Autodesk CP4534 An introduction to the customization options provided through the Vault APIs. Learning Objectives At the end of this class,

More information

Technical What s New. Autodesk Vault Manufacturing 2010

Technical What s New. Autodesk Vault Manufacturing 2010 Autodesk Vault Manufacturing 2010 Contents Welcome to Autodesk Vault Manufacturing 2010... 2 Vault Client Enhancements... 2 Autoloader Enhancements... 2 User Interface Update... 3 DWF Publish Options User

More information

coolorange Price List US$

coolorange Price List US$ coolorange Price List US$ This price list gives you an overview of our products and corresponding prices. A list of frequently asked questions is placed at the end of this document. If you have further

More information

Introduction to Autodesk ProductstreamChapter1:

Introduction to Autodesk ProductstreamChapter1: Chapter 1 Introduction to Autodesk ProductstreamChapter1: This chapter gives an overview of Autodesk Productstream, its features, functions, and benefits, and the Autodesk Productstream user interface.

More information

CRM Insights. User s Guide

CRM Insights. User s Guide CRM Insights User s Guide Copyright This document is provided "as-is". Information and views expressed in this document, including URL and other Internet Web site references, may change without notice.

More information

Features and Benefits Summary

Features and Benefits Summary Autodesk Inventor 7 Features and Benefits Summary Autodesk Inventor 7, the latest release of Autodesk s 3D mechanical design software, improves the design process in several areas, including AutoCAD 2004

More information

FOCUS ON REAL DESIGN AUTOMATE THE REST CUSTOMTOOLS GETTING STARTED GUIDE

FOCUS ON REAL DESIGN AUTOMATE THE REST CUSTOMTOOLS GETTING STARTED GUIDE FOCUS ON REAL DESIGN AUTOMATE THE REST CUSTOMTOOLS GETTING STARTED GUIDE Table of Contents CHAPTER 1: INTRODUCTION... 11 Read this first... 11 About this manual... 11 Intended Audience... 12 Late Changes...

More information

2012 Microsoft Corporation. All rights reserved. Microsoft, Active Directory, Excel, Lync, Outlook, SharePoint, Silverlight, SQL Server, Windows,

2012 Microsoft Corporation. All rights reserved. Microsoft, Active Directory, Excel, Lync, Outlook, SharePoint, Silverlight, SQL Server, Windows, 2012 Microsoft Corporation. All rights reserved. Microsoft, Active Directory, Excel, Lync, Outlook, SharePoint, Silverlight, SQL Server, Windows, Windows Server, and other product names are or may be registered

More information

Best Practices for Loading Autodesk Inventor Data into Autodesk Vault

Best Practices for Loading Autodesk Inventor Data into Autodesk Vault AUTODESK INVENTOR WHITE PAPER Best Practices for Loading Autodesk Inventor Data into Autodesk Vault The most important item to address during the implementation of Autodesk Vault software is the cleaning

More information

FilesAnywhere Features List

FilesAnywhere Features List FilesAnywhere Feature List FilesAnywhere Page 1 of 9 Contents Basic Features... 3 Advanced Features... 7 Enterprise Features... 9 FilesAnywhere Page 2 of 9 Basic Features No File Size Limit: There is no

More information

Inventor ERFA. Michael Kjærgaard System konsulent NTI A/S. Denmark Iceland Sweden Norway Germany

Inventor ERFA. Michael Kjærgaard System konsulent NTI A/S. Denmark Iceland Sweden Norway Germany Inventor ERFA Michael Kjærgaard System konsulent NTI A/S Autodesk Inventor 2018.1 2018.2 What s New 2 Inventor 2018.1 What s New Interoperability AnyCAD for Solid Edge 3 Inventor 2018.2 What s New Move

More information

Report Commander 2 User Guide

Report Commander 2 User Guide Report Commander 2 User Guide Report Commander 2.5 Generated 6/26/2017 Copyright 2017 Arcana Development, LLC Note: This document is generated based on the online help. Some content may not display fully

More information

Migration from Metalogix Archive Manager (MAM) to Enterprise Vault (EV)

Migration from Metalogix Archive Manager (MAM) to Enterprise Vault (EV) Migration from Metalogix Archive Manager (MAM) to Enterprise Vault (EV) FEBRUARY 29, 2016 TECH-ARROW a.s. KAZANSKÁ 5, 821 06 BRATISLAVA, SLOVAKIA All Rights Reserved Contents Source and target environment...

More information

Qlik Sense Cmdlet for PowerShell. Sokkorn CHEAV

Qlik Sense Cmdlet for PowerShell. Sokkorn CHEAV Qlik Sense Cmdlet for PowerShell Sokkorn CHEAV Table of Contents 1. Introduction...2 2. Why this document?...2 3. Tested Environment...2 4. Installation...2 6. Command Test Case...4 6.1 View a list of

More information

Reference Guide. Adding a Generic File Store - Importing From a Local or Network ShipWorks Page 1 of 21

Reference Guide. Adding a Generic File Store - Importing From a Local or Network ShipWorks Page 1 of 21 Reference Guide Adding a Generic File Store - Importing From a Local or Network Folder Page 1 of 21 Adding a Generic File Store TABLE OF CONTENTS Background First Things First The Process Creating the

More information

Skills Assessor Notification Service Installation Guide

Skills Assessor Notification Service Installation Guide Skills Assessor 8.1.127 Email Notification Service Installation Guide The information contained herein is proprietary and confidential and cannot be disclosed or duplicated without the prior written consent

More information

Microsoft Windows PowerShell v2 For Administrators

Microsoft Windows PowerShell v2 For Administrators Microsoft Windows PowerShell v2 For Administrators Course 50414 5 Days Instructor-led, Hands-on Introduction This four-day instructor-led course provides students with the knowledge and skills to leverage

More information

Learning Objectives. Description. Your AU Expert(s) Trent Earley Behlen Mfg. Co. Shane Wemhoff Behlen Mfg. Co.

Learning Objectives. Description. Your AU Expert(s) Trent Earley Behlen Mfg. Co. Shane Wemhoff Behlen Mfg. Co. PL17257 JavaScript and PLM: Empowering the User Trent Earley Behlen Mfg. Co. Shane Wemhoff Behlen Mfg. Co. Learning Objectives Using items and setting data in a Workspace Setting Data in Related Workspaces

More information

Passwords. Twitter UN: IDANRV Twitter PW: idanrv1. Thank You

Passwords. Twitter UN: IDANRV Twitter PW: idanrv1. Thank You Passwords Twitter UN: IDANRV Twitter PW: idanrv1 Thank You USER'S MANUAL TABLE OF CONTENTS Page # 1.1 SYSTEM OVERVIEW... 4 1.2 DEFINITIONS & ACRONYMS... 4 1.3 REFERENCES... 4 2.0 INSTALLATION... 5 2.1

More information

Managing Your Website with Convert Community. My MU Health and My MU Health Nursing

Managing Your Website with Convert Community. My MU Health and My MU Health Nursing Managing Your Website with Convert Community My MU Health and My MU Health Nursing Managing Your Website with Convert Community LOGGING IN... 4 LOG IN TO CONVERT COMMUNITY... 4 LOG OFF CORRECTLY... 4 GETTING

More information

Vault 2018: What's New. J e n s M ø l l e r

Vault 2018: What's New. J e n s M ø l l e r Vault 2018: What's New J e n s M ø l l e r Enhanced Design Experience IDEAS V a u l t B r o w s e r & S e a r c h Detachable Enhanced Search Execute command on search results Search on Vaulted Properties

More information

Best Practices for Implementing Autodesk Vault

Best Practices for Implementing Autodesk Vault AUTODESK VAULT WHITE PAPER Best Practices for Implementing Autodesk Vault Introduction This document guides you through the best practices for implementing Autodesk Vault software. This document covers

More information

Programming Autodesk Vault with the VDF. Dennis Mulonas and Doug Redmond Software Engineers, Autodesk

Programming Autodesk Vault with the VDF. Dennis Mulonas and Doug Redmond Software Engineers, Autodesk Programming Autodesk Vault with the VDF Dennis Mulonas and Doug Redmond Software Engineers, Autodesk Introduction This class will go over new API features in Autodesk Vault 2014. Most of the content will

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

User Guide. Kronodoc Kronodoc Oy. Intelligent methods for process improvement and project execution

User Guide. Kronodoc Kronodoc Oy. Intelligent methods for process improvement and project execution User Guide Kronodoc 3.0 Intelligent methods for process improvement and project execution 2003 Kronodoc Oy 2 Table of Contents 1 User Guide 5 2 Information Structure in Kronodoc 6 3 Entering and Exiting

More information

INSIGHTS, POWERED BY INSIDEVIEW

INSIGHTS, POWERED BY INSIDEVIEW INSIGHTS, POWERED BY INSIDEVIEW Installation Guide Product Version 4.2 OCTOBER, 2017 Table of Contents Chapter 1: Introduction to Insights, powered by InsideView...3 What s New in this Release?... 4 Chapter

More information

Xton Access Manager GETTING STARTED GUIDE

Xton Access Manager GETTING STARTED GUIDE Xton Access Manager GETTING STARTED GUIDE XTON TECHNOLOGIES, LLC PHILADELPHIA Copyright 2017. Xton Technologies LLC. Contents Introduction... 2 Technical Support... 2 What is Xton Access Manager?... 3

More information

Workspace Administrator Help File

Workspace Administrator Help File Workspace Administrator Help File Table of Contents HotDocs Workspace Help File... 1 Getting Started with Workspace... 3 What is HotDocs Workspace?... 3 Getting Started with Workspace... 3 To access Workspace...

More information

Introduction to Autodesk VaultChapter1:

Introduction to Autodesk VaultChapter1: Introduction to Autodesk VaultChapter1: Chapter 1 This chapter provides an overview of Autodesk Vault features and functionality. You learn how to use Autodesk Vault to manage engineering design data in

More information

Vault Integration for Sheet Set Manager in AutoCAD

Vault Integration for Sheet Set Manager in AutoCAD Anil Chintamaneni Autodesk, Inc. DM 7900 This class is designed for those who use Sheet Set Manager in AutoCAD-based products for managing sheet sets and also use Autodesk Vault for data management. Now

More information

INSIGHTS, POWERED BY INSIDEVIEW

INSIGHTS, POWERED BY INSIDEVIEW INSIGHTS, POWERED BY INSIDEVIEW Installation Guide Product Version 4.3 JANUARY, 2019 Table of Contents Chapter 1: Introduction to Insights, powered by InsideView...3 What s New in this Release?... 4 Chapter

More information

Getting Started with Team Coding Applicable to Toad for Oracle Suite 2016 (v12.9) and higher

Getting Started with Team Coding Applicable to Toad for Oracle Suite 2016 (v12.9) and higher Getting Started with Team Coding Applicable to Toad for Oracle Suite 2016 (v12.9) and higher John Bowman Toad for Oracle Development Table of Contents About Team Coding... 2 Working with a Version Control

More information

Automating Administration with Windows PowerShell 2.0

Automating Administration with Windows PowerShell 2.0 Automating Administration with Windows PowerShell 2.0 Course No. 10325 5 Days Instructor-led, Hands-on Introduction This course provides students with the knowledge and skills to utilize Windows PowerShell

More information

Source Control: Perforce

Source Control: Perforce USER GUIDE MADCAP FLARE 2018 Source Control: Perforce Copyright 2018 MadCap Software. All rights reserved. Information in this document is subject to change without notice. The software described in this

More information

SDL Content Porter 2013 User Manual. Content Management Technologies Division of SDL

SDL Content Porter 2013 User Manual. Content Management Technologies Division of SDL SDL Content Porter 2013 User Manual Content Management Technologies Division of SDL Revision date: 28-03-2013 Copyright 1999-2013 SDL Tridion Development Lab B.V. All rights reserved. No part of this documentation

More information

Session V-STON Stonefield Query: The Next Generation of Reporting

Session V-STON Stonefield Query: The Next Generation of Reporting Session V-STON Stonefield Query: The Next Generation of Reporting Doug Hennig Overview Are you being inundated with requests from the users of your applications to create new reports or tweak existing

More information

EMC Documentum Composer

EMC Documentum Composer EMC Documentum Composer Version 6.0 SP1.5 User Guide P/N 300 005 253 A02 EMC Corporation Corporate Headquarters: Hopkinton, MA 01748 9103 1 508 435 1000 www.emc.com Copyright 2008 EMC Corporation. All

More information

Installing a Custom AutoCAD Toolbar (CUI interface)

Installing a Custom AutoCAD Toolbar (CUI interface) Installing a Custom AutoCAD Toolbar (CUI interface) AxciScape produces AutoCAD script files which must be Run within AutoCAD. You can do this by typing SCRIPT into the command line and then select the

More information

Océ Engineering Exec. Doc Exec Pro and Electronic Job Ticket for the Web

Océ Engineering Exec. Doc Exec Pro and Electronic Job Ticket for the Web Océ Engineering Exec Doc Exec Pro and Electronic Job Ticket for the Web Océ-Technologies B.V. Copyright 2004, Océ-Technologies B.V. Venlo, The Netherlands All rights reserved. No part of this work may

More information

User Guide. BlackBerry Workspaces for Windows. Version 5.5

User Guide. BlackBerry Workspaces for Windows. Version 5.5 User Guide BlackBerry Workspaces for Windows Version 5.5 Published: 2017-03-30 SWD-20170330110027321 Contents Introducing BlackBerry Workspaces for Windows... 6 Getting Started... 7 Setting up and installing

More information

Scribe Insight 6.5. Release Overview and Technical Information Version 1.0 April 7,

Scribe Insight 6.5. Release Overview and Technical Information Version 1.0 April 7, Scribe Insight 6.5 Release Overview and Technical Information Version 1.0 April 7, 2009 www.scribesoft.com Contents What is Scribe Insight?... 3 Release Overview... 3 Product Management Process Customer

More information

COURSE 10961B: AUTOMATING ADMINISTRATION WITH WINDOWS POWERSHELL

COURSE 10961B: AUTOMATING ADMINISTRATION WITH WINDOWS POWERSHELL ABOUT THIS COURSE Learn how with Windows PowerShell 3.0, you can remotely manage single or multiple Windows-based servers and automate day-to-day management and administration tasks. This five day course

More information

Website Optimizer. Before we start building a website, it s good practice to think about the purpose, your target

Website Optimizer. Before we start building a website, it s good practice to think about the purpose, your target Website Optimizer Before we start building a website, it s good practice to think about the purpose, your target audience, what you want to have on the website, and your expectations. For this purpose

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

Solvusoft Page 1

Solvusoft Page 1 2011-2012 Solvusoft Page 1 Table of Contents Introduction 3 System Requirements 3 Installation Instructions 4 Registering FileViewPro 8 Uninstalling FileViewPro 9 Working with files.10 Video files (.AVI,.MPG,.FLV,

More information

[MS10961]: Automating Administration with Windows PowerShell

[MS10961]: Automating Administration with Windows PowerShell [MS10961]: Automating Administration with Windows PowerShell Length : 5 Days Audience(s) : IT Professionals Level : 200 Technology : Windows Server Delivery Method : Instructor-led (Classroom) Course Overview

More information

Automating Administration with Windows PowerShell

Automating Administration with Windows PowerShell Automating Administration with Windows PowerShell Course 10961C - Five Days - Instructor-led - Hands on Introduction This five-day, instructor-led course provides students with the fundamental knowledge

More information

Ektron Advanced. Learning Objectives. Getting Started

Ektron Advanced. Learning Objectives. Getting Started Ektron Advanced 1 Learning Objectives This workshop introduces you beyond the basics of Ektron, the USF web content management system that is being used to modify department web pages. This workshop focuses

More information

"Charting the Course... MOC C: Automating Administration with Windows PowerShell. Course Summary

Charting the Course... MOC C: Automating Administration with Windows PowerShell. Course Summary Course Summary Description This course provides students with the fundamental knowledge and skills to use Windows PowerShell for administering and automating administration of Windows servers. This course

More information

Function. Description

Function. Description Function Check In Get / Checkout Description Checking in a file uploads the file from the user s hard drive into the vault and creates a new file version with any changes to the file that have been saved.

More information

CHAPTER 1 COPYRIGHTED MATERIAL. Finding Your Way in the Inventor Interface

CHAPTER 1 COPYRIGHTED MATERIAL. Finding Your Way in the Inventor Interface CHAPTER 1 Finding Your Way in the Inventor Interface COPYRIGHTED MATERIAL Understanding Inventor s interface behavior Opening existing files Creating new files Modifying the look and feel of Inventor Managing

More information

Adobe Campaign Business Practitioner Adobe Certified Expert Exam Guide. Exam number: 9A0-395

Adobe Campaign Business Practitioner Adobe Certified Expert Exam Guide. Exam number: 9A0-395 Adobe Campaign Business Practitioner Adobe Certified Expert Exam Guide Exam number: 9A0-395 Revised 08 September 2016 About Adobe Certified Expert Exams To be an Adobe Certified Expert is to demonstrate

More information

PowerShell 10961: Automating Administration with Windows PowerShell. Upcoming Dates. Course Description. Course Outline

PowerShell 10961: Automating Administration with Windows PowerShell. Upcoming Dates. Course Description. Course Outline PowerShell 10961: Automating Administration with Windows PowerShell Learn how with Windows PowerShell you can remotely manage single or multiple Windows-based servers and automate day-to-day management

More information

EDAConnect-Dashboard User s Guide Version 3.4.0

EDAConnect-Dashboard User s Guide Version 3.4.0 EDAConnect-Dashboard User s Guide Version 3.4.0 Oracle Part Number: E61758-02 Perception Software Company Confidential Copyright 2015 Perception Software All Rights Reserved This document contains information

More information

Course Outline. Automating Administration with Windows PowerShell Course 10961B: 5 days Instructor Led

Course Outline. Automating Administration with Windows PowerShell Course 10961B: 5 days Instructor Led Automating Administration with Windows PowerShell Course 10961B: 5 days Instructor Led About this Course Learn how with Windows PowerShell 3.0, you can remotely manage single or multiple Windows-based

More information

Connect Databases to AutoCAD with dbconnect Nate Bartley Test Development Engineer autodesk, inc.

Connect Databases to AutoCAD with dbconnect Nate Bartley Test Development Engineer autodesk, inc. Connect Databases to AutoCAD with dbconnect Nate Bartley Test Development Engineer autodesk, inc. GD22-4 1 2 Agenda Introduction Overview of dbconnect Configure a data source Connect database to AutoCAD

More information

Fast Content for AutoCAD MEP 2015

Fast Content for AutoCAD MEP 2015 David Butts Gannett Fleming MP6393 AutoCAD MEP 2015 software, a world-class design and drafting application, is the Zen master of mechanical, electrical, and plumbing design software. The software continues

More information

What s New in Autodesk V a ul t 20 18

What s New in Autodesk V a ul t 20 18 What s New in Autodesk V a ul t 20 18 Welcome & Agenda Introduction to Vault 2018 Enhanced Design Experience Engineering Efficiency Enabled Administration Tasks Delegation Autodesk Vault 2018 Building

More information

DiskBoss DATA MANAGEMENT

DiskBoss DATA MANAGEMENT DiskBoss DATA MANAGEMENT Disk Change Monitor Version 9.3 May 2018 www.diskboss.com info@flexense.com 1 1 Product Overview DiskBoss is an automated, policy-based data management solution allowing one to

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

TIBCO Spotfire Automation Services

TIBCO Spotfire Automation Services TIBCO Spotfire Automation Services Software Release 7.9 May 2017 Two-Second Advantage 2 Important Information SOME TIBCO SOFTWARE EMBEDS OR BUNDLES OTHER TIBCO SOFTWARE. USE OF SUCH EMBEDDED OR BUNDLED

More information

Kernel Migrator. for SharePoint. Configuration Guide

Kernel Migrator. for SharePoint. Configuration Guide Kernel Migrator for SharePoint Table of Contents 1. System Requirements... 4 1.1 Minimum System Requirements... 4 1.2 Required Operating Systems... 4 1.3 Supported Virtual Environment... 4 1.4 Supported

More information

Dell Repository Manager Business Client Version 2.0 User s Guide

Dell Repository Manager Business Client Version 2.0 User s Guide Dell Repository Manager Business Client Version 2.0 User s Guide Notes, Cautions, and Warnings NOTE: A NOTE indicates important information that helps you make better use of your computer. CAUTION: A CAUTION

More information

WEBSITE INSTRUCTIONS. Table of Contents

WEBSITE INSTRUCTIONS. Table of Contents WEBSITE INSTRUCTIONS Table of Contents 1. How to edit your website 2. Kigo Plugin 2.1. Initial Setup 2.2. Data sync 2.3. General 2.4. Property & Search Settings 2.5. Slideshow 2.6. Take me live 2.7. Advanced

More information

Aquaforest CheckPoint Reference Guide

Aquaforest CheckPoint Reference Guide Aquaforest CheckPoint Reference Guide Version 1.01 April 2015 Copyright 2005-2015 Aquaforest Limited http://www.aquaforest.com/ Contents 1 Product Overview... 3 2 Installation and Licensing... 4 2.1 Installation...

More information

Style Report Enterprise Edition

Style Report Enterprise Edition INTRODUCTION Style Report Enterprise Edition Welcome to Style Report Enterprise Edition! Style Report is a report design and interactive analysis package that allows you to explore, analyze, monitor, report,

More information

Building Self-Service BI Solutions with Power Query. Written By: Devin

Building Self-Service BI Solutions with Power Query. Written By: Devin Building Self-Service BI Solutions with Power Query Written By: Devin Knight DKnight@PragmaticWorks.com @Knight_Devin CONTENTS PAGE 3 PAGE 4 PAGE 5 PAGE 6 PAGE 7 PAGE 8 PAGE 9 PAGE 11 PAGE 17 PAGE 20 PAGE

More information

Marketing & Back Office Management

Marketing & Back Office Management Marketing & Back Office Management Menu Management Add, Edit, Delete Menu Gallery Management Add, Edit, Delete Images Banner Management Update the banner image/background image in web ordering Online Data

More information

Visual Studio 2010 Xml Schema Explorer Tutorial

Visual Studio 2010 Xml Schema Explorer Tutorial Visual Studio 2010 Xml Schema Explorer Tutorial Xsd2Code community edition is an AddIn for visual studio 2008. Right clic on xsd schema in solution explorer, choose options and generate code. AddinMenu.

More information

VMware Horizon Session Recording Fling:

VMware Horizon Session Recording Fling: VMware Horizon Session Recording Fling: The VMware Horizon Session Recording fling allows administrators to record VMware Blast Extreme sessions to a central server for playback. These recordings can be

More information

: 10961C: Automating Administration With Windows PowerShell

: 10961C: Automating Administration With Windows PowerShell Module Title Duration : 10961C: Automating Administration With Windows PowerShell : 5 days About this course This course provides students with the fundamental knowledge and skills to use Windows PowerShell

More information

Learn Windows PowerShell in a Month of Lunches

Learn Windows PowerShell in a Month of Lunches Learn Windows PowerShell in a Month of Lunches by Don Jones Chapter 4 Copyright 2011 Manning Publications brief contents 1 Before you begin 1 2 Running commands 9 3 Using the help system 23 4 The pipeline:

More information

Installing & Using CutePDF Writer

Installing & Using CutePDF Writer Page 1 of 6 According to there site CutePDF Writer allows you to: Create professional quality PDF files from almost any printable document. FREE for personal and commercial use! No watermarks! No popup

More information

User Documentation. Studywiz Learning Environment. Student's Guide

User Documentation. Studywiz Learning Environment. Student's Guide User Documentation Studywiz Learning Environment Student's Guide Studywiz Learning Environment Student's Guide Contents 1 Introduction 4 1.1 Studywiz 4 1.2 The Studywiz Student s Guide 4 2 What s New

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

N2KExtractor. Maretron Data Extraction Software User s Manual

N2KExtractor. Maretron Data Extraction Software User s Manual N2KExtractor Maretron Data Extraction Software User s Manual Revision 3.1.6 Copyright 2017 Maretron, LLP All Rights Reserved Maretron, LLP 9014 N. 23rd Ave #10 Phoenix, AZ 85021-7850 http://www.maretron.com

More information

Source Control: Subversion

Source Control: Subversion USER GUIDE MADCAP FLARE 2018 Source Control: Subversion Copyright 2018 MadCap Software. All rights reserved. Information in this document is subject to change without notice. The software described in

More information

EUSurvey Installation Guide

EUSurvey Installation Guide EUSurvey Installation Guide Guide to a successful installation of EUSurvey May 20 th, 2015 Version 1.2 (version family) 1 Content 1. Overview... 3 2. Prerequisites... 3 Tools... 4 Java SDK... 4 MySQL Database

More information

EXPORT MANAGER USER GUIDE

EXPORT MANAGER USER GUIDE EXPORT MANAGER USER GUIDE Table of Contents Table of Contents 1 Overview 2 General Concepts 2 Creating a Job 3 General Properties 4 Source Properties 4 Export Properties 4 Running Jobs 5 Options 5 Export

More information

Installation Guide Worksoft Analyze

Installation Guide Worksoft Analyze Installation Guide Worksoft Analyze Worksoft, Inc. 15851 Dallas Parkway, Suite 855 Addison, TX 75001 www.worksoft.com 866-836-1773 Worksoft Analyze Installation Guide Version 1.0.0 Copyright 2018 by Worksoft,

More information

SCHULICH MEDICINE & DENTISTRY Website Updates August 30, Administrative Web Editor Guide v6

SCHULICH MEDICINE & DENTISTRY Website Updates August 30, Administrative Web Editor Guide v6 SCHULICH MEDICINE & DENTISTRY Website Updates August 30, 2012 Administrative Web Editor Guide v6 Table of Contents Chapter 1 Web Anatomy... 1 1.1 What You Need To Know First... 1 1.2 Anatomy of a Home

More information

Getting Started With Squeeze Server

Getting Started With Squeeze Server Getting Started With Squeeze Server & Squeeze Server takes the proven Squeeze encoding engine and makes it available on- premise, in the cloud or both, with a robust application programming interface (API)

More information

QDABRA DBXL S PDF RENDERING SERVICE CONFIGURATION

QDABRA DBXL S PDF RENDERING SERVICE CONFIGURATION Page 1 of 28 QDABRA DBXL S PDF RENDERING SERVICE CONFIGURATION LAST UPDATED: May 12, 2017 This document will guide you through the installation of DBXL Rendering Service for DBXL v3.1. CONTENTS Prerequisites...

More information

Microsoft SharePoint 2010

Microsoft SharePoint 2010 BrainStorm Quick Start Card for Microsoft SharePoint 2010 Getting Started Microsoft SharePoint 2010 brings together your organization s people, documents, information, and ideas in a customizable space

More information

DiskPulse DISK CHANGE MONITOR

DiskPulse DISK CHANGE MONITOR DiskPulse DISK CHANGE MONITOR User Manual Version 10.5 Feb 2018 www.diskpulse.com info@flexense.com 1 1 DiskPulse Overview...3 2 DiskPulse Product Versions...5 3 Using Desktop Product Version...6 3.1 Product

More information

How do I use BatchProcess

How do I use BatchProcess home news tutorial what can bp do purchase contact us TUTORIAL Written by Luke Malpass Sunday, 04 April 2010 20:20 How do I use BatchProcess Begin by downloading the required version (either 32bit or 64bit)

More information

RIPPLESTONE SUMMARY

RIPPLESTONE SUMMARY RIPPLESTONE 3.7 - SUMMARY HOME PAGE ADDED AN ADMIN DASHBOARD (3.7.1.2) This new page is available to Super Users and Administrators and provides information about the Ripplestone system. It allows them

More information

Automating Administration with Windows PowerShell

Automating Administration with Windows PowerShell Course Code: M10961 Vendor: Microsoft Course Overview Duration: 5 RRP: POA Automating Administration with Windows PowerShell Overview This course provides students with the fundamental knowledge and skills

More information

A Step by Step Guide to Postcard Marketing Success

A Step by Step Guide to Postcard Marketing Success A Step by Step Guide to Postcard Marketing Success Table of Contents Why VerticalResponse?...3 Why Postcards?...4 So why use postcards in this modern era?...4 Quickstart Guide...6 Step 1: Setup Your Account...8

More information

COURSE 10962B: ADVANCED AUTOMATED ADMINISTRATION WITH WINDOWS POWERSHELL

COURSE 10962B: ADVANCED AUTOMATED ADMINISTRATION WITH WINDOWS POWERSHELL ABOUT THIS COURSE This three-day course is a follow on course from the 10961B: Automating Administration with Windows PowerShell course. It is built on Windows Server 2012 R2 and Windows 8.1 and while

More information

DDM : Full Enhancements List

DDM : Full Enhancements List Highlighted sections have their own videos. Please click on enhancement reference number to view in YouTube. Release En Number Description Notes 2018.09 PSE-182 The Solid Edge Ribbon bar to be properly

More information

Instructions On How To Use Microsoft Word 2010 Pdf Filetype

Instructions On How To Use Microsoft Word 2010 Pdf Filetype Instructions On How To Use Microsoft Word 2010 Pdf Filetype When I go through the Save As dialog, and change my filetype to pdf and I'm currently absolutely baffled by an issue I have when trying to Save

More information

inforouter V8.0 Administrator s Guide

inforouter V8.0 Administrator s Guide inforouter V8.0 Administrator s Guide Page 1 of 23 Active Innovations, Inc. Names of all products herein are used for identification purposes only and are trademarks and/or registered trademarks of their

More information

IAT 445 Lab 10. Special Topics in Unity. Lanz Singbeil

IAT 445 Lab 10. Special Topics in Unity. Lanz Singbeil IAT 445 Lab 10 Special Topics in Unity Special Topics in Unity We ll be briefly going over the following concepts. They are covered in more detail in your Watkins textbook: Setting up Fog Effects and a

More information

MicroStrategy Academic Program

MicroStrategy Academic Program MicroStrategy Academic Program Creating a center of excellence for enterprise analytics and mobility. HOW TO DEPLOY ENTERPRISE ANALYTICS AND MOBILITY ON AWS APPROXIMATE TIME NEEDED: 1 HOUR In this workshop,

More information

Getting Started: Log on or Create Account

Getting Started: Log on or Create Account Getting Started: Log on or Create Account Sign into CD To begin, on the right side of the top menu below the Search box, click Log In. The Log in to CD page appears. This page allows you to create an account,

More information