Jun-22-2022, 11:03 AM
Is there a way for me to create a shortcut (.lnk) file using python. I searched everywhere, but found no answer that works :(
Creating Shortcuts with python
|
Jun-22-2022, 11:03 AM
Is there a way for me to create a shortcut (.lnk) file using python. I searched everywhere, but found no answer that works :(
Jun-22-2022, 12:13 PM
Both pywin32 and winshell shortcut can do this.
Can do quick test with to see in work with newest Python 3.10.5 as winshell is old. import os, sys import winshell link_filepath = os.path.join(winshell.desktop(), "python.lnk") with winshell.shortcut(link_filepath) as link: link.path = sys.executable link.description = "Shortcut to python"Work fine create a working shortcut to Python on the Desktop. (Jun-22-2022, 12:13 PM)snippsat Wrote: Both pywin32 and winshell shortcut can do this. Throws this error: When I try pip install win32con It gives another error: Im using the newest version of python: 3.10.5 64BitI found many websites using this winshell module and I gave up because it gave the same error.EDIT: I solved the error. pip install pywin32 solves the issue!Thanks for everyone's help! |
|
Possibly Related Threads… | |||||
Thread | Author | Replies | Views | Last Post | |
Need help with infinite loop & making hotkeys/shortcuts | Graxum | 1 | 1,831 |
Aug-22-2022, 02:57 AM Last Post: deanhystad |
|
IDLE keyboard shortcuts | tam | 2 | 3,832 |
May-15-2019, 06:34 AM Last Post: tam |
|
Converting an 8-bit binary to decimal WITHOUT the shortcuts | EIA | 5 | 8,047 |
Dec-01-2017, 09:04 AM Last Post: stranac |
|
Pycharm shortcuts and operators don't run | AzD | 6 | 9,641 |
Oct-17-2017, 05:46 PM Last Post: Larz60+ |
|
Automatically read copied text from keyboard shortcuts | Ambidexter2017 | 10 | 15,048 |
Mar-10-2017, 01:46 PM Last Post: wavic |