The Task Manager On The Start Menu Is Not Working


Thank you for the links. I am going to read the tutorials especially repair and install. I know I did one of those a couple years ago on a Win 10 Pro machine and it did not come out as well as I had hoped. But I am open to any advice and appreciate it. Thanks for your reply.

Yeah follow it properly, it’s always good to read first then do it. (I think)
Just so that you remember to Keep your stuff. (Apps and everything)
If your PC is Windows compliant, Option One via Windows Update in the repair tutorial should be OK.


I see Task Manager under Group 2


While I am here, in the WinX Group 2 I believe it should be Group 3 folder, if you right click on the icon and select “properties”, what Target do you see? This is mine.


%windir%\system32\taskmgr.exe /0


Win-1750.webp
 
Last edited:

My Computers

System One System Two

  • OS
    Windows 11 Pro 23H2 Build 22631.5335
    Computer type
    PC/Desktop
    Manufacturer/Model
    Sin-built
    CPU
    Intel(R) Core(TM) i7-4770K CPU @ 3.50GHz (4th Gen?)
    Motherboard
    ASUS ROG Maximus VI Formula
    Memory
    32.0 GB of I forget and the box is in storage.
    Graphics Card(s)
    Gigabyte nVidia GeForce GTX 1660 Super OC 6GB
    Sound Card
    Onboard
    Monitor(s) Displays
    5 x LG 25MS500-B - 1 x 24MK430H-B - 1 x Wacom Pro 22" Tablet
    Screen Resolution
    All over the place
    Hard Drives
    Too many to list.
    OS on Samsung 1TB 870 QVO SATA
    PSU
    Silverstone 1500
    Case
    NZXT Phantom 820 Full-Tower Case
    Cooling
    Noctua NH-D15 Elite Class Dual Tower CPU Cooler / 6 x EziDIY 120mm / 2 x Corsair 140mm somethings / 1 x 140mm Thermaltake something / 2 x 200mm Corsair.
    Keyboard
    Corsair K95 / Logitech diNovo Edge Wireless
    Mouse
    Logitech: G402 / G502 / Mx Masters / MX Air Cordless
    Internet Speed
    1000/400Mbps
    Browser
    All sorts
    Antivirus
    Kaspersky Premium
    Other Info
    I’m on a horse.
  • Operating System
    Windows 11 Pro 23H2 Build: 22631.4249
    Computer type
    Laptop
    Manufacturer/Model
    LENOVO Yoga 7i EVO OLED 14" Touchscreen i5 12 Core 16GB/512GB
    CPU
    Intel Core 12th Gen i5-1240P Processor (1.7 - 4.4GHz)
    Memory
    16GB LPDDR5 RAM
    Graphics card(s)
    Intel Iris Xe Graphics Processor
    Sound Card
    Optimized with Dolby Atmos®
    Screen Resolution
    QHD 2880 x 1800 OLED
    Hard Drives
    M.2 512GB
    Antivirus
    Defender / Malwarebytes
    Other Info
    …still on a horse.
Two things I came across that I have not tried because mine work. Likely similar to the tutorial you mentioned.
System backups are always advised..

Rebuild the Win+X menu with Powershell
(Run as Admin)

Powershell:
# Stop Explorer process
Stop-Process -Name explorer -Force

# Clear and rebuild shell experience host cache
Remove-Item -Path "$env:LocalAppData\Packages\Microsoft.Windows.ShellExperienceHost_cw5n1h2txyewy\TempState\*" -Force -Recurse -ErrorAction SilentlyContinue

# Clear Windows cache
Remove-Item -Path "$env:LocalAppData\Microsoft\Windows\Caches\*" -Force -Recurse -ErrorAction SilentlyContinue

# Rebuild WinX folder (backup first)
$winxPath = "$env:LOCALAPPDATA\Microsoft\Windows\WinX"
$backupPath = "$env:USERPROFILE\Desktop\WinX_Backup_$(Get-Date -Format 'yyyyMMdd_HHmmss')"
Copy-Item -Path $winxPath -Destination $backupPath -Recurse -Force
Remove-Item -Path $winxPath -Recurse -Force
New-Item -Path $winxPath -ItemType Directory

# Restart Explorer
Start-Process explorer

Alternatively try: Clear and rebuild shell experience host cache. (Alternative to cache section in the script above)
(Run as Admin)

Powershell:
Get-AppXPackage Microsoft.Windows.ShellExperienceHost | Foreach {Add-AppxPackage -DisableDevelopmentMode -Register "$($_.InstallLocation)\AppXManifest.xml"}
The part I have made Bold, is this a stand alone command in the Power Shell, or does it mean I copy it and replace the code under # Clear Windows cache above? I see 2 instances [CODE and /CODE], so I assume it is a stand alone command. However, not having any experience in using Power Shell, I just want to be sure.

I am working my way through the suggested solutions given to me in this forum. I don't want anyone thinking I am ignoring or don't appreciate every one of them.
 

My Computer

System One

  • OS
    Windows 11 Pro ver. 24H2
    Computer type
    PC/Desktop
    Manufacturer/Model
    ACPI x64-based PC
    CPU
    12th Grn. Intel i7-12700K 3600 Mhz 12 Cores
    Motherboard
    ASUSTeK - Prime Z690-P WIFI
    Memory
    64 GB DDR5
    Graphics Card(s)
    NVIDIA GeForce GTX 1650
    Sound Card
    NVIDIA High Definition Audio
    Monitor(s) Displays
    ViewSonic
    Screen Resolution
    1920 x 1080
    Hard Drives
    HDS72252 5VLAT80 2 Tb ssd Hard drive
    PSU
    850 Watt Power Supply
    Case
    19" high desktop
    Cooling
    A lot of fans
    Keyboard
    Logitech
    Mouse
    Logitech
    Internet Speed
    500 Mg
    Browser
    FF
    Antivirus
    Windows Defendor & Malwarebytes
    Other Info
    2 Asus Blu-Ray burners - BW - 16D1HT
I don't want anyone thinking I am ignoring or don't appreciate every one of them.

Yeah sorry, I can read harshly. I know you’re not a child so I dont want to treat you like one.


Sorry, forget the second powershell. As we were past that, I didn’t mention that it refreshes the wrong thing, it’s actually for reregistering the ShellExperienceHost. My bad, sorry 🙏


Open Powershell as admin


Copy paste this (the first one) into it, press enter

Powershell:
# Stop Explorer process
Stop-Process -Name explorer -Force

# Clear and rebuild shell experience host cache
Remove-Item -Path "$env:LocalAppData\Packages\Microsoft.Windows.ShellExperienceHost_cw5n1h2txyewy\TempState\*" -Force -Recurse -ErrorAction SilentlyContinue

# Clear Windows cache
Remove-Item -Path "$env:LocalAppData\Microsoft\Windows\Caches\*" -Force -Recurse -ErrorAction SilentlyContinue

# Rebuild WinX folder (backup first)
$winxPath = "$env:LOCALAPPDATA\Microsoft\Windows\WinX"
$backupPath = "$env:USERPROFILE\Desktop\WinX_Backup_$(Get-Date -Format 'yyyyMMdd_HHmmss')"
Copy-Item -Path $winxPath -Destination $backupPath -Recurse -Force
Remove-Item -Path $winxPath -Recurse -Force
New-Item -Path $winxPath -ItemType Directory

# Restart Explorer
Start-Process explorer
 

