Your Admin Toolbelt is not complete
without Salesforce DX
Christian Szandor Knapp
Lead Salesforce Developer * appero
sz@appero.com
@ch_sz_knapp
Learn to Leverage and Love the aDmin eXperience
Daniel Stange
Technical Architect * DIA die.interaktiven
daniel.stange@die-interaktiven.de
@stangomat
Agenda
1) Let’s talk shop
2) DX for admins I
• What you need to know and don’t need to know
3) Interlude:
• Installation
• The Structure of a DX Command
• The most important DX parameter
4) DX for admins II
• What you need to know and don’t need to know
5) How to instantly make your life easier with DX and DX instant recipes
Let’s Talk Shop
no admins were harmed preparing this session
How many clicks do you need...
… to assign a permission set to
one user?
?
How many clicks do you need...
… to assign a permission set to
one user?
5
How many clicks do you need...
… to deactivate your user
and add “X” to Lastname and
Firstname?
?
How many clicks do you need...
… to deactivate your user
and add “X” to Lastname and
Firstname?
7
How many clicks do you need...
… to upload - yet again - the latest
responses CSV from your User
Group event invitation Campaign?
?
How many clicks do you need...
… to upload - yet again - the latest
responses CSV from your User
Group event invitation Campaign?
12
Did you pay close attention?
How many clicks do you need to do ALL of the above?
?
How many clicks do you need to do ALL of the above?
NONE
DX for Admins
What you need to know
and what you don’t need to know I
What you need to know - and what not
● dx commands
● scratch orgs
● git
● how to code
● open a command line
● copy
● paste
● navigate to files/folders
Interlude
sounds more exciting than setup
Interlude: First Steps - Setup
There’s no way around and you can learn this from Trailhead:
https://trailhead.salesforce.com/content/learn/projects/quick-start-salesforce-dx
Install from
https://developer.salesforce.com/tools/sfdxcli
Connect to Production (Dev Hub)
sfdx force:auth:web:login
--setdefaultdevhubusername
--setalias PRODUCTION
Open your org
sfdx force:org:open -u PRODUCTION
DX Command structure
Examples
sfdx force:org:open --targetusername PRODUCTION
sfdx force:org:open -a PRODUCTION
sfdx topic:subtopic:subsubtopic
--parameter1 A --parameter2 B
Interlude: The most important parameter
--help
Interlude: The most important shortcut
Demo
DX for Admins
What you need to know
and what you don’t need to know II
DX works with Scratch Orgs only
… Wrong. Since Winter 19 it’s become more
intuitive but never has been a real issue.
Common Misconceptions
DX is about source control and versioning
… Yes, ideally, but no one is forcing you.
DX is for developers only
… No. They might have a bit of a head start,
though.
DX is brand new
… the term is, the CLI isn’t and neither is most
functionality. Scratch Orgs are a new thing
indeed.
A Word About User Interfaces
Amazon’s Alexa is a user interface
The Salesforce UI is a user interface
The DX CLI is a user interface
The Command Line is a user interface
All User Interfaces enable
direct interaction with an application
without pestering you with implementation
details
Imagine uploading
newAccounts_A-F.csv
newAccounts_G-N.csv
newAccounts_O-R.csv
newAccounts_S-Z.csv
Why is it worth the trouble?
12 x *click*
for one CSV
Re-Usability
Imagine uploading
newAccounts_A-F.csv
newAccounts_G-N.csv
newAccounts_O-R.csv
newAccounts_S-Z.csv
Why is it worth the trouble?
sfdx force:data:bulk:upsert [...] ---csvfile newAccounts_A-
F.csv
sfdx force:data:bulk:upsert [...] ---csvfile newAccounts_G-
N.csv
sfdx force:data:bulk:upsert [...] ---csvfile newAccounts_O-
R.csv
sfdx force:data:bulk:upsert [...] ---csvfile newAccounts_S-Z.csv
Re-Usability
1 x copy & paste
for all CSVs
DX Instant Recipes
let’s start cooking
Do you remember cooking your first dish?
Were you also overwhelmed by the choice of tools?
Try, Learn, Improve… and have patience
● Learning how to cook takes time and experience
Fear not, cookbooks are here to help:
● Find a recipe that looks delicious
● Cook it
● Learn and adapt for next time
Try out things in your test org - you’ll either pass or fail, but you’ll always learn
Remember: --help
Knowledge
Experience
Tooling
dish
completed
without any mess
Recipe 1 - Build your admin keychain
Steps:
Copy & Paste once
sfdx force:auth:web:login -a FancyAliasName
Copy & Paste anytime
sfdx force:org:open -u FancyAliasName
Notes:
-a is a shorthand for --setalias
(set an alias for a username)
-u is a shorthand for --targetusername
(the username of the org that the command targets)
Recipe 2 - Permissioning the Smart Way
Steps:
Copy & Paste
sfdx force:user:permset:assign -u FancyAliasName -n
PermissionSetName -o 'user1@company.com,
user2@company.com'
Notes:
-n is a shorthand for --permsetname
-o is a shorthand for --onbehalfof
Recipe 3a - Excel All the Things Downwards
Steps:
Prepare a SOQL Query. Ours is:
SELECT Name FROM Account WHERE AnnualRevenue > 500000’
Copy & Paste
sfdx force:data:soql:query -q "SELECT Name FROM Account
WHERE AnnualRevenue > 500000" -r csv -u FancyAliasName >
SimpleAccountExport.csv
Notes:
-r is a shorthand for --resultformat ( can be: human, json, csv)
-q is a shorthand for --query
> at the end is a terminal shortcut to write output of command to file (win/mac/linux)
Recipe 3b - Excel All the Things Upwards
Steps:
Copy & Paste
sfdx force:data:bulk:upsert -u FancyAliasName -s Lead -f
MyTradeFairLeads.csv -i Email
Notes:
-s is a shorthand for --sobjectype
-f is a shorthand for --csvfile
-i is a shorthand for --externalid
Recipe 4 - Declarative Changes Safety Net
Steps:
Copy & Paste
sfdx force:apex:test:run -l RunLocalTests ⇒ note the results
Activate your changes
Copy & Paste again
sfdx force:apex:test:run -l RunLocalTests
Notes:
-l is a shorthand for --testlevel (testlevel can be: RunAllTestsInOrg,
RunSpecifiedTests)
Now that you’ve had a taste…
Here’s our Open Source Cookbook
Peter Chittum has started a Command Line Cookbook… it’s very much work in progress
https://github.com/open-force/sfcli-cookbook
Recipes for
● Beginners
● Power Users
● … and stuff that will impress your Dev colleagues
● All recipes available in macOS/bash or Win10/powershell flavors
Call to Action:
Request a Recipe
Useful resources
Subtitle placeholder
Trailhead: SFDX Quick Start
https://trailhead.salesforce.com/en/content/learn/projects/quick-start-
salesforce-dx
Peter Chittum: Apply the CLI to everyday problems
https://www.salesforce.com/video/3596221
Martin Humpolec: Salesforce DX for Admins
https://www.salesforce.com/video/3620750/
Pluralsight has Beginner Guides for Powershell and Bash
Salesforce DX
Quick Start
FIN
Q & A
Thank You
First Name Last Name
Title of Presenter
email@salesforce.com
@twitterhandle
Remember to tell us what you think in the event survey
www.frenchtouchdreamin.com/survey

