Thie script below will impor all the .PST in a directory. NOTE: You MUST have the .PST name match the alias in the domain.
Get-ChildItem \\server\share\*.pst | foreach { $user = $_.BaseName; New-MailboxImportRequest -Mailbox $user -FilePath \\server\share\$user.pst -BadItemLimit 50 }