Powershell v2.0 or Higher Not Found on This SystemDescription<!-- div.margin{ padding: 10px 40px 40px 30px; } table.tocTable{ border: 1px solid; border-color:#E0E0E0; background-color: rgb(245, 245, 245); padding-top: .6em; padding-bottom: .6em; padding-left: .9em; padding-right: .6em; } table.noteTable{ border:1px solid; border-color:#E0E0E0; background-color: rgb(245, 245, 245); width: 100%; border-spacing:2; } table.internaltable { white-space:nowrap; text-align:left; border-width: 1px; border-collapse: collapse; font-size:14px; width: 85%; } table.internaltable th { border-width: 1px; padding: 5px; border-style: solid; border-color: rgb(245, 245, 245); background-color: rgb(245, 245, 245); } table.internaltable td { border-width: 1px; padding: 5px; border-style: solid; border-color: #E0E0E0; color: #000000; } .title { color: #D1232B; font-weight:normal; font-size:28px; } h1{ color: #D1232B; font-weight:normal; font-size:21px; margin-bottom:-5px } h2{ color: #646464; font-weight:bold; font-size:18px; } h3{ color: #000000; font-weight:BOLD; font-size:16px; text-decoration:underline; } h4{ color: #646464; font-weight:BOLD; font-size:15px; text-decoration:; } h5{ color: #000000; font-weight:BOLD; font-size:13px; text-decoration:; } h6{ color: #000000; font-weight:BOLD; font-size:14px; text-decoration:; } --> Powershell v2.0 or Higher Not Found on This System Issue Powershell Orchestration activities fails with error Powershell v2.0 or higher not found on this system. Solution PowerShell must be installed on any MID Server that uses powershell activities. MID Servers using PowerShell must be installed on a supported Windows operating system. ServiceNow supports PowerShell 2.0 and above. The MID server service checks the powershell version installed on the MID server before running a powershell activity. The following command is executed: powershell.exe -noninteractive -nologo -noprofile -command "(get-host).version.major" The output from the above command should be an integer greater than or equal to 2. In some cases, a non-integer value or an integer less than 2 is returned. A solution in such cases is to install version 2 or above of powershell on the MID server host. The parameter mid.powershell.path can be added to the MID server configuration. This parameter enables an administrator to point to a specific PowerShell on a MID Server in cases where more than one PowerShell is installed. However, if this parameter points to an incorrect path, then the error Powershell v2.0 or higher not found on this system is returned, an incorrect path is a folder where powershell cannot be found. In such cases, the solution is to either remove the parameter or point to the correct path.