More Related Content

PPTX
Getting started with Salesforce DX & CLI
PDF
Easy Salesforce CI/CD with Open Source Only - Dreamforce 23
PPTX
Salesforce Apex Hours:- Salesforce DX
PPT
SFDX Presentation
PPT
Evolutionary db development
PDF
Intro to the Salesforce Command Line Interface for Admins
PPT
Salesforce Developer eXperience (SFDX)
PPTX
Salesforce DX for Admin v2
Getting started with Salesforce DX & CLI
Easy Salesforce CI/CD with Open Source Only - Dreamforce 23
Salesforce Apex Hours:- Salesforce DX
SFDX Presentation
Evolutionary db development
Intro to the Salesforce Command Line Interface for Admins
Salesforce Developer eXperience (SFDX)
Salesforce DX for Admin v2

Similar to Your admin toolbelt is not complete without Salesforce DX (20)

PDF
Automated Server Administration for DevSecOps
PPTX
Salesforce DX for admin
DOCX
Salesforce Admin's guide : the data loader from the command line
PPTX
drupal ci cd concept cornel univercity.pptx
PDF
Working With The Symfony Admin Generator
PDF
Patterns and Tools for Database Versioning, Migration, Data Loading and Test ...
PPT
SaltConf14 - Ben Cane - Using SaltStack in High Availability Environments
PPT
BP206 - Let's Give Your LotusScript a Tune-Up
PPT
Automating Active Directory mgmt in PowerShell
PDF
Cognitive data capture with Elis - Rossum's technical webinar
PPT
SFDX - Spring 2019 Update
PDF
Automating Workflows for Analytics Pipelines
PPTX
Créer et gérer une scratch org avec Visual Studio Code
PDF
Introduction to WP-CLI: Manage WordPress from the command line
PPTX
Dolibarr - information for developers and partners - devcamp lyon 2019
PDF
OSCamp #4 on Foreman | CLI tools with Foreman by Martin Bačovský
PPTX
airflow web UI and CLI.pptx
PDF
Development Setup of B-Translator
PDF
SQL tips and techniques April 2014
PPTX
Salesforce DX with Visual Studio Code
Automated Server Administration for DevSecOps
Salesforce DX for admin
Salesforce Admin's guide : the data loader from the command line
drupal ci cd concept cornel univercity.pptx
Working With The Symfony Admin Generator
Patterns and Tools for Database Versioning, Migration, Data Loading and Test ...
SaltConf14 - Ben Cane - Using SaltStack in High Availability Environments
BP206 - Let's Give Your LotusScript a Tune-Up
Automating Active Directory mgmt in PowerShell
Cognitive data capture with Elis - Rossum's technical webinar
SFDX - Spring 2019 Update
Automating Workflows for Analytics Pipelines
Créer et gérer une scratch org avec Visual Studio Code
Introduction to WP-CLI: Manage WordPress from the command line
Dolibarr - information for developers and partners - devcamp lyon 2019
OSCamp #4 on Foreman | CLI tools with Foreman by Martin Bačovský
airflow web UI and CLI.pptx
Development Setup of B-Translator
SQL tips and techniques April 2014
Salesforce DX with Visual Studio Code
Ad

