SHOW PROGRESS WHILE PERFORMING TASK Have you come across task which take huge amount of time to execute on Powershell, but you don’t want your console to look like it’s STUCK. When console shows nothing executing or cursor is not coming to next line you get confused that is my system running fine or has gone into “HUNG STATE” due to script I just ran. This might be while checking a VM/Remote server to come in PowerOn state or to get details of product installed using WMI query WIN32_Product. Well in such case we try to use START-JOB/ Receive-Job to execute the command so that task runs in background and console gets free for other tasks. But in many scenarios our next command is dependent of the output we get out from leading command. In such situation, we can’t just execute our script/command with START-JOB and let our console execute later commands. We need to WAIT. Waiting may take 5 seconds or few minutes. Till the time you seems confused about time being taken with...