fixed typo in runTools, removed extra file

This commit is contained in:
SuperPotato27 2024-07-31 10:35:50 -04:00
parent 75b02a18e3
commit 0fc1b3893c
2 changed files with 2 additions and 8 deletions

View File

@ -1,7 +0,0 @@
# 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()

View File

@ -1,2 +1,3 @@
@echo off
powershell -NoProfile -ExecutionPolicy Bypass -File "~dp0hirsshell.ps1"
powershell -NoProfile -ExecutionPolicy Bypass -File "%~dp0hirsshell.ps1"
pause