Create Shortcut to (C:) Properties General tab


I'm not sure what you mean by "After saving it within PowerShell ISE it just flashes across the screen without running the script." Saving it doesn't do anything but save it, so I'm assuming you mean something else? Are you running it by right clicking and choosing to run it with PowerShell?
 

My Computer My Computer

At a glance

Windows 11 Enterprise 25H2
OS
Windows 11 Enterprise 25H2
I'm not sure what you mean by "After saving it within PowerShell ISE it just flashes across the screen without running the script." Saving it doesn't do anything but save it, so I'm assuming you mean something else? Are you running it by right clicking and choosing to run it with PowerShell?
Yes, I should have said running it by clicking on the Disk Cleanup.ps1 file created by PowerShell ISE, or by right clicking and choosing PowerShell. The PowerShell prompt flashes as shown the the pic.

Flash2.webp
 

My Computer My Computer

At a glance

Windows 1113th Gen Intel(R) Core(TM) i7-1360P (2.20 GHz)32.0 GB128 MB Intel(R) Iris(R) Xe Graphics
OS
Windows 11
Computer type
Laptop
Manufacturer/Model
LG Gram 17Z90R
CPU
13th Gen Intel(R) Core(TM) i7-1360P (2.20 GHz)
Memory
32.0 GB
Graphics Card(s)
128 MB Intel(R) Iris(R) Xe Graphics
Monitor(s) Displays
17" Anti Glare 350nit
Screen Resolution
WQXGA 2560x1600
Hard Drives
Samsung - 990 PRO 1TB SSD PCle Gen 4x4 NVMe M.2 2280
Samsung - 990 EVO PLUS SSD 2TB, PCIe Gen 4x4 | 5x2 M.2 2280
Mouse
Logitech - M325 Wireless Optical
Internet Speed
Quantum Fiber 500+ Up / 400+ Down
Browser
Waterfox & Firefox
Antivirus
Eset Smart Security
Right on. Let's rearrange the script a little, because it's probably closing the Properties window when the script ends. I'll reverse the two operations, and add a pause at the end so we can see what's happening.

Powershell:
Set-StrictMode -Version 'latest'

$drive = New-Object -ComObject 'Shell.Application'
$folder = $drive.Namespace(17)  # My Computer
$item = $folder.ParseName('C:')
$item.InvokeVerb('Properties')

Start-Process -FilePath (Join-Path ([Environment]::SystemDirectory) 'cleanmgr.exe') -ArgumentList @('/d', 'C:') -Wait

pause
 

My Computer My Computer

At a glance

Windows 11 Enterprise 25H2
OS
Windows 11 Enterprise 25H2
Right on. Let's rearrange the script a little, because it's probably closing the Properties window when the script ends. I'll reverse the two operations, and add a pause at the end so we can see what's happening.

Powershell:
Set-StrictMode -Version 'latest'

$drive = New-Object -ComObject 'Shell.Application'
$folder = $drive.Namespace(17)  # My Computer
$item = $folder.ParseName('C:')
$item.InvokeVerb('Properties')

Start-Process -FilePath (Join-Path ([Environment]::SystemDirectory) 'cleanmgr.exe') -ArgumentList @('/d', 'C:') -Wait

pause
That worked perfectly!!!
Right on. Let's rearrange the script a little, because it's probably closing the Properties window when the script ends. I'll reverse the two operations, and add a pause at the end so we can see what's happening.

Powershell:
Set-StrictMode -Version 'latest'

$drive = New-Object -ComObject 'Shell.Application'
$folder = $drive.Namespace(17)  # My Computer
$item = $folder.ParseName('C:')
$item.InvokeVerb('Properties')

Start-Process -FilePath (Join-Path ([Environment]::SystemDirectory) 'cleanmgr.exe') -ArgumentList @('/d', 'C:') -Wait

pause
That worked Perfectly!!! The pic shows the results.

Flash3.webp
 

My Computer My Computer

At a glance

