Review Officer Recruitment, the reservation form has started filling up at the online railway station for the recruitment of UP Review Officer 2020. The students who are waiting for this recruitment has started. Since the recruitment announcement, many of the students of Uttar Pradesh were waiting for the UPPSC Recruitment 2020. The … [Read more...] about UP Review Officer Recruitment Online Application Form
Windows Performance Monitor
Windows Performance Monitor Perfmon tool, this article explains how one can use the permoon tool for monitoring the windows system resoruces. Most of the windows users do not use effectively this tool, actually, it has many features, one use this tool for monitoring the CPU, Memory, Network and disk utilization of computer and it has a built-in … [Read more...] about Windows Performance Monitor
How to Check Windows 10 Version
How to Check Windows 10 Build Version, this article explains with simple steps one can find the base build version of windows 10. It is really important to keep your windows 10 machine up to date, in terms of patches and upgrades to avoid the risk, this article explains how to check what build version is currently installed on your computer. … [Read more...] about How to Check Windows 10 Version
How to run applications as run as administrator
How to open command prompt as run as administrator to perform administrative tasks on any windows operating system, here are the simple steps one can follow. Windows System Administrator has the highest privileges than other normal users on the system, sometimes we have to run the applications with administrator privileges to execute the task, it … [Read more...] about How to run applications as run as administrator
How to Map a Network Drive | Share
How to Map a Network Drive on Windows 10 or any other window server operating system, here are simple steps to map any network drive or path with drive desired letter. You can easily map any network share or path, here are the simple steps help you to map in windows 10 or any other machine like windows server 2016 or 2012, the process is same for … [Read more...] about How to Map a Network Drive | Share
PowerShell Loops Explained
Powershell loops (for, foreach, and foreach-object) when you there is a need to execute the sequence code for several times to complete a task. Powershell For loop syntax and examples: for (<Init>; <Condition>; <Repeat>) { <your statement list>} # Example1 for($i = 0; $i -le 10; $i++) { "$i" } # Example2 for (($i = … [Read more...] about PowerShell Loops Explained