My Computers

System One System Two

  • OS
    Windows 11 Pro 23H2 Build 22631.5335
    Computer type
    PC/Desktop
    Manufacturer/Model
    Sin-built
    CPU
    Intel(R) Core(TM) i7-4770K CPU @ 3.50GHz (4th Gen?)
    Motherboard
    ASUS ROG Maximus VI Formula
    Memory
    32.0 GB of I forget and the box is in storage.
    Graphics Card(s)
    Gigabyte nVidia GeForce GTX 1660 Super OC 6GB
    Sound Card
    Onboard
    Monitor(s) Displays
    5 x LG 25MS500-B - 1 x 24MK430H-B - 1 x Wacom Pro 22" Tablet
    Screen Resolution
    All over the place
    Hard Drives
    Too many to list.
    OS on Samsung 1TB 870 QVO SATA
    PSU
    Silverstone 1500
    Case
    NZXT Phantom 820 Full-Tower Case
    Cooling
    Noctua NH-D15 Elite Class Dual Tower CPU Cooler / 6 x EziDIY 120mm / 2 x Corsair 140mm somethings / 1 x 140mm Thermaltake something / 2 x 200mm Corsair.
    Keyboard
    Corsair K95 / Logitech diNovo Edge Wireless
    Mouse
    Logitech: G402 / G502 / Mx Masters / MX Air Cordless
    Internet Speed
    1000/400Mbps
    Browser
    All sorts
    Antivirus
    Kaspersky Premium
    Other Info
    I’m on a horse.
  • Operating System
    Windows 11 Pro 23H2 Build: 22631.4249
    Computer type
    Laptop
    Manufacturer/Model
    LENOVO Yoga 7i EVO OLED 14" Touchscreen i5 12 Core 16GB/512GB
    CPU
    Intel Core 12th Gen i5-1240P Processor (1.7 - 4.4GHz)
    Memory
    16GB LPDDR5 RAM
    Graphics card(s)
    Intel Iris Xe Graphics Processor
    Sound Card
    Optimized with Dolby Atmos®
    Screen Resolution
    QHD 2880 x 1800 OLED
    Hard Drives
    M.2 512GB
    Antivirus
    Defender / Malwarebytes
    Other Info
    …still on a horse.
  • Like
Reactions: HDL
Thank you for the reply.
 

My Computer

System One

  • OS
    Windows 11 Pro ver. 24H2
    Computer type
    PC/Desktop
    Manufacturer/Model
    ACPI x64-based PC
    CPU
    12th Grn. Intel i7-12700K 3600 Mhz 12 Cores
    Motherboard
    ASUSTeK - Prime Z690-P WIFI
    Memory
    64 GB DDR5
    Graphics Card(s)
    NVIDIA GeForce GTX 1650
    Sound Card
    NVIDIA High Definition Audio
    Monitor(s) Displays
    ViewSonic
    Screen Resolution
    1920 x 1080
    Hard Drives
    HDS72252 5VLAT80 2 Tb ssd Hard drive
    PSU
    850 Watt Power Supply
    Case
    19" high desktop
    Cooling
    A lot of fans
    Keyboard
    Logitech
    Mouse
    Logitech
    Internet Speed
    500 Mg
    Browser
    FF
    Antivirus
    Windows Defendor & Malwarebytes
    Other Info
    2 Asus Blu-Ray burners - BW - 16D1HT
Or you could try this revised one I have:

  • Does not blindly delete — checks if paths exist first
  • Backs up your menu safely
  • Rebuilds the proper WinX structure with Group1–3
  • Recreates Task Manager shortcut so you don’t need to use third-party tools
  • Outputs progress clearly so you know what’s happening

Powershell:
# Stop Explorer process gracefully
Write-Output "Stopping Explorer..."
Stop-Process -Name explorer -Force -ErrorAction SilentlyContinue

# Clear ShellExperienceHost cache
$shellHostTemp = "$env:LocalAppData\Packages\Microsoft.Windows.ShellExperienceHost_cw5n1h2txyewy\TempState"
if (Test-Path $shellHostTemp) {
    Write-Output "Clearing ShellExperienceHost cache..."
    Remove-Item -Path "$shellHostTemp\*" -Force -Recurse -ErrorAction SilentlyContinue
}

# Clear Windows caches
$windowsCache = "$env:LocalAppData\Microsoft\Windows\Caches"
if (Test-Path $windowsCache) {
    Write-Output "Clearing Windows local caches..."
    Remove-Item -Path "$windowsCache\*" -Force -Recurse -ErrorAction SilentlyContinue
}

# Back up and reset WinX menu
$winxPath = "$env:LocalAppData\Microsoft\Windows\WinX"
$backupPath = "$env:USERPROFILE\Desktop\WinX_Backup_$(Get-Date -Format 'yyyyMMdd_HHmmss')"

if (Test-Path $winxPath) {
    Write-Output "Backing up existing WinX menu to $backupPath"
    Copy-Item -Path $winxPath -Destination $backupPath -Recurse -Force
    Write-Output "Removing old WinX menu..."
    Remove-Item -Path $winxPath -Recurse -Force
}

# Recreate WinX structure
Write-Output "Rebuilding WinX menu folder structure..."
New-Item -Path $winxPath -ItemType Directory | Out-Null
1..3 | ForEach-Object {
    New-Item -Path "$winxPath\Group$_" -ItemType Directory | Out-Null
}

# Recreate Task Manager shortcut in Group3 (optional)
$taskmgrPath = "$env:windir\System32\taskmgr.exe"
$taskmgrShortcut = "$winxPath\Group3\01 - Task Manager.lnk"

if (Test-Path $taskmgrPath) {
    Write-Output "Creating Task Manager shortcut..."
    $shell = New-Object -ComObject WScript.Shell
    $shortcut = $shell.CreateShortcut($taskmgrShortcut)
    $shortcut.TargetPath = $taskmgrPath
    $shortcut.IconLocation = "$taskmgrPath,0"
    $shortcut.Save()
} else {
    Write-Warning "Task Manager executable not found at $taskmgrPath"
}

# Restart Explorer
Write-Output "Restarting Explorer..."
Start-Process explorer
Write-Output "Done. Please right-click Start to check the Win+X menu."
 

My Computers

System One System Two

  • OS
    Windows 11 Pro 23H2 Build 22631.5335
    Computer type
    PC/Desktop
    Manufacturer/Model
    Sin-built
    CPU
    Intel(R) Core(TM) i7-4770K CPU @ 3.50GHz (4th Gen?)
    Motherboard
    ASUS ROG Maximus VI Formula
    Memory
    32.0 GB of I forget and the box is in storage.
    Graphics Card(s)
    Gigabyte nVidia GeForce GTX 1660 Super OC 6GB
    Sound Card
    Onboard
    Monitor(s) Displays
    5 x LG 25MS500-B - 1 x 24MK430H-B - 1 x Wacom Pro 22" Tablet
    Screen Resolution
    All over the place
    Hard Drives
    Too many to list.
    OS on Samsung 1TB 870 QVO SATA
    PSU
    Silverstone 1500
    Case
    NZXT Phantom 820 Full-Tower Case
    Cooling
    Noctua NH-D15 Elite Class Dual Tower CPU Cooler / 6 x EziDIY 120mm / 2 x Corsair 140mm somethings / 1 x 140mm Thermaltake something / 2 x 200mm Corsair.
    Keyboard
    Corsair K95 / Logitech diNovo Edge Wireless
    Mouse
    Logitech: G402 / G502 / Mx Masters / MX Air Cordless
    Internet Speed
    1000/400Mbps
    Browser
    All sorts
    Antivirus
    Kaspersky Premium
    Other Info
    I’m on a horse.
  • Operating System
    Windows 11 Pro 23H2 Build: 22631.4249
    Computer type
    Laptop
    Manufacturer/Model
    LENOVO Yoga 7i EVO OLED 14" Touchscreen i5 12 Core 16GB/512GB
    CPU
    Intel Core 12th Gen i5-1240P Processor (1.7 - 4.4GHz)
    Memory
    16GB LPDDR5 RAM
    Graphics card(s)
    Intel Iris Xe Graphics Processor
    Sound Card
    Optimized with Dolby Atmos®
    Screen Resolution
    QHD 2880 x 1800 OLED
    Hard Drives
    M.2 512GB
    Antivirus
    Defender / Malwarebytes
    Other Info
    …still on a horse.
