public void WriteLicence(String Key)
 {
     if (File.Exists(LicencePath) == true)
     {
         LoggerClass.WriteLogWarning("Licence Deleted");
         File.Delete(LicencePath);
     }
     File.WriteAllText(LicencePath, CryptographyClass.Encrypt(Key, EncryptionKey));
 }