New Service

A trivial way to get system from admin privilege is to create a new service which will run our executable. Our executable will run with SYSTEM privileges by default.

sc create lol binPath= "c:\executable.exe"
sc start lol

Last updated