WiiUZip icon indicating copy to clipboard operation
WiiUZip copied to clipboard

Doesn't boot and terminates itself.

Open TheNawab opened this issue 8 years ago • 3 comments

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 : 2017-11-18 15-56-06

TheNawab avatar Nov 18 '17 10:11 TheNawab

Same here

wicksand420 avatar Nov 22 '17 09:11 wicksand420

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]));
     }
    ......

bluedoom avatar Jan 21 '18 11:01 bluedoom

Same here (though it works fine under win10 x64 and win 7 x86 VMs)

ChoGGi avatar Jan 21 '18 11:01 ChoGGi