Computer Problems? Computing.Net has over 1,000,000 posts about all things technology related! Over 90% answered within 24 hours! Click here to start participating now! Also, be sure to check out the New User Guide.
I'm trying to to open a .exe file, but it opens as a batch file and will not open with the normal command.. This is what I have... StreamReader sw = new StreamReader("Settings.conf"); string line = sw.ReadLine(); line = sw.ReadLine(); Process.Start(@line.Split('=')[1] + "\\arcemu-logonserver.exe");
And it opens the window for half a second. Then it just closes... but it needs to stay open.. its the logon server for somthing....
Summary: Hello, I want to create an exe file from a batch file and 2 other exe file. How can I do this? I want it so that when I click the exe it runs the batch file and it can still do things with the other 2...
Summary: There are some batch file "compilers" out there. A google search of "batch compiler" will bring up many. Most of them just compress a text file and make an executable that essentially is a self extrac...
Summary: Hi, I'm trying to associate a type of file to an app from a batch file using reg add command: reg add hklm\software\xxx /ve /t reg_sz /d ""%cd%\prog.exe" "%1"" but it doesn't write in the registry exa...