[RAPPS] Bulk install!
[reactos.git] / reactos / base / applications / sc / sc.c
index 7a394ec..e2b7508 100644 (file)
@@ -284,6 +284,30 @@ ScControl(LPCTSTR Server,       // remote machine name
         else
             GetDisplayNameUsage();
     }
+    else if (!lstrcmpi(Command, _T("GetKeyName")))
+    {
+        if (ArgCount > 0)
+        {
+            ServiceName = *ServiceArgs++;
+            ArgCount--;
+
+            GetKeyName(ServiceName);
+        }
+        else
+            GetKeyNameUsage();
+    }
+    else if (!lstrcmpi(Command, _T("EnumDepend")))
+    {
+        if (ArgCount > 0)
+        {
+            ServiceName = *ServiceArgs++;
+            ArgCount--;
+
+            EnumDepend(ServiceName);
+        }
+        else
+            EnumDependUsage();
+    }
     else
     {
         MainUsage();