Created
October 15, 2024 21:24
-
-
Save kg/26a25a945a73067bfef0636c8f5d3d2c to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
@echo off | |
:start | |
set /a var+=1 | |
if %var% EQU 100 goto end | |
pwsh -c exit | |
goto start | |
:end | |
echo ran powershell %var% time(s). | |
pause | |
exit |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment