The command: "NET HELP SHARE" is on Windows 12, 11, 10, .. , MS Server 2025, 2022, 2019, .. available
The examples for the command "NET HELP SHARE"
The
`NET SHARE` command on the Windows command line is used to view information about shared resources on a computer or to create and manage shared resources. Here are examples of using this command:
Example 1: View all shared resources on the computer
net share
Description:
This command displays a list of all resources shared on the local computer, including share names and paths.
Example 2: View information about a specific shared resource
net share ShareName
Description:
This displays more detailed information about a specific shared resource named
"ShareName", including the share path and access permissions.
Example 3: Sharing a directory
net share ShareName=C:\Directory /grant:Username,Full Control
Description:
This command creates a new share named
"ShareName" and associates it with the
"C:\Directory" directory. The user
"Username" is granted Full Control permissions on this share.
Example 4: Deleting a shared resource
net share ShareName /delete
Description:
This command deletes the share named
"ShareName". Note that this will remove sharing and access to the corresponding resource.
Example 5: Create share and add comment
net share ShareName=C:\Directory /remark:"This is an example share"
Description:
Here a share named
"ShareName" is created and linked to the directory
"C:\Directory". A comment is added to provide additional information.
Example 6: View information about shared printers
net share
Description:
This command displays information about shared printers on the local computer, including share names and associated printers.
Please note that the exact command options may vary depending on your system configuration. Use
`NET SHARE /?` in the command prompt to check the specific options and syntax details for your version of Windows.
"NET HELP SHARE" Excerpt from Microsoft Windows Help
Microsoft Windows [Version 10.0.19045.3693]
(c) Copyright 1985-2023 Microsoft Corp.
C:\\WINDOWS>
The syntax of this command is:
NET SHARE
sharename
sharename=drive:path [/USERS:number | /UNLIMITED]
[/REMARK:"text"]
[/CACHE:Manual | Documents| Programs | None ]
sharename [/USERS:number | /UNLIMITED]
[/REMARK:"text"]
[/CACHE:Manual | Documents | Programs | None]
/DELETE
NET SHARE makes a server's resources available to network users. When
used without options, it lists information about all resources being
shared on the computer. For each resource, Windows reports the
devicename(s) or pathname(s) and a descriptive comment associated with it.
sharename Is the network name of the shared resource. Type
NET SHARE with a sharename only to display information
about that share.
drive:path Specifies the absolute path of the directory to
be shared.
/USERS:number Sets the maximum number of users who can
simultaneously access the shared resource.
/UNLIMITED Specifies an unlimited number of users can
simultaneously access the shared resource
/REMARK:"text" Adds a descriptive comment about the resource.
Enclose the text in quotation marks.
devicename Is one or more printers (LPT1: through LPT9:)
shared by sharename.
/DELETE Stops sharing the resource.
/CACHE:Manual Enables manual client caching of programs and documents
from this share
/CACHE:Documents Enables automatic caching of documents from this share
/CACHE:Programs Enables automatic caching of documents and programs
from this share
/CACHE:None Disables caching from this share
NET HELP command | MORE displays Help one screen at a time.
Important information, tips for the "NET HELP SHARE" command
When using the `NET SHARE` command on the Windows command line, there are a few important points to keep in mind:
1. Administrative Privileges: The `NET SHARE` command requires administrative privileges. Make sure you open Command Prompt as an administrator to view or change sharing information correctly.
2. Security Considerations: Sharing resources can introduce security risks, especially if unauthorized users gain access. Be sure to configure sharing and permissions carefully to prevent unauthorized access.
3. Access Permissions: Check access permissions for shared resources. The `NET SHARE` command gives information about the share names and paths, but for detailed permissions use additional tools such as `cacls` or `icacls`.
4. Review sharing options: When you create new shares, review the available options, including access permissions, comments, and other settings, to make sure they meet your needs.
5. Version Compatibility: Note that the availability of certain options and the behavior of the command may vary depending on the version of Windows. Make sure your commands are compatible with the specific version of the operating system.
6. Use in scripts: When using `NET SHARE` in scripts, ensure your script includes checks and logging to minimize unwanted effects.
7. Delete shares wisely: Deleting shares with `NET SHARE ... /DELETE` removes the share and access to the corresponding resource. Be careful not to delete important data.
8. Network Connectivity: When working with shares on remote computers, ensure that network connectivity is reliable.
9. Print Shares: Note that `NET SHARE` shows not only file and folder shares, but also printer shares. Review the output carefully to identify shares of different types.
10. Logging: If necessary, you can log actions such as creating or deleting shares to track changes and make them available for later review.
By paying attention to these points, you can use the `NET SHARE` command safely and effectively in your environment.