make HELP a bit more versatile

This commit is contained in:
USER
2024-04-14 23:17:25 +01:00
parent 3ff5a59b2f
commit f41610b2ef

View File

@ -4,4 +4,17 @@ echo "Found computer %check_computername%"
if exist "F:\my\myHomes\DocumentsHighfieldApps\HELP" ( if exist "F:\my\myHomes\DocumentsHighfieldApps\HELP" (
"C:\Program Files (x86)\Microsoft\Edge\Application\msedge.exe" F:\my\myHomes\DocumentsHighfieldApps\HELP\index.html "C:\Program Files (x86)\Microsoft\Edge\Application\msedge.exe" F:\my\myHomes\DocumentsHighfieldApps\HELP\index.html
) else (
if exist "D:\DailyMirrorAppsINTERNAL\F\my\myHomes\DocumentsHighfieldApps\HELP" (
"C:\Program Files (x86)\Microsoft\Edge\Application\msedge.exe" D:\DailyMirrorAppsINTERNAL\F\my\myHomes\DocumentsHighfieldApps\HELP\index.html
)
) )
if exist ".\my\myHomes\DocumentsHighfieldApps\HELP" (
"C:\Program Files (x86)\Microsoft\Edge\Application\msedge.exe" .\my\myHomes\DocumentsHighfieldApps\HELP\index.html
) else (
if exist "D:\DailyMirrorAppsINTERNAL\F\my\myHomes\DocumentsHighfieldApps\HELP" (
"C:\Program Files (x86)\Microsoft\Edge\Application\msedge.exe" D:\DailyMirrorAppsINTERNAL\F\my\myHomes\DocumentsHighfieldApps\HELP\index.html
)
)