I have installed DevC++ at school so I can compile C apps but every time I try to compile I get an error reading the command prompt is disabled by the sysadmin.

How can I compile anyway?

Compiler is MinGW.

link|improve this question

73% accept rate
What is the exact error message you get? – larsmans Mar 1 '11 at 11:34
The system administrator has disabled the command prompt. – WTP'-- Mar 1 '11 at 11:37
feedback

2 Answers

That sounds like pretty tight restrictions. I don't know that there are good ways around it without just re-enabling command prompt. Are you sure it's compiling that needs a command prompt? I'd think it'd be running the app that needs it, if anything.

However, before you try anything like that, it'd be a pretty good idea to try installing Code::Blocks and using that instead. C::B is much more modern than DevC++ and might not require this privilege for just compiling and running apps that don't need a console window. As a bonus, I'm pretty sure C::B is compatible with DevC++ project files and devpaks.

As an additional solution, if you're dealing with a Windows XP system, most of the time a few simple registry modifications can re-enable these things. Even if regedit is disabled, you can still edit the registry using the APIs directly; there might be tools for this across the internet.

link|improve this answer
For the last solution, I did a quick Google search and came up with this, which looks pretty useful: windowsxp.mvps.org/disablecmd.htm - it regards malicious software, but it should work just as well for intentional restrictions. – John Chadwick Mar 1 '11 at 11:40
Modifying the system settings at school may result in a ban and alot of punisment :) – WTP'-- Mar 1 '11 at 11:43
1  
@Radek S: While that is true, the possibility is very insignificant. If it were significant, the school would invest more into securing the software in the first place. Most schools are completely oblivious to actual threats (which is why USB drive viruses flourish in schools.) – John Chadwick Mar 1 '11 at 11:44
feedback

Talk to the person responsible for the school's computers and tell him/her that you want to learn programming and thus require access to a command prompt. Having a CLI available is always a good thing. And frankly: Disabling access to the command line? WTF?! That's no security at all.

link|improve this answer
Good idea, I'll ask my teacher next lesson. He has access to the sysadmin's account. – WTP'-- Mar 1 '11 at 14:37
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.