Common Area Phone Configuration in Lync : Jeff Schertz's Blog (2023)

April 16, 2011 by Jeff Schertz · 105 Comments

With the introduction of the new Lync Phone Edition client in Lync Server 2010 there is now a way to support basic telephony functionality without having to login as a regular user to a standalone handset. In Office Communications Server this experience was limited to using an executive-class CX700 (Tanjay) with a dedicated user account signed into the phone. Neither these devices nor the extended communication modalities provided by a full OCS user account were really the best solution for a phone in an unsecured, common area.

In order to support the use of Common Area Phone (aka Hotdesking) the Lync Server environment first needs to be configured to support PIN Authentication for the Aries family of Lync Phone Edition devices (Polycom’s CX500, CX600, CX3000 and Aastra’s 6721ip, 6725ip). This topic is covered in-depth in this previous blog article: Configuring Lync Server for Phone Edition Devices. Once Enterprise Voice enabled Lync user accounts can successfully sign in using PIN Authentication then the steps in this article can be applied.

As my modus operandi revolves around adding content and (hopefully) simplifying topics covered in the TechNet documentation, this article is no exception. While the official Configuring Common Area Phones documentation does already cover a majority of the content there are important items omitted. Some of this information is not clearly explained and is located different chapters of the documentation. If the underlying operation is not already understood by the reader beforehand then it may not be clear what the missing pieces are, thus following the configuration steps verbatim may not produce the desired results.

So this article covers two scenarios: a simple cut-to-the-chase approach to getting a Common Area Phone configured as easily as possible, and a more detailed approach with customized policies. The Lync Server Control Panel cannot be used for the majority of this configuration, so all steps in either scenario will be shown using the PowerShell-based Lync Server Management Shell.

Scenario A: Simple

Making the assumption that a working Lync Server environment is available and PIN Authentication is currently working then this process is very simple. This is for those who don’t care to read or understand how it all works, they just want to get it done and working. The second scenario will be much more verbose so skip to that section for the good stuff.

Enable Hotdesking

By default Hotdesking is turned off in Lync Server 2010. The default Global policies contains Common Area Phone specific settings which will be applied to all devices signed-in using one of these accounts.

  • Enter the following string in the command shell to enable hotdesking on the default Global client policy.

Set-CsClientPolicy -Identity Global -EnableHotdesking $TRUE

Create Common Area Phone Account

A Common Area Phone is defined by an Active Directory Contact which is not SIP-enabled through the normal means that a contact would be. This new contact object is created automatically by the New-CommonAreaPhone cmdlet.

  • Enter the following string in the command shell using the desired phone number, display name, and description. The RegistrarPool value is the FQDN of the Lync Front-End server or pool. The OU value is were the new contact should be created in AD. (The DisplayNumber format must be able to be normalized by Lync server otherwise the LineURI value will be shown on the phone’s home screen.)

New-CsCommonAreaPhone -LineUri “tel:+13125557521” -RegistrarPool “lync.schertz.local” -OU “OU=Contacts,OU=JDS,DC=schertz,DC=local” -Description “Common Area Phone” -DisplayName “Lobby Phone 1” -DisplayNumber “(312) 555-7521”

(Video) Best Practices for Deploying Microsoft Teams Devies

Set Device PIN

Just as a normal user must have a PIN defined for authentication so must a Common Area Phone contact. But again this cannot be performed using the Control Panel.

  • Enter the following string in the command shell using the desired PIN.

Set-CsClientPin –Identity “Lobby Phone 1” -Pin 123123

Once these three simple steps are completed then sign in to an Aries phone using the extension of the new common area contact. The bare interface will indicate that the majority of normal user features are not available.

Scenario B: Less Simple

As promised this scenario will go into greater detail. The biggest issue with the example process in the TechNet documentation is that although the configuration of various custom (yet optional) polices is covered, there is minimal direction on how to actually assign these polices to the Common Area Phone contacts.

The benefit of defining specific policies allows for a more granular level of control of devices in different user or site populations.

New Client Policy