More from Daniel Stange (7)

PDF
Force Academy '19: I fell in love with clicks AND code - here's what I learne...
PDF
YeurDreamin' - Put the Wow! into your Flow with Lightning Experience
PPTX
Setting Up CircleCI Workflows for Your Salesforce Apps
PPTX
Route your triggers like a pro #DF18
PPTX
Gear up for Continuous Integration with Salesforce DX, Circle CI and Clayton
PPTX
Tahoe Dreamin 2018: It simply works... until it breaks!
PPTX
IT SIMPLY WORKS! … UNTIL IT BREAKS. STANDARDS, BEST PRACTICE AND ENTERPRISE P...
Force Academy '19: I fell in love with clicks AND code - here's what I learne...
YeurDreamin' - Put the Wow! into your Flow with Lightning Experience
Setting Up CircleCI Workflows for Your Salesforce Apps
Route your triggers like a pro #DF18
Gear up for Continuous Integration with Salesforce DX, Circle CI and Clayton
Tahoe Dreamin 2018: It simply works... until it breaks!
IT SIMPLY WORKS! … UNTIL IT BREAKS. STANDARDS, BEST PRACTICE AND ENTERPRISE P...
Ad

Recently uploaded (20)

PDF
Taming the Chaos: How to Turn Unstructured Data into Decisions
PPTX
Configure Apache Mutual Authentication
PDF
Flame analysis and combustion estimation using large language and vision assi...
PPTX
Microsoft Excel 365/2024 Beginner's training
PDF
Architecture types and enterprise applications.pdf
PPTX
Chapter 5: Probability Theory and Statistics
PPTX
Final SEM Unit 1 for mit wpu at pune .pptx
PDF
TrustArc Webinar - Click, Consent, Trust: Winning the Privacy Game
PDF
From MVP to Full-Scale Product A Startup’s Software Journey.pdf
PDF
NewMind AI Weekly Chronicles – August ’25 Week III
PDF
Abstractive summarization using multilingual text-to-text transfer transforme...
PPTX
AI IN MARKETING- PRESENTED BY ANWAR KABIR 1st June 2025.pptx
PPT
What is a Computer? Input Devices /output devices
PPTX
2018-HIPAA-Renewal-Training for executives
PDF
OpenACC and Open Hackathons Monthly Highlights July 2025
PPTX
The various Industrial Revolutions .pptx
PDF
A Late Bloomer's Guide to GenAI: Ethics, Bias, and Effective Prompting - Boha...
PPT
Galois Field Theory of Risk: A Perspective, Protocol, and Mathematical Backgr...
PPTX
MicrosoftCybserSecurityReferenceArchitecture-April-2025.pptx
PPT
Module 1.ppt Iot fundamentals and Architecture
Taming the Chaos: How to Turn Unstructured Data into Decisions
Configure Apache Mutual Authentication
Flame analysis and combustion estimation using large language and vision assi...
Microsoft Excel 365/2024 Beginner's training
Architecture types and enterprise applications.pdf
Chapter 5: Probability Theory and Statistics
Final SEM Unit 1 for mit wpu at pune .pptx
TrustArc Webinar - Click, Consent, Trust: Winning the Privacy Game
From MVP to Full-Scale Product A Startup’s Software Journey.pdf
NewMind AI Weekly Chronicles – August ’25 Week III
Abstractive summarization using multilingual text-to-text transfer transforme...
AI IN MARKETING- PRESENTED BY ANWAR KABIR 1st June 2025.pptx
What is a Computer? Input Devices /output devices
2018-HIPAA-Renewal-Training for executives
OpenACC and Open Hackathons Monthly Highlights July 2025
The various Industrial Revolutions .pptx
A Late Bloomer's Guide to GenAI: Ethics, Bias, and Effective Prompting - Boha...
Galois Field Theory of Risk: A Perspective, Protocol, and Mathematical Backgr...
MicrosoftCybserSecurityReferenceArchitecture-April-2025.pptx
Module 1.ppt Iot fundamentals and Architecture

