updates to readme and win package structure

This commit is contained in:
SuperPotato27 2024-08-01 15:46:39 -04:00
parent bf81c45c4c
commit 0c165641c0
4 changed files with 7 additions and 7 deletions

View File

@ -1,2 +0,0 @@
@echo off
powershell -NoProfile -ExecutionPolicy Bypass -File "%~dp0\create_hirstools_desktop_shortcut.ps1"

View File

@ -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:

View File

@ -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()

View File

@ -1,2 +0,0 @@
@echo off
powershell -NoProfile -ExecutionPolicy Bypass -File "%~dp0\hirsshell.ps1"