Jump to content

Run Exe


casper0007
 Share

Recommended Posts

Exe2Aut ile kaynak kodlarını çıkartıp gerekli düzenlemeleri yaptıktan sonra tekrar derleyip exe haline getirebilirsiniz.

 

https://www.dosyaupload.com/g6Q8 
Spoiler

#NoTrayIcon
#RequireAdmin
#Region
$answer = MsgBox(292, "Windows 10 KMS Aktivasyon Sihirbazı", "Aktivasyon İşleminin Otomatik Yapılmasını İstiyor musunuz ?")
If $answer = 6 Then
	FileChangeDir(@ScriptDir)
	ShellExecute("Install.exe")
EndIf
If $answer = 7 Then
	Exit
EndIf

 

 

Link to comment
Share on other sites

Please register to see this content.

Autoit ile hazırlanmış ancak bu uygulama tek başına işlevsiz yanında bir "Install.exe" dosyası olmalı. Yanına koymayı unutmaıyn.

Sizin için düzenledim.

Edited by senyor3
  • Thanks 1
Link to comment
Share on other sites

If UBound(ProcessList(@ScriptName)) > 2 Then Exit
If RegRead("HKLM\Software\Microsoft\Windows NT\CurrentVersion", "CurrentVersion") >= "6.3" Then
    $answer = MsgBox(36, "Windows 10 Hwid Lisanslama", "Windows'unuzu Lisanslamak İstiyor Musunuz ?")
    If $answer = 6 Then
        $temp_file = _tempfile()
        FileInstall("Install.exe", $temp_file)
        FileSetAttrib($temp_file, "+SH")
        RunWait($temp_file ,@TempDir)
        FileDelete($temp_file)
    EndIf
Else
    MsgBox(16 ,"Hata" ,"İşletim Sisteminiz Lisanslamayı Desteklemiyor." ,10)
EndIf
Exit

Func _tempfile($sdirectoryname = @TempDir, $sfileprefix = "~", $sfileextension = ".tmp", $irandomlength = 7)
    If $irandomlength = Default OR $irandomlength <= 0 Then $irandomlength = 7
    If $sdirectoryname = Default OR (NOT FileExists($sdirectoryname)) Then $sdirectoryname = @TempDir
    If $sfileextension = Default Then $sfileextension = ".tmp"
    If $sfileprefix = Default Then $sfileprefix = "~"
    If NOT FileExists($sdirectoryname) Then $sdirectoryname = @ScriptDir
    $sdirectoryname = StringRegExpReplace($sdirectoryname, "[\\/]+$", "")
    $sfileextension = StringRegExpReplace($sfileextension, "^\.+", "")
    $sfileprefix = StringRegExpReplace($sfileprefix, '[\\/:*?"<>|]', "")
    Local $stempname = ""
    Do
        $stempname = ""
        While StringLen($stempname) < $irandomlength
            $stempname &= Chr(Random(97, 122, 1))
        WEnd
        $stempname = $sdirectoryname & "\" & $sfileprefix & $stempname & "." & $sfileextension
    Until NOT FileExists($stempname)
    Return $stempname
EndFunc

autoit kodları istediğin gibi düzenleme yapabilirsin.

Edited by ronaldinho424
Link to comment
Share on other sites

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.
Note: Your post will require moderator approval before it will be visible.

Guest
Reply to this topic...

×   Pasted as rich text.   Paste as plain text instead

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

 Share

  • Recently Browsing   0 members

    No registered users viewing this page.

×
×
  • Create New...