A new client policy can be used to either define different parameter values than what the default global policy has or to just organizationally separate the Common Area Phones. As mentioned in the previous section it is acceptable to enable hotdesking on the global policy but in larger deployments it is recommended to create multiple policies for different group of devices that all may require unique settings.

  • Enter the following string in the command shell to create a new client policy called CommonAreaClient using the desired HotdeskingTimeout value for how long to wait before automatically signing out an inactive Lync user and reverting to the Common Area Phone contact number. (The default value is 5 minutes.)

New-CsClientPolicy -Identity CommonAreaClient -EnableHotdesking $True -HotdeskingTimeout 00:10:00

New Voice Policy

Creating a new voice policy is important when the common area phones should be limited to internal calling or need to have a different level of external dialing then standard Lync users may.

  • First identify the currently defined PSTN usages in Lync Server.

Get-CsPSTNUsage

(Video) NIC 4th Edition - The Skype, Hybrid and Skype for Business session

  • Create a new voice policy named CommonAreaVoice which limits usage of only the Internal PSTN usage as also disables all other calling features.

New-CsVoicePolicy -Identity CommonAreaVoice -PstnUsages @{add=”Internal”} -AllowSimulRing $FALSE -AllowCallForwarding $FALSE -Name CommonAreaVoice -EnableDelegation $FALSE -EnableTeamCall $FALSE -EnableCallTransfer $FALSE -AllowPSTNReRouting $FALSE -Description “Feature-Restricted Common Area Phone Policy”

Additionally the Voice Policy could be created or modified using the Lync Server Control Panel, under Voice Routing > Voice Policy.

New Conferencing Policy

Although some of the features in the Conferencing Policy do not apply to Lync Phone Edition devices the example documentation recommends that all of these modalities are disabled for common area devices.

  • Create a new conferencing policy called CommonAreaConf and disable all of the configurable parameters.

New-CsConferencingPolicy -Identity CommonAreaConf -AllowIPAudio $FALSE -AllowIPVideo $FALSE -EnableFileTransfer $FALSE -EnableP2PFileTransfer $FALSE -EnableDataCollaboration $FALSE

Additionally the Conferencing Policy could be created or modified using the Lync Server Control Panel, under Conferencing > Conferencing Policy.

New PIN Policy

In this example a less restrictive PIN policy is defined then what the global PIN policy has by default. Alternatively a more restrictive PIN policy could be used to force a complex PIN on common area phones to prevent users from signing in as that account on other phones as typically only IT would manage the common devices default account. Either approach has merits in a real-world deployment.

  • Create a new PIN policy called CommonAreaPIN which reduces the minimum PIN length to 4 digits and allows for the usage of common patterns.

New-CsPINPolicy -Identity CommonAreaPIN -Description “Common Area Phone
Authentication PIN Policy” -MinPasswordLength 4 -AllowCommonPatterns $TRUE

Create Common Area Account

A Common Area Phone is defined by an Active Directory Contact which is not SIP-enabled through the normal means that a contact would be. This new contact object is created automatically by the New-CommonAreaPhone cmdlet.

(Video) HC32-S8: ML Inference

  • Enter the following string in the command shell using the desired phone number, display name, and description. The RegistrarPool value is the FQDN of the Lync Front-End server or pool. The OU value is were the new contact should be created in AD. (The DisplayNumber format must be able to be normalized by Lync server otherwise the LineURI value will be shown on the phone’s home screen.)

New-CsCommonAreaPhone -LineUri “tel:+13125557521” -RegistrarPool “lync.schertz.local” -OU “OU=Contacts,OU=JDS,DC=schertz,DC=local” -Description “Common Area Phone” -DisplayName “Lobby Phone 1” -DisplayNumber “(312) 555-7521”

The new contact object can be found in Active Directory and a peak at the raw attributes shows that it only contains a subset of the normally populated Lync attributes. Also the SIP URI (msRTCSIP-PrimaryUserAddress) is a dynamically created value that is not utilized by end-users.

Set Device PIN

Just as a normal user must have a PIN defined for authentication so must a Common Area Phone contact. But again this cannot be performed using the Control Panel.

  • Enter the following string in the command shell using the desired PIN.

