PowerShell - Useful Profile Utility Functions¶
Source: PowerShell/functions.ps1 at main · jimbrig/PowerShell (github.com)
Automation Utility Helper Functions¶
Custom Application Launchers¶
Open-Todoist
: Open Todoist ApplicationOpen-GitHub
: Open https://github.com using your Default BrowserOpen-Docker
: Start up Docker DesktopOpen-RProject
: Invoke my customjimstools::open_project()
R function (See jimstools/addin-open_project.R at master · jimbrig/jimstools (github.com))
# ----------
# Launchers
# ----------
Function Open-Todoist { start-process -PassThru 'C:\Users\jimmy\AppData\Local\Programs\todoist\Todoist.exe' }
Function Open-GitHub { start-process -PassThru 'https://github.com/' }
Function Open-Docker { start-process -PassThru 'C:\Program Files\Docker\Docker\frontend\Docker Desktop.exe' }
Function Open-RProject { Rscript -e 'jimstools::open_project()' }
Appendix: Links¶
- Code
- Development
- Windows
- Microsoft DOS
- Command Line
- 2-Areas/MOCs/PowerShell
Backlinks:
list from [[2-Areas/MOCs/PowerShell - Usefule Profile Utility Functions]] AND -"Changelog"