I have the following code which creates a shared folder
if (!(Test-Path c:\myFolder))
{
New-Item -Path 'c:\myFolder' -ItemType Directory
}
If (!(GET-WMIOBJECT Win32_Share -Filter "Name='myFolder'”))
{
$Shares.Create(“c:\myFolder”,”myFolder”,0)
}
How can i add Read/Write permission to 'Everyone' to the shared folder? I prefer not to add external dll
Thanks