Adds NET START to net.exe (Try 7)

Tim Schwartz tim at sanityinternet.com
Mon May 28 10:02:48 CDT 2007


The patch sent previously (try 6) had buffer_size set incorrectly.
This patch was tested on windows and correctly starts the services and
displays the full service name.
-------------- next part --------------
diff --git a/programs/net/Makefile.in b/programs/net/Makefile.in
index 5db7fc0..9037323 100644
--- a/programs/net/Makefile.in
+++ b/programs/net/Makefile.in
@@ -4,7 +4,7 @@ SRCDIR    = @srcdir@
 VPATH     = @srcdir@
 MODULE    = net.exe
 APPMODE   = -mconsole
-IMPORTS   = kernel32
+IMPORTS   = kernel32 advapi32
 
 C_SRCS = net.c
 
diff --git a/programs/net/net.c b/programs/net/net.c
index f77c820..e4180de 100644
--- a/programs/net/net.c
+++ b/programs/net/net.c
@@ -18,15 +18,59 @@
 
 #include <stdio.h>
 #include <string.h>
+#include <windows.h>
+
+#define NET_START 0001
+
+static BOOL net_service(int operation, char *service_name)
+{
+    SC_HANDLE SCManager, serviceHandle;
+    BOOL result = 0;
+    DWORD buffer_size = 4096;
+    static char service_display_name[4096];
+
+    SCManager = OpenSCManager(NULL, NULL, SC_MANAGER_ALL_ACCESS);
+    if(!SCManager)
+    {
+        printf("Couldn't get handle to SCManager.\n");
+        return FALSE;
+    }
+    serviceHandle = OpenService(SCManager, service_name, SC_MANAGER_ALL_ACCESS);
+    if(!serviceHandle)
+    {
+        printf("Couldn't get handle to service.\n");
+        CloseServiceHandle(SCManager);
+        return FALSE;
+    }
+
+
+    GetServiceDisplayName(SCManager, service_name, service_display_name, &buffer_size);
+    if(strlen(service_display_name) == 0) strncpy(service_display_name, service_name, strlen(service_name));
+
+    switch(operation)
+    {
+    case NET_START:
+        printf("The %s service is starting.\n", service_display_name);
+        result = StartService(serviceHandle, 0, NULL);
+       
+        printf("The %s service ", service_display_name);
+        if(!result) printf("failed to start.\n");
+        else printf("was started successfully.\n");
+        break;
+    }    
+
+    CloseServiceHandle(serviceHandle);
+    CloseServiceHandle(SCManager);
+    return result;
+}
 
 int main(int argc, char *argv[])
 {
-    int ret = 0;
 
     if (argc < 2)
     {
         printf("The syntax of this command is:\n\n");
-        printf("NET [ HELP ]\n");
+        printf("NET [ HELP | START ]\n");
         return 1;
     }
 
@@ -35,7 +79,23 @@ int main(int argc, char *argv[])
         printf("The syntax of this command is:\n\n");
         printf("NET HELP command\n    -or-\nNET command /HELP\n\n");
         printf("   Commands available are:\n");
-        printf("   NET HELP\n");
+        printf("   NET HELP	NET START\n");
     }
-    return ret;
+
+    if(!strcasecmp(argv[1], "start"))
+    {
+        if(argc < 3)
+        {
+            printf("Specify service name to start.\n");
+            return 1;
+        }
+
+        if(!net_service(NET_START, argv[2]))
+        {
+            return 1;
+        }
+        return 0;
+    }
+
+    return 0;
 }


More information about the wine-patches mailing list