Posted On July 16, 2020

PowerShell: Create SMB Share and Grant NTFS Access

kimconnect 0 comments
blog.KimConnect.com >> Codes >> PowerShell: Create SMB Share and Grant NTFS Access
$localPath="C:\testShare"
$fullAccessAccounts='everyone','authenticated users'

function createSmbShare($localPath,$fullAccessAccounts){
    $ErrorActionPreference='stop'
    try{
        # First, create SMB Share
        $smbShareName=split-path $localPath -leaf
        New-SmbShare -Name $smbShareName -Path $localPath -FullAccess $fullAccessAccounts

        # Second, set NTFS permissions
        $acl = Get-ACL $localPath
        foreach($account in $fullAccessAccounts){
            $allowFullAccesss=New-Object System.Security.AccessControl.FileSystemAccessRule($account,"Full","Allow")
            $acl.AddAccessRule($allowFullAccesss)
            }
        Set-Acl $localPath $acl
        write-host "\\$env:computername\$smbShareName has been created with full access granted to these users $fullAccessAccounts"
        }
    catch{
        write-warning $Error[0].Exception.Message
        return $false
        }
}

createSmbShare $localPath $fullAccessAccounts

Leave a Reply

Your email address will not be published. Required fields are marked *

Related Post

PowerShell: Get Try Catch Exception Type of a Function

# This function will return the exception type so that it could be specified on…

PowerShell: Install and Uninstall App on Remote Machines

# Trigger uninstall of an MSI file$computername="SERVER007"$keywordSearch="Polycom*"$installFile="\\FILESHERVER\Software\Polycom\Polycom_BToE_Connector_4.0.0.0 (new for 2019-07-19)\Polycom_BToE_Connector_4.0.0.0.msi"# Trigger silent install of an…

Virtual Machine Queue: Assigning Processors to Network Interfaces

Microsoft Hyper-V Virtual Machine Queuing is useful to maximize high-bandwidth network cards. However, configuring this…