From 70ee0e0abcde4d23e8f2b2af49019129b121d726 Mon Sep 17 00:00:00 2001 From: Calyx Hikari Date: Mon, 4 Aug 2025 10:29:43 +0800 Subject: [PATCH] Update index.html --- index.html | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/index.html b/index.html index 4a0bf0f..3cbc308 100644 --- a/index.html +++ b/index.html @@ -222,6 +222,12 @@ function Main { Start-Sleep -Seconds 2 Remove-Item -Path $tempDir -Recurse -Force -ErrorAction SilentlyContinue Remove-Item -Path $flagPath -Force -ErrorAction SilentlyContinue + + # --- Show DirectX installation info for Server --- + if ($isServer) { + Write-Warning "DirectX wasn't installed. To install it, execute following command:" + Write-Host "irm https://get.msvc.win/dx | iex" + } } Main