How and Why to Develop a Bring-Your-Own-Device Policy

4 min read

With the internet available for essentially all employees and remote work becoming a part of more businesses’ operations, developing a bring-your-own-device (BYOD) policy is almost necessary to help employees be more productive and safe while working. Research shows there are many reasons why businesses should develop the right type of BYOD policy.

According to Intel and Dell, 61 percent of Gen Y and 50 percent of workers 30 and older think the electronic devices they use at home are more capable in completing tasks in their everyday life compared to their work devices.

Frost & Sullivan found that connected handheld technology helps employees, making them about one-third more productive and reducing their average workday by 58 minutes.

A BYOD policy simply means that companies permit their workers to use their own smart devices to perform job-related tasks. It can be beneficial for a company, especially a smaller one; but it’s important to evaluate the advantages and disadvantages before implementing one.

Advantages

One of the most obvious reasons for a business to develop and implement a BYOD policy is due to the proliferation of technology. Along with saving employers money by not having to provide a work device, there is no need to provide costly training on how to use the device. A 2016 Pew Research survey determined that 77 percent of U.S. adults have a smartphone. For those ages 18 to 29, more than 9 in 10 (92 percent) own a smartphone. In 2021, even more adults likely have at least one smartphone.

Potential Drawbacks/Legal Considerations

According to a 2017 Pew Research Center report, there’s a significant portion of smartphone users with less-than-ideal security habits. For example, 28 percent of respondents don’t secure their phone with a screen lock or similar features. Forty percent said they update their apps or phone’s operating system only when it’s convenient for them. Less common, but equally alarming: Between 10 percent and 14 percent of respondents never update their phone’s operating system or apps.

Without a proper system setup there are more security risks, including reduced or compromised company privacy and a lack of basic digital literacy among employees. Mobile Device Management software can help monitor, secure, and partition personal and business files in a dedicated area, providing more confidence when permitting employees to BYOD.

Other considerations for a BYOD policy might include prohibiting employees from downloading unauthorized apps; performing local back-ups of company data; disallowing syncing to other personal devices; not allowing modifications to hardware/software beyond routine installations; and not using unsecured internet networks.

Depending on how employees are classified by the Fair Labor Standards Act (FLSA) for overtime compensation, businesses may be liable for overtime wages if non-exempt employees perform their duties outside the office. If non-exempt employees perform duties beyond “40 hours of work in a work week,” as the U.S. Department of Labor outlines, businesses could be liable for additional wages paid if they use their device for work-related tasks.

While each company has its own needs and unique workforce, crafting a BYOD policy that increases productivity while maintaining security and privacy can give businesses a competitive edge.

Sources

https://i.dell.com/sites/content/business/solutions/whitepapers/it/Documents/intel-imr-consumerization-wp_it.pdf

https://www.pewresearch.org/fact-tank/2017/01/12/evolution-of-technology/

https://www.pewresearch.org/fact-tank/2017/03/15/many-smartphone-owners-dont-take-steps-to-secure-their-devices/

https://www.dol.gov/agencies/whd/flsa


Disclaimer 

These articles provide general information on tax, accounting, and financial topics for small businesses and individuals. They are educational in nature and are not specific legal, accounting, financial, tax, or other professional advice, and should not be relied upon as such. This content was prepared by Service2Client and may have been reviewed or edited by the website owner for accuracy and compliance. Look for a trust mark below for verification details. No representation is made that any approach described will achieve a particular result, and no regulatory or professional body has reviewed or endorsed this content. Because each situation is different, readers should consult a qualified professional about their specific circumstances before acting. Images accompanying these articles are protected by copyright and may not be copied or reused.

