6 lines
209 B
PowerShell
6 lines
209 B
PowerShell
|
|
$proc = Start-Process -FilePath 'D:\Xuanchi\高斯泼溅\XCEngine\build\mvs\XCEngineDemo\Debug\XCEngineDemo.exe' -PassThru
|
||
|
|
Start-Sleep -Seconds 5
|
||
|
|
if (!$proc.HasExited) {
|
||
|
|
Stop-Process -Id $proc.Id -Force
|
||
|
|
}
|