Make sure you copy all of the code.
 

My Computers

System One System Two

  • OS
    Windows 11 Pro 23H2 Build 22631.5335
    Computer type
    PC/Desktop
    Manufacturer/Model
    Sin-built
    CPU
    Intel(R) Core(TM) i7-4770K CPU @ 3.50GHz (4th Gen?)
    Motherboard
    ASUS ROG Maximus VI Formula
    Memory
    32.0 GB of I forget and the box is in storage.
    Graphics Card(s)
    Gigabyte nVidia GeForce GTX 1660 Super OC 6GB
    Sound Card
    Onboard
    Monitor(s) Displays
    5 x LG 25MS500-B - 1 x 24MK430H-B - 1 x Wacom Pro 22" Tablet
    Screen Resolution
    All over the place
    Hard Drives
    Too many to list.
    OS on Samsung 1TB 870 QVO SATA
    PSU
    Silverstone 1500
    Case
    NZXT Phantom 820 Full-Tower Case
    Cooling
    Noctua NH-D15 Elite Class Dual Tower CPU Cooler / 6 x EziDIY 120mm / 2 x Corsair 140mm somethings / 1 x 140mm Thermaltake something / 2 x 200mm Corsair.
    Keyboard
    Corsair K95 / Logitech diNovo Edge Wireless
    Mouse
    Logitech: G402 / G502 / Mx Masters / MX Air Cordless
    Internet Speed
    1000/400Mbps
    Browser
    All sorts
    Antivirus
    Kaspersky Premium
    Other Info
    I’m on a horse.
  • Operating System
    Windows 11 Pro 23H2 Build: 22631.4249
    Computer type
    Laptop
    Manufacturer/Model
    LENOVO Yoga 7i EVO OLED 14" Touchscreen i5 12 Core 16GB/512GB
    CPU
    Intel Core 12th Gen i5-1240P Processor (1.7 - 4.4GHz)
    Memory
    16GB LPDDR5 RAM
    Graphics card(s)
    Intel Iris Xe Graphics Processor
    Sound Card
    Optimized with Dolby Atmos®
    Screen Resolution
    QHD 2880 x 1800 OLED
    Hard Drives
    M.2 512GB
    Antivirus
    Defender / Malwarebytes
    Other Info
    …still on a horse.

Default Win+X Menu Groups:

  • Group1 → Top section (e.g., Mobility Center, Power Options)
  • Group2 → Middle section (e.g., Device Manager, Event Viewer)
  • ✅ Group3Bottom section, which includes:
    • Task Manager
    • Settings
    • File Explorer
    • Run
    • Desktop
 

My Computers

System One System Two

  • OS
    Windows 11 Pro 23H2 Build 22631.5335
    Computer type
    PC/Desktop
    Manufacturer/Model
    Sin-built
    CPU
    Intel(R) Core(TM) i7-4770K CPU @ 3.50GHz (4th Gen?)
    Motherboard
    ASUS ROG Maximus VI Formula
    Memory
    32.0 GB of I forget and the box is in storage.
    Graphics Card(s)
    Gigabyte nVidia GeForce GTX 1660 Super OC 6GB
    Sound Card
    Onboard
    Monitor(s) Displays
    5 x LG 25MS500-B - 1 x 24MK430H-B - 1 x Wacom Pro 22" Tablet
    Screen Resolution
    All over the place
    Hard Drives
    Too many to list.
    OS on Samsung 1TB 870 QVO SATA
    PSU
    Silverstone 1500
    Case
    NZXT Phantom 820 Full-Tower Case
    Cooling
    Noctua NH-D15 Elite Class Dual Tower CPU Cooler / 6 x EziDIY 120mm / 2 x Corsair 140mm somethings / 1 x 140mm Thermaltake something / 2 x 200mm Corsair.
    Keyboard
    Corsair K95 / Logitech diNovo Edge Wireless
    Mouse
    Logitech: G402 / G502 / Mx Masters / MX Air Cordless
    Internet Speed
    1000/400Mbps
    Browser
    All sorts
    Antivirus
    Kaspersky Premium
    Other Info
    I’m on a horse.
  • Operating System
    Windows 11 Pro 23H2 Build: 22631.4249
    Computer type
    Laptop
    Manufacturer/Model
    LENOVO Yoga 7i EVO OLED 14" Touchscreen i5 12 Core 16GB/512GB
    CPU
    Intel Core 12th Gen i5-1240P Processor (1.7 - 4.4GHz)
    Memory
    16GB LPDDR5 RAM
    Graphics card(s)
    Intel Iris Xe Graphics Processor
    Sound Card
    Optimized with Dolby Atmos®
    Screen Resolution
    QHD 2880 x 1800 OLED
    Hard Drives
    M.2 512GB
    Antivirus
    Defender / Malwarebytes
    Other Info
    …still on a horse.
I see Task Manager under Group 2

Me thinks your problem could be that Task Manager should be in the Group 3 Folder.
I am not sure though if it would stop it from working just because it’s in Group 2 Folder
As far as I know, it just moves it to a different section of WinX.

This will do all of the above and move Task Manager to Group 3 Folder

Powershell:
# Stop Explorer
Write-Output "Stopping Explorer..."
Stop-Process -Name explorer -Force -ErrorAction SilentlyContinue

# Clear ShellExperienceHost cache
$shellHostTemp = "$env:LocalAppData\Packages\Microsoft.Windows.ShellExperienceHost_cw5n1h2txyewy\TempState"
if (Test-Path $shellHostTemp) {
    Write-Output "Clearing ShellExperienceHost cache..."
    Remove-Item "$shellHostTemp\*" -Recurse -Force -ErrorAction SilentlyContinue
}

# Clear Windows caches
$windowsCache = "$env:LocalAppData\Microsoft\Windows\Caches"
if (Test-Path $windowsCache) {
    Write-Output "Clearing Windows local caches..."
    Remove-Item "$windowsCache\*" -Recurse -Force -ErrorAction SilentlyContinue
}

# Backup and prep WinX folders
$winxPath = "$env:LocalAppData\Microsoft\Windows\WinX"
$backupPath = "$env:USERPROFILE\Desktop\WinX_Backup_$(Get-Date -Format 'yyyyMMdd_HHmmss')"