Windows 1113th Gen Intel(R) Core(TM) i7-1360P (2.20 GHz)32.0 GB128 MB Intel(R) Iris(R) Xe Graphics
OS
Windows 11
Computer type
Laptop
Manufacturer/Model
LG Gram 17Z90R
CPU
13th Gen Intel(R) Core(TM) i7-1360P (2.20 GHz)
Memory
32.0 GB
Graphics Card(s)
128 MB Intel(R) Iris(R) Xe Graphics
Monitor(s) Displays
17" Anti Glare 350nit
Screen Resolution
WQXGA 2560x1600
Hard Drives
Samsung - 990 PRO 1TB SSD PCle Gen 4x4 NVMe M.2 2280
Samsung - 990 EVO PLUS SSD 2TB, PCIe Gen 4x4 | 5x2 M.2 2280
Mouse
Logitech - M325 Wireless Optical
Internet Speed
Quantum Fiber 500+ Up / 400+ Down
Browser
Waterfox & Firefox
Antivirus
Eset Smart Security
You can take out the pause at the end. There's a -Wait on the line that runs disk cleanup, and that should hold the PowerShell window open until disk cleanup closes.
 

My Computer My Computer

At a glance

Windows 11 Enterprise 25H2
OS
Windows 11 Enterprise 25H2
You can take out the pause at the end. There's a -Wait on the line that runs disk cleanup, and that should hold the PowerShell window open until disk cleanup closes.
Something else I noticed, is after running the script (with or without the Pause) from the .ps1 file opens both boxes, but when closing the PowerShell prompt behind them the Properties box closes also.

When running it from the PS app this does not happen because the PS prompt never appears.:unsure:
 

My Computer My Computer

At a glance

Windows 1113th Gen Intel(R) Core(TM) i7-1360P (2.20 GHz)32.0 GB128 MB Intel(R) Iris(R) Xe Graphics
OS
Windows 11
Computer type
Laptop
Manufacturer/Model
LG Gram 17Z90R
CPU
13th Gen Intel(R) Core(TM) i7-1360P (2.20 GHz)
Memory
32.0 GB
Graphics Card(s)
128 MB Intel(R) Iris(R) Xe Graphics
Monitor(s) Displays
17" Anti Glare 350nit
Screen Resolution
WQXGA 2560x1600
Hard Drives
Samsung - 990 PRO 1TB SSD PCle Gen 4x4 NVMe M.2 2280
Samsung - 990 EVO PLUS SSD 2TB, PCIe Gen 4x4 | 5x2 M.2 2280
Mouse
Logitech - M325 Wireless Optical
Internet Speed
Quantum Fiber 500+ Up / 400+ Down
Browser
Waterfox & Firefox
Antivirus
Eset Smart Security
Right. The Shell.Application object it’s creating “belongs” to the PowerShell process that creates it. So when PowerShell closes, the COM object is destroyed. Just minimize the PowerShell window if you don’t want to see it.

This doesn’t happen with the ISE because the PowerShell host is still running. I assume the ISE is what you mean by PowerShell app.
 

My Computer My Computer

At a glance

Windows 11 Enterprise 25H2
OS
Windows 11 Enterprise 25H2
Right. The Shell.Application object it’s creating “belongs” to the PowerShell process that creates it. So when PowerShell closes, the COM object is destroyed. Just minimize the PowerShell window if you don’t want to see it.

This doesn’t happen with the ISE because the PowerShell host is still running. I assume the ISE is what you mean by PowerShell app.
Yes to you're question. And yes, I will minimize the PowerShell window, small price to pay. :-)

Thank you for sticking with me! This really streamlines the process of Disk Cleanup.

Regard, Bert
 

My Computer My Computer

At a glance

Windows 1113th Gen Intel(R) Core(TM) i7-1360P (2.20 GHz)32.0 GB128 MB Intel(R) Iris(R) Xe Graphics
OS
Windows 11
Computer type
Laptop
Manufacturer/Model
LG Gram 17Z90R
CPU
13th Gen Intel(R) Core(TM) i7-1360P (2.20 GHz)
Memory
32.0 GB
Graphics Card(s)
128 MB Intel(R) Iris(R) Xe Graphics
Monitor(s) Displays
17" Anti Glare 350nit
Screen Resolution
WQXGA 2560x1600
Hard Drives
Samsung - 990 PRO 1TB SSD PCle Gen 4x4 NVMe M.2 2280
Samsung - 990 EVO PLUS SSD 2TB, PCIe Gen 4x4 | 5x2 M.2 2280
Mouse
Logitech - M325 Wireless Optical
Internet Speed
Quantum Fiber 500+ Up / 400+ Down
Browser
Waterfox & Firefox
Antivirus
Eset Smart Security
Quite welcome... enjoy!
 

My Computer My Computer

At a glance

Windows 11 Enterprise 25H2
OS
Windows 11 Enterprise 25H2
I hate Windows windows.

