61ffc53425
A quick atomic test that utilizes register-cimprovider to execute a dll that pops calc.
13 lines
180 B
C++
13 lines
180 B
C++
#include <windows.h>
|
|
|
|
int beerTime()
|
|
{
|
|
WinExec("calc", SW_SHOWNORMAL);
|
|
}
|
|
|
|
BOOL WINAPI DllMain(HINSTANCE hinstDLL, DWORD fdwReason, LPVOID lpvReserved)
|
|
{
|
|
beerTime();
|
|
return 0;
|
|
}
|