mirror of
https://github.com/algerkong/AlgerMusicPlayer.git
synced 2026-04-03 14:20:50 +08:00
13 lines
299 B
NSIS
13 lines
299 B
NSIS
# 设置 Windows 7 兼容性
|
|
ManifestDPIAware true
|
|
ManifestSupportedOS all
|
|
|
|
!macro customInit
|
|
# 检查系统版本
|
|
${If} ${AtLeastWin7}
|
|
# Windows 7 或更高版本
|
|
${Else}
|
|
MessageBox MB_OK|MB_ICONSTOP "此应用程序需要 Windows 7 或更高版本。"
|
|
Abort
|
|
${EndIf}
|
|
!macroend |