RUNME.bat
Code:
<# : batch script
@echo off
start "" conhost --headless powershell -nop Invoke-Expression ([System.IO.File]::ReadAllText('%0'))
goto :eof
#>

$drive = New-Object -ComObject 'Shell.Application'
$folder = $drive.Namespace(17)  # My Computer
$item = $folder.ParseName('C:')
$item.InvokeVerb('Properties')

Start-Process -FilePath (Join-Path ([Environment]::SystemDirectory) 'cleanmgr.exe') -ArgumentList @('/d', 'C:') -Wait
 

My Computer My Computer

At a glance

Windows 7
OS
Windows 7
Post #30. As a "batch" file.
 

My Computer My Computer

At a glance

Windows 7
OS
Windows 7

My Computer My Computer

At a glance

Windows 11 Enterprise 25H2
OS
Windows 11 Enterprise 25H2
I hate Windows windows.

RUNME.bat
Code:
<# : batch script
@echo off
start "" conhost --headless powershell -nop Invoke-Expression ([System.IO.File]::ReadAllText('%0'))
goto :eof
#>

$drive = New-Object -ComObject 'Shell.Application'
$folder = $drive.Namespace(17)  # My Computer
$item = $folder.ParseName('C:')
$item.InvokeVerb('Properties')

Start-Process -FilePath (Join-Path ([Environment]::SystemDirectory) 'cleanmgr.exe') -ArgumentList @('/d', 'C:') -Wait
I was going to post a question regarding a .bat file and you read my mind! Thanks...
 

My Computers My Computers

  • At a glance

    Windows 11 Pro 25H2Intel 12th Gen Intel Core i5-12600KF, 3686 MHzCORSAIR Vengeance 32GB (2 x 16GB) 288-Pin PC ...GIGABYTE GeForce RTX 4060, 3x Fans, 8GB GDDR6 OC
    OS
    Windows 11 Pro 25H2
    Computer type
    PC/Desktop
    Manufacturer/Model
    Custom Build By Lance1
    CPU
    Intel 12th Gen Intel Core i5-12600KF, 3686 MHz
    Motherboard
    GIGABYTE Z790 AORUS ELITE AX LGA 1700 Intel Z790 ATX
    Memory
    CORSAIR Vengeance 32GB (2 x 16GB) 288-Pin PC RAM DDR5 6400 (PC5 51200) Dual-Channel
    Graphics Card(s)
    GIGABYTE GeForce RTX 4060, 3x Fans, 8GB GDDR6 OC
    Sound Card
    AMD High Definition
    Monitor(s) Displays
    Samsung 32" 60Hz 4ms Curved PLS LED
    Screen Resolution
    1920 X 1080
    Hard Drives
    WD Blue NVME M.2 1T Boot Drive
    WD Blue SSD 1T
    WD Blue NVME M.2 2T
    PSU
    EVGA SuperNOVA 850 GT, 80 Plus Gold 850W, Fully Modular,
    Case
    Fractal Design Pop XL Air RGB Black TG ATX High-Airflow Clear Tempered Glass Window Full Tower
    Cooling
    Noctua NH-D15 chromax black, Dual Tower CPU Cooler with Dual NF-A15 PWM 140mm Fans (Black)
    Keyboard
    Devistator 3
    Mouse
    Inphic PM6 Pro
    Internet Speed
    Telus Fiber Optic: Download 332.7 Mbps / Upload 331.5 Mbps
    Browser
    Vivaldi (64bit)
    Antivirus
    Windows Defender
  • At a glance

    Window 11 ProIntel(R) Core(TM) i3-2310M CPU @ 2.10GHz4 GB DDR3Intel(R) HD Graphics 3000
    Operating System
    Window 11 Pro
    Computer type
    Laptop
    Manufacturer/Model
    DELL Inspiron N7110
    CPU
    Intel(R) Core(TM) i3-2310M CPU @ 2.10GHz
    Motherboard
    Dell Inc. 0YH79Y
    Memory
    4 GB DDR3
    Graphics card(s)
    Intel(R) HD Graphics 3000
    Sound Card
    High Definition Audio
    Monitor(s) Displays
    17.3 Inch Display
    Screen Resolution
    1600 X 900
    Hard Drives
    Samsung SSD 860 EVO 500GB
    Internet Speed
    Fiber Optic: Download 332.7 Mbps / Upload 331.5 Mbps
    Browser
    Vivaldi 64 bit
    Antivirus
    Windows Defender
    Other Info
    YA! This the old backup. In case things go south. It'll give me access to everything I need.
