Informed Domino Consolidation for Microsoft Migration
01:41:34 MIN Whether you’re moving to another technology platform or simply thinking about upgrading your current one, a thorough evaluation of what you have is a must in order to make an informed decision. In this webinar, you’ll see how to assess what your environment contains, as well as how to consolidate applications, replicas, and usage and template information. You’ll even see a real-time, application data migration example
Whether you’re moving to another technology platform or simply thinking about upgrading your current one, a thorough evaluation of what you have is a must in order to make an informed decision. In this webinar, you’ll see how to assess what your environment contains, as well as how to consolidate applications, replicas, and usage and template information. You’ll even see a real-time, application data migration example
Throughout the webinar, you will see various scripts. We have included them below so you can apply what you learn directly to your own environment. For your convenience, comments have been included as explanations of key functionalities. This script will automatically scan for any folders and then use a formula to calculate how many documents belong to it. All findings will be reported to an Excel file. This can be run to process a single database, or multiple databases.
This script will automatically search a mail file for enabled mail-rule documents. It will then employ formulas to display a custom list of items to explain what each mail rule does. This can be run to process a single database, or multiple databases.
This script will search for and analyze archive profiles process and then employ formulas to display the values for a custom set of items, obtaining helpful information regarding those profiles. The findings will then be exported to an Excel file. This can be run to process a single database, or multiple databases.
This script will automatically search for all mail-related profiles (such as archive profiles, calendar profile, etc.) and then export all their information to an Excel file. This can be run to process a single database, or multiple databases.
This script will automatically search for any forms and subforms, display a selection of information related to these designs, and then export all the information into an Excel file. This can be run to process a single database, or multiple databases.
Introduction (1:45) Assess and clean up your environment (7:00) Prepare for mail migration. (29:10) Prepare for application migration. (51:40) Get your data ready for migration. (1:22:25)
Informed Domino Consolidation for Microsoft Migration
Ensure success through all migration phases, from planning to the procedure itself
Ensure success through all migration phases, from planning to the procedure itself
Whip your environment into shape with these scripts
Scan all folders in a database and calculate how many documents belong to it.
<?xml version="1.0" encoding="UTF-8"?>
<ytriaAutomation Application="scanEZ" ApplicationVersion="16.5" Version="1.0">
<if target="var" test="{%ListSize%}" mode="NotEquals" Value="">
<ExecuteListAction></ExecuteListAction>
</if>
<!--The following three lines let you specify the name and value of the item to be added,
as well as the document category whose documents the item will be deployed to.
Simply enter your desired values where indicated.-->
<SetVar ItemToAdd="Enter your value here"></SetVar>
<SetVar ItemValue="Enter your value here"></SetVar>
<SetVar DocumentCategory="Enter your value here"></SetVar>
<!--The following Expand/Focus sequence will allow the focus to be placed on the documents
within the selection tree category specified.-->
<Expand target="tree" category="Documents" type="{%DocumentCategory%}"></Expand>
<focus target="tree" category="Documents" type="{%DocumentCategory%}"></focus>
<!--The CreateItem script block is where we define the item to be added. If the item already
exists, it will not create a new one, instead it will skip the document and move on to the
next. In this particular case, the item added will be a Text item that will use the name
and value defined in the beginning of the script.-->
<CreateItem OnExisting="skip">
<SetParam field="TypeList" value="Text"></SetParam>
<SetParam field="FieldName" value="{%ItemToAdd%}"></SetParam>
<SetParam field="FieldValue" value="{%ItemValue%}"></SetParam>
<SetParam field="IsProtected" value="true"></SetParam>
</CreateItem>
</ytriaAutomation>
Find all enabled mail rules in mail files and report your findings.
<ytriaAutomation Application="scanEZ" ApplicationVersion="16.5">
<!--This will set the script's behavior when encountering an error. In this case, it will continue.-->
<onerror continue="true" ></onerror>
<!--Use the following variables to adapt the script to your own needs.-->
<!--TO SET :: this is THE FORMULA that will be used. Note that the formula follows the general XML rules of "escaping". -->
<SetVar vSearchFormula="SELECT Form="Mailrule"&Enable="1""></SetVar>
<!--TO SET :: This is the item to use as a main "key" for the report.-->
<SetVar vItemToUseAsKey="ActionList"></SetVar>
<!--This script block will perform the search for the documents using the formula set earlier.-->
<SearchBy Type="Formula">
<Setparam Field="SetFormula" Value="{%vSearchFormula%}"></Setparam>
<Setparam Field="SearchDocuments" Value="true"></Setparam>
<Setparam Field="SearchDesigns" Value="false"></Setparam>
<Setparam Field="PutSearchInSelCreateName" Value="All Enabled Mailrules"></Setparam>
</SearchBy>
<!--The following Focus line will place the focus on the newly created My Selection folder named "All Docs Found".-->
<Focus Target="Tree" Category="All Enabled Mailrules"></Focus>
<!--The following If condition declares that If the My Selection exists (i.e. something has been found),
the nested child actions will be carried out.-->
<if Target="Tree" Test="FocusRoot" Mode="NotEquals" Value="True">
<!--This will set the displayed document titles to the current database name, for reference in the resulting report.-->
<ChangeDocumentTitle>
<Setparam Field="TitleOptionType" Value="Formula"></Setparam>
<Setparam Field="TitleOptionFormula" Value="@Implode(@DbName;"!!")"></Setparam>
</ChangeDocumentTitle>
<!-- This will enact a Diff operation on the documents within the My Selection folder and select the main "key"
item by the specified name.-->
<Diff></Diff>
<Select target="DiffGrid" Lines="ByValue">
<SetParam ColumnID="AI2" Value="{%vItemToUseAsKey%}"></SetParam>
</Select>
<!-- This opens the Values grid to display the values for the "key" item defined earlier.-->
<Values>
<!-- This will remove the Type column within the Values grid (for a more concise look).-->
<ShowTypeColumns value="false"></ShowTypeColumns>
<!-- And this adds a custom column where the UNID will be displayed.-->
<AddCustomColumn name="UNID">
<SetParam field="TitleOptionType" Value="System"></SetParam>
<SetParam field="TitleOptionSystem" Value="UNID"></SetParam>
</AddCustomColumn>
<Evaluate></Evaluate>
<!--Finally, the results of the search will be exported into a report titled report_DeleteDoc.xlsx.
If this script is to be executed as part of a Loop/List, the newly found information will be
exported and appended to the same file.-->
<Export>
<SetParam field="FilePath" value="report_Mailrules.xlsx"></SetParam>
<SetParam field="SelectedRowsOnly" value="false"></SetParam>
<SetParam field="ExportType" value="Excel"></SetParam>
<SetParam field="Mode" value="AppendRows"></SetParam>
<SetParam field="ExcelSheetName" value="MAILRULES FOUND"></SetParam>
<SetParam field="OpenFileOnceGenerated" value="False"></SetParam>
</Export>
</Values>
</if>
</ytriaAutomation>
Search databases for archive profiles and report your findings.
<ytriaAutomation Application="scanEZ" ApplicationVersion="16.5">
<!--This will set the script's behavior when encountering an error. In this case, it will continue.-->
<onerror continue="true"></onerror>
<if target="var" test="{%ListSize%}" mode="NotEquals" Value="">
<!--This will allow the script to run if called from databaseEZ by using the option 'Execute Automation File On...'-->
<ExecuteListAction></ExecuteListAction>
</if>
<!--The script uses Loop and List actions. The Loop itself can be modified to fit your needs.-->
<!--TO SET: these variables define the profile you are looking for.
You may change the values to suit your needs and even add in more lines to the list keeping the format shown.
Note: Personal profile documents are arranged in a level further down in scanEZ's selection tree and must
be selected in a different way.-->
<List name="allProfileName" Action="SetVar" vProfileName="archive profile"></List>
<List name="allProfileName" Action="SetVar" vProfileName="default for expired"></List>
<List name="allProfileName" Action="SetVar" vProfileName="default for last modified"></List>
<!--This line will expand the Profile Documents section of the selection tree.-->
<Expand target="tree" Category="Profile Documents"></Expand>
<!--Beginning here, the rest of the script is the Loop setup.
All actions within this Loop section will be carried out in turn on all the lines in the List section (above)
that use the specified name. The Loop is set to call on the List name "allProfileName".-->
<Loop list="allProfileName" OnError="Next">
<!--This next action is mandatory in order for the action within the List lines referenced to be carried out.
In the case of the lines in the List "allProfileName", the SetVar action is to be executed.-->
<ExecuteListAction></ExecuteListAction>
<!--Then, everything in the tree will be deselected.-->
<UnSelect Target="tree" name="All"></UnSelect>
<!--This will place the focus on the Profile Documents category so that the SelectByRegex action can be used
on the first-level entries within.-->
<Focus Target="Tree" Category="Profile Documents"></Focus>
<!--The following line will enact a regex search on the first-level profile documents to find any profile
documents that contain the name provided.-->
<SelectByRegex Regex="{%vProfileName%}"></SelectByRegex>
<!--As stated early on in this script, Personal Profile documents are arranged at a deeper level in the
selection tree. If you want to be able to search through both of these levels at the same time to find
both the first level profile documents and personal profile documents with this name use this line in place
of the regex search above <Select Target="Tree" Category="Profile Documents" Type="{%vProfileName%}"></Select> -->
<!--This will create a new My Selection folder containing the found documents.
By doing this the displayed titles can be set to your desired form (titles cannot be set within the
Profile Documents category).-->
<MySelection>
<Setparam Field="MySelectionName" Value="Selection of {%vProfileName%}"></Setparam>
<Setparam Field="TitleOptionType" Value="Formula"></Setparam>
<Setparam Field="TitleOptionFormula" Value="@Implode(@DbName;"!!")"></Setparam>
</MySelection>
<!--Then the focus is placed on the newly created My Selection folder.-->
<Focus Target="Tree" Category="Selection of {%vProfileName%}"></Focus>
<!--The following If condition declares that if the My Selection does exist,
(meaning that something has been found) the nested child actions will be enacted.-->
<if Target="Tree" Test="FocusRoot" Mode="NotEquals" Value="True">
<!--A Values function is carried out on the focused My Selection folder.-->
<Values>
<!--All items within the Values grid are selected.-->
<SetParam Target="SelectDocumentItems" Field="All" value="true"></SetParam>
<!--And finally all the findings are exported to an Excel file; the results for each profile name
will be placed on its own sheet within the file. The file will be saved in the same location
as the this Automation file.-->
<Export>
<SetParam field="FilePath" value="archivereport.xlsx"></SetParam>
<SetParam field="SelectedRowsOnly" value="false"></SetParam>
<SetParam field="ExportType" value="Excel"></SetParam>
<SetParam field="Mode" value="AppendRows"></SetParam>
<SetParam field="ExcelSheetName" value="{%vProfileName%}"></SetParam>
<SetParam field="OpenFileOnceGenerated" value="False"></SetParam>
</Export>
</Values>
</if>
</Loop>
</ytriaAutomation>
Search for ALL mail-related profiles and report your findings.
<ytriaAutomation Application="scanEZ" ApplicationVersion="16.5">
<!--This will set the script's behavior when encountering an error. In this case, it will continue.-->
<onerror continue="true"></onerror>
<if target="var" test="{%ListSize%}" mode="NotEquals" Value="">
<!--This will allow the script to run if called from databaseEZ by using the option 'Execute Automation File On...'-->
<ExecuteListAction></ExecuteListAction>
</if>
<!--The script uses Loop and List actions. The Loop itself can be modified to fit your needs.-->
<!--TO SET: these variables define the profile you are looking for.
You may change the values to suit your needs and even add in more lines to the list keeping the format shown.
Note: Personal profile documents are arranged in a level further down in scanEZ's selection tree and must
be selected in a different way.-->
<List name="allProfileName" Action="SetVar" vProfileName="CalendarProfile"></List>
<List name="allProfileName" Action="SetVar" vProfileName="archive profile"></List>
<List name="allProfileName" Action="SetVar" vProfileName="archive database profile"></List>
<List name="allProfileName" Action="SetVar" vProfileName="default for last modified"></List>
<List name="allProfileName" Action="SetVar" vProfileName="default for expired"></List>
<!--This line will expand the Profile Documents section of the selection tree.-->
<Expand target="tree" Category="Profile Documents"></Expand>
<!--Beginning here, the rest of the script is the Loop setup.
All actions within this Loop section will be carried out in turn on all the lines in the List section (above)
that use the specified name. The Loop is set to call on the List name "allProfileName".-->
<Loop list="allProfileName" OnError="Next">
<!--This next action is mandatory in order for the action within the List lines referenced to be carried out.
In the case of the lines in the List "allProfileName", the SetVar action is to be executed.-->
<ExecuteListAction></ExecuteListAction>
<!--Then, everything in the tree will be deselected.-->
<UnSelect Target="tree" name="All"></UnSelect>
<!--This will place the focus on the Profile Documents category so that the SelectByRegex action can be used
on the first-level entries within.-->
<Focus Target="Tree" Category="Profile Documents"></Focus>
<!--The following line will enact a regex search on the first-level profile documents to find any profile
documents that contain the name provided.-->
<SelectByRegex Regex="{%vProfileName%}"></SelectByRegex>
<!--As stated early on in this script, Personal Profile documents are arranged at a deeper level in the
selection tree. If you want to be able to search through both of these levels at the same time to find
both the first level profile documents and personal profile documents with this name use this line in place
of the regex search above <Select Target="Tree" Category="Profile Documents" Type="{%vProfileName%}"></Select> -->
<!--This will create a new My Selection folder containing the found documents.
By doing this the displayed titles can be set to your desired form (titles cannot be set within the
Profile Documents category).-->
<MySelection>
<Setparam Field="MySelectionName" Value="Selection of {%vProfileName%}"></Setparam>
<Setparam Field="TitleOptionType" Value="Formula"></Setparam>
<Setparam Field="TitleOptionFormula" Value="@Implode(@DbName;"!!")"></Setparam>
</MySelection>
<!--Then the focus is placed on the newly created My Selection folder.-->
<Focus Target="Tree" Category="Selection of {%vProfileName%}"></Focus>
<!--The following If condition declares that if the My Selection does exist,
(meaning that something has been found) the nested child actions will be enacted.-->
<if Target="Tree" Test="FocusRoot" Mode="NotEquals" Value="True">
<!--A Values function is carried out on the focused My Selection folder.-->
<Values>
<!--All items within the Values grid are selected.-->
<SetParam Target="SelectDocumentItems" Field="All" value="true"></SetParam>
<!--And finally all the findings are exported to an Excel file; the results for each profile name
will be placed on its own sheet within the file. The file will be saved in the same location
as the this Automation file.-->
<Export>
<SetParam field="FilePath" value="scanEZ_Profiles_Report.xlsx"></SetParam>
<SetParam field="SelectedRowsOnly" value="false"></SetParam>
<SetParam field="ExportType" value="Excel"></SetParam>
<SetParam field="Mode" value="AppendRows"></SetParam>
<SetParam field="ExcelSheetName" value="{%vProfileName%}"></SetParam>
<SetParam field="OpenFileOnceGenerated" value="False"></SetParam>
</Export>
</Values>
</if>
</Loop>
</ytriaAutomation>
Scan a database for any forms and subforms and report your findings.
<ytriaAutomation Application="scanEZ" ApplicationVersion="16.5">
<!--This will set the script's behavior when encountering an error. In this case, it will continue.-->
<onerror continue="true" ></onerror>
<!--The following lines define the Action to take, and thus the variables to set. This will happen in two
batches. The first line sets one set of variables, the second sets another. This allows the Loop to concentrate
on one line at a time.-->
<list name="NoteList" Action="setVar" NoteCat="Designs" NoteType="Forms"></list>
<list name="NoteList" Action="setVar" NoteCat="Designs" NoteType="SubForms"></list>
<!--The following Loop, will iterate over the lines of the List set above. As each set of variables is set
the Loop will then select the tree nodes in the design tree that match the conditions.-->
<loop list="NoteList" OnError="Next">
<ExecuteListAction></ExecuteListAction>
<UnSelect Target="tree" name="All"></UnSelect>
<Select target="tree" category="{%NoteCat%}" type="{%NoteType%}"></Select>
<!--Anything that is selected in the tree will then be placed into virtual My Selection folders for further processing.-->
<MySelection>
<Setparam Field="MySelectionName" Value="Selection of {%NoteType%}"></Setparam>
</MySelection>
<!--If a My Selection is created, it will be selected.-->
<Focus Target="Tree" Category="Selection of {%NoteType%}"></Focus>
<if Target="Tree" Test="FocusRoot" Mode="NotEquals" Value="True">
<!--The following block will enact a Values operation on contents of the My Selection folder. The item $Title will be added
as will five additional columns that will display database path, the number of fields, a list of fields, and a list of any
subforms.-->
<Values>
<ShowTypeColumns value="false"></ShowTypeColumns>
<SetParam Target="SelectDocumentItems" Field="AddItem" value="$Title"></SetParam>
<AddCustomColumn name="Database Path">
<SetParam field="TitleOptionType" Value="Formula"></SetParam>
<SetParam field="TitleOptionFormula" Value="@Implode(@DbName;"!!")"></SetParam>
</AddCustomColumn>
<AddCustomColumn name="Number of Fields">
<SetParam field="TitleOptionType" Value="Formula"></SetParam>
<SetParam field="TitleOptionFormula" Value="@Elements($Fields)"></SetParam>
</AddCustomColumn>
<AddCustomColumn name="Number of Subforms">
<SetParam field="TitleOptionType" Value="Formula"></SetParam>
<SetParam field="TitleOptionFormula" Value="@Elements($Subforms)"></SetParam>
</AddCustomColumn>
<AddCustomColumn name="List of fields">
<SetParam field="TitleOptionType" Value="Formula"></SetParam>
<SetParam field="TitleOptionFormula" Value="@Implode($Fields;", ")"></SetParam>
</AddCustomColumn>
<AddCustomColumn name="List of subforms if any">
<SetParam field="TitleOptionType" Value="Formula"></SetParam>
<SetParam field="TitleOptionFormula" Value="@Implode($Subforms;", ")"></SetParam>
</AddCustomColumn>
<Evaluate></Evaluate>
<!--Any findings will be exported to an Excel file. The findings for each of the two different note
types (forms and subforms) will be placed in a separate worksheet within the same file.-->
<Export>
<SetParam field="FilePath" value="formssubforms.xlsx"></SetParam>
<SetParam field="SelectedRowsOnly" value="false"></SetParam>
<SetParam field="ExportType" value="Excel"></SetParam>
<SetParam field="Mode" value="AppendRows"></SetParam>
<SetParam field="ExcelSheetName" value="{%NoteType%}"></SetParam>
<SetParam field="OpenFileOnceGenerated" value="False"></SetParam>
</Export>
</Values>
</if>
</loop>
</ytriaAutomation>
Time-Stamped outline
EZ Suite:
Try it now!
See just how much faster and more fluid your HCL Notes and Domino administration and development can be.
[Deutsch] System Audit und Health-Check Webinar
01:31:23 MIN
[Deutsch] System Audit und Health-Check Webinar
Folgende sind einige Themen welche wir zeigen werden. Da dieser Webcast live gehalten wird haben Sie die Möglichkeit mittels Chat auch Fragen zu stellen.
EZ Suite:
Try it now!
See just how much faster and more fluid your HCL Notes and Domino administration and development can be.
databaseEZ masterclass
01:14:30 MIN
Manage your applications’ properties and settings (7:05) Note that the number of databases selected may affect server function because each command line will create a separate execution threa Perform server-wide application usage audits (50:50) Retrieve View and Folder index sizes en-masse (57:10) Employ various built-in tools for better database management (1:01:10) Extend your tasks scope through automation (1:05:10)
databaseEZ masterclass
How to raise the bar for your application maintenance
And more…Time-Stamped outline
and running a macro (1:06:00)
EZ Suite:
Try it now!
See just how much faster and more fluid your HCL Notes and Domino administration and development can be.
A walkthrough of what is new in EZ Suite 16.5
00:56:24 MIN EZ Suite version 16.5 greatly increases the scope of what can be done through EZ Suite’s powerful automation capabilities and brings in many new performance enhancing functions and preferences. In this webcast, we’ll walk you through the many new possibilities in version 16.5.
EZ Suite version 16.5 greatly increases the scope of what can be done through EZ Suite’s powerful automation capabilities and brings in many new performance enhancing functions and preferences. In this webcast, we’ll walk you through the many new possibilities in version 16.5. Catch a glimpse of some of the great new automation abilities: See how the power and versatility of the flexYgrid continues to expand. Additionally, we’ll look at how you can put some of the new capabilities to work for real:
Here is what the webcast will cover. (1:30) What’s new in automation? (4:00) What improvements have come to the flexYgrid? (32:31) What are the product specific improvements? (41:15)
A walkthrough of what is new in EZ Suite 16.5
Learn all about the new possibilities EZ Suite 16.5 holds for your administration and development
Learn all about the new possibilities EZ Suite 16.5 holds for your administration and development
Time-Stamped outline
EZ Suite:
Try it now!
See just how much faster and more fluid your HCL Notes and Domino administration and development can be.
scanEZ masterclass II
01:06:04 MIN Within scanEZ brims over 100 tools to help you better manage the content of your Notes databases. But with so many functions available, even more advanced users can end up getting a bit lost from time to time. In this 45 minute webinar, we’ll be focusing on scanEZ’s flagship features—the ones that keep scanEZ a daily staple in the majority of our customers’ workflow—the document management features.
Within scanEZ brims over 100 tools to help you better manage the content of your Notes databases. But with so many functions available, even more advanced users can end up getting a bit lost from time to time. In this 45 minute webinar, we’ll be focusing on scanEZ’s flagship features—the ones that keep scanEZ a daily staple in the majority of our customers’ workflow—the document management features. Feel like you’re only using a small percentage of scanEZ’s capabilities? Do you consider yourself an advanced user? No matter what level of experience you have with scanEZ, you will take away new information and methods that will make your daily tasks easier.
Overview of scanEZ’s basic document management features (3:30) Document analysis (16:40) Modifying documents in bulk (30:30)
scanEZ Masterclass II
Mastering scanEZ’s various tools for better management of designs, deletion stubs, replication & more
Mastering scanEZ’s various tools for better management of designs, deletion stubs, replication & more
Time-Stamped outline
EZ Suite:
Try it now!
See just how much faster and more fluid your HCL Notes and Domino administration and development can be.
scanEZ Masterclass I
00:49:44 MIN Within scanEZ brims over 100 tools to help you better manage the content of your Notes databases. But with so many functions available, even more advanced users can end up getting a bit lost from time to time. In this 45 minute webinar, we’ll be focusing on scanEZ’s flagship features—the ones that keep scanEZ a daily staple in the majority of our customers’ workflow—the document management features.
Within scanEZ brims over 100 tools to help you better manage the content of your Notes databases. But with so many functions available, even more advanced users can end up getting a bit lost from time to time. In this 45 minute webinar, we’ll be focusing on scanEZ’s flagship features—the ones that keep scanEZ a daily staple in the majority of our customers’ workflow—the document management features. Feel like you’re only using a small percentage of scanEZ’s capabilities? Do you consider yourself an advanced user? No matter what level of experience you have with scanEZ, you will take away new information and methods that will make your daily tasks easier.
Overview of scanEZ’s basic document management features (3:30) Document analysis (16:40) Modifying documents in bulk (30:30)
scanEZ Masterclass I
How to master scanEZ’s core document management capabilities
How to master scanEZ’s core document management capabilities
Time-Stamped outline
EZ Suite:
Try it now!
See just how much faster and more fluid your HCL Notes and Domino administration and development can be.
What's new in EZ Suite 16?
01:18:34 MIN A new era for Ytria’s EZ Suite has begun with EZ Suite 16. Offering advancements that range from the introduction of the flexYgrid—a core engine and interface rebuild that brings you better processing speed and loading capacity, as well as built-in analysis tools—to various product-specific function additions and enhancements. In this webcast we’ll walk you through an overview of EZ Suite 16’s powerful new features and give you a look at how they can solve some of the toughest admin and dev dilemmas. A new era for Ytria’s EZ Suite has begun with EZ Suite 16. Offering advancements that range from the introduction of the flexYgrid—a core engine and interface rebuild that brings you better processing speed and loading capacity, as well as built-in analysis tools—to various product-specific function additions and enhancements, EZ Suite 16 is the most significant leap forward in the history of Ytria’s essential administration and development toolkit. In this webcast we’ll walk you through an overview of EZ Suite 16’s powerful new features and give you a look at how they can solve some of the toughest admin and dev dilemmas. Agenda (1:30) Overview of EZSuite 16 and the flexYgrid (3:43) Product specific features and improvements (46:51) scanEZ (46:51) aclEZ (57:45) databaseEZ (1:04:55) viewEZ (1:07:00) Other products (1:08:04) Automation (1:12:15)
What's new in EZ Suite 16?
The most significant leap forward in the history of EZ Suite
The most significant leap forward in the history of EZ Suite
Time-Stamped outline
EZ Suite:
Try it now!
See just how much faster and more fluid your HCL Notes and Domino administration and development can be.
What's new in EZ Suite 12.1?
01:13:16 MIN Building upon the already impressive list of features included in the v12 release, EZ Suite 12.1 offers you a multitude of feature additions and performance upgrades* covering the entire product line. In this webcast, we take you through some of the most important improvements that you will find in version 12.1.
Building upon the already impressive list of features included in the v12 release, EZ Suite 12.1 offers you a multitude of feature additions and performance upgrades* covering the entire product line. In this webcast, we take you through some of the most important improvements that you will find in version 12.1. From overall EZ Suite improvements such as better ID switching and new Grid Export options, to a multitude of product-specific enhancements, you’ll love EZ Suite 12.1. Check it out!
Agenda & Introduction (0:00) New and improved in all the tools (2:30) Product specific improvements (13:49) aclEZ (14:00) databaseEZ (19:56) consoleEZ (27:07) scanEZ (33:17) Recap (39:44) Next release – Major improvements on the horizon (41:00) * Most feature additions and improvements are only available in the full version software.
What's new in EZ Suite 12.1?
A major software release webcast
A major software release webcast
Time-Stamped outline
Try EZ Suite today:
Free for 7 days
No credit card required. Install it locally.
Download. Install. Register. Work.
It’s that easy.
Application development made easy with EZ Suite tools
01:04:43 MIN This webinar is specifically geared towards application development on IBM Notes and Domino. We’ll show you how to go about your tasks more accurately and faster using an easier approach to investigating and working with your data, and by going beyond the way you usually work with views, folders, action bars, agents, etc. You’ll come away with everything you’ll need to fast-track your application development processes.
This webinar is specifically geared towards application development on IBM Notes and Domino. We’ll show you how to go about your tasks more accurately and faster using an easier approach to investigating and working with your data, and by going beyond the way you usually work with views, folders, action bars, agents, etc. You’ll come away with everything you’ll need to fast-track your application development processes.
The EZ Suite Dev comprises many tools that work together to streamline your development of IBM Notes and Domino, web and XPages applications. In this presentation, we’ll demonstrate through various practical examples why these tools are indispensable in helping you accelerate development and improve support of existing applications. Learn advanced document and design management techniques* using scanEZ
Application development made easy with EZ Suite tools
Webcast for application development and support
Webcast for application development and support
Presentation overview
EZ Suite:
Try it now!
See just how much faster and more fluid your HCL Notes and Domino administration and development can be.