Ravi Kumar
Ravi Kumar

Reputation: 1

How to open IIS through RPA UIPath

I want to open IIS through uipath, but whenever I use the "Open Application" activity for open IIS below errors are shown. So, what workflow I have to make to open IIS through uipath?

enter image description here

Upvotes: 0

Views: 518

Answers (1)

Conor
Conor

Reputation: 740

One of the most important things to realise in UiPath is that there are many many ways to achieve the same thing. Each one has it's Pro's and Con's but don't work in every situation.

Some alternatives to try

  1. Command Prompt
    • Open run (Send hot key Windows Key + R
    • Type CMD and click run
    • type start inetmgr and then send hotkey enter
  2. Clicking
    • Use clicks to navigate to IIS, or put a shortcut on the desktop and click on it
  3. Start Process
    • Use the start process activity, pass in the path of IIS C:\...\...\IIS Link

This UiPath forum is also a good place to look for help https://forum.uipath.com

Upvotes: 1

Related Questions