I hate Windows windows.

RUNME.bat
Code:
<# : batch script
@echo off
start "" conhost --headless powershell -nop Invoke-Expression ([System.IO.File]::ReadAllText('%0'))
goto :eof
#>

$drive = New-Object -ComObject 'Shell.Application'
$folder = $drive.Namespace(17)  # My Computer
$item = $folder.ParseName('C:')
$item.InvokeVerb('Properties')

Start-Process -FilePath (Join-Path ([Environment]::SystemDirectory) 'cleanmgr.exe') -ArgumentList @('/d', 'C:') -Wait
Hello,

The only difference is the .bat file requires the PowerShell app to be open, rather than the PowerShell Prompt to be open in the .ps1 script. Nice having choices.
 

My Computer My Computer

At a glance

Windows 1113th Gen Intel(R) Core(TM) i7-1360P (2.20 GHz)32.0 GB128 MB Intel(R) Iris(R) Xe Graphics
OS
Windows 11
Computer type
Laptop
Manufacturer/Model
LG Gram 17Z90R
CPU
13th Gen Intel(R) Core(TM) i7-1360P (2.20 GHz)
Memory
32.0 GB
Graphics Card(s)
128 MB Intel(R) Iris(R) Xe Graphics
Monitor(s) Displays
17" Anti Glare 350nit
Screen Resolution
WQXGA 2560x1600
Hard Drives
Samsung - 990 PRO 1TB SSD PCle Gen 4x4 NVMe M.2 2280
Samsung - 990 EVO PLUS SSD 2TB, PCIe Gen 4x4 | 5x2 M.2 2280
Mouse
Logitech - M325 Wireless Optical
Internet Speed
Quantum Fiber 500+ Up / 400+ Down
Browser
Waterfox & Firefox
Antivirus
Eset Smart Security

My Computers My Computers

  • At a glance

    Windows 11 Pro
    OS
    Windows 11 Pro
    Computer type
    PC/Desktop
    Manufacturer/Model
    ASUS ROG Strix
  • At a glance

    Windows 11 Pro
    Operating System
    Windows 11 Pro
    Computer type
    Laptop
    Manufacturer/Model
    ASUS VivoBook
  • ASUS VivoBook 'Lite' ~ Windows 11 Home

My Computer My Computer

At a glance

Windows 1113th Gen Intel(R) Core(TM) i7-1360P (2.20 GHz)32.0 GB128 MB Intel(R) Iris(R) Xe Graphics
OS
Windows 11
Computer type
Laptop
Manufacturer/Model
LG Gram 17Z90R
CPU
13th Gen Intel(R) Core(TM) i7-1360P (2.20 GHz)
Memory
32.0 GB
Graphics Card(s)
128 MB Intel(R) Iris(R) Xe Graphics
Monitor(s) Displays
17" Anti Glare 350nit
Screen Resolution
WQXGA 2560x1600
Hard Drives
Samsung - 990 PRO 1TB SSD PCle Gen 4x4 NVMe M.2 2280
Samsung - 990 EVO PLUS SSD 2TB, PCIe Gen 4x4 | 5x2 M.2 2280
Mouse
Logitech - M325 Wireless Optical
Internet Speed
Quantum Fiber 500+ Up / 400+ Down
Browser
Waterfox & Firefox
Antivirus
Eset Smart Security
Nice, what app do you use to customize the Desktop right click menu?
None. It's just reg edits...
(under command, the path to your .bat will differ)

10282.webp
 
Last edited:

My Computers My Computers

  • At a glance

    Windows 11 Pro
    OS
    Windows 11 Pro
    Computer type
    PC/Desktop
    Manufacturer/Model
    ASUS ROG Strix
  • At a glance

    Windows 11 Pro
    Operating System
    Windows 11 Pro
    Computer type
    Laptop
    Manufacturer/Model
    ASUS VivoBook
  • ASUS VivoBook 'Lite' ~ Windows 11 Home
None. It's just reg edits...
(under command, the path to your .bat will differ)

View attachment 140719

Thank you Edwin.
Got that done. But It ended up creating a sub-menu "Show More Options" which is a copy of the right click menu. :unsure:

Reg1.webpMenu1.webpMenu2.webp
 

My Computer My Computer

At a glance

