sunshine bump to v2025.924.154138, rename from phserver.exe to sunshine.exe

This commit is contained in:
Zhanghu
2026-01-06 09:59:21 +08:00
parent 307d61e7c7
commit 3c2baa16cc
97 changed files with 2474 additions and 1572 deletions

View File

@@ -0,0 +1,8 @@
# Use Get-CimInstance to find and uninstall Virtual Gamepad
$product = Get-CimInstance -ClassName Win32_Product -Filter "Name='ViGEm Bus Driver'"
if ($product) {
Invoke-CimMethod -InputObject $product -MethodName Uninstall
Write-Information "ViGEm Bus Driver uninstalled successfully"
} else {
Write-Warning "ViGEm Bus Driver not found"
}