Blue Prism,UIPath,Automation Anywhere,Workfusion

Robotic process automation(RPA) is an emerging form of business process automation technology based on the notion of software robots or artificial intelligence(AI) workers.In traditional workflow automation tools, a software developer produces a list of actions to automate a task and interface to the back-end system using internal application programming interfaces (APIs) or dedicated scripting language. In contrast, RPA systems develop the action list by watching the user perform that task in the application's graphical user interface (GUI), and then perform the automation by repeating those tasks directly in the GUI. This can lower the barrier to use of automation in products that might not otherwise feature APIs for this purpose

Sunday, 17 February 2019

How to Change Sleep Mode of System

Set wshShell=WScript.CreateObject("WScript.Shell") Do WScript.Sleep 60000 wshShell.SendKeys "{NUMLOCK}" wshShell.SendKeys "{NUMLOCK}" loo...

How to Unhide Sheet all tab from Excel

On Error Resume Next 'vMasterFilePath=WScript.Arguments(0) 'vLogPath=WScript.Arguments(1) vMasterFilePath="C:\Users\admin\Desktop\Operation\Data.xlsx" vLogPath="C:\Users\admin\Desktop\Operation\Log.txt" 'For write the log' Set objFS = CreateObject("Scripting.FileSystemObject") Set FSO_Handle = objFS.OpenTextFile(vLogPath,8,True) Set objExcel = CreateObject("Excel.Application") objExcel.DisplayAlerts = False objExcel.Visible = True Set objW...