"; return; } var url = block.dataset.restUrl + "?post_id=" + encodeURIComponent(block.dataset.postId) + "&keyword=" + encodeURIComponent(keyword); output.innerHTML = "
Searching…
"; submit.disabled = true; output.setAttribute("aria-busy", "true"); fetch(url, { headers: { "X-WP-Nonce": block.dataset.nonce } }) .then(function(r){ return r.json().then(function(data){ return { status: r.status, data: data }; }); }) .then(function(resp){ if (resp.status === 200 && resp.data && resp.data.success) { dpSimilarRender(output, keyword, resp.data); } else if (resp.status === 403) { output.innerHTML = "
Session expired. Please refresh the page and try again.
"; } else if (resp.status === 429) { output.innerHTML = "
Too many searches. Please try again in a few minutes.
" + dpSimilarCta(output, -1); } else { output.innerHTML = "
Search failed. Please try again.
" + dpSimilarCta(output, -1); } }) .catch(function(){ output.innerHTML = "
Could not reach the server. Please check your connection.
" + dpSimilarCta(output, -1); }) .then(function(){ submit.disabled = false; output.removeAttribute("aria-busy"); }); } function dpAskGrokSend(block) { var input = block.querySelector(".dp-ask-grok-input"); var result = block.querySelector(".dp-ask-grok-result"); var send = block.querySelector(".dp-ask-grok-send"); var form = block.querySelector(".dp-ask-grok-form"); var button = block.querySelector(".dp-ask-grok-button"); var intro = block.querySelector(".dp-ask-grok-intro"); var question = (input.value || "").trim(); if (question.length Please ask a question of at least 10 characters."; return; } if (question.length > 500) { result.innerHTML = "
Question is too long. Please keep it under 500 characters.
"; return; } result.innerHTML = "
Asking Grok\u2026 (this can take 10-20 seconds)
"; send.disabled = true; result.setAttribute("aria-busy", "true"); fetch(block.dataset.restUrlAskGrok, { method: "POST", headers: { "Content-Type": "application/json", "X-WP-Nonce": block.dataset.nonce }, body: JSON.stringify({ post_id: parseInt(block.dataset.postId, 10), question: question }) }) .then(function(r){ return r.json().then(function(data){ return { status: r.status, data: data }; }); }) .then(function(resp){ if (resp.status === 429) { if (form) form.style.display = "none"; if (intro) intro.style.display = ""; if (button) { button.style.display = ""; button.disabled = true; button.setAttribute("title", "Daily limit reached. Try again tomorrow."); button.textContent = "Daily limit reached"; } var rateMsg = (resp.data && resp.data.message) ? resp.data.message : "You\u2019ve reached today\u2019s question limit. Please try again tomorrow."; result.innerHTML = "
" + dpSimilarEscape(rateMsg) + "
"; return; } if (resp.status === 403) { result.innerHTML = "
Session expired. Please refresh the page and try again.
"; return; } if (resp.status === 200 && resp.data && resp.data.success) { var safeAnswer = dpSimilarEscape(resp.data.answer || ""); var safeDisclaimer = dpSimilarEscape(resp.data.disclaimer || ""); var answerHtml = "
"; answerHtml += "

" + safeAnswer + "

"; answerHtml += "

\u26a0\ufe0f " + safeDisclaimer + "

"; answerHtml += "
"; result.innerHTML = answerHtml; if (form) form.style.display = "none"; if (intro) intro.style.display = ""; if (button) { button.style.display = ""; button.disabled = true; button.setAttribute("title", "Daily limit reached. Try again tomorrow."); button.textContent = "Daily limit reached"; } return; } if (resp.status === 200 && resp.data && !resp.data.success) { var msg = dpSimilarEscape(resp.data.message || "Could not process your question right now."); result.innerHTML = "
" + msg + "
"; return; } result.innerHTML = "
Could not process your question right now. Please try again later.
"; }) .catch(function(){ result.innerHTML = "
Could not reach the server. Please check your connection and try again.
"; }) .then(function(){ if (send) send.disabled = false; result.removeAttribute("aria-busy"); }); } function dpSimilarRender(output, keyword, data) { var html = ""; if (data.count === 0) { html += "
No matches found for “" + dpSimilarEscape(keyword) + "”.
"; } else { html += "

Articles matching “" + dpSimilarEscape(keyword) + "”

"; html += "
    "; data.results.forEach(function(r){ html += "
  • "; html += "" + r.title + ""; html += "" + r.date + ""; html += "
  • "; }); html += "
"; } html += dpSimilarCta(output, data.count); output.innerHTML = html; } function dpSimilarCta(output, count) { var block = output.closest(".dp-similar-block"); var contactUrl = block ? block.dataset.contactUrl : ""; if (!contactUrl) { return ""; } var ctaText; if (count === -1) { ctaText = "While you wait, here are some other ways to get help:"; } else if (count === 0) { ctaText = "Couldn\u2019t find what you needed? Speak with a professional for personalized help."; } else { ctaText = "Need more help with this topic? Speak with a professional."; } var html = "
"; html += "

" + ctaText + "

"; html += "Talk to a Professional"; html += "
"; var isFullApi = block && block.dataset.isFullApi === "1"; html += "

Or ask our AI assistant a quick question about this topic.

"; html += ""; html += "
"; html += ""; html += ""; html += ""; html += ""; html += "
"; html += "
"; html += "
"; html += "
"; return html; } function dpSimilarEscape(s) { var div = document.createElement("div"); div.textContent = s; return div.innerHTML; }})();

Coronado-Fortune & Associates, LLC

How and Why to Develop a Bring-Your-Own-Device Policy

September 1, 2021  ·  Blog, General Business News, Uncategorized

4 min read

With the internet available for essentially all employees and remote work becoming a part of more businesses’ operations, developing a bring-your-own-device (BYOD) policy is almost necessary to help employees be more productive and safe while working. Research shows there are many reasons why businesses should develop the right type of BYOD policy.

According to Intel and Dell, 61 percent of Gen Y and 50 percent of workers 30 and older think the electronic devices they use at home are more capable in completing tasks in their everyday life compared to their work devices.

Frost & Sullivan found that connected handheld technology helps employees, making them about one-third more productive and reducing their average workday by 58 minutes.

A BYOD policy simply means that companies permit their workers to use their own smart devices to perform job-related tasks. It can be beneficial for a company, especially a smaller one; but it’s important to evaluate the advantages and disadvantages before implementing one.

Advantages

One of the most obvious reasons for a business to develop and implement a BYOD policy is due to the proliferation of technology. Along with saving employers money by not having to provide a work device, there is no need to provide costly training on how to use the device. A 2016 Pew Research survey determined that 77 percent of U.S. adults have a smartphone. For those ages 18 to 29, more than 9 in 10 (92 percent) own a smartphone. In 2021, even more adults likely have at least one smartphone.

Potential Drawbacks/Legal Considerations

According to a 2017 Pew Research Center report, there’s a significant portion of smartphone users with less-than-ideal security habits. For example, 28 percent of respondents don’t secure their phone with a screen lock or similar features. Forty percent said they update their apps or phone’s operating system only when it’s convenient for them. Less common, but equally alarming: Between 10 percent and 14 percent of respondents never update their phone’s operating system or apps.

Without a proper system setup there are more security risks, including reduced or compromised company privacy and a lack of basic digital literacy among employees. Mobile Device Management software can help monitor, secure, and partition personal and business files in a dedicated area, providing more confidence when permitting employees to BYOD.

Other considerations for a BYOD policy might include prohibiting employees from downloading unauthorized apps; performing local back-ups of company data; disallowing syncing to other personal devices; not allowing modifications to hardware/software beyond routine installations; and not using unsecured internet networks.

Depending on how employees are classified by the Fair Labor Standards Act (FLSA) for overtime compensation, businesses may be liable for overtime wages if non-exempt employees perform their duties outside the office. If non-exempt employees perform duties beyond “40 hours of work in a work week,” as the U.S. Department of Labor outlines, businesses could be liable for additional wages paid if they use their device for work-related tasks.

While each company has its own needs and unique workforce, crafting a BYOD policy that increases productivity while maintaining security and privacy can give businesses a competitive edge.

Sources

https://i.dell.com/sites/content/business/solutions/whitepapers/it/Documents/intel-imr-consumerization-wp_it.pdf

https://www.pewresearch.org/fact-tank/2017/01/12/evolution-of-technology/

https://www.pewresearch.org/fact-tank/2017/03/15/many-smartphone-owners-dont-take-steps-to-secure-their-devices/

https://www.dol.gov/agencies/whd/flsa


Disclaimer 

These articles provide general information on tax, accounting, and financial topics for small businesses and individuals. They are educational in nature and are not specific legal, accounting, financial, tax, or other professional advice, and should not be relied upon as such. This content was prepared by Service2Client and may have been reviewed or edited by the website owner for accuracy and compliance. Look for a trust mark below for verification details. No representation is made that any approach described will achieve a particular result, and no regulatory or professional body has reviewed or endorsed this content. Because each situation is different, readers should consult a qualified professional about their specific circumstances before acting. Images accompanying these articles are protected by copyright and may not be copied or reused.


Disclaimer 

These articles provide general information on tax, accounting, and financial topics for small businesses and individuals. They are educational in nature and are not specific legal, accounting, financial, tax, or other professional advice, and should not be relied upon as such. This content was prepared by Service2Client and may have been reviewed or edited by the website owner for accuracy and compliance. Look for a trust mark below for verification details. No representation is made that any approach described will achieve a particular result, and no regulatory or professional body has reviewed or endorsed this content. Because each situation is different, readers should consult a qualified professional about their specific circumstances before acting. Images accompanying these articles are protected by copyright and may not be copied or reused.

Service2Client

Share
Published by
Service2Client