I don't know about you, but I find myself launching juptyer notebooks often enough now that typing the command is annoying. Here's how to add a context menu on Windows to open one in the current directory or the directory you're right clicking on.
First, make a .bat file like this, mine is C:\Users\dgoodman\Scripts\jupyter-here.bat
:
if NOT [%1]==[] (
cd "%1"
)
call conda activate jupyter
call jupyter notebook