Files
ProjectStructure_HOME/UpdateSequences.bat

12 lines
371 B
Batchfile
Raw Normal View History

2025-08-08 13:33:08 -06:00
@echo off
2025-08-18 17:04:19 -06:00
setlocal EnableExtensions
set "ps1=A:\1 Amazon_Active_Projects\3 ProjectStructure\UpdateSequences.ps1"
echo Running PowerShell update script...
powershell -NoProfile -ExecutionPolicy Bypass -File "%ps1%"
set "rc=%errorlevel%"
echo PowerShell exited with RC=%rc%
echo @"_CURRENT\_UpdateSequences.log"
2025-08-11 10:51:39 -06:00
echo( Done. Press any key to exit.
2025-08-08 13:33:08 -06:00
pause >nul
2025-08-18 17:04:19 -06:00
exit /b %rc%