Move pages under tldr, lint run.sh, update docs

This commit is contained in:
2024-02-21 13:58:43 +02:00
parent 3d653cc7e6
commit 2c475fa62d
4806 changed files with 36 additions and 35 deletions

41
tldr/windows/net Normal file
View File

@@ -0,0 +1,41 @@
---
syntax: markdown
tags: [tldr, windows]
source: https://github.com/tldr-pages/tldr.git
---
# net
> System utility to view and modify network-related settings.
> More information: <https://learn.microsoft.com/previous-versions/windows/it-pro/windows-server-2012-r2-and-2012/gg651155(v=ws.11)>.
- 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`