{"id":11227,"date":"2026-02-14T21:01:12","date_gmt":"2026-02-14T21:01:12","guid":{"rendered":"https:\/\/cheapwindowsvps.com\/blog\/a-guide-to-managing-per-user-services-in-windows\/"},"modified":"2026-02-14T21:01:12","modified_gmt":"2026-02-14T21:01:12","slug":"a-guide-to-managing-per-user-services-in-windows","status":"publish","type":"post","link":"https:\/\/cheapwindowsvps.com\/blog\/a-guide-to-managing-per-user-services-in-windows\/","title":{"rendered":"A Guide to Managing Per-User Services in Windows"},"content":{"rendered":"<p>In Windows, <strong>per-user services<\/strong> are specialized services generated for each user during their logon and removed when they log off. They are designed to handle personalized tasks such as search indexing, notifications, and data synchronization, operating within the user account context rather than the LocalSystem context. This concept has been available since Windows 10 and Windows Server 2016.<\/p>\n<h3>How to Find All Per-User Services in Windows<\/h3>\n<p>To see a list of per-user services on a Windows machine, you can use the Services Management snap-in (<code>services.msc<\/code>). The service names often include a unique identifier (known as LUID) at the end. For instance, services like <code>Clipboard User Service_da170<\/code> and <code>ConsentUX User Service_da170<\/code> are examples of this naming convention.<\/p>\n<p>Using PowerShell, you can filter and list these services based on the <strong>SERVICE_USER_SERVICE<\/strong> type. The command looks like this:<\/p>\n<pre><code class=\"language-powershell\">Get-Service | Where-Object { ($_.ServiceType -band 64) -eq 64 } | Select Name, Status, ServiceType, DisplayName<\/code><\/pre>\n<p>Windows creates personal service templates in the registry at <code>HKLMSYSTEMCurrentControlSetServices<\/code> when a user logs in. To list these templates, use the following PowerShell command:<\/p>\n<pre><code class=\"language-powershell\">Get-ChildItem &quot;HKLM:SYSTEMCurrentControlSetServices&quot; | ForEach-Object { Get-ItemProperty $_.pspath } | Where-Object {$_.Type -eq 80 -or $_.Type -eq 96} | Format-Table PSChildName, Type, UserServiceFlags<\/code><\/pre>\n<p>Here&#8217;s a brief overview of some default per-user services in Windows 11 (25H2):<\/p>\n<table>\n<thead>\n<tr>\n<th><strong>Service Name<\/strong><\/th>\n<th><strong>Display Name<\/strong><\/th>\n<th><strong>Startup Type<\/strong><\/th>\n<th><strong>Can be Disabled<\/strong><\/th>\n<th><strong>Description<\/strong><\/th>\n<\/tr>\n<\/thead>\n<tbody>\n<tr>\n<td>AarSvc<\/td>\n<td>Agent Activation Runtime<\/td>\n<td>Manual<\/td>\n<td>\u274c Do NOT disable<\/td>\n<td>Launches app background agents<\/td>\n<\/tr>\n<tr>\n<td>BluetoothUserService<\/td>\n<td>Bluetooth User Support Service<\/td>\n<td>Manual<\/td>\n<td>\ud83d\udfe2 Safe to disable<\/td>\n<td>Provides Bluetooth user-level support<\/td>\n<\/tr>\n<tr>\n<td>CaptureService<\/td>\n<td>Capture Service<\/td>\n<td>Manual<\/td>\n<td>\ud83d\udfe2 Safe to disable<\/td>\n<td>Handles screen and video capturing<\/td>\n<\/tr>\n<tr>\n<td>cbdhsvc<\/td>\n<td>Clipboard User Service<\/td>\n<td>Manual<\/td>\n<td>\ud83d\udfe2 Safe to disable<\/td>\n<td>Manages shared clipboard and sync<\/td>\n<\/tr>\n<tr>\n<td>ConsentUxUserSvc<\/td>\n<td>ConsentUX User Service<\/td>\n<td>Manual<\/td>\n<td>\ud83d\udfe2 Safe to disable<\/td>\n<td>Handles app consent dialogs<\/td>\n<\/tr>\n<\/tbody>\n<\/table>\n<h3>How to Disable or Remove Per-User Services in Windows<\/h3>\n<p>Most per-user services are initially disabled and only activate when needed. If specific Windows features are not required, you can disable the corresponding per-user services. This practice is particularly important for terminal servers and virtual desktops to maintain performance.<\/p>\n<p>For instance, you might want to disable services like <code>DevicesFlowUserSvc<\/code> for WiFi displays or <code>BcastDVRUserService<\/code> for game recording. To do this, access the registry key <code>HKLMSystemCurrentControlSetServicesBcastDVRUserService<\/code>, create a REG_DWORD parameter named <strong>UserServiceFlags<\/strong>, and set its value to 0. You can accomplish this either manually or using PowerShell:<\/p>\n<pre><code class=\"language-powershell\">New-ItemProperty -Path HKLM:SystemCurrentControlSetServicesBcastDVRUserService -Name UserServiceFlags -PropertyType DWord -Value 0 -Force<\/code><\/pre>\n<p>After restarting the computer, the specified dynamic per-user services will not be created.<\/p>\n<p>In environments with many users, such as an RDS terminal farm, the proliferation of per-user services can negatively affect server performance. Disabling unused services can alleviate this issue.<\/p>\n<p>Some services disabled in a Windows Server 2022 RDS template include:<\/p>\n<ul>\n<li>CaptureService<\/li>\n<li>ConsentUxUserSvc<\/li>\n<li>DevicePickerUserSvc<\/li>\n<li>DevicesFlowUserSvc<\/li>\n<li>UserDataSvc<\/li>\n<\/ul>\n<p>Using Group Policy to set the <strong>UserServiceFlags<\/strong> value aids in managing these services effectively (learn how to create or modify registry items via Group Policy).<\/p>\n<p>It&#8217;s essential to reference Microsoft&#8217;s supported list when disabling per-user services, ensuring that changes are made carefully and validated in your specific environment.<\/p>\n","protected":false},"excerpt":{"rendered":"<p>In Windows, per-user services are specialized services generated for each user during their logon and removed when they log off. They are designed to handle personalized tasks such as search indexing, notifications, and data synchronization, operating within the user account context rather than the LocalSystem context. This concept has been available since Windows 10 and [&hellip;]<\/p>\n","protected":false},"author":0,"featured_media":11228,"comment_status":"closed","ping_status":"closed","sticky":false,"template":"","format":"standard","meta":{"footnotes":""},"categories":[98,99,121],"tags":[],"class_list":["post-11227","post","type-post","status-publish","format-standard","has-post-thumbnail","hentry","category-windows-10","category-windows-11","category-windows-server-2025"],"_links":{"self":[{"href":"https:\/\/cheapwindowsvps.com\/blog\/wp-json\/wp\/v2\/posts\/11227","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/cheapwindowsvps.com\/blog\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/cheapwindowsvps.com\/blog\/wp-json\/wp\/v2\/types\/post"}],"replies":[{"embeddable":true,"href":"https:\/\/cheapwindowsvps.com\/blog\/wp-json\/wp\/v2\/comments?post=11227"}],"version-history":[{"count":0,"href":"https:\/\/cheapwindowsvps.com\/blog\/wp-json\/wp\/v2\/posts\/11227\/revisions"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/cheapwindowsvps.com\/blog\/wp-json\/wp\/v2\/media\/11228"}],"wp:attachment":[{"href":"https:\/\/cheapwindowsvps.com\/blog\/wp-json\/wp\/v2\/media?parent=11227"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/cheapwindowsvps.com\/blog\/wp-json\/wp\/v2\/categories?post=11227"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/cheapwindowsvps.com\/blog\/wp-json\/wp\/v2\/tags?post=11227"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}