Dup Goto 📝

SmbShare

To Pop
8 lines, 48 words, 287 chars Friday 2024-01-26 22:12:06

Create Shares For All Drives

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

Points: