How do you change a Windows shortcut using Python?
e.g. from:
H:\\My Music\\some_file.mp3
to:
D:\\Users\\Myself\\My
Yet another method is detailed here
Use the shortcut update example. You can shortcut.GetPath(), modify it and then use shortcut.SetPath() method to set it.
shortcut.GetPath()
shortcut.SetPath()