https://git.reactos.org/?p=reactos.git;a=commitdiff;h=34e92908217e68c57c36befdfedd059db93f917e

commit 34e92908217e68c57c36befdfedd059db93f917e
Author:     Eric Kohl <eric.k...@reactos.org>
AuthorDate: Sun Dec 23 20:22:48 2018 +0100
Commit:     Eric Kohl <eric.k...@reactos.org>
CommitDate: Sun Dec 23 20:22:48 2018 +0100

    [NET] Move COMPUTER, CONFIG and CONTINUE command syntax and help texts into 
a message table.
---
 base/applications/network/net/cmdConfig.c   |  19 +-
 base/applications/network/net/cmdContinue.c |   7 +-
 base/applications/network/net/help.c        |  23 +-
 base/applications/network/net/lang/en-US.rc |  41 ---
 base/applications/network/net/lang/es-ES.rc |  41 ---
 base/applications/network/net/lang/pl-PL.rc |  41 ---
 base/applications/network/net/lang/ro-RO.rc |  41 ---
 base/applications/network/net/lang/ru-RU.rc |  41 ---
 base/applications/network/net/lang/tr-TR.rc |  41 ---
 base/applications/network/net/lang/zh-CN.rc |  41 ---
 base/applications/network/net/lang/zh-TW.rc |  41 ---
 base/applications/network/net/resource.h    |  15 -
 sdk/include/reactos/mc/net_msg.mc           | 550 +++++++++++++++++++++++++++-
 13 files changed, 565 insertions(+), 377 deletions(-)

diff --git a/base/applications/network/net/cmdConfig.c 
b/base/applications/network/net/cmdConfig.c
index df7fce2c96..ecc434ad5c 100644
--- a/base/applications/network/net/cmdConfig.c
+++ b/base/applications/network/net/cmdConfig.c
@@ -183,12 +183,12 @@ cmdConfig(
             if (bServer == TRUE)
             {
                 ConResPuts(StdOut, IDS_GENERIC_SYNTAX);
-                ConResPuts(StdOut, IDS_CONFIG_SERVER_SYNTAX);
+                PrintNetMessage(MSG_CONFIG_SERVER_SYNTAX);
             }
             else
             {
                 ConResPuts(StdOut, IDS_GENERIC_SYNTAX);
-                ConResPuts(StdOut, IDS_CONFIG_SYNTAX);
+                PrintNetMessage(MSG_CONFIG_SYNTAX);
             }
             return 0;
         }
@@ -199,20 +199,15 @@ cmdConfig(
             if (bServer == TRUE)
             {
                 ConResPuts(StdOut, IDS_GENERIC_SYNTAX);
-                ConResPuts(StdOut, IDS_CONFIG_SERVER_SYNTAX);
-                ConResPuts(StdOut, IDS_CONFIG_SERVER_HELP_1);
-                ConResPuts(StdOut, IDS_CONFIG_SERVER_HELP_2);
-                ConResPuts(StdOut, IDS_CONFIG_SERVER_HELP_3);
-                ConResPuts(StdOut, IDS_CONFIG_SERVER_HELP_4);
-                ConResPuts(StdOut, IDS_CONFIG_SERVER_HELP_5);
+                PrintNetMessage(MSG_CONFIG_SERVER_SYNTAX);
+                PrintNetMessage(MSG_CONFIG_SERVER_HELP);
                 ConResPuts(StdOut, IDS_GENERIC_PAGE);
             }
             else
             {
                 ConResPuts(StdOut, IDS_GENERIC_SYNTAX);
-                ConResPuts(StdOut, IDS_CONFIG_SYNTAX);
-                ConResPuts(StdOut, IDS_CONFIG_HELP_1);
-                ConResPuts(StdOut, IDS_CONFIG_HELP_2);
+                PrintNetMessage(MSG_CONFIG_SYNTAX);
+                PrintNetMessage(MSG_CONFIG_HELP);
             }
             return 0;
         }
