Files
2019-03-22 22:38:59 +00:00

12 lines
277 B
C++

#include <Windows.h>
#include "pplib.h"
int main()
{
if (elevate_ppl())
MessageBoxA(NULL, "Use ProcessHacker to check PPL status", "Paused", NULL);
else
MessageBoxA(NULL, "Something went wrong - probably unsuported windows version", "Error", MB_ICONERROR);
return 0;
}