G Guest Apr 18, 2007 #1 I need to change the logon/password of an established Windows Service; a Scheduled Job, Autologon. Can I do this with C++?
I need to change the logon/password of an established Windows Service; a Scheduled Job, Autologon. Can I do this with C++?
W William DePalo [MVP VC++] Apr 18, 2007 #2 Ken said: I need to change the logon/password of an established Windows Service; Click to expand... Check the docs for ChangeServiceConfig() http://msdn2.microsoft.com/en-us/library/ms681987.aspx Can I do this with C++? Click to expand... You can do it with any language which can load a DLL, call a function within it and pass it the address of a structure aka record aka user defined type. Regards, Will
Ken said: I need to change the logon/password of an established Windows Service; Click to expand... Check the docs for ChangeServiceConfig() http://msdn2.microsoft.com/en-us/library/ms681987.aspx Can I do this with C++? Click to expand... You can do it with any language which can load a DLL, call a function within it and pass it the address of a structure aka record aka user defined type. Regards, Will