From 52b3a2b4f0d800e272ea1afd88415dd8908924e6 Mon Sep 17 00:00:00 2001 From: Aleksandr Kostikov Date: Thu, 13 Jul 2023 01:28:10 -0700 Subject: [PATCH] net: add page (#10487) Co-authored-by: K.B.Dharun Krishna --- pages/windows/net.md | 36 ++++++++++++++++++++++++++++++++++++ 1 file changed, 36 insertions(+) create mode 100644 pages/windows/net.md diff --git a/pages/windows/net.md b/pages/windows/net.md new file mode 100644 index 000000000..3ae82cb77 --- /dev/null +++ b/pages/windows/net.md @@ -0,0 +1,36 @@ +# net + +> System utility to view and modify network-related settings. +> More information: . + +- Start or stop a Windows service synchronously: + +`net {{start|stop}} {{service}}` + +- Make sure an SMB share is available in the current console: + +`net use {{\\smb_shared_folder}} /USER:{{username}}` + +- Show the folders currently shared over SMB: + +`net share` + +- Show who is using your SMB shares (run in elevated console): + +`net session` + +- Show users in a local security group: + +`net localgroup "{{Administrators}}"` + +- Add a user to the local security group (run in elevated console): + +`net localgroup "{{Administrators}}" {{username}} /add` + +- Display help for a subcommand: + +`net help {{subcommand}}` + +- Display help: + +`net help`