Windows 1113th Gen Intel(R) Core(TM) i7-1360P (2.20 GHz)32.0 GB128 MB Intel(R) Iris(R) Xe Graphics
OS
Windows 11
Computer type
Laptop
Manufacturer/Model
LG Gram 17Z90R
CPU
13th Gen Intel(R) Core(TM) i7-1360P (2.20 GHz)
Memory
32.0 GB
Graphics Card(s)
128 MB Intel(R) Iris(R) Xe Graphics
Monitor(s) Displays
17" Anti Glare 350nit
Screen Resolution
WQXGA 2560x1600
Hard Drives
Samsung - 990 PRO 1TB SSD PCle Gen 4x4 NVMe M.2 2280
Samsung - 990 EVO PLUS SSD 2TB, PCIe Gen 4x4 | 5x2 M.2 2280
Mouse
Logitech - M325 Wireless Optical
Internet Speed
Quantum Fiber 500+ Up / 400+ Down
Browser
Waterfox & Firefox
Antivirus
Eset Smart Security
Bit of fun with this setup. Try this, tested in Windows 11 23H2

  • Copy the following and save it as DriveCleanupTool.ps1

Powershell:
Add-Type -AssemblyName System.Windows.Forms

$form = New-Object Windows.Forms.Form
$form.Text = "Drive Cleanup Tool"
$form.Size = New-Object System.Drawing.Size(300,150)
$form.StartPosition = "CenterScreen"

$label = New-Object Windows.Forms.Label
$label.Text = "Choose a drive to clean:"
$label.AutoSize = $true
$label.Location = New-Object System.Drawing.Point(90,20)
$form.Controls.Add($label)

function Launch-Cleanup {
    param($letter)

    $drive = "${letter}:"

    try {
        $shell  = New-Object -ComObject 'Shell.Application'
        $folder = $shell.Namespace(17)
        $item   = $folder.ParseName($drive)
        $item.InvokeVerb('Properties')
        Start-Sleep -Milliseconds 800
    } catch {
        [System.Windows.Forms.MessageBox]::Show("Failed to open properties for $drive.`n$($_.Exception.Message)", "Error")
    }

    try {
        Start-Process -FilePath (Join-Path ([Environment]::SystemDirectory) 'cleanmgr.exe') `
            -ArgumentList @("/d", $letter.ToUpper()) -Wait
    } catch {
        [System.Windows.Forms.MessageBox]::Show("Disk Cleanup failed for $drive.`n$($_.Exception.Message)", "Error")
    }
}

$cButton = New-Object Windows.Forms.Button
$cButton.Text = "Clean C:"
$cButton.Size = New-Object System.Drawing.Size(80,30)
$cButton.Location = New-Object System.Drawing.Point(50,60)
$cButton.Add_Click({ Launch-Cleanup 'C'; $form.Close() })
$form.Controls.Add($cButton)

$dButton = New-Object Windows.Forms.Button
$dButton.Text = "Clean D:"
$dButton.Size = New-Object System.Drawing.Size(80,30)
$dButton.Location = New-Object System.Drawing.Point(160,60)
$dButton.Add_Click({ Launch-Cleanup 'D'; $form.Close() })
$form.Controls.Add($dButton)

