The quickest way to create shared network folders is to use the ‘net share’ command in Command Prompt or PowerShell.
Press Start, type cmd or powershell, then select ‘Run as administrator’ on the right. Now type a command such as this: net share images=C:\Pictures / grant:everyone,read (see screenshot). This will create a network share called ‘images’, and shares the Pictures folder on your C: drive. Typing everyone gives access to everyone on the network, but we’ve restricted this access to read only.
Replace read with change for the ability to edit files or full to grant full control, including the ability to change permissions – for example, grant:ben,change or grant:ben,full.
So, to clarify, when you type the command, you need to give your share a name, and specify the folder…