使用MacOS(M2芯片):
我有PowerShell脚本,我需要作为管理员(sudo)运行。
为了调试脚本,我需要在调试模式下从调试提示符运行脚本--但是我不知道如何在调试模式下运行。
像python一样,我们只是调试,
python3 -m pdb myscript.py
或者,我在伊势模式下使用Powershell扩展在Macbook中尝试VSCode-但我正在努力找到一种方法在VSCODE中以Sudo/管理员权限运行我的脚本
Existing PbiWorkbench (PbiWb) install detected, comparing versions...
Importing PbiWorkbench (PbiWb)...
Adding token to PbiWorkbench secure storage for future updates
Invoking PbiWb module...
OperationStopped: Must run as administrator
PS /Users/wilson>
1条答案
按热度按时间cedebl8k1#
在终端中,通过运行以下命令以调试模式启动PowerShell:
Pssh-NoProfile -ExecutionPolicy Bypass -Command“Set-Psslog-Trace 1; .\ScriptName.ps1”
然后,您可以使用“Set-PsBreakpoint”小工具在脚本中设置断点。