mirror of
https://github.com/nsacyber/HIRS.git
synced 2024-12-18 20:47:58 +00:00
updates to readme and win package structure
This commit is contained in:
parent
bf81c45c4c
commit
0c165641c0
@ -1,2 +0,0 @@
|
||||
@echo off
|
||||
powershell -NoProfile -ExecutionPolicy Bypass -File "%~dp0\create_hirstools_desktop_shortcut.ps1"
|
@ -4,9 +4,11 @@ To get the tools running on windows follow the instructions below:
|
||||
|
||||
1- Unzip "ZIP_Files"
|
||||
|
||||
2- Run the install file under ```hirstools\IntsallTools.bat``` a HIRS_tools shortcut should appear on your desktop
|
||||
2- open powershell as administrator and navigate to the hirstools folder.
|
||||
|
||||
3- Double click HIRS_tools.lnk shortcut and HIRS terminal should open.
|
||||
3- run the following command: ```powershell -ExecutionPolicy Bypass -File '.\create_hirstools_desktop_shortcut.ps1'```
|
||||
|
||||
4- double-click the HIRS_tools shortcut on your desktop.
|
||||
|
||||
To run the rim tool try the following commands:
|
||||
|
||||
|
@ -4,6 +4,8 @@ Expand-Archive -Path ..\tcg_eventlog_tool.zip -DestinationPath .\tcg_eventlog_to
|
||||
# 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\RunTools.bat"
|
||||
$Shortcut.TargetPath = "powershell.exe"
|
||||
$ScriptPath = "$PWD\hirsshell.ps1"
|
||||
$Shortcut.Arguments = "-ExecutionPolicy Bypass -File `"$ScriptPath`""
|
||||
$Shortcut.WorkingDirectory = "$PWD"
|
||||
$Shortcut.Save()
|
||||
|
@ -1,2 +0,0 @@
|
||||
@echo off
|
||||
powershell -NoProfile -ExecutionPolicy Bypass -File "%~dp0\hirsshell.ps1"
|
Loading…
Reference in New Issue
Block a user