if (Test-Path $winxPath) {
    Write-Output "Backing up existing WinX menu to: $backupPath"
    Copy-Item -Path $winxPath -Destination $backupPath -Recurse -Force
} else {
    Write-Output "Creating new WinX directory..."
    New-Item -Path $winxPath -ItemType Directory | Out-Null
}

# Ensure Groups 1-3 exist
1..3 | ForEach-Object {
    $groupFolder = "$winxPath\Group$_"
    if (-not (Test-Path $groupFolder)) {
        Write-Output "Creating $groupFolder"
        New-Item -Path $groupFolder -ItemType Directory | Out-Null
    }
}

# Detect Task Manager shortcut
$foundShortcut = $false
$taskmgrPath = "$env:windir\System32\taskmgr.exe"
$correctGroup = "$winxPath\Group3"
$targetShortcut = "$correctGroup\01 - Task Manager.lnk"

foreach ($group in 1..3) {
    $groupPath = "$winxPath\Group$group"
    $shortcuts = Get-ChildItem -Path $groupPath -Filter '*.lnk' -ErrorAction SilentlyContinue
    foreach ($shortcut in $shortcuts) {
        $shell = New-Object -ComObject WScript.Shell
        $sc = $shell.CreateShortcut($shortcut.FullName)
        if ($sc.TargetPath -ieq $taskmgrPath) {
            if ($group -ne 3) {
                Write-Output "Moving Task Manager shortcut from Group$group to Group3..."
                Move-Item $shortcut.FullName $targetShortcut -Force
            } elseif ($shortcut.FullName -ne $targetShortcut) {
                Write-Output "Renaming Task Manager shortcut for proper position..."
                Move-Item $shortcut.FullName $targetShortcut -Force
            } else {
                Write-Output "Task Manager shortcut already in correct location."
            }
            $foundShortcut = $true
            break
        }
    }
    if ($foundShortcut) { break }
}

# Create it if not found
if (-not $foundShortcut) {
    Write-Output "Creating Task Manager shortcut in Group3..."
    $shell = New-Object -ComObject WScript.Shell
    $sc = $shell.CreateShortcut($targetShortcut)
    $sc.TargetPath = $taskmgrPath
    $sc.IconLocation = "$taskmgrPath,0"
    $sc.Save()
}

# Restart Explorer
Write-Output "Restarting Explorer..."
Start-Process explorer

Write-Output "`n✅ Done. Task Manager should now appear correctly in the bottom section of the Win+X menu."

Gracefully stops Explorer
✅ Uses -ErrorAction SilentlyContinue to prevent errors if Explorer isn't running.

Clears ShellExperienceHost cache
✅ Only does this if the relevant cache path exists.

Clears Windows user cache
✅ Checks for path existence before attempting deletion.

Backs up entire WinX menu folder
✅ Creates a timestamped backup folder on your Desktop.

Rebuilds Group1, Group2, Group3 structure
✅ Ensures those folders exist, creating them if missing.

Automatically finds Task Manager shortcut in any group
✅ Searches all groups (1–3) and moves it to the correct group if needed.

Renames shortcut to ensure proper position
✅ Renames to 01 - Task Manager.lnk so it appears at the top of Group3.

Creates shortcut if missing
✅ Uses the COM-based WScript.Shell method to create it safely.

Provides clear progress messages
✅ Gives meaningful status updates in the PowerShell console.

Restarts Explorer
✅ Cleanly relaunches Explorer to apply all changes immediately.
 

My Computers

System One System Two

  • OS
    Windows 11 Pro 23H2 Build 22631.5335
    Computer type
    PC/Desktop
    Manufacturer/Model
    Sin-built
    CPU
    Intel(R) Core(TM) i7-4770K CPU @ 3.50GHz (4th Gen?)
    Motherboard
    ASUS ROG Maximus VI Formula
    Memory
    32.0 GB of I forget and the box is in storage.
    Graphics Card(s)
    Gigabyte nVidia GeForce GTX 1660 Super OC 6GB
    Sound Card
    Onboard
    Monitor(s) Displays
    5 x LG 25MS500-B - 1 x 24MK430H-B - 1 x Wacom Pro 22" Tablet
    Screen Resolution
    All over the place
    Hard Drives
    Too many to list.
    OS on Samsung 1TB 870 QVO SATA
    PSU
    Silverstone 1500
    Case
    NZXT Phantom 820 Full-Tower Case
    Cooling
    Noctua NH-D15 Elite Class Dual Tower CPU Cooler / 6 x EziDIY 120mm / 2 x Corsair 140mm somethings / 1 x 140mm Thermaltake something / 2 x 200mm Corsair.
    Keyboard
    Corsair K95 / Logitech diNovo Edge Wireless
    Mouse
    Logitech: G402 / G502 / Mx Masters / MX Air Cordless
    Internet Speed
    1000/400Mbps
    Browser
    All sorts
    Antivirus
    Kaspersky Premium
    Other Info
    I’m on a horse.
  • Operating System
    Windows 11 Pro 23H2 Build: 22631.4249
    Computer type
    Laptop
    Manufacturer/Model
    LENOVO Yoga 7i EVO OLED 14" Touchscreen i5 12 Core 16GB/512GB
    CPU
    Intel Core 12th Gen i5-1240P Processor (1.7 - 4.4GHz)
    Memory
    16GB LPDDR5 RAM
    Graphics card(s)
    Intel Iris Xe Graphics Processor
    Sound Card
    Optimized with Dolby Atmos®
    Screen Resolution
    QHD 2880 x 1800 OLED
    Hard Drives
    M.2 512GB
    Antivirus
    Defender / Malwarebytes
    Other Info
    …still on a horse.
  • Like
Reactions: HDL
Me thinks your problem could be that Task Manager should be in the Group 3 Folder.
I am not sure though if it would stop it from working just because it’s in Group 2 Folder
As far as I know, it just moves it to a different section of WinX.

This will do all of the above and move Task Manager to Group 3 Folder

Powershell:
# Stop Explorer
Write-Output "Stopping Explorer..."
Stop-Process -Name explorer -Force -ErrorAction SilentlyContinue

# Clear ShellExperienceHost cache
$shellHostTemp = "$env:LocalAppData\Packages\Microsoft.Windows.ShellExperienceHost_cw5n1h2txyewy\TempState"
if (Test-Path $shellHostTemp) {
    Write-Output "Clearing ShellExperienceHost cache..."
    Remove-Item "$shellHostTemp\*" -Recurse -Force -ErrorAction SilentlyContinue
}

# Clear Windows caches
$windowsCache = "$env:LocalAppData\Microsoft\Windows\Caches"
if (Test-Path $windowsCache) {
    Write-Output "Clearing Windows local caches..."
    Remove-Item "$windowsCache\*" -Recurse -Force -ErrorAction SilentlyContinue
}

# Backup and prep WinX folders
$winxPath = "$env:LocalAppData\Microsoft\Windows\WinX"
$backupPath = "$env:USERPROFILE\Desktop\WinX_Backup_$(Get-Date -Format 'yyyyMMdd_HHmmss')"

if (Test-Path $winxPath) {
    Write-Output "Backing up existing WinX menu to: $backupPath"
    Copy-Item -Path $winxPath -Destination $backupPath -Recurse -Force
} else {
    Write-Output "Creating new WinX directory..."
    New-Item -Path $winxPath -ItemType Directory | Out-Null
}

