mirror of
https://github.com/nsacyber/HIRS.git
synced 2024-12-22 06:17:56 +00:00
8 lines
266 B
PowerShell
8 lines
266 B
PowerShell
|
|
# Create a shortcut to start the RIM shell
|
|
$WshShell = New-Object -comObject WScript.Shell
|
|
$Shortcut = $WshShell.CreateShortcut("$Home\Desktop\HIRS_tools.lnk")
|
|
$Shortcut.TargetPath = "$PWD\hirsshell.ps1"
|
|
$Shortcut.WorkingDirectory = "$PWD"
|
|
$Shortcut.Save()
|