Set-CsClientPin –Identity “Lobby Phone 1” -Pin 123123

Assign Policies

At this point there a number of new policies defined, but none have been assigned to anything yet. The screenshot above shows that there are empty parameters for the four applicable policies. An assumption could be made that the Set-CsCommonAreaPhone cmdlet would be used to define those parameters, but that would be incorrect. Each policy type has its own Grant- cmdlet which is used to assign objects to the policy.

  • Enter the following cmdlets individually to assign the new Common Area Phone object to each of the newly created policies.

Grant-CsClientPolicy -PolicyName CommonAreaClient -Identity “Lobby Phone 1”

Grant-CsVoicePolicy -PolicyName CommonAreaVoice -Identity “Lobby Phone 1”

Grant-CsConferencingPolicy -PolicyName CommonAreaConf -Identity “Lobby Phone 1”

Grant-CsPINPolicy -PolicyName CommonAreaPIN -Identity “Lobby Phone 1”

  • Use the Get-CsCommonAreaPhone cmdlet to verify that the newly assigned policies have been applied to the contact.

Get-CsCommonAreaPhone –Identity “Lobby Phone 1”

(Video) B203: Microsoft Stream, Microsoft Teams, and Skype for Business

Bulk Actions

Most likely more than a single common area account would be created and thus there is a quick way to assign all Common Area Phone contact objects to the same policy in a single action.

  • Use the Get cmdlet to pass the results (all existing Common Area Phone accounts) through the pipe (|) to the desired Grant cmdlet. Run the command for each of the four policy types.

Get-CsCommonAreaPhone -Identity “Lobby Phone 1” | Grant-CsClientPolicy -PolicyName CommonAreaClient

Additionally PointBridge’s Keenan Crockett has a blog article covering how to create a single script for mass account creation and configuration.

Test Authentication

Prior to signing in on a device the process can be tested with the same emulate cmdlet that was covered in the previous blog article on phone configuration.

  • Enter the following cmdlet to test the PIN Authentication process from the Lync Server.

Test-CsPhoneBootstrap -PhoneOrExt 7521 -PIN 1234

Sign-In to Device

If the test passes successfully then the same credentials should also work from a phone. The phone will be shown in the Lync address book when searched by name (an Update-CsAddressBook can be trigger to speed up the process).

Filed under Lync · Tagged with CX, LPE

Common Area Phone Configuration in Lync : Jeff Schertz's Blog (19)About Jeff Schertz
Site Administrator

FAQs

What is a common area phone Jeff Schertz? ›

Generally the ideal of a common area phone is just that: a phone located in a shared space which only needs to provide the ability to place phones calls to other users and/or phone numbers. These are not meeting devices.

How do I set up a common area phone team? ›

Turn on Advanced calling in Teams admin center
  1. Sign into the Teams admin center with a Microsoft 365 admin account.
  2. From the left-side menu, navigate to Teams devices > Phones > and select the Configuration profiles tab.
  3. From the list, select the configuration profile assigned to your common area phone.
Dec 14, 2022

What is a Skype common area phone? ›

Creates a new common area phone that can be managed by using Skype for Business Server. Common area phones are phones that are located in building lobbies, employee lounges, or other areas where they are likely to be used by a number of different people and for a number of different uses.

How much does the common area phone cost? ›

Common Area Phone License – $8/device/month

The SKU includes the Microsoft Phone System License, so those devices can accept calls and join meetings; however, the room cannot initiate the conference (would need an Audio Conferencing license).

What are common area phone devices? ›

Common area phones are unassigned desk phones that can be used by anyone. Account owners and admins can add any supported device to the web portal and provision it as a common area phone. You can also enable hot desking for a common area phone, allowing phone users to sign in or out of the common area phone.

What is the most common phone number in the world? ›

We stumbled upon an interesting story today. Why is (214) 748-3647 the most common phone number on the web? One of the many reasons a good programmer is worth his salt is being able to avoid issues down the road.

Does common area phone require calling plan? ›

Microsoft Common Area Phone requires additional subscriptions of either Domestic Calling Plan or Domestic and International Calling Plan.

