/*
ExecPri为NSIS提供设置程序优先级功能
ExecPri可以让你执行程序并且选择设置他们的优先级.
realtime:优级实时
high:优先级高
above normal:高于标准
normal:优先级普通
below normal:低于标准
idle:优先级低
*/
!AddPluginDir "../Plugins"
OutFile "ExecPri.exe"
Section "永恒心锁"
#优级实时
ExecPri::ExecWait "notepad.exe" "realtime"
#优先级高
ExecPri::ExecWait "notepad.exe" "high"
#高于标准
ExecPri::ExecWait "notepad.exe" "above normal"
#优先级普通
ExecPri::ExecWait "notepad.exe" "normal"
#低于标准
ExecPri::ExecWait "notepad.exe" "below normal"
#优先级低
ExecPri::ExecWait "notepad.exe" "idle"
SectionEnd
THE END
暂无评论内容