Associate
- Joined
- 26 Jul 2020
- Posts
- 796
trying to run two python scripts, in two different windows at the same time (from PS batch file)
can only get the first one to open:
trying this:
any help would be great, thanks
can only get the first one to open:
trying this:
Code:
PowerShell -NoExit "& 'C:\Python34\TKserverTest1'; Write-Host 'This window will stay open.'"
start powershell | PowerShell -NoExit "& 'C:\Python34\TKclientTest1'; Write-Host 'This window will stay open.'"
any help would be great, thanks