Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

How to programmatically move icons' location from Windows Desktop?

I wish to create a startup job that every time that my Windows starts, it will rearrange some shortcut icons from my desktop to another location, such as right-bottom for example.

Can I make it with VBScript, Powershell, bat command script or even with C\C++\C#\Java?

like image 693
Diogo Avatar asked Sep 15 '11 19:09

Diogo


1 Answers

Desktop is an ordinary listview so you can use windows api to move items to different locations. Have a look at this similar question: How can I programmatically manipulate Windows desktop icon locations?

like image 171
Giorgi Avatar answered Nov 15 '22 08:11

Giorgi