Dup Ver Goto 📝

SmbShare

To
8 lines, 48 words, 287 chars Page 'SmbShare' does not exist.

Create Shares For All Drives

$Drives = (Get-PSDrive).Name -match '^[a-z]$' | foreach { New-SmbShare -Name $_ -Path ("{0}:\" -f $_) }

Points: