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

System One

  • OS
    Windows 11 Pro 25H2
    Computer type
    PC/Desktop
    Manufacturer/Model
    Intel NUC12WSHi7
    CPU
    12th Gen Core i7-1260P
    Motherboard
    NUC12WSBi7
    Memory
    64 GB Micron PC4-25600
    Graphics Card(s)
    Intel Iris Xe Graphics
    Sound Card
    on-board Realtek HD Audio
    Monitor(s) Displays
    Dell U3219Q
    Screen Resolution
    3840 x 2160
    Hard Drives
    Samsung SSD 990 PRO 1TB
    Crucial MX500 2 TB
    Antivirus
    Microsoft Defender
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

System One

  • 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

System One

  • OS
    Windows 11 Pro 25H2
    Computer type
    PC/Desktop
    Manufacturer/Model
    Intel NUC12WSHi7
    CPU
    12th Gen Core i7-1260P
    Motherboard
    NUC12WSBi7
    Memory
    64 GB Micron PC4-25600
    Graphics Card(s)
    Intel Iris Xe Graphics
    Sound Card
    on-board Realtek HD Audio
    Monitor(s) Displays
    Dell U3219Q
    Screen Resolution
    3840 x 2160
    Hard Drives
    Samsung SSD 990 PRO 1TB
    Crucial MX500 2 TB
    Antivirus
    Microsoft Defender
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

System One

  • 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

System One

  • OS
    Windows 11 Pro 25H2
    Computer type
    PC/Desktop
    Manufacturer/Model
    Intel NUC12WSHi7
    CPU
    12th Gen Core i7-1260P
    Motherboard
    NUC12WSBi7
    Memory
    64 GB Micron PC4-25600
    Graphics Card(s)
    Intel Iris Xe Graphics
    Sound Card
    on-board Realtek HD Audio
    Monitor(s) Displays
    Dell U3219Q
    Screen Resolution
    3840 x 2160
    Hard Drives
    Samsung SSD 990 PRO 1TB
    Crucial MX500 2 TB
    Antivirus
    Microsoft Defender
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

System One

  • 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

System One

  • OS
    Windows 11 Pro 25H2
    Computer type
    PC/Desktop
    Manufacturer/Model
    Intel NUC12WSHi7
    CPU
    12th Gen Core i7-1260P
    Motherboard
    NUC12WSBi7
    Memory
    64 GB Micron PC4-25600
    Graphics Card(s)
    Intel Iris Xe Graphics
    Sound Card
    on-board Realtek HD Audio
    Monitor(s) Displays
    Dell U3219Q
    Screen Resolution
    3840 x 2160
    Hard Drives
    Samsung SSD 990 PRO 1TB
    Crucial MX500 2 TB
    Antivirus
    Microsoft Defender
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

System One

  • 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

System One

  • OS
    Windows 11 Pro 25H2
    Computer type
    PC/Desktop
    Manufacturer/Model
    Intel NUC12WSHi7
    CPU
    12th Gen Core i7-1260P
    Motherboard
    NUC12WSBi7
    Memory
    64 GB Micron PC4-25600
    Graphics Card(s)
    Intel Iris Xe Graphics
    Sound Card
    on-board Realtek HD Audio
    Monitor(s) Displays
    Dell U3219Q
    Screen Resolution
    3840 x 2160
    Hard Drives
    Samsung SSD 990 PRO 1TB
    Crucial MX500 2 TB
    Antivirus
    Microsoft Defender
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

System One

  • OS
    Windows 7

My Computer

System One

  • OS
    Windows 11 Pro 25H2
    Computer type
    PC/Desktop
    Manufacturer/Model
    Intel NUC12WSHi7
    CPU
    12th Gen Core i7-1260P
    Motherboard
    NUC12WSBi7
    Memory
    64 GB Micron PC4-25600
    Graphics Card(s)
    Intel Iris Xe Graphics
    Sound Card
    on-board Realtek HD Audio
    Monitor(s) Displays
    Dell U3219Q
    Screen Resolution
    3840 x 2160
    Hard Drives
    Samsung SSD 990 PRO 1TB
    Crucial MX500 2 TB
    Antivirus
    Microsoft Defender
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

System One System Two

  • OS
    Windows 11 Pro 23H2
    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
  • 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

System One

  • 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 Computer

System One

  • 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

System One System Two

  • OS
    Windows 11 Pro
    Computer type
    PC/Desktop
    Manufacturer/Model
    ASUS ROG Strix
  • Operating System
    Windows 11 Pro
    Computer type
    Laptop
    Manufacturer/Model
    ASUS VivoBook
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

System One

  • 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

System One System Two

  • OS
    Windows 11 Pro 25H2 Build 26200.8524
    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
    Onboard thingy
    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.
  • Operating System
    Windows 11 Pro 25H2 Build 26200.8524
    Computer type
    Laptop
    Manufacturer/Model
    LENOVO Yoga 7 14IRL8 - 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.
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

System One

  • OS
    Windows 11 Pro 25H2
    Computer type
    PC/Desktop
    Manufacturer/Model
    Intel NUC12WSHi7
    CPU
    12th Gen Core i7-1260P
    Motherboard
    NUC12WSBi7
    Memory
    64 GB Micron PC4-25600
    Graphics Card(s)
    Intel Iris Xe Graphics
    Sound Card
    on-board Realtek HD Audio
    Monitor(s) Displays
    Dell U3219Q
    Screen Resolution
    3840 x 2160
    Hard Drives
    Samsung SSD 990 PRO 1TB
    Crucial MX500 2 TB
    Antivirus
    Microsoft Defender
Back
Top Bottom