在使用Mendix Studio Pro打开项目的时候,时常会出现打开异常,卡死。可利用PowerShell脚本强制杀死后重启。
1、新建一个PowerShell脚本,文件名为:kill_mendix_process.ps1,内容如下:
$processes = Get-Process | Where-Object { $_.Description -eq "studiopro" -or $_.Description -eq "OpenJDK Platform binary" -or $_.Description -eq "Git for Windows"} foreach ($process in $processes) { Stop-Process -Id $process.Id -Force }
2、右键“使用 PowerShell 运行”该脚本
3、待 Mendix Studio Pro 被关闭后,重新打开。。。如果还是打开异常,使用该脚本多杀几次!