skip this stupid administrator check on old windows versions. windows isn't capable of being useful for non-administrators until windows 10.
This commit is contained in:
parent
4ba7b68e66
commit
1b8158f4c2
|
@ -1,6 +1,7 @@
|
||||||
using System;
|
using System;
|
||||||
using System.Diagnostics;
|
using System.Diagnostics;
|
||||||
using System.IO;
|
using System.IO;
|
||||||
|
using System.Linq;
|
||||||
using System.Collections.Generic;
|
using System.Collections.Generic;
|
||||||
using System.Reflection;
|
using System.Reflection;
|
||||||
using System.Runtime.InteropServices;
|
using System.Runtime.InteropServices;
|
||||||
|
@ -246,7 +247,14 @@ namespace BizHawk.Client.EmuHawk
|
||||||
_ = SetDllDirectory(dllDir);
|
_ = SetDllDirectory(dllDir);
|
||||||
}
|
}
|
||||||
|
|
||||||
if (EmuHawkUtil.CLRHostHasElevatedPrivileges)
|
//skip privilege
|
||||||
|
bool skipPrivilegesCheck = false;
|
||||||
|
var oldVersions = new[] { OSTC.WindowsVersion.XP, OSTC.WindowsVersion.Vista, OSTC.WindowsVersion._7, OSTC.WindowsVersion._8, OSTC.WindowsVersion._8_1 };
|
||||||
|
if(OSTC.HostWindowsVersion.HasValue)
|
||||||
|
if(oldVersions.Contains(OSTC.HostWindowsVersion.Value.Version))
|
||||||
|
skipPrivilegesCheck = true;
|
||||||
|
|
||||||
|
if (EmuHawkUtil.CLRHostHasElevatedPrivileges && !skipPrivilegesCheck)
|
||||||
{
|
{
|
||||||
using MsgBox dialog = new(
|
using MsgBox dialog = new(
|
||||||
title: "This EmuHawk is privileged",
|
title: "This EmuHawk is privileged",
|
||||||
|
|
Loading…
Reference in New Issue