# Ensure Groups 1-3 exist
1..3 | ForEach-Object {
    $groupFolder = "$winxPath\Group$_"
    if (-not (Test-Path $groupFolder)) {
        Write-Output "Creating $groupFolder"
        New-Item -Path $groupFolder -ItemType Directory | Out-Null
    }
}

# Detect Task Manager shortcut
$foundShortcut = $false
$taskmgrPath = "$env:windir\System32\taskmgr.exe"
$correctGroup = "$winxPath\Group3"
$targetShortcut = "$correctGroup\01 - Task Manager.lnk"

foreach ($group in 1..3) {
    $groupPath = "$winxPath\Group$group"
    $shortcuts = Get-ChildItem -Path $groupPath -Filter '*.lnk' -ErrorAction SilentlyContinue
    foreach ($shortcut in $shortcuts) {
        $shell = New-Object -ComObject WScript.Shell
        $sc = $shell.CreateShortcut($shortcut.FullName)
        if ($sc.TargetPath -ieq $taskmgrPath) {
            if ($group -ne 3) {
                Write-Output "Moving Task Manager shortcut from Group$group to Group3..."
                Move-Item $shortcut.FullName $targetShortcut -Force
            } elseif ($shortcut.FullName -ne $targetShortcut) {
                Write-Output "Renaming Task Manager shortcut for proper position..."
                Move-Item $shortcut.FullName $targetShortcut -Force
            } else {
                Write-Output "Task Manager shortcut already in correct location."
            }
            $foundShortcut = $true
            break
        }
    }
    if ($foundShortcut) { break }
}

# Create it if not found
if (-not $foundShortcut) {
    Write-Output "Creating Task Manager shortcut in Group3..."
    $shell = New-Object -ComObject WScript.Shell
    $sc = $shell.CreateShortcut($targetShortcut)
    $sc.TargetPath = $taskmgrPath
    $sc.IconLocation = "$taskmgrPath,0"
    $sc.Save()
}

# Restart Explorer
Write-Output "Restarting Explorer..."
Start-Process explorer

Write-Output "`n✅ Done. Task Manager should now appear correctly in the bottom section of the Win+X menu."

Gracefully stops Explorer
✅ Uses -ErrorAction SilentlyContinue to prevent errors if Explorer isn't running.

Clears ShellExperienceHost cache
✅ Only does this if the relevant cache path exists.

Clears Windows user cache
✅ Checks for path existence before attempting deletion.

Backs up entire WinX menu folder
✅ Creates a timestamped backup folder on your Desktop.

Rebuilds Group1, Group2, Group3 structure
✅ Ensures those folders exist, creating them if missing.

Automatically finds Task Manager shortcut in any group
✅ Searches all groups (1–3) and moves it to the correct group if needed.

Renames shortcut to ensure proper position
✅ Renames to 01 - Task Manager.lnk so it appears at the top of Group3.

Creates shortcut if missing
✅ Uses the COM-based WScript.Shell method to create it safely.

Provides clear progress messages
✅ Gives meaningful status updates in the PowerShell console.

Restarts Explorer
✅ Cleanly relaunches Explorer to apply all changes immediately.
I am very anxious to run this. Can I please ask a question since I do not have any idea how Task Manager got moved. There are 4 other Win X items that do not work. they are, please see the 2 attachments. This is when I open the folders that were downloaded to my computer when I tried this solution Add or Remove Default Shortcuts on Win+X Quick Link Menu in Windows 11, not the files that may be on my computer now. These are what I was supposed to drag to another instance of File Explorer after pasting the path %LocalAppdata%\Microsoft\Windows\WinX in its URL line.
Does not open.webp





Other 4.webp


My question is will this code rebuild these menu items in the second attachment as well? I ask because I read this, and it made me wonder about the other 4 that are not working now.

Automatically finds Task Manager shortcut in any group
✅
Searches all groups (1–3) and moves it to the correct group if needed.

I did read this too but just had to ask about the other 4 items.
Rebuilds Group1, Group2, Group3 structure
✅
Ensures those folders exist, creating them if missing.

I feel like this was a lot of work for you and I do appreciate it and want to run it soon. Thank you very much.

I better add another question, do I include the words Power Shell: at the top of this code?
 
Last edited:

My Computer

System One

  • OS
    Windows 11 Pro ver. 24H2
    Computer type
    PC/Desktop
    Manufacturer/Model
    ACPI x64-based PC
    CPU
    12th Grn. Intel i7-12700K 3600 Mhz 12 Cores
    Motherboard
    ASUSTeK - Prime Z690-P WIFI
    Memory
    64 GB DDR5
    Graphics Card(s)
    NVIDIA GeForce GTX 1650
    Sound Card
    NVIDIA High Definition Audio
    Monitor(s) Displays
    ViewSonic
    Screen Resolution
    1920 x 1080
    Hard Drives
    HDS72252 5VLAT80 2 Tb ssd Hard drive
    PSU
    850 Watt Power Supply
    Case
    19" high desktop
    Cooling
    A lot of fans
    Keyboard
    Logitech
    Mouse
    Logitech
    Internet Speed
    500 Mg
    Browser
    FF
    Antivirus
    Windows Defendor & Malwarebytes
    Other Info
    2 Asus Blu-Ray burners - BW - 16D1HT
I decide to try running it and see what happens. I got this. Should I continue?
Power Shell.webp
 

My Computer

System One

  • OS
    Windows 11 Pro ver. 24H2
    Computer type
    PC/Desktop
    Manufacturer/Model
    ACPI x64-based PC
    CPU
    12th Grn. Intel i7-12700K 3600 Mhz 12 Cores
    Motherboard
    ASUSTeK - Prime Z690-P WIFI
    Memory
    64 GB DDR5
    Graphics Card(s)
    NVIDIA GeForce GTX 1650
    Sound Card
    NVIDIA High Definition Audio
    Monitor(s) Displays
    ViewSonic
    Screen Resolution
    1920 x 1080
    Hard Drives
    HDS72252 5VLAT80 2 Tb ssd Hard drive
    PSU
    850 Watt Power Supply
    Case
    19" high desktop
    Cooling
    A lot of fans
    Keyboard
    Logitech
    Mouse
    Logitech
    Internet Speed
    500 Mg
    Browser
    FF
    Antivirus
    Windows Defendor & Malwarebytes
    Other Info
    2 Asus Blu-Ray burners - BW - 16D1HT
You don’t paste “powershell” just the code in the box.

Can I pick this up in a few hours? See if I can re do the script to fix all shortcuts. It’s 2.30am in Australia 🙏
 

My Computers