How do I set up a team phone number? ›

Get new phone numbers for your users
  1. Sign into the Microsoft Teams admin center.
  2. In the left navigation, go to Voice > Phone numbers, and then select Add.
  3. Enter a name for the order and add a description.
  4. On the Location and quantity page, do the following: ...
  5. Select the numbers you want.
Feb 14, 2023

Can Skype be used as a landline? ›

Skype is not a replacement for your telephone and can't be used for emergency calling. Some premium rate numbers, geographic or country-specific numbers (e.g. 1-900 numbers) are not supported by Skype.

What carrier does Skype use? ›

Supported carriers include AT&T, Verizon Wireless, T-Mobile®, Metro PCS, Sprint, Boost, Virgin Mobile, U.S. Cellular®, and others.

Does Skype give you a landline number? ›

Sign up for a Skype Number and get the convenience of a local number that people can call, wherever you are, on any device.

Is a landline cheaper than a cell phone? ›

As we mentioned above, Community Phone's landline service is 31-35% cheaper than traditional and digital landlines, 20-25% cheaper than VoIP, and a whopping 73% cheaper than a cell phone.

Is there any benefit to having a landline? ›

Generally, unlimited long distance packages with a landline are significantly cheaper than unlimited minutes packages with cell phone providers, if they offer them at all. So for people who find themselves going over their monthly minute allowance with their cell phone, a landline might offer a good savings.

What is common area usage? ›

Common areas can include both functional areas of property, like hallways, lobbies, sidewalks, elevators and stairs, and amenities, like parking lots, swimming pools, parks, gyms and laundry facilities. If people in a residential building or development are free to use a space, it is likely a common area.

Do common area phones have VoiceMail? ›

Common Area Phone License doesn't support VoiceMail. Please refer to the article https://docs.microsoft.com/en-us/microsoftteams/set-up-common-area-phones. 2. Common Area Phones could be used by multiple users.

What is the most commonly used mobile device? ›

Smartphones are generally the most common type of mobile device.

What is the most common thing people use their phone for? ›

Excluding calling and texting, email is the most common activity mobile users participate in. Some 8 in 10 (83%) say they use their phone for email.

What happens if you call 555 2368? ›

Dialing 555-2368 will get you the Ghostbusters, the hotel room from Memento, Jim Rockford of The Rockford Files, and Jaime Sommers from The Bionic Woman, among others.) What you may not know, though, is that there are many more "real" 555 phone numbers.

What is the oldest phone number still in use? ›

The number is now written as 1-212-736-5000. According to the hotel's website, PEnnsylvania 6-5000 is New York's oldest continually assigned telephone number and possibly the oldest continuously-assigned number in the world.

What is the least popular number in the world? ›

More than any other number, people seemed to pick 0 because they thought it was a clever thing to do, Bellos says. As for the world's “least favorite” number, that would be 110.

What is the common area phone license renamed? ›

Overview. Microsoft has renamed the Common Area Phone subscription license to Microsoft Teams Shared Devices. This article covers the process to convert a Teams enabled phone into a Microsoft Teams Shared Device.

Can I make phone calls without a service provider? ›

With Wi-Fi Calling, you can make or receive a phone call if you have a Wi-Fi connection in an area with little or no cellular coverage. Learn how to make a voice call using Wi-Fi Calling.

Can you still call without service? ›

Use a mobile carrier's Wi-Fi calling

Tap Wi-Fi calling. If you don't see this option, it's because your carrier doesn't support this feature. You can use Wi-Fi calling without a service on some carriers. If your carrier doesn't offer Wi-Fi calling, you can still do so through a voice over IP service.

How do I know if I have a team phone number? ›

Go to the Microsoft Teams admin center. In the left navigation, go to Voice > Phone numbers.
...
To see all telephone numbers that are assigned to users
  1. Assigned to user.
  2. Assigned to conference bridge.
  3. Assigned to Voice app (Auto Attendant/Call Queue)
  4. Unassigned.
Feb 14, 2023

How does a team phone number work? ›

