Forum Discussion
WengTi
Jul 24, 2025Iron Contributor
How do I batch change cursor?
I want a way to add a custom scheme to Windows that way i dont have to change it manually if i ever reinstall windows.
2 Replies
- StephenBakerIron Contributor
Keep your custom cursor files (.cur, .ani) in a dedicated folder. When reinstalling Windows, you can run your script to restore the cursor scheme automatically.
- meagpieIron Contributor
Open PowerShell with administrator privileges and run the following commands to batch change the cursor scheme to Windows Default:
powershell Get-ItemProperty HKCU:\Control Panel\Cursors\Schemes\| Select-Object -ExpandProperty (Default); Set-ItemProperty -Path HKCU:\Control Panel\Cursors\ -Name "Scheme Source" -Value 1 -Name (Default) -Value Windows Default.