Delete WindowsHelper.cs

This commit is contained in:
Belim 2020-09-20 19:17:46 +02:00 committed by GitHub
parent bab7f4bfed
commit ab59cfdef7
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -1,16 +0,0 @@
using Microsoft.Win32;
namespace Privatezilla
{
internal static class WindowsHelper
{
internal static string GetOS()
{
string releaseID = Registry.GetValue(@"HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows NT\CurrentVersion", "ReleaseId", "").ToString();
return releaseID;
}
}
}