//+------------------------------------------------------------------+ //| Shutdown.mq4 | //| Copyright © 2010. | //| http://mql4you.ru | //+------------------------------------------------------------------+ #property copyright "Copyright © 2010." #property link "http://mql4you.ru" #property show_confirm #import "kernel32.dll" int WinExec(string lpCmdLine,int uCmdShow); //+------------------------------------------------------------------+ int start() {if(IsDllsAllowed()==false) {Alert("Вызов из библиотек (DLL) невозможен. Скрипт не может выполняться."); return(0);} WinExec("shutdown.exe -s -f",1); return(0);} //+------------------------------------------------------------------+