How to use checkapp state in order to skip or perform activities according to a condition

I am using UiPath to install and configure apps like Avaya onex VOIP Phone emulator and citrix receiver. However, when I try to automate the process using UiPath on on other machines sometimes .net framework 3.5 sp1 isn’t installed. SO iwant to automate that process to using its own activities, but I want to set a condition if the windows features app doesn’t pop up (.net is already installed) to skip the activties of the .net framework and proceed with the others

Maybe assign a boolean variable. If the pop up appears assign a boolean to True, else assign the same boolean to false.

@youssef169886

use a check app state activity and if it appears do that installation else move to next steps

cheers

H @youssef169886

Yes for that condition you can use Check app state activity and indicate the popup.

In the Element appear block insert the .net framework activities. Don’t insert any activities in Element doesn’t appear block.

By doing the above one, if the popup doesn’t appear then it skips the .net framework, it will proceed with the other activities.

Hope it helps!!