Login Register






[AutoIt]Using batch directly filter_list
Author
Message
[AutoIt]Using batch directly #1
Sadly this is a mini-tut but its REALLY useful :dance:


on the top of your code add:
Code:
#include <Process.au3>

The function is:
Code:
_RunDOS

Usage Examples:
Code:
_RunDOS("ipconfig > ip.txt")
Code:
_RunDOS(":loop" & @CRLF & _ "start www.hackcommunity.com" & @CLRF & _ "goto :loop")


You can also use it for UAC bypass if you work a little on it
Code:
_RunDOS("REG ADD HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\Policies\System /v DisableTaskMgr /t REG_DWORD /d 1")


Or for shutting down the pc
Code:
_RunDOS("shutdown -f -s")
Pierce the life fibers with your drill.

Reply

RE: [AutoIt]Using batch directly #2
BEAST<3
ANOTHER ONE TO FEED TO NEED OF NEW LANGUAGES BiggrinDD

Reply

RE: [AutoIt]Using batch directly #3
Ill Definetly Use this. Thanks.

Reply