Your admin toolbelt is not complete without Salesforce DX

  • 1. Your Admin Toolbelt is not complete without Salesforce DX Christian Szandor Knapp Lead Salesforce Developer * appero sz@appero.com @ch_sz_knapp Learn to Leverage and Love the aDmin eXperience Daniel Stange Technical Architect * DIA die.interaktiven daniel.stange@die-interaktiven.de @stangomat
  • 2. Agenda 1) Let’s talk shop 2) DX for admins I • What you need to know and don’t need to know 3) Interlude: • Installation • The Structure of a DX Command • The most important DX parameter 4) DX for admins II • What you need to know and don’t need to know 5) How to instantly make your life easier with DX and DX instant recipes
  • 3. Let’s Talk Shop no admins were harmed preparing this session
  • 4. How many clicks do you need... … to assign a permission set to one user? ?
  • 5. How many clicks do you need... … to assign a permission set to one user? 5
  • 6. How many clicks do you need... … to deactivate your user and add “X” to Lastname and Firstname? ?
  • 7. How many clicks do you need... … to deactivate your user and add “X” to Lastname and Firstname? 7
  • 8. How many clicks do you need... … to upload - yet again - the latest responses CSV from your User Group event invitation Campaign? ?
  • 9. How many clicks do you need... … to upload - yet again - the latest responses CSV from your User Group event invitation Campaign? 12
  • 10. Did you pay close attention?
  • 11. How many clicks do you need to do ALL of the above? ?
  • 12. How many clicks do you need to do ALL of the above? NONE
  • 13. DX for Admins What you need to know and what you don’t need to know I
  • 14. What you need to know - and what not ● dx commands ● scratch orgs ● git ● how to code ● open a command line ● copy ● paste ● navigate to files/folders
  • 16. Interlude: First Steps - Setup There’s no way around and you can learn this from Trailhead: https://trailhead.salesforce.com/content/learn/projects/quick-start-salesforce-dx Install from https://developer.salesforce.com/tools/sfdxcli Connect to Production (Dev Hub) sfdx force:auth:web:login --setdefaultdevhubusername --setalias PRODUCTION Open your org sfdx force:org:open -u PRODUCTION
  • 17. DX Command structure Examples sfdx force:org:open --targetusername PRODUCTION sfdx force:org:open -a PRODUCTION sfdx topic:subtopic:subsubtopic --parameter1 A --parameter2 B
  • 18. Interlude: The most important parameter --help
  • 19. Interlude: The most important shortcut
  • 20. Demo
  • 21. DX for Admins What you need to know and what you don’t need to know II
  • 22. DX works with Scratch Orgs only … Wrong. Since Winter 19 it’s become more intuitive but never has been a real issue. Common Misconceptions DX is about source control and versioning … Yes, ideally, but no one is forcing you. DX is for developers only … No. They might have a bit of a head start, though. DX is brand new … the term is, the CLI isn’t and neither is most functionality. Scratch Orgs are a new thing indeed.
  • 23. A Word About User Interfaces Amazon’s Alexa is a user interface The Salesforce UI is a user interface The DX CLI is a user interface The Command Line is a user interface All User Interfaces enable direct interaction with an application without pestering you with implementation details
  • 25. Imagine uploading newAccounts_A-F.csv newAccounts_G-N.csv newAccounts_O-R.csv newAccounts_S-Z.csv Why is it worth the trouble? sfdx force:data:bulk:upsert [...] ---csvfile newAccounts_A- F.csv sfdx force:data:bulk:upsert [...] ---csvfile newAccounts_G- N.csv sfdx force:data:bulk:upsert [...] ---csvfile newAccounts_O- R.csv sfdx force:data:bulk:upsert [...] ---csvfile newAccounts_S-Z.csv Re-Usability 1 x copy & paste for all CSVs
  • 26. DX Instant Recipes let’s start cooking
  • 27. Do you remember cooking your first dish?
  • 28. Were you also overwhelmed by the choice of tools?
  • 29. Try, Learn, Improve… and have patience ● Learning how to cook takes time and experience Fear not, cookbooks are here to help: ● Find a recipe that looks delicious ● Cook it ● Learn and adapt for next time Try out things in your test org - you’ll either pass or fail, but you’ll always learn Remember: --help Knowledge Experience Tooling dish completed without any mess
  • 30. Recipe 1 - Build your admin keychain Steps: Copy & Paste once sfdx force:auth:web:login -a FancyAliasName Copy & Paste anytime sfdx force:org:open -u FancyAliasName Notes: -a is a shorthand for --setalias (set an alias for a username) -u is a shorthand for --targetusername (the username of the org that the command targets)
  • 31. Recipe 2 - Permissioning the Smart Way Steps: Copy & Paste sfdx force:user:permset:assign -u FancyAliasName -n PermissionSetName -o 'user1@company.com, user2@company.com' Notes: -n is a shorthand for --permsetname -o is a shorthand for --onbehalfof
  • 32. Recipe 3a - Excel All the Things Downwards Steps: Prepare a SOQL Query. Ours is: SELECT Name FROM Account WHERE AnnualRevenue > 500000’ Copy & Paste sfdx force:data:soql:query -q "SELECT Name FROM Account WHERE AnnualRevenue > 500000" -r csv -u FancyAliasName > SimpleAccountExport.csv Notes: -r is a shorthand for --resultformat ( can be: human, json, csv) -q is a shorthand for --query > at the end is a terminal shortcut to write output of command to file (win/mac/linux)
  • 33. Recipe 3b - Excel All the Things Upwards Steps: Copy & Paste sfdx force:data:bulk:upsert -u FancyAliasName -s Lead -f MyTradeFairLeads.csv -i Email Notes: -s is a shorthand for --sobjectype -f is a shorthand for --csvfile -i is a shorthand for --externalid
  • 34. Recipe 4 - Declarative Changes Safety Net Steps: Copy & Paste sfdx force:apex:test:run -l RunLocalTests ⇒ note the results Activate your changes Copy & Paste again sfdx force:apex:test:run -l RunLocalTests Notes: -l is a shorthand for --testlevel (testlevel can be: RunAllTestsInOrg, RunSpecifiedTests)
  • 35. Now that you’ve had a taste… Here’s our Open Source Cookbook Peter Chittum has started a Command Line Cookbook… it’s very much work in progress https://github.com/open-force/sfcli-cookbook Recipes for ● Beginners ● Power Users ● … and stuff that will impress your Dev colleagues ● All recipes available in macOS/bash or Win10/powershell flavors Call to Action: Request a Recipe
  • 36. Useful resources Subtitle placeholder Trailhead: SFDX Quick Start https://trailhead.salesforce.com/en/content/learn/projects/quick-start- salesforce-dx Peter Chittum: Apply the CLI to everyday problems https://www.salesforce.com/video/3596221 Martin Humpolec: Salesforce DX for Admins https://www.salesforce.com/video/3620750/ Pluralsight has Beginner Guides for Powershell and Bash Salesforce DX Quick Start
  • 37. FIN
  • 38. Q & A
  • 39. Thank You First Name Last Name Title of Presenter email@salesforce.com @twitterhandle Remember to tell us what you think in the event survey www.frenchtouchdreamin.com/survey