18 lines
442 B
C#
18 lines
442 B
C#
using System;
|
|
using System.IO;
|
|
|
|
namespace VMPKeygen
|
|
{
|
|
public class _Main
|
|
{
|
|
static void Main(string[] args)
|
|
{
|
|
var date1 = new DateTime(2024, 5, 1, 8, 0, 0);
|
|
using (StreamWriter outputFile = new StreamWriter(Path.Combine(Environment.GetFolderPath(Environment.SpecialFolder.Desktop), "VMP.txt"), true))
|
|
{
|
|
outputFile.Write(Keygen.GenerateKey(1, "Paranormal", "paranormalactivity22@protonmail.com", date1));
|
|
}
|
|
}
|
|
}
|
|
}
|