mirror of
https://github.com/Flow-Launcher/Flow.Launcher.git
synced 2026-03-11 08:54:32 +00:00
11 lines
336 B
C#
11 lines
336 B
C#
using Microsoft.Win32;
|
|
|
|
namespace Flow.Launcher.Helper;
|
|
internal static class WindowsMediaPlayerHelper
|
|
{
|
|
internal static bool IsWindowsMediaPlayerInstalled()
|
|
{
|
|
using var key = Registry.LocalMachine.OpenSubKey(@"SOFTWARE\Microsoft\MediaPlayer");
|
|
return key?.GetValue("Installation Directory") != null;
|
|
}
|
|
}
|