System One System Two

  • OS
    Windows 11 Pro 23H2 Build 22631.5335
    Computer type
    PC/Desktop
    Manufacturer/Model
    Sin-built
    CPU
    Intel(R) Core(TM) i7-4770K CPU @ 3.50GHz (4th Gen?)
    Motherboard
    ASUS ROG Maximus VI Formula
    Memory
    32.0 GB of I forget and the box is in storage.
    Graphics Card(s)
    Gigabyte nVidia GeForce GTX 1660 Super OC 6GB
    Sound Card
    Onboard
    Monitor(s) Displays
    5 x LG 25MS500-B - 1 x 24MK430H-B - 1 x Wacom Pro 22" Tablet
    Screen Resolution
    All over the place
    Hard Drives
    Too many to list.
    OS on Samsung 1TB 870 QVO SATA
    PSU
    Silverstone 1500
    Case
    NZXT Phantom 820 Full-Tower Case
    Cooling
    Noctua NH-D15 Elite Class Dual Tower CPU Cooler / 6 x EziDIY 120mm / 2 x Corsair 140mm somethings / 1 x 140mm Thermaltake something / 2 x 200mm Corsair.
    Keyboard
    Corsair K95 / Logitech diNovo Edge Wireless
    Mouse
    Logitech: G402 / G502 / Mx Masters / MX Air Cordless
    Internet Speed
    1000/400Mbps
    Browser
    All sorts
    Antivirus
    Kaspersky Premium
    Other Info
    I’m on a horse.
  • Operating System
    Windows 11 Pro 23H2 Build: 22631.4249
    Computer type
    Laptop
    Manufacturer/Model
    LENOVO Yoga 7i EVO OLED 14" Touchscreen i5 12 Core 16GB/512GB
    CPU
    Intel Core 12th Gen i5-1240P Processor (1.7 - 4.4GHz)
    Memory
    16GB LPDDR5 RAM
    Graphics card(s)
    Intel Iris Xe Graphics Processor
    Sound Card
    Optimized with Dolby Atmos®
    Screen Resolution
    QHD 2880 x 1800 OLED
    Hard Drives
    M.2 512GB
    Antivirus
    Defender / Malwarebytes
    Other Info
    …still on a horse.
  • Like
Reactions: HDL
You don’t paste “powershell” just the code in the box.

Can I pick this up in a few hours? See if I can re do the script to fix all shortcuts. It’s 2.30am in Australia 🙏
Sure thank you.
 

My Computer

System One

  • OS
    Windows 11 Pro ver. 24H2
    Computer type
    PC/Desktop
    Manufacturer/Model
    ACPI x64-based PC
    CPU
    12th Grn. Intel i7-12700K 3600 Mhz 12 Cores
    Motherboard
    ASUSTeK - Prime Z690-P WIFI
    Memory
    64 GB DDR5
    Graphics Card(s)
    NVIDIA GeForce GTX 1650
    Sound Card
    NVIDIA High Definition Audio
    Monitor(s) Displays
    ViewSonic
    Screen Resolution
    1920 x 1080
    Hard Drives
    HDS72252 5VLAT80 2 Tb ssd Hard drive
    PSU
    850 Watt Power Supply
    Case
    19" high desktop
    Cooling
    A lot of fans
    Keyboard
    Logitech
    Mouse
    Logitech
    Internet Speed
    500 Mg
    Browser
    FF
    Antivirus
    Windows Defendor & Malwarebytes
    Other Info
    2 Asus Blu-Ray burners - BW - 16D1HT
Do you have any custom tools, like Control Panel, Notepad etc etc that you added manually? Tell me now before I finish. Those folders are a mess. They’ll be backed up and replaced.
 

My Computers

System One System Two

  • OS
    Windows 11 Pro 23H2 Build 22631.5335
    Computer type
    PC/Desktop
    Manufacturer/Model
    Sin-built
    CPU
    Intel(R) Core(TM) i7-4770K CPU @ 3.50GHz (4th Gen?)
    Motherboard
    ASUS ROG Maximus VI Formula
    Memory
    32.0 GB of I forget and the box is in storage.
    Graphics Card(s)
    Gigabyte nVidia GeForce GTX 1660 Super OC 6GB
    Sound Card
    Onboard
    Monitor(s) Displays
    5 x LG 25MS500-B - 1 x 24MK430H-B - 1 x Wacom Pro 22" Tablet
    Screen Resolution
    All over the place
    Hard Drives
    Too many to list.
    OS on Samsung 1TB 870 QVO SATA
    PSU
    Silverstone 1500
    Case
    NZXT Phantom 820 Full-Tower Case
    Cooling
    Noctua NH-D15 Elite Class Dual Tower CPU Cooler / 6 x EziDIY 120mm / 2 x Corsair 140mm somethings / 1 x 140mm Thermaltake something / 2 x 200mm Corsair.
    Keyboard
    Corsair K95 / Logitech diNovo Edge Wireless
    Mouse
    Logitech: G402 / G502 / Mx Masters / MX Air Cordless
    Internet Speed
    1000/400Mbps
    Browser
    All sorts
    Antivirus
    Kaspersky Premium
    Other Info
    I’m on a horse.
  • Operating System
    Windows 11 Pro 23H2 Build: 22631.4249
    Computer type
    Laptop
    Manufacturer/Model
    LENOVO Yoga 7i EVO OLED 14" Touchscreen i5 12 Core 16GB/512GB
    CPU
    Intel Core 12th Gen i5-1240P Processor (1.7 - 4.4GHz)
    Memory
    16GB LPDDR5 RAM
    Graphics card(s)
    Intel Iris Xe Graphics Processor
    Sound Card
    Optimized with Dolby Atmos®
    Screen Resolution
    QHD 2880 x 1800 OLED
    Hard Drives
    M.2 512GB
    Antivirus
    Defender / Malwarebytes
    Other Info
    …still on a horse.
This is all I have on the Win X menu:


menu1.webp

I have no custom tools, unless you consider CCleaner, that I know of. I do use Stardock's Start11 so that my screen looks like it did in Window 10. I have utilities like Revo Uninstaller Pro, Unlocker, Bulk File Changer. Control Panel and Notepad, I just use what is part of Windows. I have a Desktop shortcut to both of those. I also have a Desktop shortcut for Notepad++. I can't think of anything else.
 

My Computer

System One

  • OS
    Windows 11 Pro ver. 24H2
    Computer type
    PC/Desktop
    Manufacturer/Model
    ACPI x64-based PC
    CPU
    12th Grn. Intel i7-12700K 3600 Mhz 12 Cores
    Motherboard
    ASUSTeK - Prime Z690-P WIFI
    Memory
    64 GB DDR5
    Graphics Card(s)
    NVIDIA GeForce GTX 1650
    Sound Card
    NVIDIA High Definition Audio
    Monitor(s) Displays
    ViewSonic
    Screen Resolution
    1920 x 1080
    Hard Drives
    HDS72252 5VLAT80 2 Tb ssd Hard drive
    PSU
    850 Watt Power Supply
    Case
    19" high desktop
    Cooling
    A lot of fans
    Keyboard
    Logitech
    Mouse
    Logitech
    Internet Speed
    500 Mg
    Browser
    FF
    Antivirus
    Windows Defendor & Malwarebytes
    Other Info
    2 Asus Blu-Ray burners - BW - 16D1HT
Just to be clear: I messed up my own WinX menu folders, then ran this script myself so as to test it.

  • Gracefully stops and restarts Explorer
  • Clears related shell and Windows caches
  • Backs up your current Win+X menu
  • Deletes all existing shortcuts from Group1–Group2–Group3
  • Rebuilds the full menu with properly named and functional shortcuts
  • Ensures proper group structure and icon linking

  • Each group gets properly ordered shortcuts using the correct target paths and matching icon locations. If you want these in a particular order in the WinX menu, you'll need to rename them in the Group folders. Their order is determined by the leading numbers example: 01 - Windows Terminal

  • Group 1 includes:
    • Mobility Center
    • Power Options
    • Event Viewer
    • System
  • Group 2 includes:
    • Device Manager
    • Network Connections
    • Disk Management
    • Computer Management
  • Group 3 includes:
    • Windows Terminal
    • Task Manager
    • Settings
    • File Explorer
    • Run
    • Desktop

