Open wt as admin in windows 11

So I can use wt -d {sourcepath|noterm}
to open a terminal in current folder.

I'm currently using powershell "Start-Process -Verb RunAs cmd.exe '/c start wt.exe'"
to open as admin...but it's not pretty.

Does anyone know of a more graceful way to open a windows terminal as admin?

Adding @admin:, i.e. @admin:wt -d {sourcepath|noterm} should be all you need.

Or, for multi-line commands:

@admin
wt -d {sourcepath|noterm}
...more lines here...

(Works with single-line ones as well.)