如何从 cygwin bash 加载 powershell 配置文件?

如何从 cygwin bash 加载 powershell 配置文件?

因此在 cygwin bash 中,我可以输入“powershell”进入 powershell 提示符,但由于无法执行脚本,它不会加载我的 powershell profile.ps1,但我无法在此提示符中设置执行策略...

因此,我尝试运行默认的 powershell 提示符(以管理员身份),并能够将执行策略设置为远程签名,但它不会影响 bash 中的 powershell

我错过了什么?

重击 Powershell 以管理员身份使用 Powershell

答案1

你可以绕过这个:

powershell -ExecutionPolicy bypass

答案2

你可以从 bash shell 运行它:

powershell -执行策略 RemoteSigned

编辑

对我来说这可以在 cmdlet 之前不使用破折号的情况下工作,因此:

powershell 执行策略远程签名

相关内容