SlideShare a Scribd company logo
1 of 45
@LotusEvangelist keith@b2bwhisperer.com
DominoCamp 2021 – June 21 & 22
Hacking
dminis ra ors
Keith Brooks
CEO, B2B Whisperer
HCLAmbassador
@LotusEvangelist 1
Tuesday June 22, 2021 - 12:30 – 14:00
@LotusEvangelist keith@b2bwhisperer.com
DominoCamp 2021 – June 21 & 22
My Path to Admincamp
• Notes Administrator since 1992
• Domino Administrator since Beta in 1996
• LotusEvangelist blog since 2007 (https://blog.vanessabrooks.com)
• Co-Author Quickr Administration Book 2011 + A few IBM Redbooks
• Certificate Exams Writer (Domino, ST, Social) 2012-2014
• IBM Redbooks Thought Leader 2012-2014
• IBM Champion 2013 – 2019
• HCL Ambassador 2019-2021
• Presented at Engage, Lotusphere, IBM Connect, Connected, Think, SUTOL,
Let’sConnect, SOCCNX, The View Admin, MWLUG, NCUG + Many others
• Author of 2020’s Daily Posting of #HCLAmbassadorTIPS
• Openntf Admin Scripts Author
And my 1st AdminCamp!
2
@LotusEvangelist keith@b2bwhisperer.com
DominoCamp 2021 – June 21 & 22
Determination vs Experienced Management 3
@LotusEvangelist keith@b2bwhisperer.com
DominoCamp 2021 – June 21 & 22
Today’s
Missions
1. R12 Notes Clients Can Go Faster
2. Create a Forwarding Address in the Person
Document
3. Converting a Name to an Email Addresses
4. Converting Emails to Hierarchical Names
5. Time Stone Turns Back the Clock
6. Update Your Directory with a Snap
7. Small Things - Sorting your Views
8. Private Views - People by Mail Server
9. Private Views - People by Sametime Servers
10. Replace Group Owners
11. Need a Remote Server Console?
12. Links 4
@LotusEvangelist keith@b2bwhisperer.com
DominoCamp 2021 – June 21 & 22
R12 Improved Network Performance for Notes Clients
Beginning in HCL Notes 12, use the notes.ini setting
NetworkSpeedInMbps to boost network performance of
Notes clients(Windows & Macs) when network speed drops
below a specified level.
• NetworkSpeedInMbps=value, wherevalue is the network
speed in megabytes per second (Mbps) below which
network performance will be boosted.
• For example, to boost performance when the network
speed falls below 8 Mbps, specify NetworkSpeedInMbps=8
5
@LotusEvangelist keith@b2bwhisperer.com
DominoCamp 2021 – June 21 & 22
Create a Forwarding Address in a Person
Document Based on an Email Address
Very valuable, especially when doing domain changes, email
migrations or corporate mergers.
The important piece, which people forget, is handling
when the syntax is caps or lower case, this solves that too.
6/22/2021 6
@LotusEvangelist keith@b2bwhisperer.com
DominoCamp 2021 – June 21 & 22
Create a
Forwarding
Address in a
Person
Document
Based on an
Email
Address
7
Check Your work. If you have anything wrong, edit it again
Click On Action from the Top Menu, and Click the Agent
Save Your agent
Edit The newname.com to the new domain
Edit The existingdomain.com to your domain
Copy Then paste in the code from the next slide
Select Formula
Give The agent a name and a description
Click On Agent
From The NAB top menu, click on Create
@LotusEvangelist keith@b2bwhisperer.com
DominoCamp 2021 – June 21 & 22
Forwarding Address Code
8
SELECT Form = "Person";
@If(
InternetAddress=""; "";
@Do(
addr := @LowerCase(InternetAddress);
tmp := @ReplaceSubstring(addr;
"@existingdomain.com";"@newname.com");
@SetField("MailAddress"; tmp)
)
)
@LotusEvangelist keith@b2bwhisperer.com
DominoCamp 2021 – June 21 & 22
Simple Demo
6/22/2021 9
@LotusEvangelist keith@b2bwhisperer.com
DominoCamp 2021 – June 21 & 22
is Not Always Available to Help You
10
You may receive lists, names, data, emails and other “things“
that have not been cleaned up
Excel is your friend to
manipulate the data to
do your bidding.
Names =
First Name Last Name
ex: Keith Brooks
Emails =
Front @ Domain.Extension
ex: keith@keith.com
@LotusEvangelist keith@b2bwhisperer.com
DominoCamp 2021 – June 21 & 22
Jarvis #1 - Converting a Name to an Email Address
We need to send a survey out; can you help us…
This Requires:
1) Your PNAB
2) Access to your Company Names.nsf
3) A Generic Group Created under Groups in your PNAB
4) The Code from the 2nd slide after this one
5) The List of Names*
11
* = Excel may be needed to manipulate the list USUALLY
@LotusEvangelist keith@b2bwhisperer.com
DominoCamp 2021 – June 21 & 22
Jarvis #1
–
Converting a
Name to an
Email
Address –
Part 1
12
Select The Group and Click on the Icon created
Save The group
Test By copying the names into a new PNAB group
Click OK and Save Toolbar
Paste The Code from the next slide in as a Formula
Type Optional Help text to remember what this does
Type A Name
Click New then select Button
Select The Universal Toolbar to Customize
Click File-Preferences-Toolbar-Customize
@LotusEvangelist keith@b2bwhisperer.com
DominoCamp 2021 – June 21 & 22
Jarvis #1 – Part 2 – The Code
result := "";
realresult := "";
@For (n := 1;n <= @Elements (Members );n := n + 1;
look := @Trim ( @NameLookup ( [Exhaustive];Members [n ]; "InternetAddress" ) );
realresult := @Trim ( @Unique (realresult:look ) );
result := @Trim ( @Unique (result : @If (look= "";@Name ( [Abbreviate];Members [n ] );look ) ) ) );
FIELD comment := @Implode (result;@NewLine );
@Prompt ( [Ok]; "Members " + @Text ( @Elements (Members ) ); "Found " + @Text ( @Elements
(realresult ) )+ " emails for "+ @Text ( @Elements (Members ) )+ " Notes Names" )
13
OpenNTF Admin Scripts: https://openntf.org/XSnippets.nsf/snippet.xsp?id=looking-up-and-converting-a-list-of-notes-names-into-their-email-address
Thank you to @Notesensei
@LotusEvangelist
Show the Example
6/22/2021 14
@LotusEvangelist keith@b2bwhisperer.com
DominoCamp 2021 – June 21 & 22
Jarvis #2 - Converting Emails to Hierarchical Names
We need to create a group and fill it with people
can you help us…
This Requires:
1) Your PNAB
2) A Generic Group Created in your PNAB
3) The Code from the 2nd slide after this one set up as a Toolbar Icon
4) The List of Names*
15
https://booksetcstore.com/products/book-of-spells-notebook-a5-size
* = Excel may be needed to manipulate the list USUALLY
@LotusEvangelist keith@b2bwhisperer.com
DominoCamp 2021 – June 21 & 22
Jarvis #2
–
Converting
Emails to
Hierarchical
Names
–
Part 1
16
Select The Group and Click on the Icon created
Save The group
Test It by copying the emails into a new PNAB group
Click OK and Save Toolbar
Paste The Code from the next slide in as a Formula
Type Optional Help text to remember what this does
Type A Name
Click New then select Button
Select The Universal Toolbar to Customize
Click File-Preferences-Toolbar-Customize
@LotusEvangelist keith@b2bwhisperer.com
DominoCamp 2021 – June 21 & 22
Jarvis #2 – Part 2 - The Code
result := "";
@For(n := 1;n <= @Elements (Members );n := n + 1;
look := @Trim( @NameLookup ( [Exhaustive];Members [n ]; "FullName" ));
result := @Trim( @Unique (result : @If (look= "";@Name ([Abbreviate];Members[n ]);
@Name ([Abbreviate];look)))));
FIELD comment := @Implode (result;@NewLine );
@Prompt([Ok]; "Members " + @Text(@Elements (Members )); "Found " +
@Text(@Elements(result ))+ " Abbreviated Canonical Names for "+ @Text ( @Elements
(Members ) )+ " Users" )
17
OpenNTF Admin Scripts: https://openntf.org/XSnippets.nsf/snippet.xsp?id=converting-regular-common-name-lists-into-notes-hierarchical-names
@LotusEvangelist
Let’s see it in Action
6/22/2021 18
@LotusEvangelist keith@b2bwhisperer.com
DominoCamp 2021 – June 21 & 22
Time Stone
Turning
Back the
Clock
Your Admin ID expired and you are locked out!
1. Shut down the Domino server only
2. Change the date on the OS (Client side too!)
3. Rename log.nsf temporarily
4. Start server, login and recert your ID
5. Shut server down
6. Change Date
7. Delete temporary log.nsf
8. Rename original log.nsf back to log.nsf and
restart server
@LotusEvangelist keith@b2bwhisperer.com
DominoCamp 2021 – June 21 & 22
Update Your Directory with a
Quick way to update “things” in names.nsf ,
or any database with fields or folders.*
• Click Create then Click Agent from the Notes menu
• Provide a Name and Select Simple Actions
• Click OK to go into Designer
• Bottom Left corner you will see
• Click on the button and prepare to be amazed
20
Screenshots on next page
@LotusEvangelist keith@b2bwhisperer.com
DominoCamp 2021 – June 21 & 22
Update Your Directory Page 2
• Look at all those choices!
• Most common is Modify Field
• Select Modify Field from the drop down
• Select Replacing or Appending
• Select the field from the list and Click Add your change
• DONE! Go test it, of course before major usage! 21
@LotusEvangelist keith@b2bwhisperer.com
6/22/2021 22
Simple Action Demo
@LotusEvangelist keith@b2bwhisperer.com
DominoCamp 2021 – June 21 & 22
Small Things - Sorting Your Views
You know that awesome Rooms and Resources Database?
You can see my slides from yesterday’s class and download
the code parts here http://keithbrooks.com/download/resource.zip
How do you sort views? You know how to do it…right?
Just in case, let’s show you how.
23
@LotusEvangelist keith@b2bwhisperer.com
DominoCamp 2021 – June 21 & 22
Sorting Your Views - Part 2
• You will need a Designer Client
• From Notes, Open the database to get “fixed”
• Click on View- Design
• Under Views, Open the View to be Edited
• Right Click on the Column to be fixed
• Select Column Properties
• Choose a Sort, a Type and check the Blue Circle!
• Click on X to leave the mini Window
• Close the view or Press CTRL-S 24
https://www.lifehacker.com.au/2017/07/why-the-hogwarts-sorting-hat-is-a-bad-idea/
24
@LotusEvangelist keith@b2bwhisperer.com
6/22/2021 25
Demo Sorting
@LotusEvangelist keith@b2bwhisperer.com
DominoCamp 2021 – June 21 & 22
Top Secret Private Views
for NABs
26
• View with Some Formula Code
People by Mail Server
• View with Lotusscript
People by Sametime
Server
@LotusEvangelist keith@b2bwhisperer.com
DominoCamp 2021 – June 21 & 22
Elige Sapienter*
Private views in the NAB are not new, you do use them, right?
2 options to choose:
• Create view in the Names.nsf DB
• Create views in the Names.ntf Template
If you have a vanilla/standard template I suggest you choose
the 1st option to avoid losing your changes.
If you have a heavily edited template, I suggest the 2nd option as
you understand how to work with the changes.
27
*Choose Wisely
@LotusEvangelist keith@b2bwhisperer.com
DominoCamp 2021 – June 21 & 22
People by Mail Server 1 of 8
Click Save and Customize
Click OK
Use An existing view if you wish
Select A location or the default for it
Enter A name
Click on Create, then Click View
Open Names.nsf/ntf
28
@LotusEvangelist keith@b2bwhisperer.com
DominoCamp 2021 – June 21 & 22
People by Server 2 of 8
• Double Click on the E-Mail column and change the Title to
Mail File
• From the lower window Select Display Field, then Select
MailFile from the dropdown list.
• NOTE: You can ignore any warning message about lost data.
• The other columns should match their fields by name or
change them to match what you wish.
29
@LotusEvangelist keith@b2bwhisperer.com
DominoCamp 2021 – June 21 & 22
People by Server 3 of 8
• Click on the Name column and in the window below,
paste this FORMULA and Click the Check mark:
@Name([Abbreviate];@Subset(FullName; 1))
• Use a similar process for the Sametime column with this
code and rename it Sametime Server:
@Name([Abbreviate];SametimeServer)
30
@LotusEvangelist keith@b2bwhisperer.com
DominoCamp 2021 – June 21 & 22
People by Server 4 of 8
• We need a counting column. Your view should look similar to this
• Right Click on the Name column and Click Insert New Column
• Double Click on the blank column and Type “1” (include the “”) in
the formula window on the bottom.
• In the pop up window, change to the sorting
tab and set it like this, don’t forget the
Totals Field on the bottom ->
31
@LotusEvangelist keith@b2bwhisperer.com
DominoCamp 2021 – June 21 & 22
People by Server 5 of 8
• We need a Country(City) column. So your view should look like this
• Right Click on the Blank Name column and Click Insert New
Column
• Double Click on the blank column, Type either line:
@Name([Abbreviate]; OfficeCountry)
@Name([Abbreviate]; OfficeCity)
in the formula window on the bottom.
• In the pop up window, Click on the sorting
tab and set it like this ->
32
@LotusEvangelist keith@b2bwhisperer.com
DominoCamp 2021 – June 21 & 22
People by Server 6 of 8
33
• Right Click on the No Name/Blank column we just
created and Click Insert New Column
• Double Click on the blank column and Type:
@Name([Abbreviate];MailServer)
in the formula window on the bottom.
• In the pop-up window, Click on the Font
tab and set it like this <-
• Click on the sorting tab and set it like this ->
@LotusEvangelist keith@b2bwhisperer.com
DominoCamp 2021 – June 21 & 22
People By Server 7 of 8
• Check the Show Twistie when row is expandable
• Also set it for the OfficeCountry column
34
@LotusEvangelist keith@b2bwhisperer.com
DominoCamp 2021 – June 21 & 22
People by Server 8 of 8
If all went well, you will see something like this:
35
You can customize the columns to your liking
@LotusEvangelist keith@b2bwhisperer.com
DominoCamp 2021 – June 21 & 22
People by Sametime Server
Use the prior slides, but Slide 6 use this code:
@Name([Abbreviate];SametimeServer)
And Can Look Like This
36
@LotusEvangelist keith@b2bwhisperer.com
6/22/2021 37
Go to the NAB View
@LotusEvangelist keith@b2bwhisperer.com
DominoCamp 2021 – June 21 & 22
Replace Group Owners
New roles, people, teams, someone has to take ownership*
38
https://www.artofvfx.com/avengers-infinity-war-endgame-reel-by-cantina-creative/
@LotusEvangelist keith@b2bwhisperer.com
DominoCamp 2021 – June 21 & 22
6/22/2021 39
Sub Initialize
Dim workspace As New NotesUIWorkspace
Dim session As New NotesSession
Dim dbCurrent As NotesDatabase
Dim doc As NotesDocument
Dim vwGroups As NotesView
Dim uiview As NotesUIView
Dim dcSelected As NotesDocumentCollection
Dim varNewOwner As Variant
Set dbCurrent = session.CurrentDatabase
Set uiview = workspace.CurrentView
Set dcSelected = uiview.Documents
If dcSelected.Count = 0 Then
MessageBox "Please select at least one Group to change the Owner of."
Exit Sub
End If
varNewOwner = workspace.Prompt(PROMPT_OKCANCELEDIT, "New Group Owner", "Enter the name of the
new Group Owner", "")
If IsEmpty(varNewOwner) Then
Exit Sub
End If
Set doc = dcSelected.GetFirstDocument
While Not (doc Is Nothing)
Call doc.Replaceitemvalue("ListOwner", varNewOwner)
Call doc.Save(True, False)
Set doc = dcSelected.GetNextDocument(doc)
Wend
Print "Complete"
End Sub
Replace Group Owners Code
@LotusEvangelist keith@b2bwhisperer.com
Change an Owner
6/22/2021 40
@LotusEvangelist keith@b2bwhisperer.com
DominoCamp 2021 – June 21 & 22
Need a
Server
Console?
Old trick but still works!
• Click File -> Preferences -> Toolbar
-> Customize
• Click on New and select Button
• Under 'Button caption text', type a
name (Rconsole)
• Click on Command & Functions
button to select Commands
• Select AdminRemoteConsole
• Click on Paste button
• Click on OK
• Click Save Toolbar and click on OK.
@LotusEvangelist
Remote Console Demo
6/22/2021 42
@LotusEvangelist keith@b2bwhisperer.com
DominoCamp 2021 – June 21 & 22
Links You May Need
43
The Lotus Sandbox, Treasure Trove of scripts, database templates and History
http://domquery.info/samples/sandbox.nsf
/
The Nifty 50 Templates (R3/R4 era)
https://www.wissel.net/blog/2009/02/the-nifty-fifty-unearthed.html
Speed up your Clients (The Designer client edit)
https://tinkertry.com/speed-up-lotus-notes-8-5-3-or-ibm-notes-9-social-edition-under-windows-7-8-81-or-linux
All-in-one Admin Tool for agent-based troubleshooting & problem solving
https://bit.ly/3pZukfT
The OOO (Out of Office) Diagnostic Tool
See the above Admin Tool download for it
Download my RnR Template with all of the Views and Agents included
https://keithbrooks.com/download/resource.zip
@LotusEvangelist keith@b2bwhisperer.com
DominoCamp 2021 – June 21 & 22
Hacking
Administrators
AdminCamp
Review
• R12 Notes Clients Can Go Faster
• Create a Forwarding Address in the Person
Document
• Converting a Name to an Email Addresses
• Converting Emails to Hierarchical Names
• Time Stone Turns Back the Clock
• Update Your Directory with a Snap
• Small Things - Sorting your Views
• Private Views - People by Mail Server
• Private Views - People by Sametime Servers
• Replace Group Owners
• Need a Remote Server Console?
• Links
44
@LotusEvangelist keith@b2bwhisperer.com
DominoCamp 2021 – June 21 & 22
45
Thank You Questions?

More Related Content

What's hot

20 Need-to-Know Microsoft Teams Productivity Tips
20 Need-to-Know Microsoft Teams Productivity Tips20 Need-to-Know Microsoft Teams Productivity Tips
20 Need-to-Know Microsoft Teams Productivity TipsChristian Buckley
 
Socconx12 integrating ibm connections docs 2 and box
Socconx12 integrating ibm connections docs 2 and boxSocconx12 integrating ibm connections docs 2 and box
Socconx12 integrating ibm connections docs 2 and boxRoberto Boccadoro
 
White paper Lotus to Google: feature mapping
White paper Lotus to Google: feature mappingWhite paper Lotus to Google: feature mapping
White paper Lotus to Google: feature mappingRichard van Delft
 
Case Study: A Complex SharePoint Migration
Case Study: A Complex SharePoint MigrationCase Study: A Complex SharePoint Migration
Case Study: A Complex SharePoint MigrationMatthew J. Bailey , MCT
 
Christian buckley connection-betweenmetadatasocialandpersonalproductivity_sps...
Christian buckley connection-betweenmetadatasocialandpersonalproductivity_sps...Christian buckley connection-betweenmetadatasocialandpersonalproductivity_sps...
Christian buckley connection-betweenmetadatasocialandpersonalproductivity_sps...BIWUG
 
What it means to be fast in your industry
What it means to be fast in your industryWhat it means to be fast in your industry
What it means to be fast in your industryAlois Reitbauer
 
Custom theme creation websphere portal 8.5
Custom theme creation websphere portal 8.5Custom theme creation websphere portal 8.5
Custom theme creation websphere portal 8.5michele buccarello
 
IBM ConnectED, BP101: @IF("It\'s Really Good";"It MUST Be Notes";"Must Be Som...
IBM ConnectED, BP101: @IF("It\'s Really Good";"It MUST Be Notes";"Must Be Som...IBM ConnectED, BP101: @IF("It\'s Really Good";"It MUST Be Notes";"Must Be Som...
IBM ConnectED, BP101: @IF("It\'s Really Good";"It MUST Be Notes";"Must Be Som...Mat Newman
 
IBM Connect 2014 AD 501 - IBM Worklight for IBM Domino Developers
IBM Connect 2014 AD 501 - IBM Worklight for IBM Domino DevelopersIBM Connect 2014 AD 501 - IBM Worklight for IBM Domino Developers
IBM Connect 2014 AD 501 - IBM Worklight for IBM Domino DevelopersMat Newman
 

What's hot (9)

20 Need-to-Know Microsoft Teams Productivity Tips
20 Need-to-Know Microsoft Teams Productivity Tips20 Need-to-Know Microsoft Teams Productivity Tips
20 Need-to-Know Microsoft Teams Productivity Tips
 
Socconx12 integrating ibm connections docs 2 and box
Socconx12 integrating ibm connections docs 2 and boxSocconx12 integrating ibm connections docs 2 and box
Socconx12 integrating ibm connections docs 2 and box
 
White paper Lotus to Google: feature mapping
White paper Lotus to Google: feature mappingWhite paper Lotus to Google: feature mapping
White paper Lotus to Google: feature mapping
 
Case Study: A Complex SharePoint Migration
Case Study: A Complex SharePoint MigrationCase Study: A Complex SharePoint Migration
Case Study: A Complex SharePoint Migration
 
Christian buckley connection-betweenmetadatasocialandpersonalproductivity_sps...
Christian buckley connection-betweenmetadatasocialandpersonalproductivity_sps...Christian buckley connection-betweenmetadatasocialandpersonalproductivity_sps...
Christian buckley connection-betweenmetadatasocialandpersonalproductivity_sps...
 
What it means to be fast in your industry
What it means to be fast in your industryWhat it means to be fast in your industry
What it means to be fast in your industry
 
Custom theme creation websphere portal 8.5
Custom theme creation websphere portal 8.5Custom theme creation websphere portal 8.5
Custom theme creation websphere portal 8.5
 
IBM ConnectED, BP101: @IF("It\'s Really Good";"It MUST Be Notes";"Must Be Som...
IBM ConnectED, BP101: @IF("It\'s Really Good";"It MUST Be Notes";"Must Be Som...IBM ConnectED, BP101: @IF("It\'s Really Good";"It MUST Be Notes";"Must Be Som...
IBM ConnectED, BP101: @IF("It\'s Really Good";"It MUST Be Notes";"Must Be Som...
 
IBM Connect 2014 AD 501 - IBM Worklight for IBM Domino Developers
IBM Connect 2014 AD 501 - IBM Worklight for IBM Domino DevelopersIBM Connect 2014 AD 501 - IBM Worklight for IBM Domino Developers
IBM Connect 2014 AD 501 - IBM Worklight for IBM Domino Developers
 

Similar to Update Directory with a Snap

Evolutionary db development
Evolutionary db development Evolutionary db development
Evolutionary db development Open Party
 
Visio, Jude and rational rose
Visio, Jude and rational roseVisio, Jude and rational rose
Visio, Jude and rational roseramesh kumar
 
Database Management System - SQL beginner Training
Database Management System - SQL beginner Training Database Management System - SQL beginner Training
Database Management System - SQL beginner Training Moutasm Tamimi
 
Just the Facets, Ma'am
Just the Facets, Ma'amJust the Facets, Ma'am
Just the Facets, Ma'amTeamstudio
 
Magento 2 Community Project - Moving from LESS to SASS
Magento 2 Community Project - Moving from LESS to SASSMagento 2 Community Project - Moving from LESS to SASS
Magento 2 Community Project - Moving from LESS to SASSBartek Igielski
 
COM 211 PRESENTATION.pptx
COM 211 PRESENTATION.pptxCOM 211 PRESENTATION.pptx
COM 211 PRESENTATION.pptxAnasYunusa
 
Windows Forms For Beginners Part - 1
Windows Forms For Beginners Part - 1Windows Forms For Beginners Part - 1
Windows Forms For Beginners Part - 1Bhushan Mulmule
 
Wordcamp abq cf-cpt
Wordcamp abq cf-cptWordcamp abq cf-cpt
Wordcamp abq cf-cptmy easel
 
AD303 - Extreme Makeover: IBM Lotus Domino Application Edition
AD303 - Extreme Makeover: IBM Lotus Domino Application EditionAD303 - Extreme Makeover: IBM Lotus Domino Application Edition
AD303 - Extreme Makeover: IBM Lotus Domino Application EditionRay Bilyk
 
C A P P C A O N P O W E R P O I N T
C A P P C A  O N  P O W E R  P O I N TC A P P C A  O N  P O W E R  P O I N T
C A P P C A O N P O W E R P O I N Temanz3
 
Msk Computer Institute Lecture Slides
Msk Computer Institute Lecture SlidesMsk Computer Institute Lecture Slides
Msk Computer Institute Lecture SlidesSamuel Medeludo
 
Open ERP Version 7 Functional & Technical Overview
Open ERP Version 7 Functional & Technical OverviewOpen ERP Version 7 Functional & Technical Overview
Open ERP Version 7 Functional & Technical OverviewPragmatic Techsoft
 
Necessary Evils, Building Optimized CRUD Procedures
Necessary Evils, Building Optimized CRUD ProceduresNecessary Evils, Building Optimized CRUD Procedures
Necessary Evils, Building Optimized CRUD ProceduresJason Strate
 
Build Your Own Lightning Community in a Flash - part 2
Build Your Own Lightning Community in a Flash - part 2Build Your Own Lightning Community in a Flash - part 2
Build Your Own Lightning Community in a Flash - part 2YeurDreamin'
 
Magento 2 Best Practice MLUK17
Magento 2 Best Practice MLUK17Magento 2 Best Practice MLUK17
Magento 2 Best Practice MLUK17Brent W Peterson
 
Leveraging IBM Cognos TM1 for Merchandise Planning at Tractor Supply Company ...
Leveraging IBM Cognos TM1 for Merchandise Planning at Tractor Supply Company ...Leveraging IBM Cognos TM1 for Merchandise Planning at Tractor Supply Company ...
Leveraging IBM Cognos TM1 for Merchandise Planning at Tractor Supply Company ...QueBIT Consulting
 

Similar to Update Directory with a Snap (20)

Code Refactoring
Code RefactoringCode Refactoring
Code Refactoring
 
Evolutionary db development
Evolutionary db development Evolutionary db development
Evolutionary db development
 
Visio, Jude and rational rose
Visio, Jude and rational roseVisio, Jude and rational rose
Visio, Jude and rational rose
 
Database Management System - SQL beginner Training
Database Management System - SQL beginner Training Database Management System - SQL beginner Training
Database Management System - SQL beginner Training
 
Just the Facets, Ma'am
Just the Facets, Ma'amJust the Facets, Ma'am
Just the Facets, Ma'am
 
Magento 2 Community Project - Moving from LESS to SASS
Magento 2 Community Project - Moving from LESS to SASSMagento 2 Community Project - Moving from LESS to SASS
Magento 2 Community Project - Moving from LESS to SASS
 
Dreaweaver cs5
Dreaweaver cs5Dreaweaver cs5
Dreaweaver cs5
 
COM 211 PRESENTATION.pptx
COM 211 PRESENTATION.pptxCOM 211 PRESENTATION.pptx
COM 211 PRESENTATION.pptx
 
Windows Forms For Beginners Part - 1
Windows Forms For Beginners Part - 1Windows Forms For Beginners Part - 1
Windows Forms For Beginners Part - 1
 
SDWest2005Goetsch
SDWest2005GoetschSDWest2005Goetsch
SDWest2005Goetsch
 
Wordcamp abq cf-cpt
Wordcamp abq cf-cptWordcamp abq cf-cpt
Wordcamp abq cf-cpt
 
AD303 - Extreme Makeover: IBM Lotus Domino Application Edition
AD303 - Extreme Makeover: IBM Lotus Domino Application EditionAD303 - Extreme Makeover: IBM Lotus Domino Application Edition
AD303 - Extreme Makeover: IBM Lotus Domino Application Edition
 
Migrating from Magento 1 to Magento 2
Migrating from Magento 1 to Magento 2Migrating from Magento 1 to Magento 2
Migrating from Magento 1 to Magento 2
 
C A P P C A O N P O W E R P O I N T
C A P P C A  O N  P O W E R  P O I N TC A P P C A  O N  P O W E R  P O I N T
C A P P C A O N P O W E R P O I N T
 
Msk Computer Institute Lecture Slides
Msk Computer Institute Lecture SlidesMsk Computer Institute Lecture Slides
Msk Computer Institute Lecture Slides
 
Open ERP Version 7 Functional & Technical Overview
Open ERP Version 7 Functional & Technical OverviewOpen ERP Version 7 Functional & Technical Overview
Open ERP Version 7 Functional & Technical Overview
 
Necessary Evils, Building Optimized CRUD Procedures
Necessary Evils, Building Optimized CRUD ProceduresNecessary Evils, Building Optimized CRUD Procedures
Necessary Evils, Building Optimized CRUD Procedures
 
Build Your Own Lightning Community in a Flash - part 2
Build Your Own Lightning Community in a Flash - part 2Build Your Own Lightning Community in a Flash - part 2
Build Your Own Lightning Community in a Flash - part 2
 
Magento 2 Best Practice MLUK17
Magento 2 Best Practice MLUK17Magento 2 Best Practice MLUK17
Magento 2 Best Practice MLUK17
 
Leveraging IBM Cognos TM1 for Merchandise Planning at Tractor Supply Company ...
Leveraging IBM Cognos TM1 for Merchandise Planning at Tractor Supply Company ...Leveraging IBM Cognos TM1 for Merchandise Planning at Tractor Supply Company ...
Leveraging IBM Cognos TM1 for Merchandise Planning at Tractor Supply Company ...
 

More from Keith Brooks

Yes, It's Number One it's TOTP!
Yes, It's Number One it's TOTP!Yes, It's Number One it's TOTP!
Yes, It's Number One it's TOTP!Keith Brooks
 
Shoot me NOW! The Life and Death of an O365 Admin and User
Shoot me NOW! The Life and Death of an O365 Admin and UserShoot me NOW! The Life and Death of an O365 Admin and User
Shoot me NOW! The Life and Death of an O365 Admin and UserKeith Brooks
 
Decks Matter, And Other startup Font Tales
Decks Matter, And Other startup Font TalesDecks Matter, And Other startup Font Tales
Decks Matter, And Other startup Font TalesKeith Brooks
 
Why This Global Law Firm Does Not Miss Deadlines
Why This Global Law Firm Does Not Miss DeadlinesWhy This Global Law Firm Does Not Miss Deadlines
Why This Global Law Firm Does Not Miss DeadlinesKeith Brooks
 
Pointing Fingers? DDM to the Rescue
Pointing Fingers? DDM to the RescuePointing Fingers? DDM to the Rescue
Pointing Fingers? DDM to the RescueKeith Brooks
 
Breaking the Unwritten Rules to Help Your Users
Breaking the Unwritten Rules to Help Your UsersBreaking the Unwritten Rules to Help Your Users
Breaking the Unwritten Rules to Help Your UsersKeith Brooks
 
Presentation on Soft Skills, Hard Skills, Body Language and More
Presentation on Soft Skills, Hard Skills, Body Language and MorePresentation on Soft Skills, Hard Skills, Body Language and More
Presentation on Soft Skills, Hard Skills, Body Language and MoreKeith Brooks
 
Faster Translations Start With A Faster Computer
Faster Translations Start With A Faster ComputerFaster Translations Start With A Faster Computer
Faster Translations Start With A Faster ComputerKeith Brooks
 
One Firm's Wild Ride to The Cloud
One Firm's Wild Ride to The CloudOne Firm's Wild Ride to The Cloud
One Firm's Wild Ride to The CloudKeith Brooks
 
18+ Ways To Help Clients Love You
18+ Ways To Help Clients Love You18+ Ways To Help Clients Love You
18+ Ways To Help Clients Love YouKeith Brooks
 
What were you thinking? Worst Translation Practices
What were you thinking? Worst Translation PracticesWhat were you thinking? Worst Translation Practices
What were you thinking? Worst Translation PracticesKeith Brooks
 
My Dog Ate My Translation Assignment
My Dog Ate My Translation AssignmentMy Dog Ate My Translation Assignment
My Dog Ate My Translation AssignmentKeith Brooks
 
Domino Domain Monitoring, Letting Admins Sleep Later and Stay at Pubs Longer ...
Domino Domain Monitoring, Letting Admins Sleep Later and Stay at Pubs Longer ...Domino Domain Monitoring, Letting Admins Sleep Later and Stay at Pubs Longer ...
Domino Domain Monitoring, Letting Admins Sleep Later and Stay at Pubs Longer ...Keith Brooks
 
Quickr for Domino Administration: Qpconfig.xml, Notes.ini, Connections and You
Quickr for Domino Administration: Qpconfig.xml, Notes.ini, Connections and YouQuickr for Domino Administration: Qpconfig.xml, Notes.ini, Connections and You
Quickr for Domino Administration: Qpconfig.xml, Notes.ini, Connections and YouKeith Brooks
 
Email vs. Status Updates as presented at Social Connections VIII Event
Email vs. Status Updates as presented at Social Connections VIII EventEmail vs. Status Updates as presented at Social Connections VIII Event
Email vs. Status Updates as presented at Social Connections VIII EventKeith Brooks
 
Accountability rocks soccnx2
Accountability rocks soccnx2Accountability rocks soccnx2
Accountability rocks soccnx2Keith Brooks
 
JMP206 : Calling Home: Enabling the IBM Sametime Softphone in ST9
JMP206 : Calling Home: Enabling the IBM Sametime Softphone in ST9JMP206 : Calling Home: Enabling the IBM Sametime Softphone in ST9
JMP206 : Calling Home: Enabling the IBM Sametime Softphone in ST9Keith Brooks
 

More from Keith Brooks (20)

Yes, It's Number One it's TOTP!
Yes, It's Number One it's TOTP!Yes, It's Number One it's TOTP!
Yes, It's Number One it's TOTP!
 
Shoot me NOW! The Life and Death of an O365 Admin and User
Shoot me NOW! The Life and Death of an O365 Admin and UserShoot me NOW! The Life and Death of an O365 Admin and User
Shoot me NOW! The Life and Death of an O365 Admin and User
 
Decks Matter, And Other startup Font Tales
Decks Matter, And Other startup Font TalesDecks Matter, And Other startup Font Tales
Decks Matter, And Other startup Font Tales
 
Why This Global Law Firm Does Not Miss Deadlines
Why This Global Law Firm Does Not Miss DeadlinesWhy This Global Law Firm Does Not Miss Deadlines
Why This Global Law Firm Does Not Miss Deadlines
 
Shout IT Out loud
Shout IT Out loudShout IT Out loud
Shout IT Out loud
 
Pointing Fingers? DDM to the Rescue
Pointing Fingers? DDM to the RescuePointing Fingers? DDM to the Rescue
Pointing Fingers? DDM to the Rescue
 
Breaking the Unwritten Rules to Help Your Users
Breaking the Unwritten Rules to Help Your UsersBreaking the Unwritten Rules to Help Your Users
Breaking the Unwritten Rules to Help Your Users
 
Presentation on Soft Skills, Hard Skills, Body Language and More
Presentation on Soft Skills, Hard Skills, Body Language and MorePresentation on Soft Skills, Hard Skills, Body Language and More
Presentation on Soft Skills, Hard Skills, Body Language and More
 
Faster Translations Start With A Faster Computer
Faster Translations Start With A Faster ComputerFaster Translations Start With A Faster Computer
Faster Translations Start With A Faster Computer
 
One Firm's Wild Ride to The Cloud
One Firm's Wild Ride to The CloudOne Firm's Wild Ride to The Cloud
One Firm's Wild Ride to The Cloud
 
18+ Ways To Help Clients Love You
18+ Ways To Help Clients Love You18+ Ways To Help Clients Love You
18+ Ways To Help Clients Love You
 
Advanced Backups
Advanced BackupsAdvanced Backups
Advanced Backups
 
What were you thinking? Worst Translation Practices
What were you thinking? Worst Translation PracticesWhat were you thinking? Worst Translation Practices
What were you thinking? Worst Translation Practices
 
My Dog Ate My Translation Assignment
My Dog Ate My Translation AssignmentMy Dog Ate My Translation Assignment
My Dog Ate My Translation Assignment
 
Domino Domain Monitoring, Letting Admins Sleep Later and Stay at Pubs Longer ...
Domino Domain Monitoring, Letting Admins Sleep Later and Stay at Pubs Longer ...Domino Domain Monitoring, Letting Admins Sleep Later and Stay at Pubs Longer ...
Domino Domain Monitoring, Letting Admins Sleep Later and Stay at Pubs Longer ...
 
Quickr for Domino Administration: Qpconfig.xml, Notes.ini, Connections and You
Quickr for Domino Administration: Qpconfig.xml, Notes.ini, Connections and YouQuickr for Domino Administration: Qpconfig.xml, Notes.ini, Connections and You
Quickr for Domino Administration: Qpconfig.xml, Notes.ini, Connections and You
 
Email vs. Status Updates as presented at Social Connections VIII Event
Email vs. Status Updates as presented at Social Connections VIII EventEmail vs. Status Updates as presented at Social Connections VIII Event
Email vs. Status Updates as presented at Social Connections VIII Event
 
SpeedGeeking 2015
SpeedGeeking 2015SpeedGeeking 2015
SpeedGeeking 2015
 
Accountability rocks soccnx2
Accountability rocks soccnx2Accountability rocks soccnx2
Accountability rocks soccnx2
 
JMP206 : Calling Home: Enabling the IBM Sametime Softphone in ST9
JMP206 : Calling Home: Enabling the IBM Sametime Softphone in ST9JMP206 : Calling Home: Enabling the IBM Sametime Softphone in ST9
JMP206 : Calling Home: Enabling the IBM Sametime Softphone in ST9
 

Recently uploaded

Pigging Solutions in Pet Food Manufacturing
Pigging Solutions in Pet Food ManufacturingPigging Solutions in Pet Food Manufacturing
Pigging Solutions in Pet Food ManufacturingPigging Solutions
 
Scanning the Internet for External Cloud Exposures via SSL Certs
Scanning the Internet for External Cloud Exposures via SSL CertsScanning the Internet for External Cloud Exposures via SSL Certs
Scanning the Internet for External Cloud Exposures via SSL CertsRizwan Syed
 
Automating Business Process via MuleSoft Composer | Bangalore MuleSoft Meetup...
Automating Business Process via MuleSoft Composer | Bangalore MuleSoft Meetup...Automating Business Process via MuleSoft Composer | Bangalore MuleSoft Meetup...
Automating Business Process via MuleSoft Composer | Bangalore MuleSoft Meetup...shyamraj55
 
Injustice - Developers Among Us (SciFiDevCon 2024)
Injustice - Developers Among Us (SciFiDevCon 2024)Injustice - Developers Among Us (SciFiDevCon 2024)
Injustice - Developers Among Us (SciFiDevCon 2024)Allon Mureinik
 
Maximizing Board Effectiveness 2024 Webinar.pptx
Maximizing Board Effectiveness 2024 Webinar.pptxMaximizing Board Effectiveness 2024 Webinar.pptx
Maximizing Board Effectiveness 2024 Webinar.pptxOnBoard
 
08448380779 Call Girls In Friends Colony Women Seeking Men
08448380779 Call Girls In Friends Colony Women Seeking Men08448380779 Call Girls In Friends Colony Women Seeking Men
08448380779 Call Girls In Friends Colony Women Seeking MenDelhi Call girls
 
Understanding the Laravel MVC Architecture
Understanding the Laravel MVC ArchitectureUnderstanding the Laravel MVC Architecture
Understanding the Laravel MVC ArchitecturePixlogix Infotech
 
Artificial intelligence in the post-deep learning era
Artificial intelligence in the post-deep learning eraArtificial intelligence in the post-deep learning era
Artificial intelligence in the post-deep learning eraDeakin University
 
APIForce Zurich 5 April Automation LPDG
APIForce Zurich 5 April  Automation LPDGAPIForce Zurich 5 April  Automation LPDG
APIForce Zurich 5 April Automation LPDGMarianaLemus7
 
Install Stable Diffusion in windows machine
Install Stable Diffusion in windows machineInstall Stable Diffusion in windows machine
Install Stable Diffusion in windows machinePadma Pradeep
 
Unlocking the Potential of the Cloud for IBM Power Systems
Unlocking the Potential of the Cloud for IBM Power SystemsUnlocking the Potential of the Cloud for IBM Power Systems
Unlocking the Potential of the Cloud for IBM Power SystemsPrecisely
 
Pigging Solutions Piggable Sweeping Elbows
Pigging Solutions Piggable Sweeping ElbowsPigging Solutions Piggable Sweeping Elbows
Pigging Solutions Piggable Sweeping ElbowsPigging Solutions
 
Are Multi-Cloud and Serverless Good or Bad?
Are Multi-Cloud and Serverless Good or Bad?Are Multi-Cloud and Serverless Good or Bad?
Are Multi-Cloud and Serverless Good or Bad?Mattias Andersson
 
Unblocking The Main Thread Solving ANRs and Frozen Frames
Unblocking The Main Thread Solving ANRs and Frozen FramesUnblocking The Main Thread Solving ANRs and Frozen Frames
Unblocking The Main Thread Solving ANRs and Frozen FramesSinan KOZAK
 
New from BookNet Canada for 2024: BNC BiblioShare - Tech Forum 2024
New from BookNet Canada for 2024: BNC BiblioShare - Tech Forum 2024New from BookNet Canada for 2024: BNC BiblioShare - Tech Forum 2024
New from BookNet Canada for 2024: BNC BiblioShare - Tech Forum 2024BookNet Canada
 
Enhancing Worker Digital Experience: A Hands-on Workshop for Partners
Enhancing Worker Digital Experience: A Hands-on Workshop for PartnersEnhancing Worker Digital Experience: A Hands-on Workshop for Partners
Enhancing Worker Digital Experience: A Hands-on Workshop for PartnersThousandEyes
 

Recently uploaded (20)

Pigging Solutions in Pet Food Manufacturing
Pigging Solutions in Pet Food ManufacturingPigging Solutions in Pet Food Manufacturing
Pigging Solutions in Pet Food Manufacturing
 
Scanning the Internet for External Cloud Exposures via SSL Certs
Scanning the Internet for External Cloud Exposures via SSL CertsScanning the Internet for External Cloud Exposures via SSL Certs
Scanning the Internet for External Cloud Exposures via SSL Certs
 
Automating Business Process via MuleSoft Composer | Bangalore MuleSoft Meetup...
Automating Business Process via MuleSoft Composer | Bangalore MuleSoft Meetup...Automating Business Process via MuleSoft Composer | Bangalore MuleSoft Meetup...
Automating Business Process via MuleSoft Composer | Bangalore MuleSoft Meetup...
 
Injustice - Developers Among Us (SciFiDevCon 2024)
Injustice - Developers Among Us (SciFiDevCon 2024)Injustice - Developers Among Us (SciFiDevCon 2024)
Injustice - Developers Among Us (SciFiDevCon 2024)
 
Maximizing Board Effectiveness 2024 Webinar.pptx
Maximizing Board Effectiveness 2024 Webinar.pptxMaximizing Board Effectiveness 2024 Webinar.pptx
Maximizing Board Effectiveness 2024 Webinar.pptx
 
08448380779 Call Girls In Friends Colony Women Seeking Men
08448380779 Call Girls In Friends Colony Women Seeking Men08448380779 Call Girls In Friends Colony Women Seeking Men
08448380779 Call Girls In Friends Colony Women Seeking Men
 
Understanding the Laravel MVC Architecture
Understanding the Laravel MVC ArchitectureUnderstanding the Laravel MVC Architecture
Understanding the Laravel MVC Architecture
 
The transition to renewables in India.pdf
The transition to renewables in India.pdfThe transition to renewables in India.pdf
The transition to renewables in India.pdf
 
Artificial intelligence in the post-deep learning era
Artificial intelligence in the post-deep learning eraArtificial intelligence in the post-deep learning era
Artificial intelligence in the post-deep learning era
 
APIForce Zurich 5 April Automation LPDG
APIForce Zurich 5 April  Automation LPDGAPIForce Zurich 5 April  Automation LPDG
APIForce Zurich 5 April Automation LPDG
 
E-Vehicle_Hacking_by_Parul Sharma_null_owasp.pptx
E-Vehicle_Hacking_by_Parul Sharma_null_owasp.pptxE-Vehicle_Hacking_by_Parul Sharma_null_owasp.pptx
E-Vehicle_Hacking_by_Parul Sharma_null_owasp.pptx
 
Vulnerability_Management_GRC_by Sohang Sengupta.pptx
Vulnerability_Management_GRC_by Sohang Sengupta.pptxVulnerability_Management_GRC_by Sohang Sengupta.pptx
Vulnerability_Management_GRC_by Sohang Sengupta.pptx
 
Install Stable Diffusion in windows machine
Install Stable Diffusion in windows machineInstall Stable Diffusion in windows machine
Install Stable Diffusion in windows machine
 
Unlocking the Potential of the Cloud for IBM Power Systems
Unlocking the Potential of the Cloud for IBM Power SystemsUnlocking the Potential of the Cloud for IBM Power Systems
Unlocking the Potential of the Cloud for IBM Power Systems
 
Pigging Solutions Piggable Sweeping Elbows
Pigging Solutions Piggable Sweeping ElbowsPigging Solutions Piggable Sweeping Elbows
Pigging Solutions Piggable Sweeping Elbows
 
Are Multi-Cloud and Serverless Good or Bad?
Are Multi-Cloud and Serverless Good or Bad?Are Multi-Cloud and Serverless Good or Bad?
Are Multi-Cloud and Serverless Good or Bad?
 
Unblocking The Main Thread Solving ANRs and Frozen Frames
Unblocking The Main Thread Solving ANRs and Frozen FramesUnblocking The Main Thread Solving ANRs and Frozen Frames
Unblocking The Main Thread Solving ANRs and Frozen Frames
 
New from BookNet Canada for 2024: BNC BiblioShare - Tech Forum 2024
New from BookNet Canada for 2024: BNC BiblioShare - Tech Forum 2024New from BookNet Canada for 2024: BNC BiblioShare - Tech Forum 2024
New from BookNet Canada for 2024: BNC BiblioShare - Tech Forum 2024
 
Enhancing Worker Digital Experience: A Hands-on Workshop for Partners
Enhancing Worker Digital Experience: A Hands-on Workshop for PartnersEnhancing Worker Digital Experience: A Hands-on Workshop for Partners
Enhancing Worker Digital Experience: A Hands-on Workshop for Partners
 
DMCC Future of Trade Web3 - Special Edition
DMCC Future of Trade Web3 - Special EditionDMCC Future of Trade Web3 - Special Edition
DMCC Future of Trade Web3 - Special Edition
 

Update Directory with a Snap

  • 1. @LotusEvangelist keith@b2bwhisperer.com DominoCamp 2021 – June 21 & 22 Hacking dminis ra ors Keith Brooks CEO, B2B Whisperer HCLAmbassador @LotusEvangelist 1 Tuesday June 22, 2021 - 12:30 – 14:00
  • 2. @LotusEvangelist keith@b2bwhisperer.com DominoCamp 2021 – June 21 & 22 My Path to Admincamp • Notes Administrator since 1992 • Domino Administrator since Beta in 1996 • LotusEvangelist blog since 2007 (https://blog.vanessabrooks.com) • Co-Author Quickr Administration Book 2011 + A few IBM Redbooks • Certificate Exams Writer (Domino, ST, Social) 2012-2014 • IBM Redbooks Thought Leader 2012-2014 • IBM Champion 2013 – 2019 • HCL Ambassador 2019-2021 • Presented at Engage, Lotusphere, IBM Connect, Connected, Think, SUTOL, Let’sConnect, SOCCNX, The View Admin, MWLUG, NCUG + Many others • Author of 2020’s Daily Posting of #HCLAmbassadorTIPS • Openntf Admin Scripts Author And my 1st AdminCamp! 2
  • 3. @LotusEvangelist keith@b2bwhisperer.com DominoCamp 2021 – June 21 & 22 Determination vs Experienced Management 3
  • 4. @LotusEvangelist keith@b2bwhisperer.com DominoCamp 2021 – June 21 & 22 Today’s Missions 1. R12 Notes Clients Can Go Faster 2. Create a Forwarding Address in the Person Document 3. Converting a Name to an Email Addresses 4. Converting Emails to Hierarchical Names 5. Time Stone Turns Back the Clock 6. Update Your Directory with a Snap 7. Small Things - Sorting your Views 8. Private Views - People by Mail Server 9. Private Views - People by Sametime Servers 10. Replace Group Owners 11. Need a Remote Server Console? 12. Links 4
  • 5. @LotusEvangelist keith@b2bwhisperer.com DominoCamp 2021 – June 21 & 22 R12 Improved Network Performance for Notes Clients Beginning in HCL Notes 12, use the notes.ini setting NetworkSpeedInMbps to boost network performance of Notes clients(Windows & Macs) when network speed drops below a specified level. • NetworkSpeedInMbps=value, wherevalue is the network speed in megabytes per second (Mbps) below which network performance will be boosted. • For example, to boost performance when the network speed falls below 8 Mbps, specify NetworkSpeedInMbps=8 5
  • 6. @LotusEvangelist keith@b2bwhisperer.com DominoCamp 2021 – June 21 & 22 Create a Forwarding Address in a Person Document Based on an Email Address Very valuable, especially when doing domain changes, email migrations or corporate mergers. The important piece, which people forget, is handling when the syntax is caps or lower case, this solves that too. 6/22/2021 6
  • 7. @LotusEvangelist keith@b2bwhisperer.com DominoCamp 2021 – June 21 & 22 Create a Forwarding Address in a Person Document Based on an Email Address 7 Check Your work. If you have anything wrong, edit it again Click On Action from the Top Menu, and Click the Agent Save Your agent Edit The newname.com to the new domain Edit The existingdomain.com to your domain Copy Then paste in the code from the next slide Select Formula Give The agent a name and a description Click On Agent From The NAB top menu, click on Create
  • 8. @LotusEvangelist keith@b2bwhisperer.com DominoCamp 2021 – June 21 & 22 Forwarding Address Code 8 SELECT Form = "Person"; @If( InternetAddress=""; ""; @Do( addr := @LowerCase(InternetAddress); tmp := @ReplaceSubstring(addr; "@existingdomain.com";"@newname.com"); @SetField("MailAddress"; tmp) ) )
  • 9. @LotusEvangelist keith@b2bwhisperer.com DominoCamp 2021 – June 21 & 22 Simple Demo 6/22/2021 9
  • 10. @LotusEvangelist keith@b2bwhisperer.com DominoCamp 2021 – June 21 & 22 is Not Always Available to Help You 10 You may receive lists, names, data, emails and other “things“ that have not been cleaned up Excel is your friend to manipulate the data to do your bidding. Names = First Name Last Name ex: Keith Brooks Emails = Front @ Domain.Extension ex: keith@keith.com
  • 11. @LotusEvangelist keith@b2bwhisperer.com DominoCamp 2021 – June 21 & 22 Jarvis #1 - Converting a Name to an Email Address We need to send a survey out; can you help us… This Requires: 1) Your PNAB 2) Access to your Company Names.nsf 3) A Generic Group Created under Groups in your PNAB 4) The Code from the 2nd slide after this one 5) The List of Names* 11 * = Excel may be needed to manipulate the list USUALLY
  • 12. @LotusEvangelist keith@b2bwhisperer.com DominoCamp 2021 – June 21 & 22 Jarvis #1 – Converting a Name to an Email Address – Part 1 12 Select The Group and Click on the Icon created Save The group Test By copying the names into a new PNAB group Click OK and Save Toolbar Paste The Code from the next slide in as a Formula Type Optional Help text to remember what this does Type A Name Click New then select Button Select The Universal Toolbar to Customize Click File-Preferences-Toolbar-Customize
  • 13. @LotusEvangelist keith@b2bwhisperer.com DominoCamp 2021 – June 21 & 22 Jarvis #1 – Part 2 – The Code result := ""; realresult := ""; @For (n := 1;n <= @Elements (Members );n := n + 1; look := @Trim ( @NameLookup ( [Exhaustive];Members [n ]; "InternetAddress" ) ); realresult := @Trim ( @Unique (realresult:look ) ); result := @Trim ( @Unique (result : @If (look= "";@Name ( [Abbreviate];Members [n ] );look ) ) ) ); FIELD comment := @Implode (result;@NewLine ); @Prompt ( [Ok]; "Members " + @Text ( @Elements (Members ) ); "Found " + @Text ( @Elements (realresult ) )+ " emails for "+ @Text ( @Elements (Members ) )+ " Notes Names" ) 13 OpenNTF Admin Scripts: https://openntf.org/XSnippets.nsf/snippet.xsp?id=looking-up-and-converting-a-list-of-notes-names-into-their-email-address Thank you to @Notesensei
  • 15. @LotusEvangelist keith@b2bwhisperer.com DominoCamp 2021 – June 21 & 22 Jarvis #2 - Converting Emails to Hierarchical Names We need to create a group and fill it with people can you help us… This Requires: 1) Your PNAB 2) A Generic Group Created in your PNAB 3) The Code from the 2nd slide after this one set up as a Toolbar Icon 4) The List of Names* 15 https://booksetcstore.com/products/book-of-spells-notebook-a5-size * = Excel may be needed to manipulate the list USUALLY
  • 16. @LotusEvangelist keith@b2bwhisperer.com DominoCamp 2021 – June 21 & 22 Jarvis #2 – Converting Emails to Hierarchical Names – Part 1 16 Select The Group and Click on the Icon created Save The group Test It by copying the emails into a new PNAB group Click OK and Save Toolbar Paste The Code from the next slide in as a Formula Type Optional Help text to remember what this does Type A Name Click New then select Button Select The Universal Toolbar to Customize Click File-Preferences-Toolbar-Customize
  • 17. @LotusEvangelist keith@b2bwhisperer.com DominoCamp 2021 – June 21 & 22 Jarvis #2 – Part 2 - The Code result := ""; @For(n := 1;n <= @Elements (Members );n := n + 1; look := @Trim( @NameLookup ( [Exhaustive];Members [n ]; "FullName" )); result := @Trim( @Unique (result : @If (look= "";@Name ([Abbreviate];Members[n ]); @Name ([Abbreviate];look))))); FIELD comment := @Implode (result;@NewLine ); @Prompt([Ok]; "Members " + @Text(@Elements (Members )); "Found " + @Text(@Elements(result ))+ " Abbreviated Canonical Names for "+ @Text ( @Elements (Members ) )+ " Users" ) 17 OpenNTF Admin Scripts: https://openntf.org/XSnippets.nsf/snippet.xsp?id=converting-regular-common-name-lists-into-notes-hierarchical-names
  • 18. @LotusEvangelist Let’s see it in Action 6/22/2021 18
  • 19. @LotusEvangelist keith@b2bwhisperer.com DominoCamp 2021 – June 21 & 22 Time Stone Turning Back the Clock Your Admin ID expired and you are locked out! 1. Shut down the Domino server only 2. Change the date on the OS (Client side too!) 3. Rename log.nsf temporarily 4. Start server, login and recert your ID 5. Shut server down 6. Change Date 7. Delete temporary log.nsf 8. Rename original log.nsf back to log.nsf and restart server
  • 20. @LotusEvangelist keith@b2bwhisperer.com DominoCamp 2021 – June 21 & 22 Update Your Directory with a Quick way to update “things” in names.nsf , or any database with fields or folders.* • Click Create then Click Agent from the Notes menu • Provide a Name and Select Simple Actions • Click OK to go into Designer • Bottom Left corner you will see • Click on the button and prepare to be amazed 20 Screenshots on next page
  • 21. @LotusEvangelist keith@b2bwhisperer.com DominoCamp 2021 – June 21 & 22 Update Your Directory Page 2 • Look at all those choices! • Most common is Modify Field • Select Modify Field from the drop down • Select Replacing or Appending • Select the field from the list and Click Add your change • DONE! Go test it, of course before major usage! 21
  • 23. @LotusEvangelist keith@b2bwhisperer.com DominoCamp 2021 – June 21 & 22 Small Things - Sorting Your Views You know that awesome Rooms and Resources Database? You can see my slides from yesterday’s class and download the code parts here http://keithbrooks.com/download/resource.zip How do you sort views? You know how to do it…right? Just in case, let’s show you how. 23
  • 24. @LotusEvangelist keith@b2bwhisperer.com DominoCamp 2021 – June 21 & 22 Sorting Your Views - Part 2 • You will need a Designer Client • From Notes, Open the database to get “fixed” • Click on View- Design • Under Views, Open the View to be Edited • Right Click on the Column to be fixed • Select Column Properties • Choose a Sort, a Type and check the Blue Circle! • Click on X to leave the mini Window • Close the view or Press CTRL-S 24 https://www.lifehacker.com.au/2017/07/why-the-hogwarts-sorting-hat-is-a-bad-idea/ 24
  • 26. @LotusEvangelist keith@b2bwhisperer.com DominoCamp 2021 – June 21 & 22 Top Secret Private Views for NABs 26 • View with Some Formula Code People by Mail Server • View with Lotusscript People by Sametime Server
  • 27. @LotusEvangelist keith@b2bwhisperer.com DominoCamp 2021 – June 21 & 22 Elige Sapienter* Private views in the NAB are not new, you do use them, right? 2 options to choose: • Create view in the Names.nsf DB • Create views in the Names.ntf Template If you have a vanilla/standard template I suggest you choose the 1st option to avoid losing your changes. If you have a heavily edited template, I suggest the 2nd option as you understand how to work with the changes. 27 *Choose Wisely
  • 28. @LotusEvangelist keith@b2bwhisperer.com DominoCamp 2021 – June 21 & 22 People by Mail Server 1 of 8 Click Save and Customize Click OK Use An existing view if you wish Select A location or the default for it Enter A name Click on Create, then Click View Open Names.nsf/ntf 28
  • 29. @LotusEvangelist keith@b2bwhisperer.com DominoCamp 2021 – June 21 & 22 People by Server 2 of 8 • Double Click on the E-Mail column and change the Title to Mail File • From the lower window Select Display Field, then Select MailFile from the dropdown list. • NOTE: You can ignore any warning message about lost data. • The other columns should match their fields by name or change them to match what you wish. 29
  • 30. @LotusEvangelist keith@b2bwhisperer.com DominoCamp 2021 – June 21 & 22 People by Server 3 of 8 • Click on the Name column and in the window below, paste this FORMULA and Click the Check mark: @Name([Abbreviate];@Subset(FullName; 1)) • Use a similar process for the Sametime column with this code and rename it Sametime Server: @Name([Abbreviate];SametimeServer) 30
  • 31. @LotusEvangelist keith@b2bwhisperer.com DominoCamp 2021 – June 21 & 22 People by Server 4 of 8 • We need a counting column. Your view should look similar to this • Right Click on the Name column and Click Insert New Column • Double Click on the blank column and Type “1” (include the “”) in the formula window on the bottom. • In the pop up window, change to the sorting tab and set it like this, don’t forget the Totals Field on the bottom -> 31
  • 32. @LotusEvangelist keith@b2bwhisperer.com DominoCamp 2021 – June 21 & 22 People by Server 5 of 8 • We need a Country(City) column. So your view should look like this • Right Click on the Blank Name column and Click Insert New Column • Double Click on the blank column, Type either line: @Name([Abbreviate]; OfficeCountry) @Name([Abbreviate]; OfficeCity) in the formula window on the bottom. • In the pop up window, Click on the sorting tab and set it like this -> 32
  • 33. @LotusEvangelist keith@b2bwhisperer.com DominoCamp 2021 – June 21 & 22 People by Server 6 of 8 33 • Right Click on the No Name/Blank column we just created and Click Insert New Column • Double Click on the blank column and Type: @Name([Abbreviate];MailServer) in the formula window on the bottom. • In the pop-up window, Click on the Font tab and set it like this <- • Click on the sorting tab and set it like this ->
  • 34. @LotusEvangelist keith@b2bwhisperer.com DominoCamp 2021 – June 21 & 22 People By Server 7 of 8 • Check the Show Twistie when row is expandable • Also set it for the OfficeCountry column 34
  • 35. @LotusEvangelist keith@b2bwhisperer.com DominoCamp 2021 – June 21 & 22 People by Server 8 of 8 If all went well, you will see something like this: 35 You can customize the columns to your liking
  • 36. @LotusEvangelist keith@b2bwhisperer.com DominoCamp 2021 – June 21 & 22 People by Sametime Server Use the prior slides, but Slide 6 use this code: @Name([Abbreviate];SametimeServer) And Can Look Like This 36
  • 38. @LotusEvangelist keith@b2bwhisperer.com DominoCamp 2021 – June 21 & 22 Replace Group Owners New roles, people, teams, someone has to take ownership* 38 https://www.artofvfx.com/avengers-infinity-war-endgame-reel-by-cantina-creative/
  • 39. @LotusEvangelist keith@b2bwhisperer.com DominoCamp 2021 – June 21 & 22 6/22/2021 39 Sub Initialize Dim workspace As New NotesUIWorkspace Dim session As New NotesSession Dim dbCurrent As NotesDatabase Dim doc As NotesDocument Dim vwGroups As NotesView Dim uiview As NotesUIView Dim dcSelected As NotesDocumentCollection Dim varNewOwner As Variant Set dbCurrent = session.CurrentDatabase Set uiview = workspace.CurrentView Set dcSelected = uiview.Documents If dcSelected.Count = 0 Then MessageBox "Please select at least one Group to change the Owner of." Exit Sub End If varNewOwner = workspace.Prompt(PROMPT_OKCANCELEDIT, "New Group Owner", "Enter the name of the new Group Owner", "") If IsEmpty(varNewOwner) Then Exit Sub End If Set doc = dcSelected.GetFirstDocument While Not (doc Is Nothing) Call doc.Replaceitemvalue("ListOwner", varNewOwner) Call doc.Save(True, False) Set doc = dcSelected.GetNextDocument(doc) Wend Print "Complete" End Sub Replace Group Owners Code
  • 41. @LotusEvangelist keith@b2bwhisperer.com DominoCamp 2021 – June 21 & 22 Need a Server Console? Old trick but still works! • Click File -> Preferences -> Toolbar -> Customize • Click on New and select Button • Under 'Button caption text', type a name (Rconsole) • Click on Command & Functions button to select Commands • Select AdminRemoteConsole • Click on Paste button • Click on OK • Click Save Toolbar and click on OK.
  • 43. @LotusEvangelist keith@b2bwhisperer.com DominoCamp 2021 – June 21 & 22 Links You May Need 43 The Lotus Sandbox, Treasure Trove of scripts, database templates and History http://domquery.info/samples/sandbox.nsf / The Nifty 50 Templates (R3/R4 era) https://www.wissel.net/blog/2009/02/the-nifty-fifty-unearthed.html Speed up your Clients (The Designer client edit) https://tinkertry.com/speed-up-lotus-notes-8-5-3-or-ibm-notes-9-social-edition-under-windows-7-8-81-or-linux All-in-one Admin Tool for agent-based troubleshooting & problem solving https://bit.ly/3pZukfT The OOO (Out of Office) Diagnostic Tool See the above Admin Tool download for it Download my RnR Template with all of the Views and Agents included https://keithbrooks.com/download/resource.zip
  • 44. @LotusEvangelist keith@b2bwhisperer.com DominoCamp 2021 – June 21 & 22 Hacking Administrators AdminCamp Review • R12 Notes Clients Can Go Faster • Create a Forwarding Address in the Person Document • Converting a Name to an Email Addresses • Converting Emails to Hierarchical Names • Time Stone Turns Back the Clock • Update Your Directory with a Snap • Small Things - Sorting your Views • Private Views - People by Mail Server • Private Views - People by Sametime Servers • Replace Group Owners • Need a Remote Server Console? • Links 44
  • 45. @LotusEvangelist keith@b2bwhisperer.com DominoCamp 2021 – June 21 & 22 45 Thank You Questions?