CSGO-Grafikoptimierungsskript für Windows 10

Dieses Powershell Skript hat ebenfalls Chat-gpt erstellt


# CSGO-Grafikoptimierungsskript für Windows 10

# NVIDIA-optimierte Einstellungen
New-ItemProperty -Path "HKCU:\Software\Microsoft\Direct3D\Drivers" -Name "SoftwareOnly" -Value 0 -PropertyType DWORD -Force
New-ItemProperty -Path "HKCU:\Software\Microsoft\Direct3D\Drivers" -Name "EnableMixedReality" -Value 0 -PropertyType DWORD -Force
New-ItemProperty -Path "HKCU:\Software\Microsoft\Direct3D\Drivers" -Name "EnableNullDriver" -Value 0 -PropertyType DWORD -Force
New-ItemProperty -Path "HKCU:\Software\Microsoft\Direct3D\Drivers" -Name "EnableDebugLayer" -Value 0 -PropertyType DWORD -Force
Write-Output "NVIDIA-optimierte Einstellungen angewendet."

# AMD-optimierte Einstellungen
New-ItemProperty -Path "HKCU:\Software\Khronos\OpenGL\DllPaths" -Name "C:\Windows\System32\DriverStore\FileRepository\u0343609.inf_amd64_82e1f94494fb3014\B361704\atig6pxx.dll" -Value 0 -PropertyType DWORD -Force
New-ItemProperty -Path "HKCU:\Software\Khronos\OpenGL\DllPaths" -Name "C:\Windows\System32\DriverStore\FileRepository\u0343609.inf_amd64_82e1f94494fb3014\B361704\aticfx64.dll" -Value 0 -PropertyType DWORD -Force
Write-Output "AMD-optimierte Einstellungen angewendet."

# Intel-optimierte Einstellungen
New-ItemProperty -Path "HKCU:\Software\Khronos\OpenGL\DllPaths" -Name "C:\Windows\System32\DriverStore\FileRepository\igdlh64.inf_amd64_433a1e0fdda066c0\igdumdim64.dll" -Value 0 -PropertyType DWORD -Force
New-ItemProperty -Path "HKCU:\Software\Khronos\OpenGL\DllPaths" -Name "C:\Windows\System32\DriverStore\FileRepository\igdlh64.inf_amd64_433a1e0fdda066c0\igd10iumd64.dll" -Value 0 -PropertyType DWORD -Force
Write-Output "Intel-optimierte Einstellungen angewendet."

# CSGO-Startoptionen festlegen
$CSGOPath = "C:\Path\To\CSGO\csgo.exe"  # Passe den Pfad zu deiner CSGO-Installation an
$LaunchOptions = "-novid -nojoy -high -freq 144"  # Passe die Startoptionen nach Bedarf an
Set-ItemProperty -Path "HKCU:\Software\Valve\Steam\Apps\730" -Name "SteamAppLaunchOptions" -Value $LaunchOptions -Force
Write-Output "CSGO-Startoptionen festgelegt."

Write-Output "CSGO-Grafikoptimierung abgeschlossen."