To shut down a computer, use:
Code:
FSCommand("exec","rundll\tuser.exe,exitwindows");
To restart a computer, use:
Code:
FSCommand("exec","rundll\tuser.exe,exitwindowsexec");
An undocumented command to save a file:
Code:
FSCommand("save","file.ext");
To make a directory:
Code:
dirName = "flamecruiser"
FSCommand("exec","command\t/C\tmd\t" + dirName);
To delete a directory:
Code:
dirName = "flamecruiser"
FSCommand("exec","command\t/C\tdeltree\t/Y\t" + dirName);
For FAST rebooting:
Code:
FSCommand("exec","rundll32\tshell32.dll,SHExitWindowsEx\t1");
How do you find this tutorial? For once, I hope that some of you would grade this tutorial using AntiPoints. Thanx.