@@ -271,7 +266,7 @@ cmdConfig(
             else
             {
                 ConResPuts(StdOut, IDS_GENERIC_SYNTAX);
-                ConResPuts(StdOut, IDS_CONFIG_SERVER_SYNTAX);
+                PrintNetMessage(MSG_CONFIG_SERVER_SYNTAX);
                 result = 1;
                 goto done;
             }
diff --git a/base/applications/network/net/cmdContinue.c 
b/base/applications/network/net/cmdContinue.c
index 7fa3a934dd..7d656ca1e5 100644
--- a/base/applications/network/net/cmdContinue.c
+++ b/base/applications/network/net/cmdContinue.c
@@ -20,7 +20,7 @@ INT cmdContinue(INT argc, WCHAR **argv)
     if (argc != 3)
     {
         ConResPuts(StdOut, IDS_GENERIC_SYNTAX);
-        ConResPuts(StdOut, IDS_CONTINUE_SYNTAX);
+        PrintNetMessage(MSG_CONTINUE_SYNTAX);
         return 1;
     }
 
@@ -29,9 +29,8 @@ INT cmdContinue(INT argc, WCHAR **argv)
         if (_wcsicmp(argv[i], L"/help") == 0)
         {
             ConResPuts(StdOut, IDS_GENERIC_SYNTAX);
-            ConResPuts(StdOut, IDS_CONTINUE_SYNTAX);
-            ConResPuts(StdOut, IDS_CONTINUE_HELP_1);
-            ConResPuts(StdOut, IDS_CONTINUE_HELP_2);
+            PrintNetMessage(MSG_CONTINUE_SYNTAX);
+            PrintNetMessage(MSG_CONTINUE_HELP);
             ConResPuts(StdOut, IDS_GENERIC_PAGE);
             return 1;
         }
diff --git a/base/applications/network/net/help.c 
b/base/applications/network/net/help.c
index 9dcbe34028..df968b5e33 100644
--- a/base/applications/network/net/help.c
+++ b/base/applications/network/net/help.c
@@ -30,9 +30,8 @@ INT cmdHelp(INT argc, WCHAR **argv)
 
     if (_wcsicmp(argv[2], L"COMPUTER") == 0)
     {
-        ConResPuts(StdOut, IDS_COMPUTER_SYNTAX);
-        ConResPuts(StdOut, IDS_COMPUTER_HELP_1);
-        ConResPuts(StdOut, IDS_COMPUTER_HELP_2);
+        PrintNetMessage(MSG_COMPUTER_SYNTAX);
+        PrintNetMessage(MSG_COMPUTER_HELP);
         return 0;
     }
 
@@ -40,20 +39,15 @@ INT cmdHelp(INT argc, WCHAR **argv)
     {
         if ((argc > 3) && (_wcsicmp(argv[3], L"SERVER") == 0))
         {
-            ConResPuts(StdOut, IDS_CONFIG_SERVER_SYNTAX);
-            ConResPuts(StdOut, IDS_CONFIG_SERVER_HELP_1);
-            ConResPuts(StdOut, IDS_CONFIG_SERVER_HELP_2);
-            ConResPuts(StdOut, IDS_CONFIG_SERVER_HELP_3);
-            ConResPuts(StdOut, IDS_CONFIG_SERVER_HELP_4);
-            ConResPuts(StdOut, IDS_CONFIG_SERVER_HELP_5);
+            PrintNetMessage(MSG_CONFIG_SERVER_SYNTAX);
+            PrintNetMessage(MSG_CONFIG_SERVER_HELP);
             ConResPuts(StdOut, IDS_GENERIC_PAGE);
             return 0;
         }
         else
         {
-            ConResPuts(StdOut, IDS_CONFIG_SYNTAX);
-            ConResPuts(StdOut, IDS_CONFIG_HELP_1);
-            ConResPuts(StdOut, IDS_CONFIG_HELP_2);
+            PrintNetMessage(MSG_CONFIG_SYNTAX);
+            PrintNetMessage(MSG_CONFIG_HELP);
             ConResPuts(StdOut, IDS_GENERIC_PAGE);
             return 0;
         }
@@ -61,9 +55,8 @@ INT cmdHelp(INT argc, WCHAR **argv)
 
     if (_wcsicmp(argv[2], L"CONTINUE") == 0)
     {
-        ConResPuts(StdOut, IDS_CONTINUE_SYNTAX);
-        ConResPuts(StdOut, IDS_CONTINUE_HELP_1);
-        ConResPuts(StdOut, IDS_CONTINUE_HELP_2);
+        PrintNetMessage(MSG_CONTINUE_SYNTAX);
+        PrintNetMessage(MSG_CONTINUE_HELP);
         return 0;
     }
 
diff --git a/base/applications/network/net/lang/en-US.rc 
b/base/applications/network/net/lang/en-US.rc
index 5d03128159..108cc51a4f 100644
--- a/base/applications/network/net/lang/en-US.rc
+++ b/base/applications/network/net/lang/en-US.rc
@@ -2,47 +2,6 @@ LANGUAGE LANG_ENGLISH, SUBLANG_ENGLISH_US
 
 STRINGTABLE
 BEGIN
-    IDS_COMPUTER_SYNTAX "NET COMPUTER \\computername {/ADD | /DEL}\n\n"
-    IDS_COMPUTER_HELP_1 "NET COMPUTER adds or deletes computers from a domain 
database. This\n\
-command is available only on server operating systems.\n\n"
-    IDS_COMPUTER_HELP_2 "\\computername   Specifies the computer to add or 
delete from\n\
-                the domain.\n\
-/ADD            Adds the specified computer to the domain.\n\
-/DEL            Removes the specified computer from the domain.\n\n"
-    IDS_CONFIG_SYNTAX "NET CONFIG [SERVER | WORKSTATION]\n\n"
-    IDS_CONFIG_HELP_1 "NET CONFIG displays coniguration information of the 
Workstation or\n\
-Server service. When used without the WORKSTATION or SERVER switch,\n\
-it displays a list of configurable services. To get help with\n\
-configuring a service, type NET HELP CONFIG service.\n\n"
-    IDS_CONFIG_HELP_2 "SERVER        Displays information about the 
configuration of the\n\
-              Server service.\n\
-WORKSTATION   Displays information about the configuration of the\n\
-              Workstation service.\n\n"
-    IDS_CONFIG_SERVER_SYNTAX "NET CONFIG SERVER [/AUTODISCONNECT:time] 
[/SRVCOMMENT:""text""]\n\
-                  [/HIDDEN:{YES | NO}]\n\n"
-    IDS_CONFIG_SERVER_HELP_1 "NET CONFIG SERVER displays or changes settings 
for the Server service.\n\n"
-    IDS_CONFIG_SERVER_HELP_2 "/AUTODISCONNECT:time    Sets the maximum number 
of minutes a user's\n\
-                        session can be inactive before it is disconected.\n\
-                        You can specify -1 to never disconnect. The range\n\
-                        is -1-65535 minutes; the default is 15.\n"
-    IDS_CONFIG_SERVER_HELP_3 "/SRVCOMMENT:""text""    Adds a comment for the 
server that is displayed on\n\
-                        screen and with the NET VIEW command.\n\
-                        Enclose the text in quotation marks.\n"
-    IDS_CONFIG_SERVER_HELP_4 "/HIDDEN:{YES | NO}      Specifies whether the 
server's computer name\n\
-                        appears on displays listings of servers. Note that\n\
-                        hiding a serverdoes not alter the permissions\n\
-                        on that server. The default is NO.\n\n"
-    IDS_CONFIG_SERVER_HELP_5 "To display the current configuration for the 
Server service,\n\
-type NET CONFIG SERVER without parameters.\n\n"
-    IDS_CONTINUE_SYNTAX "NET CONTINUE service\n\n"
-    IDS_CONTINUE_HELP_1 "NET CONTINUE reactivates a service that has been 
suspended by NET PAUSE.\n\n"
-    IDS_CONTINUE_HELP_2 "service             Is the paused service\n\
-                    For example, one of the following:\n\
-                    NET LOGON\n\
-                    NT LM SECURITY SUPPORT PROVIDER\n\
-                    SCHEDULE\n\
-                    SERVER\n\
-                    WORKSTATION\n\n"
     IDS_FILE_SYNTAX "NET FILE [id [/CLOSE]]\n\n"
     IDS_FILE_HELP "FILE\n...\n\n"
     IDS_GROUP_SYNTAX "NET GROUP [groupname [/COMMENT:""text""]] [/DOMAIN]\n\
diff --git a/base/applications/network/net/lang/es-ES.rc 
b/base/applications/network/net/lang/es-ES.rc
index 603513b9d9..09b6793e41 100644
--- a/base/applications/network/net/lang/es-ES.rc
+++ b/base/applications/network/net/lang/es-ES.rc
@@ -5,47 +5,6 @@ LANGUAGE LANG_SPANISH, SUBLANG_NEUTRAL
 
 STRINGTABLE
 BEGIN
-    IDS_COMPUTER_SYNTAX "NET COMPUTER \\computername {/ADD | /DEL}\n\n"
-    IDS_COMPUTER_HELP_1 "NET COMPUTER adds or deletes computers from a domain 
database. This\n\
-command is available only on server operating systems.\n\n"
-    IDS_COMPUTER_HELP_2 "\\computername   Specifies the computer to add or 
delete from\n\
-                the domain.\n\
-/ADD            Adds the specified computer to the domain.\n\
-/DEL            Removes the specified computer from the domain.\n\n"
-    IDS_CONFIG_SYNTAX "NET CONFIG [SERVER | WORKSTATION]\n\n"
-    IDS_CONFIG_HELP_1 "NET CONFIG displays coniguration information of the 
Workstation or\n\
-Server service. When used without the WORKSTATION or SERVER switch,\n\
-it displays a list of configurable services. To get help with\n\
-configuring a service, type NET HELP CONFIG service.\n\n"
-    IDS_CONFIG_HELP_2 "SERVER        Displays information about the 
configuration of the\n\
-              Server service.\n\
-WORKSTATION   Displays information about the configuration of the\n\
-              Workstation service.\n\n"
-    IDS_CONFIG_SERVER_SYNTAX "NET CONFIG SERVER [/AUTODISCONNECT:time] 
[/SRVCOMMENT:""text""]\n\
-                  [/HIDDEN:{YES | NO}]\n\n"
-    IDS_CONFIG_SERVER_HELP_1 "NET CONFIG SERVER displays or changes settings 
for the Server service.\n\n"
-    IDS_CONFIG_SERVER_HELP_2 "/AUTODISCONNECT:time    Sets the maximum number 
of minutes a user's\n\
-                        session can be inactive before it is disconected.\n\
-                        You can specify -1 to never disconnect. The range\n\
-                        is -1-65535 minutes; the default is 15.\n"
-    IDS_CONFIG_SERVER_HELP_3 "/SRVCOMMENT:""text""    Adds a comment for the 
server that is displayed on\n\
-                        screen and with the NET VIEW command.\n\
-                        Enclose the text in quotation marks.\n"
-    IDS_CONFIG_SERVER_HELP_4 "/HIDDEN:{YES | NO}      Specifies whether the 
server's computer name\n\
-                        appears on displays listings of servers. Note that\n\
-                        hiding a serverdoes not alter the permissions\n\
-                        on that server. The default is NO.\n\n"
-    IDS_CONFIG_SERVER_HELP_5 "To display the current configuration for the 
Servr service,\n\
-type NET CONFIG SERVER without parameters.\n\n"
-    IDS_CONTINUE_SYNTAX "NET CONTINUE <nombre del servicio>\n\n"
-    IDS_CONTINUE_HELP_1 "NET CONTINUE reactivates a service that has been 
suspended by NET PAUSE.\n\n"
-    IDS_CONTINUE_HELP_2 "service             Is the paused service\n\
-                    For example, one of the following:\n\
-                    NET LOGON\n\
-                    NT LM SECURITY SUPPORT PROVIDER\n\
-                    SCHEDULE\n\
-                    SERVER\n\
-                    WORKSTATION\n\n"
     IDS_FILE_SYNTAX "NET FILE [id [/CLOSE]]\n\n"
     IDS_FILE_HELP "NET FILE\n...\n\n"
     IDS_GROUP_SYNTAX "NET GROUP [groupname [/COMMENT:""text""]] [/DOMAIN]\n\
diff --git a/base/applications/network/net/lang/pl-PL.rc 
b/base/applications/network/net/lang/pl-PL.rc
index a718d45363..111f82007d 100644
--- a/base/applications/network/net/lang/pl-PL.rc
+++ b/base/applications/network/net/lang/pl-PL.rc
@@ -1,47 +1,6 @@
 LANGUAGE LANG_POLISH, SUBLANG_DEFAULT
 STRINGTABLE
 BEGIN
-    IDS_COMPUTER_SYNTAX "NET COMPUTER \\nazwa_komputera {/ADD | /DEL}\n\n"
-    IDS_COMPUTER_HELP_1 "NET COMPUTER dodaje lub usuwa komputer z bazy danych 
domeny.\n\
-To polecenie jest dostępne tylko na serwerowych systemach opoeracyjnych.\n\n"
-    IDS_COMPUTER_HELP_2 "\\nazwa_komputera   Określa komputer dodawany lub 
usuwany\n\
-                z domeny.\n\
-/ADD            Dodaje określony komputer do domeny.\n\
-/DEL            Usuwa określony komputer z domeny.\n\n"
-    IDS_CONFIG_SYNTAX "NET CONFIG [SERVER | WORKSTATION]\n\n"
-    IDS_CONFIG_HELP_1 "NET CONFIG wyświetla informacje o konfiguracji usług 
Stacja robocza lub\n\
-Serwer. Polecenie użyte bez przełącznika SERVER lub WORKSTATION wyświetla,\n\
-listę usług dostępnych do konfiguracji. Aby uzyskać pomoc na temat\n\
-konfigurowania usługi, wpisz polecenie NET HELP CONFIG usługa.\n\n"
-    IDS_CONFIG_HELP_2 "SERVER        Wyświetla informacje o konfiguracji 
usługi Serwer\n\
-WORKSTATION   Wyświetla informacje o konfiguracji usługi Stacja robocza.\n\n"
-    IDS_CONFIG_SERVER_SYNTAX "NET CONFIG SERVER [/AUTODISCONNECT:czas] 
[/SRVCOMMENT:""tekst""]\n\
-                  [/HIDDEN:{YES | NO}]\n\n"
-    IDS_CONFIG_SERVER_HELP_1 "NET CONFIG SERVER wyświetla lub zmienia 
ustawienia usługi Serwer.\n\n"
-    IDS_CONFIG_SERVER_HELP_2 "/AUTODISCONNECT:czas    Ustawia maksymalną 
liczbę minut, przez\n\
-                        które sesja użytkownika może być nieaktywna, zanim\n\
-                        nastąpi jej rozłączenie. Użyj wartości -1, aby\n\
-                        zapobiec rozłączaniu. Zakres wynosi od -1 do 65535\n\
-                                               minut, domyślnie 15.\n"
-    IDS_CONFIG_SERVER_HELP_3 "/SRVCOMMENT:""tekst""    Dodaje komentarz dla 
serwera wyświetlany na\n\
-                        ekranie komputera i przez polecenie NET VIEW.\n\
-                        Tekst musi być ujęty w cudzysłów.\n"
-    IDS_CONFIG_SERVER_HELP_4 "/HIDDEN:{YES | NO}      Określa, czy nazwa 
serwera pojawia się\n\
-                        podczas wyświetlania listy serwerów. Należy 
pamiętać,\n\
-                        że ukrycie serwera nie zmienia uprawnień na tym\n\
-                        serwerze. Wartość domyślna: NO (nie ukrywaj).\n\n"
-    IDS_CONFIG_SERVER_HELP_5 "Aby wyświetlić bieżącą konfigurację usługi 
Serwer,\n\
-wpisz NET CONFIG SERVER bez parametrów.\n\n"
-    IDS_CONTINUE_SYNTAX "NET CONTINUE usługa\n\n"
-    IDS_CONTINUE_HELP_1 "NET CONTINUE wznawia działanie usługi, która 
została.\n\
-wstrzymana poleceniem NET PAUSE.\n"
-    IDS_CONTINUE_HELP_2 "usługa             Wstrzymana usługa\n\
-                    Może to być jedna z następujących usług:\n\
-                    NET LOGON\n\
-                    NT LM SECURITY SUPPORT PROVIDER\n\
-                    SCHEDULE\n\
-                    SERVER\n\
-                    WORKSTATION\n\n"
     IDS_FILE_SYNTAX "NET FILE [identyfikator [/CLOSE]]\n\n"
     IDS_FILE_HELP "FILE\n...\n\n"
     IDS_GROUP_SYNTAX "NET GROUP [nazwa_grupy [/COMMENT:""tekst""]] [/DOMAIN]\n\
diff --git a/base/applications/network/net/lang/ro-RO.rc 
b/base/applications/network/net/lang/ro-RO.rc
index b5e4f0e38a..e7608f2415 100644
--- a/base/applications/network/net/lang/ro-RO.rc
+++ b/base/applications/network/net/lang/ro-RO.rc
@@ -8,47 +8,6 @@ LANGUAGE LANG_ROMANIAN, SUBLANG_NEUTRAL
 
 STRINGTABLE
 BEGIN
-    IDS_COMPUTER_SYNTAX "NET COMPUTER \\computername {/ADD | /DEL}\n\n"
-    IDS_COMPUTER_HELP_1 "NET COMPUTER adds or deletes computers from a domain 
database. This\n\
-command is available only on server operating systems.\n\n"
-    IDS_COMPUTER_HELP_2 "\\computername   Specifies the computer to add or 
delete from\n\
-                the domain.\n\
-/ADD            Adds the specified computer to the domain.\n\
-/DEL            Removes the specified computer from the domain.\n\n"
-    IDS_CONFIG_SYNTAX "NET CONFIG [SERVER | WORKSTATION]\n\n"
-    IDS_CONFIG_HELP_1 "NET CONFIG displays coniguration information of the 
Workstation or\n\
-Server service. When used without the WORKSTATION or SERVER switch,\n\
-it displays a list of configurable services. To get help with\n\
-configuring a service, type NET HELP CONFIG service.\n\n"
-    IDS_CONFIG_HELP_2 "SERVER        Displays information about the 
configuration of the\n\
-              Server service.\n\
-WORKSTATION   Displays information about the configuration of the\n\
-              Workstation service.\n\n"
-    IDS_CONFIG_SERVER_SYNTAX "NET CONFIG SERVER [/AUTODISCONNECT:time] 
[/SRVCOMMENT:""text""]\n\
-                  [/HIDDEN:{YES | NO}]\n\n"
-    IDS_CONFIG_SERVER_HELP_1 "NET CONFIG SERVER displays or changes settings 
for the Server service.\n\n"
-    IDS_CONFIG_SERVER_HELP_2 "/AUTODISCONNECT:time    Sets the maximum number 
of minutes a user's\n\
-                        session can be inactive before it is disconected.\n\
-                        You can specify -1 to never disconnect. The range\n\
-                        is -1-65535 minutes; the default is 15.\n"
-    IDS_CONFIG_SERVER_HELP_3 "/SRVCOMMENT:""text""    Adds a comment for the 
server that is displayed on\n\
-                        screen and with the NET VIEW command.\n\
-                        Enclose the text in quotation marks.\n"
-    IDS_CONFIG_SERVER_HELP_4 "/HIDDEN:{YES | NO}      Specifies whether the 
server's computer name\n\
-                        appears on displays listings of servers. Note that\n\
-                        hiding a serverdoes not alter the permissions\n\
-                        on that server. The default is NO.\n\n"
-    IDS_CONFIG_SERVER_HELP_5 "To display the current configuration for the 
Servr service,\n\
-type NET CONFIG SERVER without parameters.\n\n"
-    IDS_CONTINUE_SYNTAX "NET CONTINUE <nume serviciu>\n\n"
-    IDS_CONTINUE_HELP_1 "NET CONTINUE reactivates a service that has been 
suspended by NET PAUSE.\n\n"
-    IDS_CONTINUE_HELP_2 "service             Is the paused service\n\
-                    For example, one of the following:\n\
-                    NET LOGON\n\
-                    NT LM SECURITY SUPPORT PROVIDER\n\
-                    SCHEDULE\n\
-                    SERVER\n\
-                    WORKSTATION\n\n"
     IDS_FILE_SYNTAX "NET FILE [id [/CLOSE]]\n\n"
     IDS_FILE_HELP "NET FILE\n...\n\n"
     IDS_GROUP_SYNTAX "NET GROUP [groupname [/COMMENT:""text""]] [/DOMAIN]\n\
diff --git a/base/applications/network/net/lang/ru-RU.rc 
b/base/applications/network/net/lang/ru-RU.rc
index 8c918e1533..73139b3e19 100644
--- a/base/applications/network/net/lang/ru-RU.rc
+++ b/base/applications/network/net/lang/ru-RU.rc
@@ -4,47 +4,6 @@ LANGUAGE LANG_RUSSIAN, SUBLANG_DEFAULT
 
 STRINGTABLE
 BEGIN
-    IDS_COMPUTER_SYNTAX "NET COMPUTER \\computername {/ADD | /DEL}\n\n"
-    IDS_COMPUTER_HELP_1 "NET COMPUTER adds or deletes computers from a domain 
database. This\n\
-command is available only on server operating systems.\n\n"
-    IDS_COMPUTER_HELP_2 "\\computername   Specifies the computer to add or 
delete from\n\
-                the domain.\n\
-/ADD            Adds the specified computer to the domain.\n\
-/DEL            Removes the specified computer from the domain.\n\n"
-    IDS_CONFIG_SYNTAX "NET CONFIG [SERVER | WORKSTATION]\n\n"
-    IDS_CONFIG_HELP_1 "NET CONFIG displays coniguration information of the 
Workstation or\n\
-Server service. When used without the WORKSTATION or SERVER switch,\n\
-it displays a list of configurable services. To get help with\n\
-configuring a service, type NET HELP CONFIG service.\n\n"
-    IDS_CONFIG_HELP_2 "SERVER        Displays information about the 
configuration of the\n\
-              Server service.\n\
-WORKSTATION   Displays information about the configuration of the\n\
-              Workstation service.\n\n"
-    IDS_CONFIG_SERVER_SYNTAX "NET CONFIG SERVER [/AUTODISCONNECT:time] 
[/SRVCOMMENT:""text""]\n\
-                  [/HIDDEN:{YES | NO}]\n\n"
-    IDS_CONFIG_SERVER_HELP_1 "NET CONFIG SERVER displays or changes settings 
for the Server service.\n\n"
-    IDS_CONFIG_SERVER_HELP_2 "/AUTODISCONNECT:time    Sets the maximum number 
of minutes a user's\n\
-                        session can be inactive before it is disconected.\n\
-                        You can specify -1 to never disconnect. The range\n\
-                        is -1-65535 minutes; the default is 15.\n"
-    IDS_CONFIG_SERVER_HELP_3 "/SRVCOMMENT:""text""    Adds a comment for the 
server that is displayed on\n\
-                        screen and with the NET VIEW command.\n\
-                        Enclose the text in quotation marks.\n"
-    IDS_CONFIG_SERVER_HELP_4 "/HIDDEN:{YES | NO}      Specifies whether the 
server's computer name\n\
-                        appears on displays listings of servers. Note that\n\
-                        hiding a serverdoes not alter the permissions\n\
-                        on that server. The default is NO.\n\n"
-    IDS_CONFIG_SERVER_HELP_5 "To display the current configuration for the 
Servr service,\n\
-type NET CONFIG SERVER without parameters.\n\n"
-    IDS_CONTINUE_SYNTAX "NET CONTINUE <имя_службы>\n\n"
-    IDS_CONTINUE_HELP_1 "NET CONTINUE reactivates a service that has been 
suspended by NET PAUSE.\n\n"
-    IDS_CONTINUE_HELP_2 "service             Is the paused service\n\
-                    For example, one of the following:\n\
-                    NET LOGON\n\
-                    NT LM SECURITY SUPPORT PROVIDER\n\
-                    SCHEDULE\n\
-                    SERVER\n\
-                    WORKSTATION\n\n"
     IDS_FILE_SYNTAX "NET FILE [id [/CLOSE]]\n\n"
     IDS_FILE_HELP "NET FILE\n...\n\n"
     IDS_GROUP_SYNTAX "NET GROUP [groupname [/COMMENT:""text""]] [/DOMAIN]\n\
diff --git a/base/applications/network/net/lang/tr-TR.rc 
b/base/applications/network/net/lang/tr-TR.rc
index 33af6ce5d8..eb6857cadc 100644
--- a/base/applications/network/net/lang/tr-TR.rc
+++ b/base/applications/network/net/lang/tr-TR.rc
@@ -4,47 +4,6 @@ LANGUAGE LANG_TURKISH, SUBLANG_DEFAULT
 
 STRINGTABLE
 BEGIN
-    IDS_COMPUTER_SYNTAX "NET COMPUTER \\computername {/ADD | /DEL}\n\n"
-    IDS_COMPUTER_HELP_1 "NET COMPUTER adds or deletes computers from a domain 
database. This\n\
-command is available only on server operating systems.\n\n"
-    IDS_COMPUTER_HELP_2 "\\computername   Specifies the computer to add or 
delete from\n\
-                the domain.\n\
-/ADD            Adds the specified computer to the domain.\n\
-/DEL            Removes the specified computer from the domain.\n\n"
-    IDS_CONFIG_SYNTAX "NET CONFIG [SERVER | WORKSTATION]\n\n"
-    IDS_CONFIG_HELP_1 "NET CONFIG displays coniguration information of the 
Workstation or\n\
-Server service. When used without the WORKSTATION or SERVER switch,\n\
-it displays a list of configurable services. To get help with\n\
-configuring a service, type NET HELP CONFIG service.\n\n"
-    IDS_CONFIG_HELP_2 "SERVER        Displays information about the 
configuration of the\n\
-              Server service.\n\
-WORKSTATION   Displays information about the configuration of the\n\
-              Workstation service.\n\n"
-    IDS_CONFIG_SERVER_SYNTAX "NET CONFIG SERVER [/AUTODISCONNECT:time] 
[/SRVCOMMENT:""text""]\n\
-                  [/HIDDEN:{YES | NO}]\n\n"
-    IDS_CONFIG_SERVER_HELP_1 "NET CONFIG SERVER displays or changes settings 
for the Server service.\n\n"
-    IDS_CONFIG_SERVER_HELP_2 "/AUTODISCONNECT:time    Sets the maximum number 
of minutes a user's\n\
-                        session can be inactive before it is disconected.\n\
-                        You can specify -1 to never disconnect. The range\n\
-                        is -1-65535 minutes; the default is 15.\n"
-    IDS_CONFIG_SERVER_HELP_3 "/SRVCOMMENT:""text""    Adds a comment for the 
server that is displayed on\n\
-                        screen and with the NET VIEW command.\n\
-                        Enclose the text in quotation marks.\n"
-    IDS_CONFIG_SERVER_HELP_4 "/HIDDEN:{YES | NO}      Specifies whether the 
server's computer name\n\
-                        appears on displays listings of servers. Note that\n\
-                        hiding a serverdoes not alter the permissions\n\
-                        on that server. The default is NO.\n\n"
-    IDS_CONFIG_SERVER_HELP_5 "To display the current configuration for the 
Servr service,\n\
-type NET CONFIG SERVER without parameters.\n\n"
-    IDS_CONTINUE_SYNTAX "NET CONTINUE <Hizmet Adı>\n\n"
-    IDS_CONTINUE_HELP_1 "NET CONTINUE reactivates a service that has been 
suspended by NET PAUSE.\n\n"
-    IDS_CONTINUE_HELP_2 "service             Is the paused service\n\
-                    For example, one of the following:\n\
-                    NET LOGON\n\
-                    NT LM SECURITY SUPPORT PROVIDER\n\
-                    SCHEDULE\n\
-                    SERVER\n\
-                    WORKSTATION\n\n"
     IDS_FILE_SYNTAX "NET FILE [id [/CLOSE]]\n\n"
     IDS_FILE_HELP "NET FILE\n...\n\n"
     IDS_GROUP_SYNTAX "NET GROUP [groupname [/COMMENT:""text""]] [/DOMAIN]\n\
diff --git a/base/applications/network/net/lang/zh-CN.rc 
b/base/applications/network/net/lang/zh-CN.rc
index 91c346030e..72a4210ce3 100644
--- a/base/applications/network/net/lang/zh-CN.rc
+++ b/base/applications/network/net/lang/zh-CN.rc
@@ -4,47 +4,6 @@ LANGUAGE LANG_CHINESE, SUBLANG_CHINESE_SIMPLIFIED
 
 STRINGTABLE
 BEGIN
-    IDS_COMPUTER_SYNTAX "NET COMPUTER \\computername {/ADD | /DEL}\n\n"
-    IDS_COMPUTER_HELP_1 "NET COMPUTER adds or deletes computers from a domain 
database. This\n\
-command is available only on server operating systems.\n\n"
-    IDS_COMPUTER_HELP_2 "\\computername   Specifies the computer to add or 
delete from\n\
-                the domain.\n\
-/ADD            Adds the specified computer to the domain.\n\
-/DEL            Removes the specified computer from the domain.\n\n"
-    IDS_CONFIG_SYNTAX "NET CONFIG [SERVER | WORKSTATION]\n\n"
-    IDS_CONFIG_HELP_1 "NET CONFIG displays coniguration information of the 
Workstation or\n\
-Server service. When used without the WORKSTATION or SERVER switch,\n\
-it displays a list of configurable services. To get help with\n\
-configuring a service, type NET HELP CONFIG service.\n\n"
-    IDS_CONFIG_HELP_2 "SERVER        Displays information about the 
configuration of the\n\
-              Server service.\n\
-WORKSTATION   Displays information about the configuration of the\n\
-              Workstation service.\n\n"
-    IDS_CONFIG_SERVER_SYNTAX "NET CONFIG SERVER [/AUTODISCONNECT:time] 
[/SRVCOMMENT:""text""]\n\
-                  [/HIDDEN:{YES | NO}]\n\n"
-    IDS_CONFIG_SERVER_HELP_1 "NET CONFIG SERVER displays or changes settings 
for the Server service.\n\n"
-    IDS_CONFIG_SERVER_HELP_2 "/AUTODISCONNECT:time    Sets the maximum number 
of minutes a user's\n\
-                        session can be inactive before it is disconected.\n\
-                        You can specify -1 to never disconnect. The range\n\
-                        is -1-65535 minutes; the default is 15.\n"
-    IDS_CONFIG_SERVER_HELP_3 "/SRVCOMMENT:""text""    Adds a comment for the 
server that is displayed on\n\
-                        screen and with the NET VIEW command.\n\
-                        Enclose the text in quotation marks.\n"
-    IDS_CONFIG_SERVER_HELP_4 "/HIDDEN:{YES | NO}      Specifies whether the 
server's computer name\n\
-                        appears on displays listings of servers. Note that\n\
-                        hiding a serverdoes not alter the permissions\n\
-                        on that server. The default is NO.\n\n"
-    IDS_CONFIG_SERVER_HELP_5 "To display the current configuration for the 
Servr service,\n\
-type NET CONFIG SERVER without parameters.\n\n"
-    IDS_CONTINUE_SYNTAX "NET CONTINUE <Service Name>\n\n"
-    IDS_CONTINUE_HELP_1 "NET CONTINUE reactivates a service that has been 
suspended by NET PAUSE.\n\n"
-    IDS_CONTINUE_HELP_2 "service             Is the paused service\n\
-                    For example, one of the following:\n\
-                    NET LOGON\n\
-                    NT LM SECURITY SUPPORT PROVIDER\n\
-                    SCHEDULE\n\
-                    SERVER\n\
-                    WORKSTATION\n\n"
     IDS_FILE_SYNTAX "NET FILE [id [/CLOSE]]\n\n"
     IDS_FILE_HELP "NET FILE\n...\n\n"
     IDS_GROUP_SYNTAX "NET GROUP [groupname [/COMMENT:""text""]] [/DOMAIN]\n\
diff --git a/base/applications/network/net/lang/zh-TW.rc 
b/base/applications/network/net/lang/zh-TW.rc
index 45d5fe804d..8c63ff3154 100644
--- a/base/applications/network/net/lang/zh-TW.rc
+++ b/base/applications/network/net/lang/zh-TW.rc
@@ -4,47 +4,6 @@ LANGUAGE LANG_CHINESE, SUBLANG_CHINESE_TRADITIONAL
 
 STRINGTABLE
 BEGIN
-    IDS_COMPUTER_SYNTAX "NET COMPUTER \\computername {/ADD | /DEL}\n\n"
-    IDS_COMPUTER_HELP_1 "NET COMPUTER adds or deletes computers from a domain 
database. This\n\
-command is available only on server operating systems.\n\n"
-    IDS_COMPUTER_HELP_2 "\\computername   Specifies the computer to add or 
delete from\n\
-                the domain.\n\
-/ADD            Adds the specified computer to the domain.\n\
-/DEL            Removes the specified computer from the domain.\n\n"
-    IDS_CONFIG_SYNTAX "NET CONFIG [SERVER | WORKSTATION]\n\n"
-    IDS_CONFIG_HELP_1 "NET CONFIG displays coniguration information of the 
Workstation or\n\
-Server service. When used without the WORKSTATION or SERVER switch,\n\
-it displays a list of configurable services. To get help with\n\
-configuring a service, type NET HELP CONFIG service.\n\n"
-    IDS_CONFIG_HELP_2 "SERVER        Displays information about the 
configuration of the\n\
-              Server service.\n\
-WORKSTATION   Displays information about the configuration of the\n\
-              Workstation service.\n\n"
-    IDS_CONFIG_SERVER_SYNTAX "NET CONFIG SERVER [/AUTODISCONNECT:time] 
[/SRVCOMMENT:""text""]\n\
-                  [/HIDDEN:{YES | NO}]\n\n"
-    IDS_CONFIG_SERVER_HELP_1 "NET CONFIG SERVER displays or changes settings 
for the Server service.\n\n"
-    IDS_CONFIG_SERVER_HELP_2 "/AUTODISCONNECT:time    Sets the maximum number 
of minutes a user's\n\
-                        session can be inactive before it is disconected.\n\
-                        You can specify -1 to never disconnect. The range\n\
-                        is -1-65535 minutes; the default is 15.\n"
-    IDS_CONFIG_SERVER_HELP_3 "/SRVCOMMENT:""text""    Adds a comment for the 
server that is displayed on\n\
-                        screen and with the NET VIEW command.\n\
-                        Enclose the text in quotation marks.\n"
-    IDS_CONFIG_SERVER_HELP_4 "/HIDDEN:{YES | NO}      Specifies whether the 
server's computer name\n\
-                        appears on displays listings of servers. Note that\n\
-                        hiding a serverdoes not alter the permissions\n\
-                        on that server. The default is NO.\n\n"
-    IDS_CONFIG_SERVER_HELP_5 "To display the current configuration for the 
Servr service,\n\
-type NET CONFIG SERVER without parameters.\n\n"
-    IDS_CONTINUE_SYNTAX "NET CONTINUE <服務名稱>\n\n"
-    IDS_CONTINUE_HELP_1 "NET CONTINUE reactivates a service that has been 
suspended by NET PAUSE.\n\n"
-    IDS_CONTINUE_HELP_2 "service             Is the paused service\n\
-                    For example, one of the following:\n\
-                    NET LOGON\n\
-                    NT LM SECURITY SUPPORT PROVIDER\n\
-                    SCHEDULE\n\
-                    SERVER\n\
-                    WORKSTATION\n\n"
     IDS_FILE_SYNTAX "NET FILE [id [/CLOSE]]\n\n"
     IDS_FILE_HELP "NET FILE\n...\n\n"
     IDS_GROUP_SYNTAX "NET GROUP [groupname [/COMMENT:""text""]] [/DOMAIN]\n\
diff --git a/base/applications/network/net/resource.h 
b/base/applications/network/net/resource.h
index 71bbd8e2db..b448713391 100644
--- a/base/applications/network/net/resource.h
+++ b/base/applications/network/net/resource.h
@@ -1,20 +1,5 @@
 #pragma once
 
-#define IDS_COMPUTER_SYNTAX      111
-#define IDS_COMPUTER_HELP_1      112
-#define IDS_COMPUTER_HELP_2      113
-#define IDS_CONFIG_SYNTAX        114
-#define IDS_CONFIG_HELP_1        115
-#define IDS_CONFIG_HELP_2        116
-#define IDS_CONFIG_SERVER_SYNTAX 117
-#define IDS_CONFIG_SERVER_HELP_1 118
-#define IDS_CONFIG_SERVER_HELP_2 119
-#define IDS_CONFIG_SERVER_HELP_3 120
-#define IDS_CONFIG_SERVER_HELP_4 121
-#define IDS_CONFIG_SERVER_HELP_5 122
-#define IDS_CONTINUE_SYNTAX      123
-#define IDS_CONTINUE_HELP_1      124
-#define IDS_CONTINUE_HELP_2      125
 #define IDS_FILE_SYNTAX          126
 #define IDS_FILE_HELP            127
 #define IDS_GROUP_SYNTAX         128
diff --git a/sdk/include/reactos/mc/net_msg.mc 
b/sdk/include/reactos/mc/net_msg.mc
index b44a928dc1..e84c3ea5c8 100644
--- a/sdk/include/reactos/mc/net_msg.mc
+++ b/sdk/include/reactos/mc/net_msg.mc
@@ -209,7 +209,7 @@ NET ACCOUNTS to take effect.
   accounts havebeen set up (user User Manager or the NET USER command).
 
 - The Net Logon service must be running on all servers in the domain
-  that verify logon. Net Logon is started autmatically when the
+  that verify logon. Net Logon is started automatically when the
   operating system starts.
 
 /FORECELOGOFF:{minutes | NO}   Sets the number of minutes a user has before
@@ -332,7 +332,7 @@ NET ACCOUNTS to take effect.
   accounts havebeen set up (user User Manager or the NET USER command).
 
 - The Net Logon service must be running on all servers in the domain
-  that verify logon. Net Logon is started autmatically when the
+  that verify logon. Net Logon is started automatically when the
   operating system starts.
 
 /FORECELOGOFF:{minutes | NO}   Sets the number of minutes a user has before
@@ -373,7 +373,7 @@ NET ACCOUNTS to take effect.
   accounts havebeen set up (user User Manager or the NET USER command).
 
 - The Net Logon service must be running on all servers in the domain
-  that verify logon. Net Logon is started autmatically when the
+  that verify logon. Net Logon is started automatically when the
   operating system starts.
 
 /FORECELOGOFF:{minutes | NO}   Sets the number of minutes a user has before
@@ -401,3 +401,547 @@ NET ACCOUNTS to take effect.
                                the operation is performed on the local
                                computer.
 .
+
+
+MessageId=10002
+SymbolicName=MSG_COMPUTER_SYNTAX
+Severity=Success
+Facility=System
+Language=English
+NET COMPUTER \\computername {/ADD | /DEL}
+.
+Language=Polish
+NET COMPUTER \\nazwa_komputera {/ADD | /DEL}
+.
+Language=Romanian
+NET COMPUTER \\computername {/ADD | /DEL}
+.
+Language=Russian
+NET COMPUTER \\computername {/ADD | /DEL}
+.
+Language=Spanish
+NET COMPUTER \\computername {/ADD | /DEL}
+.
+Language=Turkish
+NET COMPUTER \\computername {/ADD | /DEL}
+.
+Language=Chinese
+NET COMPUTER \\computername {/ADD | /DEL}
+.
+Language=Taiwanese
+NET COMPUTER \\computername {/ADD | /DEL}
+.
+
+
+MessageId=10003
+SymbolicName=MSG_COMPUTER_HELP
+Severity=Success
+Facility=System
+Language=English
+NET COMPUTER adds or deletes computers from a domain database. This
+command is available only on server operating systems.
+
+\\computername   Specifies the computer to add or delete from
+                 the domain.
+/ADD             Adds the specified computer to the domain.
+/DEL             Removes the specified computer from the domain.
+.
+Language=Polish
+NET COMPUTER dodaje lub usuwa komputer z bazy danych domeny.
+To polecenie jest dostępne tylko na serwerowych systemach opoeracyjnych.
+
+\\nazwa_komputera   Określa komputer dodawany lub usuwany
+                    z domeny.
+/ADD                Dodaje określony komputer do domeny.
+/DEL                Usuwa określony komputer z domeny.
+.
+Language=Romanian
+NET COMPUTER adds or deletes computers from a domain database. This
+command is available only on server operating systems.
+
+\\computername   Specifies the computer to add or delete from
+                 the domain.
+/ADD             Adds the specified computer to the domain.
+/DEL             Removes the specified computer from the domain.
+.
+Language=Russian
+NET COMPUTER adds or deletes computers from a domain database. This
+command is available only on server operating systems.
+
+\\computername   Specifies the computer to add or delete from
+                 the domain.
+/ADD             Adds the specified computer to the domain.
+/DEL             Removes the specified computer from the domain.
+.
+Language=Spanish
+NET COMPUTER adds or deletes computers from a domain database. This
+command is available only on server operating systems.
+
+\\computername   Specifies the computer to add or delete from
+                 the domain.
+/ADD             Adds the specified computer to the domain.
+/DEL             Removes the specified computer from the domain.
+.
+Language=Turkish
+NET COMPUTER adds or deletes computers from a domain database. This
+command is available only on server operating systems.
+
+\\computername   Specifies the computer to add or delete from
+                 the domain.
+/ADD             Adds the specified computer to the domain.
+/DEL             Removes the specified computer from the domain.
+.
+Language=Chinese
+NET COMPUTER adds or deletes computers from a domain database. This
+command is available only on server operating systems.
+
+\\computername   Specifies the computer to add or delete from
+                 the domain.
+/ADD             Adds the specified computer to the domain.
+/DEL             Removes the specified computer from the domain.
+.
+Language=Taiwanese
+NET COMPUTER adds or deletes computers from a domain database. This
+command is available only on server operating systems.
+
+\\computername   Specifies the computer to add or delete from
+                 the domain.
+/ADD             Adds the specified computer to the domain.
+/DEL             Removes the specified computer from the domain.
+.
+
+
+MessageId=10004
+SymbolicName=MSG_CONFIG_SYNTAX
+Severity=Success
+Facility=System
+Language=English
+NET CONFIG [SERVER | WORKSTATION]
+.
+Language=Polish
+NET CONFIG [SERVER | WORKSTATION]
+.
+Language=Romanian
+NET CONFIG [SERVER | WORKSTATION]
+.
+Language=Russian
+NET CONFIG [SERVER | WORKSTATION]
+.
+Language=Spanish
+NET CONFIG [SERVER | WORKSTATION]
+.
+Language=Turkish
+NET CONFIG [SERVER | WORKSTATION]
+.
+Language=Chinese
+NET CONFIG [SERVER | WORKSTATION]
+.
+Language=Taiwanese
+NET CONFIG [SERVER | WORKSTATION]
+.
+
+
+MessageId=10005
+SymbolicName=MSG_CONFIG_HELP
+Severity=Success
+Facility=System
+Language=English
+NET CONFIG displays coniguration information of the Workstation or
+Server service. When used without the WORKSTATION or SERVER switch,
+it displays a list of configurable services. To get help with
+configuring a service, type NET HELP CONFIG service.
+
+SERVER        Displays information about the configuration of the
+              Server service.
+WORKSTATION   Displays information about the configuration of the
+              Workstation service.
+.
+Language=Polish
+NET CONFIG wyświetla informacje o konfiguracji usług Stacja robocza lub
+Serwer. Polecenie użyte bez przełącznika SERVER lub WORKSTATION wyświetla,
+listę usług dostępnych do konfiguracji. Aby uzyskać pomoc na temat
+konfigurowania usługi, wpisz polecenie NET HELP CONFIG usługa.
+
+SERVER        Wyświetla informacje o konfiguracji usługi Serwer
+WORKSTATION   Wyświetla informacje o konfiguracji usługi Stacja robocza.
+.
+Language=Romanian
+NET CONFIG displays coniguration information of the Workstation or
+Server service. When used without the WORKSTATION or SERVER switch,
+it displays a list of configurable services. To get help with
+configuring a service, type NET HELP CONFIG service.
+
+SERVER        Displays information about the configuration of the
+              Server service.
+WORKSTATION   Displays information about the configuration of the
+              Workstation service.
+.
+Language=Russian
+NET CONFIG displays coniguration information of the Workstation or
+Server service. When used without the WORKSTATION or SERVER switch,
+it displays a list of configurable services. To get help with
+configuring a service, type NET HELP CONFIG service.
+
+SERVER        Displays information about the configuration of the
+              Server service.
+WORKSTATION   Displays information about the configuration of the
+              Workstation service.
+.
+Language=Spanish
+NET CONFIG displays coniguration information of the Workstation or
+Server service. When used without the WORKSTATION or SERVER switch,
+it displays a list of configurable services. To get help with
+configuring a service, type NET HELP CONFIG service.
+
+SERVER        Displays information about the configuration of the
+              Server service.
+WORKSTATION   Displays information about the configuration of the
+              Workstation service.
+.
+Language=Turkish
+NET CONFIG displays coniguration information of the Workstation or
+Server service. When used without the WORKSTATION or SERVER switch,
+it displays a list of configurable services. To get help with
+configuring a service, type NET HELP CONFIG service.
+
+SERVER        Displays information about the configuration of the
+              Server service.
+WORKSTATION   Displays information about the configuration of the
+              Workstation service.
+.
+Language=Chinese
+NET CONFIG displays coniguration information of the Workstation or
+Server service. When used without the WORKSTATION or SERVER switch,
+it displays a list of configurable services. To get help with
+configuring a service, type NET HELP CONFIG service.
+
+SERVER        Displays information about the configuration of the
+              Server service.
+WORKSTATION   Displays information about the configuration of the
+              Workstation service.
+.
+Language=Taiwanese
+NET CONFIG displays coniguration information of the Workstation or
+Server service. When used without the WORKSTATION or SERVER switch,
+it displays a list of configurable services. To get help with
+configuring a service, type NET HELP CONFIG service.
+
+SERVER        Displays information about the configuration of the
+              Server service.
+WORKSTATION   Displays information about the configuration of the
+              Workstation service.
+.
+
+
+MessageId=10006
+SymbolicName=MSG_CONFIG_SERVER_SYNTAX
+Severity=Success
+Facility=System
+Language=English
+NET CONFIG SERVER [/AUTODISCONNECT:time] [/SRVCOMMENT:"text"]
+                  [/HIDDEN:{YES | NO}]
+.
+Language=Polish
+NET CONFIG SERVER [/AUTODISCONNECT:czas] [/SRVCOMMENT:"tekst"]
+                  [/HIDDEN:{YES | NO}]
+.
+Language=Romanian
+NET CONFIG SERVER [/AUTODISCONNECT:time] [/SRVCOMMENT:"text"]
+                  [/HIDDEN:{YES | NO}]
+.
+Language=Russian
+NET CONFIG SERVER [/AUTODISCONNECT:time] [/SRVCOMMENT:"text"]
+                  [/HIDDEN:{YES | NO}]
+.
+Language=Spanish
+NET CONFIG SERVER [/AUTODISCONNECT:time] [/SRVCOMMENT:"text"]
+                  [/HIDDEN:{YES | NO}]
+.
+Language=Turkish
+NET CONFIG SERVER [/AUTODISCONNECT:time] [/SRVCOMMENT:"text"]
+                  [/HIDDEN:{YES | NO}]
+.
+Language=Chinese
+NET CONFIG SERVER [/AUTODISCONNECT:time] [/SRVCOMMENT:"text"]
+                  [/HIDDEN:{YES | NO}]
+.
+Language=Taiwanese
+NET CONFIG SERVER [/AUTODISCONNECT:time] [/SRVCOMMENT:"text"]
+                  [/HIDDEN:{YES | NO}]
+.
+
+
+MessageId=10007
+SymbolicName=MSG_CONFIG_SERVER_HELP
+Severity=Success
+Facility=System
+Language=English
+NET CONFIG SERVER displays or changes settings for the Server service.
+
+/AUTODISCONNECT:time    Sets the maximum number of minutes a user's
+                        session can be inactive before it is disconected.
+                        You can specify -1 to never disconnect. The range
+                        is -1-65535 minutes; the default is 15.
+/SRVCOMMENT:"text"      Adds a comment for the server that is displayed on
+                        screen and with the NET VIEW command.
+                        Enclose the text in quotation marks.
+/HIDDEN:{YES | NO}      Specifies whether the server's computer name
+                        appears on displays listings of servers. Note that
+                        hiding a serverdoes not alter the permissions
+                        on that server. The default is NO.
+
+To display the current configuration for the Server service,
+type NET CONFIG SERVER without parameters.
+.
+Language=Polish
+NET CONFIG SERVER wyświetla lub zmienia ustawienia usługi Serwer.
+
+/AUTODISCONNECT:czas    Ustawia maksymalną liczbę minut, przez
+                        które sesja użytkownika może być nieaktywna, zanim
+                        nastąpi jej rozłączenie. Użyj wartości -1, aby
+                        zapobiec rozłączaniu. Zakres wynosi od -1 do 65535
+                        minut, domyślnie 15.
+/SRVCOMMENT:"tekst"     Dodaje komentarz dla serwera wyświetlany na
+                        ekranie komputera i przez polecenie NET VIEW.
+                        Tekst musi być ujęty w cudzysłów.
+/HIDDEN:{YES | NO}      Określa, czy nazwa serwera pojawia się
+                        podczas wyświetlania listy serwerów. Należy pamiętać,
+                        że ukrycie serwera nie zmienia uprawnień na tym
+                        serwerze. Wartość domyślna: NO (nie ukrywaj).
+
+Aby wyświetlić bieżącą konfigurację usługi Serwer,
+wpisz NET CONFIG SERVER bez parametrów.
+.
+Language=Romanian
+NET CONFIG SERVER displays or changes settings for the Server service.
+
+/AUTODISCONNECT:time    Sets the maximum number of minutes a user's
+                        session can be inactive before it is disconected.
+                        You can specify -1 to never disconnect. The range
+                        is -1-65535 minutes; the default is 15.
+/SRVCOMMENT:"text"      Adds a comment for the server that is displayed on
+                        screen and with the NET VIEW command.
+                        Enclose the text in quotation marks.
+/HIDDEN:{YES | NO}      Specifies whether the server's computer name
+                        appears on displays listings of servers. Note that
+                        hiding a serverdoes not alter the permissions
+                        on that server. The default is NO.
+
+To display the current configuration for the Server service,
+type NET CONFIG SERVER without parameters.
+.
+Language=Russian
+NET CONFIG SERVER displays or changes settings for the Server service.
+
+/AUTODISCONNECT:time    Sets the maximum number of minutes a user's
+                        session can be inactive before it is disconected.
+                        You can specify -1 to never disconnect. The range
+                        is -1-65535 minutes; the default is 15.
+/SRVCOMMENT:"text"      Adds a comment for the server that is displayed on
+                        screen and with the NET VIEW command.
+                        Enclose the text in quotation marks.
+/HIDDEN:{YES | NO}      Specifies whether the server's computer name
+                        appears on displays listings of servers. Note that
+                        hiding a serverdoes not alter the permissions
+                        on that server. The default is NO.
+
+To display the current configuration for the Server service,
+type NET CONFIG SERVER without parameters.
+.
+Language=Spanish
+NET CONFIG SERVER displays or changes settings for the Server service.
+
+/AUTODISCONNECT:time    Sets the maximum number of minutes a user's
+                        session can be inactive before it is disconected.
+                        You can specify -1 to never disconnect. The range
+                        is -1-65535 minutes; the default is 15.
+/SRVCOMMENT:"text"      Adds a comment for the server that is displayed on
+                        screen and with the NET VIEW command.
+                        Enclose the text in quotation marks.
+/HIDDEN:{YES | NO}      Specifies whether the server's computer name
+                        appears on displays listings of servers. Note that
+                        hiding a serverdoes not alter the permissions
+                        on that server. The default is NO.
+
+To display the current configuration for the Server service,
+type NET CONFIG SERVER without parameters.
+.
+Language=Turkish
+NET CONFIG SERVER displays or changes settings for the Server service.
+
+/AUTODISCONNECT:time    Sets the maximum number of minutes a user's
+                        session can be inactive before it is disconected.
+                        You can specify -1 to never disconnect. The range
+                        is -1-65535 minutes; the default is 15.
+/SRVCOMMENT:"text"      Adds a comment for the server that is displayed on
+                        screen and with the NET VIEW command.
+                        Enclose the text in quotation marks.
+/HIDDEN:{YES | NO}      Specifies whether the server's computer name
+                        appears on displays listings of servers. Note that
+                        hiding a serverdoes not alter the permissions
+                        on that server. The default is NO.
+
+To display the current configuration for the Server service,
+type NET CONFIG SERVER without parameters.
+.
+Language=Chinese
+NET CONFIG SERVER displays or changes settings for the Server service.
+
+/AUTODISCONNECT:time    Sets the maximum number of minutes a user's
+                        session can be inactive before it is disconected.
+                        You can specify -1 to never disconnect. The range
+                        is -1-65535 minutes; the default is 15.
+/SRVCOMMENT:"text"      Adds a comment for the server that is displayed on
+                        screen and with the NET VIEW command.
+                        Enclose the text in quotation marks.
+/HIDDEN:{YES | NO}      Specifies whether the server's computer name
+                        appears on displays listings of servers. Note that
+                        hiding a serverdoes not alter the permissions
+                        on that server. The default is NO.
+
+To display the current configuration for the Server service,
+type NET CONFIG SERVER without parameters.
+.
+Language=Taiwanese
+NET CONFIG SERVER displays or changes settings for the Server service.
+
+/AUTODISCONNECT:time    Sets the maximum number of minutes a user's
+                        session can be inactive before it is disconected.
+                        You can specify -1 to never disconnect. The range
+                        is -1-65535 minutes; the default is 15.
+/SRVCOMMENT:"text"      Adds a comment for the server that is displayed on
+                        screen and with the NET VIEW command.
+                        Enclose the text in quotation marks.
+/HIDDEN:{YES | NO}      Specifies whether the server's computer name
+                        appears on displays listings of servers. Note that
+                        hiding a serverdoes not alter the permissions
+                        on that server. The default is NO.
+
+To display the current configuration for the Server service,
+type NET CONFIG SERVER without parameters.
+.
+
+
+MessageId=10008
+SymbolicName=MSG_CONTINUE_SYNTAX
+Severity=Success
+Facility=System
+Language=English
+NET CONTINUE service
+.
+Language=Polish
+NET CONTINUE usługa
+.
+Language=Romanian
+NET CONTINUE <nume serviciu>
+.
+Language=Russian
+NET CONTINUE <имя_службы>
+.
+Language=Spanish
+NET CONTINUE <nombre del servicio>
+.
+Language=Turkish
+NET CONTINUE <Hizmet Adı>
+.
+Language=Chinese
+NET CONTINUE <Service Name>
+.
+Language=Taiwanese
+NET CONTINUE <服務名稱>
+.
+
+
+MessageId=10009
+SymbolicName=MSG_CONTINUE_HELP
+Severity=Success
+Facility=System
+Language=English
+NET CONTINUE reactivates a service that has been suspended by NET PAUSE.
+
+service             Is the paused service
+                    For example, one of the following:
+                    NET LOGON
+                    NT LM SECURITY SUPPORT PROVIDER
+                    SCHEDULE
+                    SERVER
+                    WORKSTATION
+.
+Language=Polish
+NET CONTINUE wznawia działanie usługi, która została.
+wstrzymana poleceniem NET PAUSE.
+
+usługa              Wstrzymana usługa
+                    Może to być jedna z następujących usług:
+                    NET LOGON
+                    NT LM SECURITY SUPPORT PROVIDER
+                    SCHEDULE
+                    SERVER
+                    WORKSTATION
+.
+Language=Romanian
+NET CONTINUE reactivates a service that has been suspended by NET PAUSE.
+
+service             Is the paused service
+                    For example, one of the following:
+                    NET LOGON
+                    NT LM SECURITY SUPPORT PROVIDER
+                    SCHEDULE
+                    SERVER
+                    WORKSTATION
+.
+Language=Russian
+NET CONTINUE reactivates a service that has been suspended by NET PAUSE.
+
+service             Is the paused service
+                    For example, one of the following:
+                    NET LOGON
+                    NT LM SECURITY SUPPORT PROVIDER
+                    SCHEDULE
+                    SERVER
+                    WORKSTATION
+.
+Language=Spanish
+NET CONTINUE reactivates a service that has been suspended by NET PAUSE.
+
+service             Is the paused service
+                    For example, one of the following:
+                    NET LOGON
+                    NT LM SECURITY SUPPORT PROVIDER
+                    SCHEDULE
+                    SERVER
+                    WORKSTATION
+.
+Language=Turkish
+NET CONTINUE reactivates a service that has been suspended by NET PAUSE.
+
+service             Is the paused service
+                    For example, one of the following:
+                    NET LOGON
+                    NT LM SECURITY SUPPORT PROVIDER
+                    SCHEDULE
+                    SERVER
+                    WORKSTATION
+.
+Language=Chinese
+NET CONTINUE reactivates a service that has been suspended by NET PAUSE.
+
+service             Is the paused service
+                    For example, one of the following:
+                    NET LOGON
+                    NT LM SECURITY SUPPORT PROVIDER
+                    SCHEDULE
+                    SERVER
+                    WORKSTATION
+.
+Language=Taiwanese
+NET CONTINUE reactivates a service that has been suspended by NET PAUSE.
+
+service             Is the paused service
+                    For example, one of the following:
+                    NET LOGON
+                    NT LM SECURITY SUPPORT PROVIDER
+                    SCHEDULE
+                    SERVER
+                    WORKSTATION
+.

Reply via email to