한 회사에서 사용자가 특정 번호 범위에서 성가신 전화를 받고 있다고 보고합니다. 번호 범위는 다음과 같습니다: + 1 (453) 222-0000 ~ + 1 (453) 222-9999 글로벌 테넌트 수준에서 이 번호 범위의 호출이 차단되도록 하는 인바운드 번호 차단 규칙을 적용해야 합니다. 이 번호들은 모두 +로 시작하고 총 길이가 11자리입니다.이 통화를 차단하려면 어떤 PowerShell 명령을 사용해야 하나요?
A. New-CsInboundBlockedNumberPattern -Name "NuisanceBlock" -Enabled $True -Description "나쁜 전화 차단" -Pattern "^\+1453222\d{11}$"
B. ew-CsInboundBlockedNumberPattern -Name "NuisanceBlock" -Enabled $True -Description "나쁜 전화 차단" -Pattern "^\+?1453222\d{5}$"
C. New-CsInboundBlockedNumberPattern -Name "NuisanceBlock" -Enabled $True -Description "나쁜 전화 차단" -Pattern "^\+?1453222\d{4}"
D. New-CsInboundBlockedNumberPattern -Name "NuisanceBlock" -Enabled $True -Description "나쁜 전화 차단" -Pattern "^\+?1453222\d{4}$"