[#M_檢視所有Command<展開>|檢視所有Command<關閉>| 1. Screenshot: this command attaches the screenshot to the returning email. syntax: screenshot();
2. Shutdown: this command will shutdown your PC. syntax: shutdown();
3. Logoff: logs off. syntax: logoff();
4. Restart: Restarts your PC. [warning: if have not set sRemote to start with windows, then you'll lose control over your PC if you will restart it.] syntax: restart();
5. Abort shutdown: Will abort the shutting of PC. syntax: abort();
6. Run any command or program: Execute any command, file or program (such as a mp3 file). syntax: run(program,parameters); for eg. if you want to start a download: run(http://www.somesite.com/download.zip); if you want to play dhoom.mp3: run(c:\music\dhoom.mp3);
7. Play a wav file: plays a WAV file. syntax: play(path);
8. Display a message: syntax: msg(text);
9. Log some info: writes some info into the log file. syntax: log(text);
10. exit: exits the application. syntax: exit();
11. Sound a beep. syntax: beep();
12. Forcefully shutdown the PC: instantly shuts down the PC. syntax: forceshut();
13. send an email from any gmail id: syntax: mail(sender,password,receiver,body,subject);
14. get list of processes with PID and title of window. syntax: processes();
15. ping a server to see if it is alive. syntax: ping(address); for eg. ping(www.google.com);
16. kill a process given its PID [which you can get from the "processes" command] syntax: kill(PID);
17. Get list of files and folders in a directory. syntax: getlist(path); for eg. getlist(c:\);
18. Get a file: attaches the specified file in the returning email. [if the file is an exe file, the it is renamed to .super file. File size limit: 25MB] syntax: getfile(path);
19. Delete a file. syntax: delfile(path);
20. Delete a directory. syntax: deldir(path);
21. The uptime of your PC: for how many minutues your computer has been running. syntax: uptime();
22. Copy a file. syntax: copy(oldpath,newpath);
23. Move a file. syntax: move(oldpath,newpath);
24. Get this file mailed to you. syntax: help();
25. Pause the processing for a number of seconds. syntax: wait(seconds); help: wait(5);_M#] 處理結果