Teams uses user numbers, which can be assigned to users in your organization, and service numbers, which are assigned to services such as Audio Conferencing, auto attendants, or call queues. Service phone numbers have a higher concurrent call capacity than user numbers.

How do I get team on my phone? ›

Installing on Android

Open the Google Play Store on your Android device. 2. Tap the Search icon and type “Microsoft Teams.” 3. Tap the Install button to install the app on your device.

Can I link my Office phone to my cell phone? ›

Dial *72 from your landline phone and wait for the dial tone or confirmation tone. Enter the 10-digit phone number of the mobile device you want your calls forwarded to. Hit the hash button (#) or wait for confirmation the call forwarding service has been activated.

What is the best way to set up a work phone? ›

How to set up company phones:
  1. Update the operating system.
  2. Set-up a phone finding service.
  3. Enable remote wiping and locking.
  4. Manage and control data usage.
  5. Activate screen lock security.
  6. Install anti-virus/malware software.
Jun 23, 2017

Can I just plug a VoIP phone into my router? ›

Many consumer routers allow you to simply plug in a VoIP phone to use it; a few need to be configured to work with a VoIP phone.

How much does a Skype number cost per month? ›

The paid plans start from $5 per user/month to up to $20 per user/month.

Can I use VoIP instead of landline? ›

The short answer is yes. VoIP phones are typically faster and more reliable than landlines, making them a much better choice for businesses that need to keep their customer service running smoothly. They also include extra important features such as video calls and SMS.

Is Skype to go being discontinued? ›

Skype discontinued Skype To Go last May 31, 2022. Nevertheless, this does not affect any of your Skype subscriptions or Skype credit. You can still use them.

What is Microsoft replacing Skype with? ›

Upgrade Skype for Business on-premises to Microsoft Teams - Microsoft Teams.

Does Skype still exist 2023? ›

Skype is not being discontinued but Skype for Business Online will be discontinued on July 31st 2021.

Why no one is using Skype? ›

Users experienced long load times, browser windows filled with ads, browser and app crashes, and unpredictable updates that derailed users' meetings. Peer-to-peer technology also did not play well on mobile phones. Skype was a brand in adolescence with an identity crisis.

Why can't I call a landline on Skype? ›

If you have insufficient Skype Credit, you'll need to buy credit before making the call. Does your subscription cover the call you want to make? If you have a subscription, but your call won't connect, it's likely that you are trying to call a number or destination not covered by your subscription.

Can anyone call me on my Skype number? ›

Yes, with a Skype Number, people can call you from a landline or mobile, and you can pick up the call on Skype. It's great if you have friends, family or colleagues who don't use Skype, as they can simply dial your Skype Number to get in touch with you.

Can you call on Skype without a phone number? ›

Yes, but you'll need a Skype Number for them to call you on.

How much longer will landlines be around? ›

Yes. Once the PSTN (Public Switched Telephone Network) network is switched off in 2025 you will no longer be able to make phone calls via landline with no internet connection.

Is AT&T getting rid of landlines? ›

Back in August of 2022, the FCC announced that US Telecom companies are no longer required to provide copper landline services. The old copper lines that handled phone service for years are now being replaced by fiber. AT&T has already stopped offering DSL to new customers and instead only selling fiber.

Is CenturyLink getting rid of landlines? ›

But the biggest providers – AT&T, Verizon, CenturyLink, Frontier – have made it clear; they are replacing their copper wire infrastructure with internet based fiber optic cables, and leaving old fashioned landlines in the dust.

Why are landline phones being phased out? ›

With companies no longer required to provide copper wire phone services and price caps gone, POTS rates are skyrocketing, outages are longer and carriers are even shutting down POTS lines altogether.

Can I just have a landline without internet? ›

Landline Phone Service You Can Trust

Works without internet or power: The landline base doesn't use the internet, and a backup battery keeps you connected for up to 12 hours without power.

What is a typical common area factor? ›

What is a Typical Common Area Factor? A typical add-on factor or common area factor will fall between 15-20%. This means that 15-20% of the total space within a given office building is taken up by common area use.

How do you calculate common area? ›

Based on a tenant's proportionate share of a building, CAM charges are a percentage calculated by dividing the square footage occupied by the tenant, by the total square footage of the building.

Is living room a common area? ›

Along with the kitchen, the living room is the main common space in most family homes, but the exact nature of how to use it has been mysterious for a long time.

Does Skype use your cell phone number? ›

Skype can use your mobile number in multiple ways, such as a way to sign in, to display for Caller ID, or to use for Call forwarding so you don't miss any Skype calls. You will also need to verify your phone number to save it to your profile.

What do most people use Skype for? ›

Most (89%) remote workers say Skype and similar platforms help them connect with colleagues. About 86.5% of employees used video calls for work in 2021.
...
Skype Users
  • Only 7.5% of all registered Skype users use it at least monthly.
  • About 99% of all Skype users use the app less than once per day.

Why does Skype need access to my phone? ›

Motion usage allows Skype to detect when your device is rotated to orientate the camera correctly. Allow access to your Phone in Android 12 and higher so you can make and receive Skype calls. Access to phone state allows you to place a call on hold when a regular phone call is in progress.

Why do people's phones go straight to voicemail? ›

Among the handful of things that might automatically send your calls to voicemail is your phone's Do Not Disturb mode, blocked numbers, call forwarding, Bluetooth connections, and your phone's SIM card. Whether you accidentally activated any of these phone features or forgot you turned them on, don't fret.

Can I use answering machine instead of voicemail? ›

If you choose to use an answering machine instead of voicemail, you will need to set your answering machine to pickup calls before voicemail, which is fewer than 4 rings.

Can someone find me on Skype with my email address? ›

Skype does not display your email address. No one can see it when looking at your profile. Only friends who already know your email address can use it to search for you.

Can someone text my Skype number? ›

You can receive SMS text messages in Skype if you have a Skype Number. Currently, only US Skype Numbers can receive SMS messages*.

Why is Skype no longer popular? ›

Users experienced long load times, browser windows filled with ads, browser and app crashes, and unpredictable updates that derailed users' meetings. Peer-to-peer technology also did not play well on mobile phones. Skype was a brand in adolescence with an identity crisis.

Does anybody use Skype anymore? ›

Skype did see growth during the pandemic - reportedly a 70% jump to about 40 million people a day. But that is still not as big a growth as its competitors. At a time when the entire world needed a calling app, people chose other options.

Does Skype require email or phone number? ›

In your Skype profile, you need to have a primary email address. Skype uses this email address primarily to send you important communications about your Skype account.

Where are Skype settings? ›

By default, your settings can be accessed on your Skype or from the Chats screen by tapping your profile picture > then settings or the gear icon.

Do I need a VPN to use Skype? ›

Skype and other VoIP services are banned in multiple countries, including Brazil and Iran. If you want to use Skype in those countries, you'll need a VPN (virtual private network). However, you can't just use any VPN, as many VPNs do more harm than good.

Videos

1. Skype for Business Webcast
(New Signature)
2. How to Launch Microsoft Teams Quickly for Remote Work Flexibility
(Innovia Consulting)
3. Beyond the Phone: How to Rock Harder Using Azure
(Microsoft Research)
4. Integration Partners Joint Webinar
(Enghouse Interactive)
5. Connecting Up technology donations program overview webinar recording
(Connecting Up)
6. Restaurant Focus: Creating and Growing an Online Presence
(Indiana Economic Development Corporation)
Top Articles
Latest Posts
Article information

Author: Rev. Leonie Wyman

Last Updated: 10/05/2023

Views: 6063

Rating: 4.9 / 5 (59 voted)

Reviews: 82% of readers found this page helpful

Author information

Name: Rev. Leonie Wyman

Birthday: 1993-07-01

Address: Suite 763 6272 Lang Bypass, New Xochitlport, VT 72704-3308

Phone: +22014484519944

Job: Banking Officer

Hobby: Sailing, Gaming, Basketball, Calligraphy, Mycology, Astronomy, Juggling

Introduction: My name is Rev. Leonie Wyman, I am a colorful, tasty, splendid, fair, witty, gorgeous, splendid person who loves writing and wants to share my knowledge and understanding with you.