private/Get-AllScreens.ps1

function Get-AllScreens {
    [CmdletBinding()]
    param ()

    [System.Windows.Forms.Screen]::AllScreens
}