But there is a problem and I don't know how to fix it. My Antivirus is removing one of the recreated shortcuts—Run I don't know why?
Also. it's supposed to Restore the “Shut down or sign out” part of the menu by preserving proper group structure and shortcut sequencing, as it was being removed from the WinX menu after running the original script. I don't think that part worked, I have to restore my system and try it again. I don’t use a VM

Type: Trojan
Name: HEUR:Trojan.WinLNK.Rundel.b
Precision: Partially
Threat level: High
Object type: File
Object name: 05 - Run.lnk
Object path: C:\Users\essen\AppData\Local\Microsoft\Windows\WinX\Group3
MD5 of an object: 3DAE711058FAACDB9AE1EE202FFB7751


I think I wasted a day. I don't know where to go from here?

Code:
# ------------------------------
# WIN+X Menu Full Repair Script (with "Shut down or sign out" Fix)
# ------------------------------

# Stop Explorer
Write-Output "Stopping Explorer..."
Stop-Process -Name explorer -Force -ErrorAction SilentlyContinue

# Clear caches
$shellHostTemp = "$env:LocalAppData\Packages\Microsoft.Windows.ShellExperienceHost_cw5n1h2txyewy\TempState"
if (Test-Path $shellHostTemp) {
    Remove-Item "$shellHostTemp\*" -Recurse -Force -ErrorAction SilentlyContinue
}
$windowsCache = "$env:LocalAppData\Microsoft\Windows\Caches"
if (Test-Path $windowsCache) {
    Remove-Item "$windowsCache\*" -Recurse -Force -ErrorAction SilentlyContinue
}

# Backup and clear existing WinX folder
$winxPath = "$env:LocalAppData\Microsoft\Windows\WinX"
$backupPath = "$env:USERPROFILE\Desktop\WinX_Backup_$(Get-Date -Format 'yyyyMMdd_HHmmss')"
if (Test-Path $winxPath) {
    Write-Output "Backing up existing WinX folder to $backupPath"
    Copy-Item $winxPath $backupPath -Recurse -Force
    Remove-Item $winxPath -Recurse -Force
}
New-Item -Path $winxPath -ItemType Directory | Out-Null

# Recreate Group folders
1..3 | ForEach-Object {
    New-Item -Path "$winxPath\Group$_" -ItemType Directory | Out-Null
}

# Shortcut creation helper
function New-Shortcut {
    param (
        [string]$Path,
        [string]$Target,
        [string]$Icon = $Target
    )
    $shell = New-Object -ComObject WScript.Shell
    $sc = $shell.CreateShortcut($Path)
    $sc.TargetPath = $Target
    $sc.IconLocation = $Icon
    $sc.Save()
}

# --------------------------
# Rebuild Default Shortcuts
# --------------------------

# --- Group 1 (Top Section)
New-Shortcut "$winxPath\Group1\01 - Mobility Center.lnk" "C:\Windows\System32\Mblctr.exe"
New-Shortcut "$winxPath\Group1\02 - Power Options.lnk" "control.exe" "powercfg.cpl"
New-Shortcut "$winxPath\Group1\03 - Event Viewer.lnk" "eventvwr.msc"
New-Shortcut "$winxPath\Group1\04 - System.lnk" "control.exe" "sysdm.cpl"
New-Shortcut "$winxPath\Group1\05 - Device Manager.lnk" "devmgmt.msc"

# --- Group 2 (Middle Section)
New-Shortcut "$winxPath\Group2\01 - Network Connections.lnk" "ncpa.cpl"
New-Shortcut "$winxPath\Group2\02 - Disk Management.lnk" "diskmgmt.msc"
New-Shortcut "$winxPath\Group2\03 - Computer Management.lnk" "compmgmt.msc"
New-Shortcut "$winxPath\Group2\04 - Terminal.lnk" "$env:LocalAppData\Microsoft\WindowsApps\wt.exe"
New-Shortcut "$winxPath\Group2\05 - Terminal (Admin).lnk" "$env:LocalAppData\Microsoft\WindowsApps\wt.exe"

# --- Group 3 (Bottom Section)
New-Shortcut "$winxPath\Group3\01 - Task Manager.lnk" "$env:windir\System32\taskmgr.exe"
New-Shortcut "$winxPath\Group3\02 - Settings.lnk" "ms-settings:"
New-Shortcut "$winxPath\Group3\03 - File Explorer.lnk" "explorer.exe"
New-Shortcut "$winxPath\Group3\04 - Search.lnk" "C:\Windows\explorer.exe" "Search"
New-Shortcut "$winxPath\Group3\05 - Run.lnk" "C:\Windows\System32\RunDll32.exe" "shell32.dll,Control_RunDLL"
New-Shortcut "$winxPath\Group3\06 - Installed apps.lnk" "ms-settings:appsfeatures"
New-Shortcut "$winxPath\Group3\07 - Desktop.lnk" "$env:windir\explorer.exe" "$env:USERPROFILE\Desktop"

# --------------------------
# Finalize
# --------------------------

Start-Process explorer
Write-Output "`n✅ Win+X menu has been fully reset. 'Shut down or sign out' menu should now be restored."
Read-Host "Press Enter to exit"
 
Last edited:

My Computers

System One System Two

  • OS
    Windows 11 Pro 23H2 Build 22631.5335
    Computer type
    PC/Desktop
    Manufacturer/Model
    Sin-built
    CPU
    Intel(R) Core(TM) i7-4770K CPU @ 3.50GHz (4th Gen?)
    Motherboard
    ASUS ROG Maximus VI Formula
    Memory
    32.0 GB of I forget and the box is in storage.
    Graphics Card(s)
    Gigabyte nVidia GeForce GTX 1660 Super OC 6GB
    Sound Card
    Onboard
    Monitor(s) Displays
    5 x LG 25MS500-B - 1 x 24MK430H-B - 1 x Wacom Pro 22" Tablet
    Screen Resolution
    All over the place
    Hard Drives
    Too many to list.
    OS on Samsung 1TB 870 QVO SATA
    PSU
    Silverstone 1500
    Case
    NZXT Phantom 820 Full-Tower Case
    Cooling
    Noctua NH-D15 Elite Class Dual Tower CPU Cooler / 6 x EziDIY 120mm / 2 x Corsair 140mm somethings / 1 x 140mm Thermaltake something / 2 x 200mm Corsair.
    Keyboard
    Corsair K95 / Logitech diNovo Edge Wireless
    Mouse
    Logitech: G402 / G502 / Mx Masters / MX Air Cordless
    Internet Speed
    1000/400Mbps
    Browser
    All sorts
    Antivirus
    Kaspersky Premium
    Other Info
    I’m on a horse.
  • Operating System
    Windows 11 Pro 23H2 Build: 22631.4249
    Computer type
    Laptop
    Manufacturer/Model
    LENOVO Yoga 7i EVO OLED 14" Touchscreen i5 12 Core 16GB/512GB
    CPU
    Intel Core 12th Gen i5-1240P Processor (1.7 - 4.4GHz)
    Memory
    16GB LPDDR5 RAM
    Graphics card(s)
    Intel Iris Xe Graphics Processor
    Sound Card
    Optimized with Dolby Atmos®
    Screen Resolution
    QHD 2880 x 1800 OLED
    Hard Drives
    M.2 512GB
    Antivirus
    Defender / Malwarebytes
    Other Info
    …still on a horse.
