# Create Public Folder Mailbox New-Mailbox -Name PF-01 -PublicFolder # Check Public Folder Mailbox Get-OrganizationConfig | select RootPublicFolderMailbox Get-Mailbox -PublicFolder # Create Public Folders New-PublicFolder -Name "HR Services" -Path \ New-PublicFolder -Name "IT Services" -Path \ New-PublicFolder -Name "Finance" -Path \ New-PublicFolder -Name "Sales" -Path \ New-PublicFolder -Name "R&D Department" -Path \ New-PublicFolder -Name "Security" -Path \ New-PublicFolder -Name "Staff-in" -Path "\HR Services" New-PublicFolder -Name "Staff-out" -Path "\HR Services" New-PublicFolder -Name "Employee Benefits" -Path "\HR Services" New-PublicFolder -Name "Policies" -Path "\HR Services" New-PublicFolder -Name "Leaves" -Path "\HR Services" New-PublicFolder -Name "IT Assets" -Path "\IT Services" New-PublicFolder -Name "IT Certifications" -Path "\IT Services" New-PublicFolder -Name "Payroll" -Path "\Finance" New-PublicFolder -Name "Reimbursements" -Path "\Finance" New-PublicFolder -Name "PO" -Path "\Sales" New-PublicFolder -Name "Invoice" -Path "\Sales" New-PublicFolder -Name "2022" -Path "\HR Services\Staff-in" New-PublicFolder -Name "2023" -Path "\HR Services\Staff-in" New-PublicFolder -Name "2024" -Path "\HR Services\Staff-in" New-PublicFolder -Name "2024" -Path "\HR Services\Staff-out" New-PublicFolder -Name "2023" -Path "\HR Services\Staff-out" New-PublicFolder -Name "2022" -Path "\HR Services\Staff-out" # Check Public Folders with Hierarchy Get-PublicFolder -Recurse