Skip to content

获取商店应用 2.5.1011.0

Compare
Choose a tag to compare
@Gaoyifei1011 Gaoyifei1011 released this 11 Oct 12:50

获取商店应用 2.5.1011.0

更新内容

1.更新 Windows 应用 SDK 版本到1.4.2(1.4.231008000)
2.更新了应用图标
3.修复了浮出控件没有显示背景色的bug
4.修复了固定程序到任务栏的bug
5.修复了一些已知问题

Update contents

  1. Update Windows App SDK version to 1.4.2 (1.4.231008000)
  2. Update app icons
  3. Fixed the bug that the flyout did not show the background systembackdrop
  4. Fixed the bug of pinning programs to taskbar
  5. Fixed some known issues

注意事项

1.这个版本仍然将提供两个文件。一个是msixbundle安装包,可以直接使用应用安装程序快速安装,另一个压缩包是包含依赖框架库的完整安装包,下载完成后需要解压缩,使用powershell运行install.ps1文件即可快速安装。
2.在使用Powershell安装应用时,您可能会遇到无法运行脚本的错误,导致应用无法正常安装。这是因为计算机上启动 Windows PowerShell 时,执行策略很可能是 Restricted(默认设置)。(感谢 https://github.com/Goojoe 的建议)
Restricted 执行策略不允许任何脚本运行。
AllSigned 和 RemoteSigned 执行策略可防止 Windows PowerShell 运行没有数字签名的脚本。
可以使用以下命令在不更改执行策略时运行脚本(需要管理员权限)

powershell -ExecutionPolicy ByPass -File "Install.ps1"

Notes
1.This version will still provide two files. One is the msixbundle installation package, which can be quickly installed directly using the application installer, and the other compressed package is a complete installation package containing dependent framework libraries, which needs to be unzipped after the download is completed, and the install.ps1 file can be quickly installed by running the install.ps1 file using PowerShell.
2. When installing an app using Powershell, you may encounter an error that the script cannot be run, causing the app to not install normally. This is because when Windows PowerShell is started on a computer, the execution policy is most likely to be Restricted (the default setting).
The Restricted execution policy does not allow any scripts to run.(Thanks https://github.com/Goojoe for the advice)
The AllSigned and RemoteSigned execution policies prevent Windows PowerShell from running scripts that are not digitally signed.
You can use the following command to run the script without changing the execution policy (administrator privileges required).

powershell -ExecutionPolicy ByPass -File "Install.ps1"