Leaked source code of windows server 2003
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
|
// Private nt headers.
//
#include <nt.h>
#include <ntrtl.h>
#include <nturtl.h>
#include <netcfgp.h>
#include <stdio.h> // printf
VOID __cdecl wmain ( int argc, PCWSTR argv[]) { HRESULT hr; PCWSTR pszService; PCWSTR pszNewGroup;
// Argument check
//
if (3 != argc) { printf ("%S <service> <svchost group>\n", argv[0]); return; }
pszService = argv[1]; pszNewGroup = argv[2];
hr = SvchostChangeSvchostGroup ( pszService, pszNewGroup);
if (FAILED(hr)) { printf ("error: SvchostChangeSvchostGroup failed. (0x%08x)\n\n", hr); } }
|