Need script built to address the Windows changes needed for taskbar

TechUST 516 Reputation points
2023-10-11T19:11:02.23+00:00

Hi Expert,

I Need script built to address the Win11 UI changes needed to match autopilot.

Changes to be made for UX:

Search: Icon Only

Widgets: Off

Chat: Off

Taskbar Alignment: Left. Please help

Microsoft Intune Configuration
Microsoft Intune Configuration
Microsoft Intune: A Microsoft cloud-based management solution that offers mobile device management, mobile application management, and PC management capabilities.Configuration: The process of arranging or setting up computer systems, hardware, or software.
1,814 questions
0 comments No comments
{count} votes

Accepted answer
  1. ZhoumingDuan-MSFT 11,130 Reputation points Microsoft Vendor
    2023-10-12T03:17:30.1666667+00:00

    @TechUST,Thanks for posting in Q&A.

    From your description, I know that you want a script to address Windows11 UI to match autopilot.

    Based on my testing, there are contents of PowerShell script that may meet your needs:

    #turn off Chat

    REG ADD "HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\Explorer\Advanced" /f /v TaskbarMn /t REG_DWORD /d 0

    #turn off Widgets

    REG ADD "HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\Explorer\Advanced" /f /v TaskbarDa /t REG_DWORD /d 0

    #change Search : Icon only

    REG ADD "HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\Search" /f /v SearchboxTaskbarMode /t REG_DWORD /d 1

    #change Taskbar Alignment: Left

    REG ADD "HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\Explorer\Advanced" /f /v TaskbarAl /t REG_DWORD /d 0

    Please create a file named .ps1 and add the scripts on a device, then upload the .ps1 file into Intune. Script Location: Microsoft > Devices > Scripts > Click Add. Then configure the script profile and assign it to autopilot device.

    User's image

    Hope this can be helpful.

    If the answer is helpful, please click "Accept Answer" and kindly upvote it. If you have extra questions about this answer, please click "Comment".

    Note: Please follow the steps in our documentation to enable e-mail notifications if you want to receive the related email notification for this thread.


0 additional answers

Sort by: Most helpful