[void]$form.ShowDialog()

  • Save the ps1 file to a stable folder path that wont change (or you'll have to change the path in the shortcut below)

  • To test, I saved it toC:\DriveTool\DriveCleanupTool.ps1

  • Following my drive path, create a new shortcut on your desktop with the location as follows

Code:
powershell -ExecutionPolicy Bypass -File "C:\DriveTool\DriveCleanupTool.ps1"

Win-1810.webp

  • Click next and name the shortcut to anything you like e.x. Drive Cleanup C or D ... whatever

  • Open the shortcut, Powershell should open and a GUI will ask you which drive you want to clean, C or D

Win-1811.webp

  • Choose your drive and the following windows should open (Depending on what drive you chose)

Win-1812.webp


  • You can only choose one drive (C or D).
  • To run a different drive you must close the Powershell window first then open the shortcut again.
  • When you close the Powershell window, everything but the Disk Cleanup GUI, closes.
  • If you close the Disk Cleanup GUI, Powershell and all GUI's close.
  • The Disk Cleanup GUI must be closed before you start over for a different drive.
 
Last edited:

My Computers My Computers

  • At a glance

    Windows 11 Pro 25H2 Build 26200.9168Intel(R) Core(TM) i7-4770K CPU @ 3.50GHz32.0 GB of I forget and the box is in storage.Gigabyte nVidia GeForce GTX 1660 Super OC 6GB
    OS
    Windows 11 Pro 25H2 Build 26200.9168
    Computer type
    PC/Desktop
    Manufacturer/Model
    Sin-built 2013
    CPU
    Intel(R) Core(TM) i7-4770K CPU @ 3.50GHz
    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
    ROG SupremeFX Formula 8-Channel High Definition Audio
    Monitor(s) Displays
    5 x LG 25MS500-B - 1 x 24MK430H-B - 1 x Wacom Pro 22" Touch Screen 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
    2000/500Mbps
    Browser
    All sorts
    Antivirus
    Kaspersky Premium
    Other Info
    ㅤㅤㅤㅤㅤㅤㅤㅤㅤㅤㅤㅤㅤㅤㅤㅤㅤㅤㅤㅤㅤㅤㅤㅤㅤㅤㅤㅤㅤㅤㅤㅤㅤㅤㅤㅤㅤㅤㅤㅤ⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀
    TP-Link BE9300 WiFi 7 Bluetooth 5.4 (Archer TBE550E)
    TP-Link TX201 V1 2.5GB Lan

    Grandstream HT812 - VoIP
    ASUS DSL-AX82U - Mesh
    ASUS RT-AC68U - Mesh
    ASUS RT-BE88U Router

    Brother MFC-L2880DW Printer

    I’m on a horse.
  • At a glance

    Windows 11 Pro 25H2 Build 26200.9168 (Wifes)13th Generation Intel® Core™ i5-1340P Process...16GB LPDDR5-52001x Intel® Iris® Xe Graphics
    Operating System
    Windows 11 Pro 25H2 Build 26200.9168 (Wifes)
    Computer type
    Laptop
    Manufacturer/Model
    LENOVO Yoga 7 14IRL8 - Type 82YL
    CPU
    13th Generation Intel® Core™ i5-1340P Processor(Core™ i5-1340P)
    Memory
    16GB LPDDR5-5200
    Graphics card(s)
    1x Intel® Iris® Xe Graphics
    Sound Card
    Optimized with Dolby Atmos®
    Screen Resolution
    QHD 2880 x 1800 OLED
    Hard Drives
    M.2 512 GB SSD PCIe
    Mouse
    Logiteck MX Master 3S
    Internet Speed
    2000/500
    Antivirus
    Defender / Malwarebytes
    Other Info
    …still on a horse.


    Wireless Network: Wi-Fi 6E 2x2 AX; Bluetooth® 5.1 or above
    Ports: 1x 1 Novo button; 2 in 1 Audio Combo jack; Micro SD Card Reader; HDMI 1.4b; 2 x USB Type-C (TBT4)
    USB 3.2 Gen 2 DP 1.4a
    PD 3.0); 1 x USB 3.2 Gen1 Type A
    Camera
    1x 1080P FHD IR/RGB Hybrid with Privacy Shutter and Dual Array Microphone
    Graphics
    1x Intel® Iris® Xe Graphics
    Monitor
    14" WUXGA
    Form Factor
    Convertible Notebook
  • Windows 11 Pro 25H2 Build 26200.9168 (Wifes)

    Yoga 7 2-in-1 14IML9 - Type 83DJ

    Processor: Intel® Core™ Ultra 7 155H Processor(Core™ Ultra 7 155H)

    Memory: 32GB LPD5X-7467

    Hard Drive: 1 TB SSD PCIe

    Wireless Network: 1x Wi-Fi 6E 2x2 AX; Bluetooth® 5.1 or above

    Ports: 1 x HDMI 2.1 TMDS; 1 x Novo Button; 1 x Combo Audio Jack
    2 x USB-C (USB 4.0)
    1 x USB-A 3.2 Gen 1

    Camera: 1080P FHD IR Hybrid with Dual Microphone

    Graphics: Intel® Arc™ Graphics

    Monitor: 14" 2.8K

    ...Where's my horse?
Not to crap on someone else’s work, but, well, here we go… why not just skip the /d argument for cleanmgr and let it prompt you for a drive?

Edit : Oh the Properties window. Duh. I’ll go to sleep now.
 

My Computer My Computer

At a glance

Windows 11 Enterprise 25H2
OS
Windows 11 Enterprise 25H2

Latest Support Threads

Back
Top Bottom