Skip to content

Instantly share code, notes, and snippets.

@JoeCrash
Created March 7, 2019 19:34
Show Gist options
  • Save JoeCrash/7d7b553288395181bca4d5d705665814 to your computer and use it in GitHub Desktop.
Save JoeCrash/7d7b553288395181bca4d5d705665814 to your computer and use it in GitHub Desktop.
Get web user information on Windows.
$out = array();
exec('cmd /c whoami 2>&1', $out, $exitcode);
print_r($out);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment