Doesn't boot and terminates itself.
This has been happening no matter what compatibility options I select or even run it as administrator.
The program never boots and its process is terminated as soon as it starts. My antivirus is not blocking it.
Here is my OS info if that's relevant : Windows 7 x64 Professional (Constantly updated)
Here is a gif showing the error :

Same here
I met same problem I download the source. <Program.cs> ..... static void Main(string[] args) { Application.EnableVisualStyles(); Application.SetCompatibleTextRenderingDefault(false); try { makeAssociations(); } catch (UnauthorizedAccessException) { if (args.Length <= 0) Application.Run(new Form1()); else Application.Run(new Form1(args[0])); } } ...... ////modify like this-> <Program.cs> ..... static void Main(string[] args) { Application.EnableVisualStyles(); Application.SetCompatibleTextRenderingDefault(false); try { makeAssociations(); } catch (UnauthorizedAccessException) {
}
if (args.Length <= 0)
Application.Run(new Form1());
else
Application.Run(new Form1(args[0]));
}
......
Same here (though it works fine under win10 x64 and win 7 x86 VMs)