maciejrebisz.com

IT

How to get Windows 10 1803 device names in Windows Analytics with Intune – Cloud First

maximios June 5, 2023

Starting with Windows 10, version 1803, the device name is no longer collected by default and requires a separate opt-in.

It shows in Windows Analytics Upgrade Readiness that the computer does not have a name after upgrading to Windows 10 1803.

The way to fix it with Intune is to deploy a PowerShell Script that sets the value that allows to computername to be uploaded to Windows Analytics again.

############################################################################################

###################################################################################################
$registryPath = "HKLM:\Software\Policies\Microsoft\Windows\DataCollection"

#Enable AllowDeviceNameInTelemetry
$Name = "AllowDeviceNameInTelemetry"
$value = "1"
IF(!(Test-Path $registryPath))
{
New-Item -Path $registryPath -Force | Out-Null
New-ItemProperty -Path $registryPath -Name $name -Value $value `
-PropertyType String -Force | Out-Null}
ELSE {
New-ItemProperty -Path $registryPath -Name $name -Value $value `
-PropertyType String -Force | Out-Null}

In Intune – create a new PowerShell Script:

    1. Windows Analytics enable device name

Ensure that the script is running in system context After the script is applied to the device HKLM\Software\Microsoft\Windows\DataCollection\AllowDeviceNameInTelemetry is set to 1

Read more at: Frequently asked questions and troubleshooting Windows Analytics Enrolling devices in Windows Analytics

Related Posts

IT /

Intune – Windows device enrollment restrictions – Cloud First

IT /

How to add “hidden” Windows UWP to Windows Store for Business – Cloud First

IT /

Office 2016 Active Directory-Based activation – Cloud First

‹ Android – Cloud First › Microsoft apps you can use with Microsoft Intune mobile application management policies – Cloud First

Recent Posts

  • Intune – Windows device enrollment restrictions – Cloud First
  • How to add “hidden” Windows UWP to Windows Store for Business – Cloud First
  • Office 2016 Active Directory-Based activation – Cloud First
  • How to deploy Windows Local Experience Packs with Intune – Cloud First
  • Conditional Access for Outlook Web Access (OWA) – Cloud First

Recent Comments

No comments to show.

Archives

  • November 2025
  • October 2025
  • August 2025
  • July 2025
  • June 2025
  • April 2025
  • March 2025
  • February 2025
  • January 2025
  • November 2024
  • September 2024
  • July 2024
  • June 2024
  • March 2024
  • December 2023
  • August 2023
  • June 2023
  • March 2023
  • February 2023
  • December 2022
  • September 2022
  • August 2022
  • June 2022
  • May 2022
  • April 2022
  • March 2022
  • January 2022
  • December 2021
  • October 2021
  • September 2021
  • August 2021
  • June 2021
  • May 2021
  • April 2021
  • March 2021
  • February 2021
  • January 2021
  • December 2020
  • November 2020
  • October 2020
  • September 2020
  • August 2020
  • February 2020
  • January 2020
  • December 2019
  • October 2019
  • September 2019
  • June 2019
  • April 2019
  • March 2019
  • February 2019
  • March 2018
  • February 2018
  • December 2017
  • October 2017
  • August 2017

Categories

  • IT

Back to Top

© maciejrebisz.com 2026
Powered by WordPress • Themify WordPress Themes