mirror of
https://github.com/ayufan/steam-deck-tools.git
synced 2025-12-06 07:12:01 +01:00
22 lines
463 B
C#
22 lines
463 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Diagnostics;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace PowerControl.Helpers.AMD
|
|
{
|
|
public class RadeonSoftware
|
|
{
|
|
public static void Kill()
|
|
{
|
|
foreach (var process in Process.GetProcessesByName("RadeonSoftware.exe"))
|
|
{
|
|
try { process.Kill(); }
|
|
catch { }
|
|
}
|
|
}
|
|
}
|
|
}
|