Windows PowerShell向我展示了此错误:字符串缺少终结器:'

发布于 2025-01-22 02:07:15 字数 1399 浏览 0 评论 0原文

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

友谊不毕业 2025-01-29 02:07:15

powershell示例命令:

unzipRelease –Src '$ReleaseFile' -Dst '$Destination'

此处的文件路径是在变量中设置的,或者直接在命令中编写应包括上面的引号。

如果您有任何路径,其中包括:

“ C:\ users \ delsg \”

在PowerShell命令中上述路径时,请像以下方式一样重写:
“ c:\\ users \\ delsg \\”

其他几个示例是:

它可与单个引号一起使用。命令(或powershell)将摘下双引号,除非它们 shash slash 。或将其放入脚本中。或通过参数列表作为数组。

powershell Start-Process -Verb runas cmd '/k dir c:\'  
  
powershell Start-Process -Verb runas cmd \"/k dir c:\\\"  
  
powershell Start-Process -Verb runas cmd /k,dir,c:\

PowerShell example Command:

unzipRelease –Src '$ReleaseFile' -Dst '$Destination'

Here the File Path is set in variable or writing directly in the command should include the quotes like above.

If you have any path which includes backslashes like:

"C:\users\delsg\"

When writing above path in PowerShell commands, rewrite it like:
"C:\\users\\delsg\\"

Few other examples were:

It works with single quotes. Command (or PowerShell) will take off the double quotes unless they're back slashed. Or put it in a script. Or pass the argument list as an array.

powershell Start-Process -Verb runas cmd '/k dir c:\'  
  
powershell Start-Process -Verb runas cmd \"/k dir c:\\\"  
  
powershell Start-Process -Verb runas cmd /k,dir,c:\
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文