作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我正在尝试运行该过程并等到它关闭。
当我像下面那样运行 VSIXInstaller 时,它可以工作:
$pathToTheExtension = $path + "VS2012.Ext.vsix"
VSIXInstaller.exe $pathToTheExtension
$pathToTheExtension = $path + "VS2012.Ext.vsix"
$result = $(Start-Process -filePath "VSIXInstaller.exe" -argumentList $pathToTheExtension -Wait)
"C:\Program Files (x86)\Microsoft Visual Studio 11.0\Common7\IDE\VSIXInstaller.exe" "C:\VS2012.Ext.vsix"
最佳答案
您需要用引号将参数值括起来。
$pathToTheExtension = '"{0}VS2012.Ext.vsix"' -f $path;
$result = Start-Process -FilePath "VSIXInstaller.exe" -ArgumentList $pathToTheExtension -Wait -PassThru;
关于powershell - 启动过程不适用于 VSIXInstaller.exe,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/11512903/
从应用程序启动 VSIXInstaller.exe 时,我们尝试使用 Process 对象上的 ExitCode 属性来确定包是否已成功安装,但我们发现即使用户单击退出代码也为 0对话框上的“取消”按
我正在尝试运行该过程并等到它关闭。 当我像下面那样运行 VSIXInstaller 时,它可以工作: $pathToTheExtension = $path + "VS2012.Ext.vsix" V
我想通过使用 WiX 的 msi 安装我的 VSIX。 我的wxs文件中有以下代码 当我构建项目时,我得到了预期的不错的 msi,但是当我尝试执行它时,它崩溃了。
我最近尝试在 Visual Studio 2015 中安装企业库 6.0,但安装程序抛出错误: VSIXInstaller.NoApplicableSKUsException: This extens
我是一名优秀的程序员,十分优秀!