编辑安装路径
Edit installation path
我想使用 $Add-AppxPackage 安装 appx Package,但我需要在我的第二个硬盘上安装该应用程序,那么如何在 PowerShell $Add-AppxPackage 中更改安装路径?
您无法在 add-appxpackage 过程中更改安装位置,Add-AppxPackage. You could see the same opinion in the thread:Question on "Add-AppxPackage" powershell command
中没有用于更改安装位置的可选参数
但是,您可以在应用 installed.The 步骤 Windows 10:Setting-->Apps-->Apps&features-->select 你的应用-->移动-->选择你的第二个硬盘。
我只是将文件复制到我想要的位置(虽然不是程序文件,但不起作用)set-location“您传输到的文件路径”
然后 运行 在目录
中执行 Add-AppPackage 命令
我想使用 $Add-AppxPackage 安装 appx Package,但我需要在我的第二个硬盘上安装该应用程序,那么如何在 PowerShell $Add-AppxPackage 中更改安装路径?
您无法在 add-appxpackage 过程中更改安装位置,Add-AppxPackage. You could see the same opinion in the thread:Question on "Add-AppxPackage" powershell command
中没有用于更改安装位置的可选参数但是,您可以在应用 installed.The 步骤 Windows 10:Setting-->Apps-->Apps&features-->select 你的应用-->移动-->选择你的第二个硬盘。
我只是将文件复制到我想要的位置(虽然不是程序文件,但不起作用)set-location“您传输到的文件路径” 然后 运行 在目录
中执行 Add-AppPackage 命令