我想为idea64.exe进程及其所有后代设置优先级为“Below Normal”。我也想永久保留这个设置,我不想每次运行时都设置它。这样做有IntelliJ IDEA设置吗?
答案 0 :(得分:1)
您可以通过为以下命令创建快捷方式来完成此操作:
C:\Windows\system32\cmd.exe /c "start /belownormal notepad.exe"
对于Idea,它将如下所示:
C:\Windows\system32\cmd.exe /c "start /belownormal C:\"Program Files (x86)"\JetBrains\"IntelliJ IDEA 13.1.1"\bin\idea64.exe"
其他选项:
/low
/belownormal
/normal
/abovenormal
/high
/realtime