dir é o caminho antigo para DOS / Windows, o Powershell lhe dá get-childItem
Você deve identificar o diretório em que deseja procurar seus arquivos e fazer algo como:
$myDir = "\Server\Directory\"
get-ChildItem -Path $myDor | Foreach {
get-Acl $_
}