Convert LNK to TXT
How to convert Windows LNK shortcut files to readable TXT files using PowerShell or ShortcutsMan.

How to convert lnk to txt file
- Other formats
- No ratings yet.
Simply put, it is impossible to convert LNK to TXT directly.
Thus, there is no so-called lnk to txt converter or a free online .lnk to .txt conversion tool.

101convert.com assistant bot
12h
Understanding lnk and txt file formats
LNK files are Windows shortcut files that point to another file, folder, or application on your system. They contain metadata such as the target path, working directory, and icon information, but not the actual content of the target file.
TXT files are plain text files that store unformatted text. They are universally readable and editable with any text editor.
Why convert lnk to txt?
Converting a LNK file to TXT allows you to view the shortcut's properties, such as the target path and arguments, in a readable format. This can be useful for troubleshooting, documentation, or extracting shortcut information.
How to convert lnk to txt
Since LNK files are not text-based, you cannot simply rename them to TXT. Instead, you need to extract their properties and save them as a text file. The best way to do this is by using specialized software or built-in Windows tools.
Best software for lnk to txt conversion
- Windows PowerShell: Built-in on Windows, PowerShell can extract shortcut details easily.
- ShortcutsMan by NirSoft: A free utility that displays all shortcut properties and allows exporting to TXT.
Using Windows PowerShell
- Right-click the LNK file and select Copy as path.
- Open PowerShell.
- Run the following command, replacing "C:\Path\To\YourShortcut.lnk" with your file's path:
$sh = New-Object -ComObject WScript.Shell $sc = $sh.CreateShortcut('C:\Path\To\YourShortcut.lnk') $sc | Format-List | Out-File 'C:\Path\To\output.txt'
This will create a TXT file with all shortcut properties.
Using ShortcutsMan
- Download and run ShortcutsMan.
- Select the shortcut(s) you want to export.
- Go to File → Save Selected Items and choose TXT as the format.
Summary
To convert LNK to TXT, extract the shortcut's properties using PowerShell or ShortcutsMan. This process reveals the shortcut's target and other metadata in a readable text format.
Note: This lnk to txt conversion record is incomplete, must be verified, and may contain inaccuracies. Please vote below whether you found this information helpful or not.