Search Results

0
votes
5answers
426 views

Remote installing of windows service

I need to remotely install windows service on number of computers, so I use CreateService() and other service functions from winapi. I know admin password and user name for machines that I need acc …
2
votes
2answers
225 views

Problem with converting enumerations in C++\CLI

I have an assembly, written in C++\CLI, which uses some of enumerations, provided by .Net. It has such kind of properties: property System::ServiceProcess::ServiceControllerStatu …
0
votes

Remote installing of windows service

this doesn't work I will be really very glad if you show me where i'm wrong. I call to OpenSCManager in place that i marked with the commentary in question. SC_HANDLE schManager = OpenS …
0
votes

Remote installing of windows service

OK, problem resolved (not really very good, but rather OK). I used WNetAddConnection() to ipc$ on remote machine. …
5
votes

How to run C/C++ in a Unix console/Mac terminal?

gcc main.cpp -o main.out ./main.out …