How to set Write permission on a folder for Everyone Using Powershell
问题 I am trying to share a folder with everyone and using the below command but it is not working. NET SHARE Movies=C:\foldername "/GRANT:Everyone,FULL" After runnign this command a message comes 'Movies Shared Successfully' but When i check folder permission it does not show the same. Can anyone tell me the correct command? 回答1: your net share works just fine. To set the folder permissions you need to set the ACL permissions: $sharepath = "C:\foldername" $Acl = Get-ACL $SharePath $AccessRule=