Inno Setup Pascal Script to search for running process

后端 未结 2 1037
忘了有多久
忘了有多久 2021-01-06 07:52

I am currently trying to do a validation at the uninstall moment. In a Pascal script function, in Inno Setup, I want to search for a specific processes, with a wild card if

2条回答
  •  半阙折子戏
    2021-01-06 08:19

    If not work.Please change as follows.

    (old) for I := 0 to High(ProcessList) do

    (new) for I := 0 to (GetArrayLength(ProcessList) - 1) do

提交回复
热议问题