Skip to content

Commit

Permalink
Add files via upload
Browse files Browse the repository at this point in the history
  • Loading branch information
LesFerch authored Jun 9, 2024
1 parent 438b348 commit 820d9a0
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 6 deletions.
10 changes: 5 additions & 5 deletions Program.cs
Original file line number Diff line number Diff line change
Expand Up @@ -34,11 +34,11 @@ static void Main()
int buildNumber = int.Parse(Registry.GetValue(NTkey, "CurrentBuild", "").ToString());
int UBR = int.Parse(Registry.GetValue(NTkey, "UBR", "").ToString());

if ((buildNumber < 21996) || (UBR < 3007))
{
MessageBox.Show("Windows 11 build revision 3007 or higher required", myName);
return;
}
//if ((buildNumber < 21996) || (UBR < 3007))
//{
// MessageBox.Show("Windows 11 build revision 3007 or higher required", myName);
// return;
//}

using (RegistryKey key = Registry.CurrentUser.OpenSubKey(E10A))
{
Expand Down
2 changes: 1 addition & 1 deletion Properties/AssemblyInfo.cs
Original file line number Diff line number Diff line change
Expand Up @@ -33,4 +33,4 @@
// by using the '*' as shown below:
// [assembly: AssemblyVersion("1.0.*")]
[assembly: AssemblyVersion("2.0.0.0")]
[assembly: AssemblyFileVersion("2.0.0.0")]
[assembly: AssemblyFileVersion("2.0.1.0")]

0 comments on commit 820d9a0

Please sign in to comment.