mirror of
https://github.com/nsacyber/HIRS.git
synced 2024-12-19 04:58:00 +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()
|