it's supposed to Restore the “Shut down or sign out” part of the WinX menu as well, as it was being removed from the WinX menu after running the original script. I don't think that part worked, I have to restore my system and try it again. I don’t use a VM
 

My Computers

System One System Two

  • OS
    Windows 11 Pro 23H2 Build 22631.5335
    Computer type
    PC/Desktop
    Manufacturer/Model
    Sin-built
    CPU
    Intel(R) Core(TM) i7-4770K CPU @ 3.50GHz (4th Gen?)
    Motherboard
    ASUS ROG Maximus VI Formula
    Memory
    32.0 GB of I forget and the box is in storage.
    Graphics Card(s)
    Gigabyte nVidia GeForce GTX 1660 Super OC 6GB
    Sound Card
    Onboard
    Monitor(s) Displays
    5 x LG 25MS500-B - 1 x 24MK430H-B - 1 x Wacom Pro 22" Tablet
    Screen Resolution
    All over the place
    Hard Drives
    Too many to list.
    OS on Samsung 1TB 870 QVO SATA
    PSU
    Silverstone 1500
    Case
    NZXT Phantom 820 Full-Tower Case
    Cooling
    Noctua NH-D15 Elite Class Dual Tower CPU Cooler / 6 x EziDIY 120mm / 2 x Corsair 140mm somethings / 1 x 140mm Thermaltake something / 2 x 200mm Corsair.
    Keyboard
    Corsair K95 / Logitech diNovo Edge Wireless
    Mouse
    Logitech: G402 / G502 / Mx Masters / MX Air Cordless
    Internet Speed
    1000/400Mbps
    Browser
    All sorts
    Antivirus
    Kaspersky Premium
    Other Info
    I’m on a horse.
  • Operating System
    Windows 11 Pro 23H2 Build: 22631.4249
    Computer type
    Laptop
    Manufacturer/Model
    LENOVO Yoga 7i EVO OLED 14" Touchscreen i5 12 Core 16GB/512GB
    CPU
    Intel Core 12th Gen i5-1240P Processor (1.7 - 4.4GHz)
    Memory
    16GB LPDDR5 RAM
    Graphics card(s)
    Intel Iris Xe Graphics Processor
    Sound Card
    Optimized with Dolby Atmos®
    Screen Resolution
    QHD 2880 x 1800 OLED
    Hard Drives
    M.2 512GB
    Antivirus
    Defender / Malwarebytes
    Other Info
    …still on a horse.
Life would be a lot easier for you if Brinks tutorial worked for you.
 

My Computers

System One System Two

  • OS
    Windows 11 Pro 23H2 Build 22631.5335
    Computer type
    PC/Desktop
    Manufacturer/Model
    Sin-built
    CPU
    Intel(R) Core(TM) i7-4770K CPU @ 3.50GHz (4th Gen?)
    Motherboard
    ASUS ROG Maximus VI Formula
    Memory
    32.0 GB of I forget and the box is in storage.
    Graphics Card(s)
    Gigabyte nVidia GeForce GTX 1660 Super OC 6GB
    Sound Card
    Onboard
    Monitor(s) Displays
    5 x LG 25MS500-B - 1 x 24MK430H-B - 1 x Wacom Pro 22" Tablet
    Screen Resolution
    All over the place
    Hard Drives
    Too many to list.
    OS on Samsung 1TB 870 QVO SATA
    PSU
    Silverstone 1500
    Case
    NZXT Phantom 820 Full-Tower Case
    Cooling
    Noctua NH-D15 Elite Class Dual Tower CPU Cooler / 6 x EziDIY 120mm / 2 x Corsair 140mm somethings / 1 x 140mm Thermaltake something / 2 x 200mm Corsair.
    Keyboard
    Corsair K95 / Logitech diNovo Edge Wireless
    Mouse
    Logitech: G402 / G502 / Mx Masters / MX Air Cordless
    Internet Speed
    1000/400Mbps
    Browser
    All sorts
    Antivirus
    Kaspersky Premium
    Other Info
    I’m on a horse.
  • Operating System
    Windows 11 Pro 23H2 Build: 22631.4249
    Computer type
    Laptop
    Manufacturer/Model
    LENOVO Yoga 7i EVO OLED 14" Touchscreen i5 12 Core 16GB/512GB
    CPU
    Intel Core 12th Gen i5-1240P Processor (1.7 - 4.4GHz)
    Memory
    16GB LPDDR5 RAM
    Graphics card(s)
    Intel Iris Xe Graphics Processor
    Sound Card
    Optimized with Dolby Atmos®
    Screen Resolution
    QHD 2880 x 1800 OLED
    Hard Drives
    M.2 512GB
    Antivirus
    Defender / Malwarebytes
    Other Info
    …still on a horse.
you can edit the winx menu still, but its more convoluted than it used to be. you can, however, use winaero's tool to simply restore defaults. try that and see if it restores a working TM link.

 

My Computer

System One

  • OS
    Windows 11 Pro

My Computers

System One System Two

  • OS
    Windows 11 Pro 23H2 Build 22631.5335
    Computer type
    PC/Desktop
    Manufacturer/Model
    Sin-built
    CPU
    Intel(R) Core(TM) i7-4770K CPU @ 3.50GHz (4th Gen?)
    Motherboard
    ASUS ROG Maximus VI Formula
    Memory
    32.0 GB of I forget and the box is in storage.
    Graphics Card(s)
    Gigabyte nVidia GeForce GTX 1660 Super OC 6GB
    Sound Card
    Onboard
    Monitor(s) Displays
    5 x LG 25MS500-B - 1 x 24MK430H-B - 1 x Wacom Pro 22" Tablet
    Screen Resolution
    All over the place
    Hard Drives
    Too many to list.
    OS on Samsung 1TB 870 QVO SATA
    PSU
    Silverstone 1500
    Case
    NZXT Phantom 820 Full-Tower Case
    Cooling
    Noctua NH-D15 Elite Class Dual Tower CPU Cooler / 6 x EziDIY 120mm / 2 x Corsair 140mm somethings / 1 x 140mm Thermaltake something / 2 x 200mm Corsair.
    Keyboard
    Corsair K95 / Logitech diNovo Edge Wireless
    Mouse
    Logitech: G402 / G502 / Mx Masters / MX Air Cordless
    Internet Speed
    1000/400Mbps
    Browser
    All sorts
    Antivirus
    Kaspersky Premium
    Other Info
    I’m on a horse.
  • Operating System
    Windows 11 Pro 23H2 Build: 22631.4249
    Computer type
    Laptop
    Manufacturer/Model
    LENOVO Yoga 7i EVO OLED 14" Touchscreen i5 12 Core 16GB/512GB
    CPU
    Intel Core 12th Gen i5-1240P Processor (1.7 - 4.4GHz)
    Memory
    16GB LPDDR5 RAM
    Graphics card(s)
    Intel Iris Xe Graphics Processor
    Sound Card
    Optimized with Dolby Atmos®
    Screen Resolution
    QHD 2880 x 1800 OLED
    Hard Drives
    M.2 512GB
    Antivirus
    Defender / Malwarebytes
    Other Info
    …still on a horse.
OMG you’re kidding :confused:
nope. works flawlessly to restore defaults. have used it on multiple pcs during testing when i was figuring out how to add new items to the menu. no issues with it for that task
 

My Computer

System One

  • OS
    Windows 11 Pro
Back
Top Bottom