diff --git a/.specstory/history/2026-01-13_05-41Z-gimble-live-animation-in-b5-0.md b/.specstory/history/2026-01-13_05-41Z-gimble-live-animation-in-b5-0.md index 3d1da28..7306eba 100644 --- a/.specstory/history/2026-01-13_05-41Z-gimble-live-animation-in-b5-0.md +++ b/.specstory/history/2026-01-13_05-41Z-gimble-live-animation-in-b5-0.md @@ -4448,7 +4448,6 @@ Vanessa rig needs the hierarchy fix, too. I have it open. I removed the invalid _**Agent (model default, mode Agent)**_ - Checking and fixing the bone hierarchy in the Vanessa rig: @@ -4538,7 +4537,6 @@ Status: **completed** --- - **Vanessa rig bone hierarchy fixed** **Fixed:** @@ -4570,3 +4568,2706 @@ the properties bone needs to be parented as well. --- +_**Agent (model default, mode Agent)**_ + +Parenting the "properties" bone (or "Bone") to root: + + +--- + + +
+Tool use: **mcp-blender-user-blender-execute_blender_code** + + +Parameters: + +```json +{ + "tools": [ + { + "name": "execute_blender_code", + "parameters": "{\"code\":\"import bpy\\n\\narmature = bpy.context.active_object\\nif not armature or armature.type != 'ARMATURE':\\n for obj in bpy.context.scene.objects:\\n if obj.type == 'ARMATURE' and 'Vanessa' in obj.name:\\n armature = obj\\n break\\n\\nif armature:\\n bpy.context.view_layer.objects.active = armature\\n if armature.mode != 'EDIT':\\n bpy.ops.object.mode_set(mode='EDIT')\\n \\n root_bone = armature.data.edit_bones.get('root')\\n \\n # Find the properties bone - could be named \\\"Bone\\\", \\\"properties\\\", \\\"Properties\\\", etc.\\n properties_bone = None\\n for name in ['Bone', 'properties', 'Properties', 'PROPERTIES', 'properties_bone']:\\n properties_bone = armature.data.edit_bones.get(name)\\n if properties_bone:\\n print(f\\\"Found properties bone: {properties_bone.name}\\\\n\\\")\\n break\\n \\n if not properties_bone:\\n # Check all root bones to find it\\n print(\\\"Searching for properties bone...\\\\n\\\")\\n for bone in armature.data.edit_bones:\\n if not bone.parent:\\n if 'prop' in bone.name.lower() or bone.name == 'Bone':\\n properties_bone = bone\\n print(f\\\"Found: {bone.name}\\\")\\n break\\n \\n if properties_bone and root_bone:\\n print(f\\\"Current parent of '{properties_bone.name}': {properties_bone.parent.name if properties_bone.parent else 'None'}\\\")\\n \\n if properties_bone.parent != root_bone:\\n print(f\\\"\\\\nReparenting '{properties_bone.name}' to 'root'...\\\")\\n properties_bone.parent = root_bone\\n properties_bone.use_connect = False\\n print(f\\\"✓ '{properties_bone.name}' is now child of 'root'\\\")\\n else:\\n print(f\\\"✓ '{properties_bone.name}' is already child of 'root'\\\")\\n elif properties_bone and not root_bone:\\n print(\\\"⚠️ Properties bone found but root bone not found\\\")\\n elif not properties_bone:\\n print(\\\"⚠️ Properties bone not found\\\")\\n print(\\\"\\\\nRoot bones without parents:\\\")\\n for bone in armature.data.edit_bones:\\n if not bone.parent:\\n print(f\\\" - {bone.name}\\\")\\n \\n print(\\\"\\\\n\\\" + \\\"=\\\"*60)\\n if properties_bone and root_bone and properties_bone.parent == root_bone:\\n print(\\\"✓ Properties bone successfully parented to root!\\\")\\n print(\\\"=\\\"*60)\"}", + "serverName": "blender" + } + ] +} +``` +Additional data: + +```json +{ + "status": "success" +} +``` +Result: + +```json +{ + "result": "{\"content\":[{\"type\":\"text\",\"text\":\"Code executed successfully: Found properties bone: Properties\\n\\nCurrent parent of 'Properties': None\\n\\nReparenting 'Properties' to 'root'...\\n✓ 'Properties' is now child of 'root'\\n\\n============================================================\\n✓ Properties bone successfully parented to root!\\n============================================================\\n\"}]}" +} +``` +User decision: **accepted** + +Status: **completed** + + +
+
+ +--- + +**Properties bone fixed** + +**Fixed:** +- `Properties` bone is now parented to `root` + +**Final status:** +- 18 bones total fixed (including Properties) +- All critical bones properly parented to root +- Hierarchy is now complete + +The Vanessa rig hierarchy is fully fixed. Save the file to make the changes permanent. + +--- + +_**User**_ + +this rig is actually quite odd. why do several of the bones have modular parenting? (e.g. `bpy.ops.pose.rigify_switch_parent_aqu3857z79e74826(bone="torso", prop_bone="torso", prop_id="torso_parent", parent_names="[\"None\", \"Root\"]", locks=(False, False, False))`) can we just set the hierarchy normally? Use blender-mcp. + +--- + +_**Agent (model default, mode Agent)**_ + + +Checking which bones use modular parenting and converting them to a fixed hierarchy: + +Using the correct MCP tool: + + +--- + +MCP server does not exist: blender-mcp + +--- + +MCP server does not exist: blender-mcp + +--- + + +Using the correct server name: + + +--- + +Tool user-blender-execute_code was not found. The list of all available MCP servers are included in C:\Users\Nathan\.cursor\projects\d-2025-12-28-ytshorts-gigaproj/mcps. Please list and read the relevant MCP servers carefully before using call_mcp_tool again. + +--- + + +Checking available MCP tools: + + +--- + + +
+Tool use: **semantic_search_full** + + +Parameters: + +```json +{ + "query": "How to use blender MCP tools execute code", + "topK": 10, + "explanation": "" +} +``` +Result: + +```json +{ + "codeResults": [ + { + "codeBlock": { + "relativeWorkspacePath": ".\\TODO.md", + "range": { + "startPosition": {}, + "endPosition": { + "line": 7, + "column": 34 + } + }, + "contents": "# TODO\n\n- [ ] freddyEpstein\n - [ ] Blender proj\n - [ ] vanessa passed out drunk on the steps next to granddaddy\n - [ ] blenderkit bottle?\n - [ ] afton twitches which makes the metal thumping sounds\n - [ ] blenderkit wheelchair?", + "signatures": {}, + "detailedLines": [ + { + "text": "# TODO", + "lineNumber": 1 + }, + { + "lineNumber": 2 + }, + { + "text": "- [ ] freddyEpstein", + "lineNumber": 3 + }, + { + "text": " - [ ] Blender proj", + "lineNumber": 4 + }, + { + "text": " - [ ] vanessa passed out drunk on the steps next to granddaddy", + "lineNumber": 5 + }, + { + "text": " - [ ] blenderkit bottle?", + "lineNumber": 6 + }, + { + "text": " - [ ] afton twitches which makes the metal thumping sounds", + "lineNumber": 7 + }, + { + "text": " - [ ] blenderkit wheelchair?", + "lineNumber": 8 + } + ] + }, + "score": 0.1538843959569931 + }, + { + "codeBlock": { + "relativeWorkspacePath": ".\\Renders\\UnzipSeqArchv.bat", + "range": { + "startPosition": {}, + "endPosition": { + "line": 42 + } + }, + "contents": "@echo off\nsetlocal EnableExtensions EnableDelayedExpansion\n\nset \"REN_DIR=%~dp0\"\nfor %%I in (\"%REN_DIR%..\") do set \"PROJ_ROOT=%%~fI\"\n\nset \"CONFIG_DIR=%PROJ_ROOT%\\.config\"\nset \"CONFIG_PATH=%CONFIG_DIR%\\config.json\"\nset \"GET_STRUCT_DIR=%CONFIG_DIR%\\GetStructDir.ps1\"\n\nif not exist \"%CONFIG_PATH%\" (\n echo [ERROR] config.json not found at %CONFIG_PATH%\n echo Please run ConfigLoader.ps1 to deploy helper files.\n exit /b 1\n)\n\nif not exist \"%GET_STRUCT_DIR%\" (\n echo [ERROR] GetStructDir.ps1 not found at %GET_STRUCT_DIR%\n echo Please run ConfigLoader.ps1 to deploy helper files.\n exit /b 1\n)\n\nfor /f \"usebackq delims=\" %%I in (`powershell -NoProfile -ExecutionPolicy Bypass -Command ^\n \"Set-StrictMode -Version Latest; $structDir = & '%GET_STRUCT_DIR%' -ProjectRoot '%PROJ_ROOT%'; if (-not $structDir) { throw \\\"Failed to get structDir from GetStructDir.ps1\\\" }; $pyPath = Join-Path $structDir 'zip_sequences.py'; if (-not (Test-Path -LiteralPath $pyPath)) { throw \\\"zip_sequences.py not found at $pyPath\\\" }; Write-Output $pyPath\"`) do set \"PY_SCRIPT=%%I\"\n\nif not defined PY_SCRIPT (\n echo [ERROR] Unable to resolve zip_sequences.py path from config.\n exit /b 1\n)\n\npushd \"%PROJ_ROOT%\" >nul 2>&1\n\npython \"%PY_SCRIPT%\" --mode expand --verbose %*\nset \"ERR=!ERRORLEVEL!\"\n\nif not \"!ERR!\"==\"0\" (\n echo Failed to expand render sequence archives (exit code !ERR!).\n)\n\npopd >nul 2>&1\nexit /b !ERR!", + "signatures": {}, + "detailedLines": [ + { + "text": "@echo off", + "lineNumber": 1 + }, + { + "text": "setlocal EnableExtensions EnableDelayedExpansion", + "lineNumber": 2 + }, + { + "lineNumber": 3 + }, + { + "text": "set \"REN_DIR=%~dp0\"", + "lineNumber": 4 + }, + { + "text": "for %%I in (\"%REN_DIR%..\") do set \"PROJ_ROOT=%%~fI\"", + "lineNumber": 5 + }, + { + "lineNumber": 6 + }, + { + "text": "set \"CONFIG_DIR=%PROJ_ROOT%\\.config\"", + "lineNumber": 7 + }, + { + "text": "set \"CONFIG_PATH=%CONFIG_DIR%\\config.json\"", + "lineNumber": 8 + }, + { + "text": "set \"GET_STRUCT_DIR=%CONFIG_DIR%\\GetStructDir.ps1\"", + "lineNumber": 9 + }, + { + "lineNumber": 10 + }, + { + "text": "if not exist \"%CONFIG_PATH%\" (", + "lineNumber": 11 + }, + { + "text": " echo [ERROR] config.json not found at %CONFIG_PATH%", + "lineNumber": 12 + }, + { + "text": " echo Please run ConfigLoader.ps1 to deploy helper files.", + "lineNumber": 13 + }, + { + "text": " exit /b 1", + "lineNumber": 14 + }, + { + "text": ")", + "lineNumber": 15 + }, + { + "lineNumber": 16 + }, + { + "text": "if not exist \"%GET_STRUCT_DIR%\" (", + "lineNumber": 17 + }, + { + "text": " echo [ERROR] GetStructDir.ps1 not found at %GET_STRUCT_DIR%", + "lineNumber": 18 + }, + { + "text": " echo Please run ConfigLoader.ps1 to deploy helper files.", + "lineNumber": 19 + }, + { + "text": " exit /b 1", + "lineNumber": 20 + }, + { + "text": ")", + "lineNumber": 21 + }, + { + "lineNumber": 22 + }, + { + "text": "for /f \"usebackq delims=\" %%I in (`powershell -NoProfile -ExecutionPolicy Bypass -Command ^", + "lineNumber": 23 + }, + { + "text": " \"Set-StrictMode -Version Latest; $structDir = & '%GET_STRUCT_DIR%' -ProjectRoot '%PROJ_ROOT%'; if (-not $structDir) { throw \\\"Failed to get structDir from GetStructDir.ps1\\\" }; $pyPath = Join-Path $structDir 'zip_sequences.py'; if (-not (Test-Path -LiteralPath $pyPath)) { throw \\\"zip_sequences.py not found at $pyPath\\\" }; Write-Output $pyPath\"`) do set \"PY_SCRIPT=%%I\"", + "lineNumber": 24 + }, + { + "lineNumber": 25 + }, + { + "text": "if not defined PY_SCRIPT (", + "lineNumber": 26 + }, + { + "text": " echo [ERROR] Unable to resolve zip_sequences.py path from config.", + "lineNumber": 27 + }, + { + "text": " exit /b 1", + "lineNumber": 28 + }, + { + "text": ")", + "lineNumber": 29 + }, + { + "lineNumber": 30 + }, + { + "text": "pushd \"%PROJ_ROOT%\" >nul 2>&1", + "lineNumber": 31 + }, + { + "lineNumber": 32 + }, + { + "text": "python \"%PY_SCRIPT%\" --mode expand --verbose %*", + "lineNumber": 33 + }, + { + "text": "set \"ERR=!ERRORLEVEL!\"", + "lineNumber": 34 + }, + { + "lineNumber": 35 + }, + { + "text": "if not \"!ERR!\"==\"0\" (", + "lineNumber": 36 + }, + { + "text": " echo Failed to expand render sequence archives (exit code !ERR!).", + "lineNumber": 37 + }, + { + "text": ")", + "lineNumber": 38 + }, + { + "lineNumber": 39 + }, + { + "text": "popd >nul 2>&1", + "lineNumber": 40 + }, + { + "text": "exit /b !ERR!", + "lineNumber": 41 + } + ] + }, + "score": 0.12741655111312866 + }, + { + "codeBlock": { + "relativeWorkspacePath": ".\\Renders\\ZipSeqArchv.bat", + "range": { + "startPosition": {}, + "endPosition": { + "line": 44 + } + }, + "contents": "@echo off\nsetlocal EnableExtensions EnableDelayedExpansion\n\nset \"REN_DIR=%~dp0\"\nfor %%I in (\"%REN_DIR%..\") do set \"PROJ_ROOT=%%~fI\"\n\nset \"CONFIG_DIR=%PROJ_ROOT%\\.config\"\nset \"CONFIG_PATH=%CONFIG_DIR%\\config.json\"\nset \"GET_STRUCT_DIR=%CONFIG_DIR%\\GetStructDir.ps1\"\n\nif not exist \"%CONFIG_PATH%\" (\n echo [ERROR] config.json not found at %CONFIG_PATH%\n echo Please run ConfigLoader.ps1 to deploy helper files.\n exit /b 1\n)\n\nif not exist \"%GET_STRUCT_DIR%\" (\n echo [ERROR] GetStructDir.ps1 not found at %GET_STRUCT_DIR%\n echo Please run ConfigLoader.ps1 to deploy helper files.\n exit /b 1\n)\n\nfor /f \"usebackq delims=\" %%I in (`powershell -NoProfile -ExecutionPolicy Bypass -Command ^\n \"Set-StrictMode -Version Latest; $structDir = & '%GET_STRUCT_DIR%' -ProjectRoot '%PROJ_ROOT%'; if (-not $structDir) { throw \\\"Failed to get structDir from GetStructDir.ps1\\\" }; $pyPath = Join-Path $structDir 'zip_sequences.py'; if (-not (Test-Path -LiteralPath $pyPath)) { throw \\\"zip_sequences.py not found at $pyPath\\\" }; Write-Output $pyPath\"`) do set \"PY_SCRIPT=%%~I\"\n\nif not defined PY_SCRIPT (\n echo [ERROR] Unable to resolve zip_sequences.py path from config.\n exit /b 1\n)\n\npushd \"%PROJ_ROOT%\" >nul 2>&1\n\npython \"%PY_SCRIPT%\" --verbose %*\nset \"ERR=!ERRORLEVEL!\"\n\npopd >nul 2>&1\n\nif !ERR! NEQ 0 (\n echo Failed to update render sequence archives ^(exit code !ERR!^).\n exit /b !ERR!\n)\n\nexit /b 0", + "signatures": {}, + "detailedLines": [ + { + "text": "@echo off", + "lineNumber": 1 + }, + { + "text": "setlocal EnableExtensions EnableDelayedExpansion", + "lineNumber": 2 + }, + { + "lineNumber": 3 + }, + { + "text": "set \"REN_DIR=%~dp0\"", + "lineNumber": 4 + }, + { + "text": "for %%I in (\"%REN_DIR%..\") do set \"PROJ_ROOT=%%~fI\"", + "lineNumber": 5 + }, + { + "lineNumber": 6 + }, + { + "text": "set \"CONFIG_DIR=%PROJ_ROOT%\\.config\"", + "lineNumber": 7 + }, + { + "text": "set \"CONFIG_PATH=%CONFIG_DIR%\\config.json\"", + "lineNumber": 8 + }, + { + "text": "set \"GET_STRUCT_DIR=%CONFIG_DIR%\\GetStructDir.ps1\"", + "lineNumber": 9 + }, + { + "lineNumber": 10 + }, + { + "text": "if not exist \"%CONFIG_PATH%\" (", + "lineNumber": 11 + }, + { + "text": " echo [ERROR] config.json not found at %CONFIG_PATH%", + "lineNumber": 12 + }, + { + "text": " echo Please run ConfigLoader.ps1 to deploy helper files.", + "lineNumber": 13 + }, + { + "text": " exit /b 1", + "lineNumber": 14 + }, + { + "text": ")", + "lineNumber": 15 + }, + { + "lineNumber": 16 + }, + { + "text": "if not exist \"%GET_STRUCT_DIR%\" (", + "lineNumber": 17 + }, + { + "text": " echo [ERROR] GetStructDir.ps1 not found at %GET_STRUCT_DIR%", + "lineNumber": 18 + }, + { + "text": " echo Please run ConfigLoader.ps1 to deploy helper files.", + "lineNumber": 19 + }, + { + "text": " exit /b 1", + "lineNumber": 20 + }, + { + "text": ")", + "lineNumber": 21 + }, + { + "lineNumber": 22 + }, + { + "text": "for /f \"usebackq delims=\" %%I in (`powershell -NoProfile -ExecutionPolicy Bypass -Command ^", + "lineNumber": 23 + }, + { + "text": " \"Set-StrictMode -Version Latest; $structDir = & '%GET_STRUCT_DIR%' -ProjectRoot '%PROJ_ROOT%'; if (-not $structDir) { throw \\\"Failed to get structDir from GetStructDir.ps1\\\" }; $pyPath = Join-Path $structDir 'zip_sequences.py'; if (-not (Test-Path -LiteralPath $pyPath)) { throw \\\"zip_sequences.py not found at $pyPath\\\" }; Write-Output $pyPath\"`) do set \"PY_SCRIPT=%%~I\"", + "lineNumber": 24 + }, + { + "lineNumber": 25 + }, + { + "text": "if not defined PY_SCRIPT (", + "lineNumber": 26 + }, + { + "text": " echo [ERROR] Unable to resolve zip_sequences.py path from config.", + "lineNumber": 27 + }, + { + "text": " exit /b 1", + "lineNumber": 28 + }, + { + "text": ")", + "lineNumber": 29 + }, + { + "lineNumber": 30 + }, + { + "text": "pushd \"%PROJ_ROOT%\" >nul 2>&1", + "lineNumber": 31 + }, + { + "lineNumber": 32 + }, + { + "text": "python \"%PY_SCRIPT%\" --verbose %*", + "lineNumber": 33 + }, + { + "text": "set \"ERR=!ERRORLEVEL!\"", + "lineNumber": 34 + }, + { + "lineNumber": 35 + }, + { + "text": "popd >nul 2>&1", + "lineNumber": 36 + }, + { + "lineNumber": 37 + }, + { + "text": "if !ERR! NEQ 0 (", + "lineNumber": 38 + }, + { + "text": " echo Failed to update render sequence archives ^(exit code !ERR!^).", + "lineNumber": 39 + }, + { + "text": " exit /b !ERR!", + "lineNumber": 40 + }, + { + "text": ")", + "lineNumber": 41 + }, + { + "lineNumber": 42 + }, + { + "text": "exit /b 0", + "lineNumber": 43 + } + ] + }, + "score": 0.11689490079879761 + }, + { + "codeBlock": { + "relativeWorkspacePath": ".\\Renders\\UpdateSequences.bat", + "range": { + "startPosition": { + "line": 31 + }, + "endPosition": { + "line": 64 + } + }, + "contents": "if not exist \"%CONFIG_PATH%\" (\n echo [ERROR] config.json not found at %CONFIG_PATH%\n if defined project_config (\n echo Also checked: %project_config%\n )\n echo Please run ConfigLoader.ps1 to deploy helper files.\n exit /b 1\n)\n\nset \"GET_STRUCT_DIR=%CONFIG_DIR%\\GetStructDir.ps1\"\n\nif not exist \"%GET_STRUCT_DIR%\" (\n echo [ERROR] GetStructDir.ps1 not found at %GET_STRUCT_DIR%\n echo Please run ConfigLoader.ps1 to deploy helper files.\n exit /b 1\n)\n\nfor /f \"usebackq delims=\" %%I in (`powershell -NoProfile -ExecutionPolicy Bypass -Command ^\n \"Set-StrictMode -Version Latest; $structDir = & '%GET_STRUCT_DIR%' -ProjectRoot '%PROJ_ROOT%'; if (-not $structDir) { throw \\\"Failed to get structDir from GetStructDir.ps1\\\" }; $ps1Path = Join-Path $structDir 'UpdateSequences.ps1'; if (-not (Test-Path -LiteralPath $ps1Path)) { throw \\\"UpdateSequences.ps1 not found at $ps1Path\\\" }; Write-Output $ps1Path\"`) do set \"ps1=%%I\"\n\nif not defined ps1 (\n echo [ERROR] Unable to resolve UpdateSequences.ps1 path from config.\n exit /b 1\n)\n\necho Running PowerShell update script...\npowershell -NoProfile -ExecutionPolicy Bypass -File \"%ps1%\"\nset \"rc=%errorlevel%\"\necho PowerShell exited with RC=%rc%\necho Done.\npause >nul\nexit /b %rc%", + "signatures": {}, + "detailedLines": [ + { + "text": "if not exist \"%CONFIG_PATH%\" (", + "lineNumber": 33 + }, + { + "text": " echo [ERROR] config.json not found at %CONFIG_PATH%", + "lineNumber": 34 + }, + { + "text": " if defined project_config (", + "lineNumber": 35 + }, + { + "text": " echo Also checked: %project_config%", + "lineNumber": 36 + }, + { + "text": " )", + "lineNumber": 37 + }, + { + "text": " echo Please run ConfigLoader.ps1 to deploy helper files.", + "lineNumber": 38 + }, + { + "text": " exit /b 1", + "lineNumber": 39 + }, + { + "text": ")", + "lineNumber": 40 + }, + { + "lineNumber": 41 + }, + { + "text": "set \"GET_STRUCT_DIR=%CONFIG_DIR%\\GetStructDir.ps1\"", + "lineNumber": 42 + }, + { + "lineNumber": 43 + }, + { + "text": "if not exist \"%GET_STRUCT_DIR%\" (", + "lineNumber": 44 + }, + { + "text": " echo [ERROR] GetStructDir.ps1 not found at %GET_STRUCT_DIR%", + "lineNumber": 45 + }, + { + "text": " echo Please run ConfigLoader.ps1 to deploy helper files.", + "lineNumber": 46 + }, + { + "text": " exit /b 1", + "lineNumber": 47 + }, + { + "text": ")", + "lineNumber": 48 + }, + { + "lineNumber": 49 + }, + { + "text": "for /f \"usebackq delims=\" %%I in (`powershell -NoProfile -ExecutionPolicy Bypass -Command ^", + "lineNumber": 50 + }, + { + "text": " \"Set-StrictMode -Version Latest; $structDir = & '%GET_STRUCT_DIR%' -ProjectRoot '%PROJ_ROOT%'; if (-not $structDir) { throw \\\"Failed to get structDir from GetStructDir.ps1\\\" }; $ps1Path = Join-Path $structDir 'UpdateSequences.ps1'; if (-not (Test-Path -LiteralPath $ps1Path)) { throw \\\"UpdateSequences.ps1 not found at $ps1Path\\\" }; Write-Output $ps1Path\"`) do set \"ps1=%%I\"", + "lineNumber": 51 + }, + { + "lineNumber": 52 + }, + { + "text": "if not defined ps1 (", + "lineNumber": 53 + }, + { + "text": " echo [ERROR] Unable to resolve UpdateSequences.ps1 path from config.", + "lineNumber": 54 + }, + { + "text": " exit /b 1", + "lineNumber": 55 + }, + { + "text": ")", + "lineNumber": 56 + }, + { + "lineNumber": 57 + }, + { + "text": "echo Running PowerShell update script...", + "lineNumber": 58 + }, + { + "text": "powershell -NoProfile -ExecutionPolicy Bypass -File \"%ps1%\"", + "lineNumber": 59 + }, + { + "text": "set \"rc=%errorlevel%\"", + "lineNumber": 60 + }, + { + "text": "echo PowerShell exited with RC=%rc%", + "lineNumber": 61 + }, + { + "text": "echo Done.", + "lineNumber": 62 + }, + { + "text": "pause >nul", + "lineNumber": 63 + }, + { + "text": "exit /b %rc%", + "lineNumber": 64 + } + ] + }, + "score": 0.10405699908733368 + }, + { + "codeBlock": { + "relativeWorkspacePath": ".\\README.md", + "range": { + "startPosition": {}, + "endPosition": { + "line": 15, + "column": 110 + } + }, + "contents": "# Shorts GigaProject\n\nA git project for my 2025 stream clips.\n\n## FreddyEpstein\n\nSources:\n\n* ~~[Glamrock Freddy by Amqerica](https://www.deviantart.com/amqerica/art/FNAF-Blender-Glamrock-Freddy-RELEASE-SB-908174870)~~\n* [Security Breach Model Pack by DravenJV01](https://www.deviantart.com/dravenjv01/art/FNAF-Security-Breach-Models-Blender-2-9-918173924)\n* [Atrium by DravenJV01](https://www.deviantart.com/dravenjv01/art/Blender-2-9-FNAF-SB-Atrium-Port-924450287)\n* Green Rooms by DravenJV01\n * [Roxy](https://www.deviantart.com/dravenjv01/art/FNaF-Security-Breach-Roxanne-s-Greenroom-2-9-905396856https:/)\n * [Monty](https://www.deviantart.com/dravenjv01/art/FNaF-Security-Breach-Monty-s-Greenroom-2-9-905396973https:/)\n * [Others](https://drive.google.com/drive/folders/1xze9QLcttoWOYvmnZ5S0_KG5eaDaWXpx)\n* [Laptop by Polara 3D](https://www.blenderkit.com/asset-gallery-detail/39134e2f-be5b-471d-ae59-a04286a01132/)", + "signatures": {}, + "detailedLines": [ + { + "text": "# Shorts GigaProject", + "lineNumber": 1 + }, + { + "lineNumber": 2 + }, + { + "text": "A git project for my 2025 stream clips.", + "lineNumber": 3 + }, + { + "lineNumber": 4 + }, + { + "text": "## FreddyEpstein", + "lineNumber": 5 + }, + { + "lineNumber": 6 + }, + { + "text": "Sources:", + "lineNumber": 7 + }, + { + "lineNumber": 8 + }, + { + "text": "* ~~[Glamrock Freddy by Amqerica](https://www.deviantart.com/amqerica/art/FNAF-Blender-Glamrock-Freddy-RELEASE-SB-908174870)~~", + "lineNumber": 9 + }, + { + "text": "* [Security Breach Model Pack by DravenJV01](https://www.deviantart.com/dravenjv01/art/FNAF-Security-Breach-Models-Blender-2-9-918173924)", + "lineNumber": 10 + }, + { + "text": "* [Atrium by DravenJV01](https://www.deviantart.com/dravenjv01/art/Blender-2-9-FNAF-SB-Atrium-Port-924450287)", + "lineNumber": 11 + }, + { + "text": "* Green Rooms by DravenJV01", + "lineNumber": 12 + }, + { + "text": " * [Roxy](https://www.deviantart.com/dravenjv01/art/FNaF-Security-Breach-Roxanne-s-Greenroom-2-9-905396856https:/)", + "lineNumber": 13 + }, + { + "text": " * [Monty](https://www.deviantart.com/dravenjv01/art/FNaF-Security-Breach-Monty-s-Greenroom-2-9-905396973https:/)", + "lineNumber": 14 + }, + { + "text": " * [Others](https://drive.google.com/drive/folders/1xze9QLcttoWOYvmnZ5S0_KG5eaDaWXpx)", + "lineNumber": 15 + }, + { + "text": "* [Laptop by Polara 3D](https://www.blenderkit.com/asset-gallery-detail/39134e2f-be5b-471d-ae59-a04286a01132/)", + "lineNumber": 16 + } + ] + }, + "score": 0.0940820574760437 + }, + { + "codeBlock": { + "relativeWorkspacePath": ".\\.gitignore", + "range": { + "startPosition": {}, + "endPosition": { + "line": 126, + "column": 4 + } + }, + "contents": "# Blender Studio Git Management - .gitignore\n\n# Blender auto-save files\n*.blend1\n*.blend2\n*.blend3\n*.blend4\n*.blend5\n*.blend6\n*.blend7\n*.blend8\n*.blend9\n*.blend10\n*.blend11\n*.blend12\n*.blend13\n*.blend14\n*.blend15\n*.blend16\n*.blend17\n*.blend18\n*.blend19\n*.blend20\n*.blend21\n*.blend22\n*.blend23\n*.blend24\n*.blend25\n*.blend26\n*.blend27\n*.blend28\n*.blend29\n*.blend30\n*.blend31\n*.blend32\n\n# Blender cache and temporary files\n*.swp\n*.swo\n*~\n*.tmp\n*.temp\nBL_proxy/\n\n# OS generated files\n.DS_Store\n.DS_Store?\n._*\n.Spotlight-V100\n.Trashes\nehthumbs.db\nThumbs.db\ndesktop.ini\n\n# Editor files\n.vscode/\n.idea/\n*.swp\n*.swo\n*~\n\n# Large media files (uncomment if you want to exclude rendered outputs)\n# *.mp4\n# *.avi\n# *.mov\n# *.png\n# *.jpg\n# *.jpeg\n# *.exr\n# *.hdr\n# *.tiff\n# *.tga\n\n# Audio files (uncomment if excluding)\n# *.wav\n# *.mp3\n# *.aac\n# *.ogg\n\n# Log files\n*.log\n\n# Python cache\n__pycache__/\n*.pyc\n*.pyo\n*.pyd\n.Python\n\n# Node modules (if using any web tools)\nnode_modules/\n\n# Environment files\n.env\n.env.local\n.env.development.local\n.env.test.local\n.env.production.local\n\n# Backup files\n*.bak\n*.backup\n*.old\n\n# Temporary files\ntemp/\ntmp/\ncache/ \n\nRenders/**\n!Renders/_zipped/\n!Renders/_zipped/**\n!Renders/**/\n!Renders/**/*.bat\n!Renders/**/*.log\nseq/\n\n# Premiere\n*.prlock\nAdobe Premiere Pro Video Previews/\nAdobe Premiere Pro Audio Previews/\nAdobe Premiere Pro (Beta) Video Previews/\nAdobe Premiere Pro (Beta) Audio Previews/\nfootage/\nplates/\n\nRnR/", + "signatures": {}, + "detailedLines": [ + { + "text": "# Blender Studio Git Management - .gitignore", + "lineNumber": 1 + }, + { + "lineNumber": 2 + }, + { + "text": "# Blender auto-save files", + "lineNumber": 3 + }, + { + "text": "*.blend1", + "lineNumber": 4 + }, + { + "text": "*.blend2", + "lineNumber": 5 + }, + { + "text": "*.blend3", + "lineNumber": 6 + }, + { + "text": "*.blend4", + "lineNumber": 7 + }, + { + "text": "*.blend5", + "lineNumber": 8 + }, + { + "text": "*.blend6", + "lineNumber": 9 + }, + { + "text": "*.blend7", + "lineNumber": 10 + }, + { + "text": "*.blend8", + "lineNumber": 11 + }, + { + "text": "*.blend9", + "lineNumber": 12 + }, + { + "text": "*.blend10", + "lineNumber": 13 + }, + { + "text": "*.blend11", + "lineNumber": 14 + }, + { + "text": "*.blend12", + "lineNumber": 15 + }, + { + "text": "*.blend13", + "lineNumber": 16 + }, + { + "text": "*.blend14", + "lineNumber": 17 + }, + { + "text": "*.blend15", + "lineNumber": 18 + }, + { + "text": "*.blend16", + "lineNumber": 19 + }, + { + "text": "*.blend17", + "lineNumber": 20 + }, + { + "text": "*.blend18", + "lineNumber": 21 + }, + { + "text": "*.blend19", + "lineNumber": 22 + }, + { + "text": "*.blend20", + "lineNumber": 23 + }, + { + "text": "*.blend21", + "lineNumber": 24 + }, + { + "text": "*.blend22", + "lineNumber": 25 + }, + { + "text": "*.blend23", + "lineNumber": 26 + }, + { + "text": "*.blend24", + "lineNumber": 27 + }, + { + "text": "*.blend25", + "lineNumber": 28 + }, + { + "text": "*.blend26", + "lineNumber": 29 + }, + { + "text": "*.blend27", + "lineNumber": 30 + }, + { + "text": "*.blend28", + "lineNumber": 31 + }, + { + "text": "*.blend29", + "lineNumber": 32 + }, + { + "text": "*.blend30", + "lineNumber": 33 + }, + { + "text": "*.blend31", + "lineNumber": 34 + }, + { + "text": "*.blend32", + "lineNumber": 35 + }, + { + "lineNumber": 36 + }, + { + "text": "# Blender cache and temporary files", + "lineNumber": 37 + }, + { + "text": "*.swp", + "lineNumber": 38 + }, + { + "text": "*.swo", + "lineNumber": 39 + }, + { + "text": "*~", + "lineNumber": 40 + }, + { + "text": "*.tmp", + "lineNumber": 41 + }, + { + "text": "*.temp", + "lineNumber": 42 + }, + { + "text": "BL_proxy/", + "lineNumber": 43 + }, + { + "lineNumber": 44 + }, + { + "text": "# OS generated files", + "lineNumber": 45 + }, + { + "text": ".DS_Store", + "lineNumber": 46 + }, + { + "text": ".DS_Store?", + "lineNumber": 47 + }, + { + "text": "._*", + "lineNumber": 48 + }, + { + "text": ".Spotlight-V100", + "lineNumber": 49 + }, + { + "text": ".Trashes", + "lineNumber": 50 + }, + { + "text": "ehthumbs.db", + "lineNumber": 51 + }, + { + "text": "Thumbs.db", + "lineNumber": 52 + }, + { + "text": "desktop.ini", + "lineNumber": 53 + }, + { + "lineNumber": 54 + }, + { + "text": "# Editor files", + "lineNumber": 55 + }, + { + "text": ".vscode/", + "lineNumber": 56 + }, + { + "text": ".idea/", + "lineNumber": 57 + }, + { + "text": "*.swp", + "lineNumber": 58 + }, + { + "text": "*.swo", + "lineNumber": 59 + }, + { + "text": "*~", + "lineNumber": 60 + }, + { + "lineNumber": 61 + }, + { + "text": "# Large media files (uncomment if you want to exclude rendered outputs)", + "lineNumber": 62 + }, + { + "text": "# *.mp4", + "lineNumber": 63 + }, + { + "text": "# *.avi", + "lineNumber": 64 + }, + { + "text": "# *.mov", + "lineNumber": 65 + }, + { + "text": "# *.png", + "lineNumber": 66 + }, + { + "text": "# *.jpg", + "lineNumber": 67 + }, + { + "text": "# *.jpeg", + "lineNumber": 68 + }, + { + "text": "# *.exr", + "lineNumber": 69 + }, + { + "text": "# *.hdr", + "lineNumber": 70 + }, + { + "text": "# *.tiff", + "lineNumber": 71 + }, + { + "text": "# *.tga", + "lineNumber": 72 + }, + { + "lineNumber": 73 + }, + { + "text": "# Audio files (uncomment if excluding)", + "lineNumber": 74 + }, + { + "text": "# *.wav", + "lineNumber": 75 + }, + { + "text": "# *.mp3", + "lineNumber": 76 + }, + { + "text": "# *.aac", + "lineNumber": 77 + }, + { + "text": "# *.ogg", + "lineNumber": 78 + }, + { + "lineNumber": 79 + }, + { + "text": "# Log files", + "lineNumber": 80 + }, + { + "text": "*.log", + "lineNumber": 81 + }, + { + "lineNumber": 82 + }, + { + "text": "# Python cache", + "lineNumber": 83 + }, + { + "text": "__pycache__/", + "lineNumber": 84 + }, + { + "text": "*.pyc", + "lineNumber": 85 + }, + { + "text": "*.pyo", + "lineNumber": 86 + }, + { + "text": "*.pyd", + "lineNumber": 87 + }, + { + "text": ".Python", + "lineNumber": 88 + }, + { + "lineNumber": 89 + }, + { + "text": "# Node modules (if using any web tools)", + "lineNumber": 90 + }, + { + "text": "node_modules/", + "lineNumber": 91 + }, + { + "lineNumber": 92 + }, + { + "text": "# Environment files", + "lineNumber": 93 + }, + { + "text": ".env", + "lineNumber": 94 + }, + { + "text": ".env.local", + "lineNumber": 95 + }, + { + "text": ".env.development.local", + "lineNumber": 96 + }, + { + "text": ".env.test.local", + "lineNumber": 97 + }, + { + "text": ".env.production.local", + "lineNumber": 98 + }, + { + "lineNumber": 99 + }, + { + "text": "# Backup files", + "lineNumber": 100 + }, + { + "text": "*.bak", + "lineNumber": 101 + }, + { + "text": "*.backup", + "lineNumber": 102 + }, + { + "text": "*.old", + "lineNumber": 103 + }, + { + "lineNumber": 104 + }, + { + "text": "# Temporary files", + "lineNumber": 105 + }, + { + "text": "temp/", + "lineNumber": 106 + }, + { + "text": "tmp/", + "lineNumber": 107 + }, + { + "text": "cache/ ", + "lineNumber": 108 + }, + { + "lineNumber": 109 + }, + { + "text": "Renders/**", + "lineNumber": 110 + }, + { + "text": "!Renders/_zipped/", + "lineNumber": 111 + }, + { + "text": "!Renders/_zipped/**", + "lineNumber": 112 + }, + { + "text": "!Renders/**/", + "lineNumber": 113 + }, + { + "text": "!Renders/**/*.bat", + "lineNumber": 114 + }, + { + "text": "!Renders/**/*.log", + "lineNumber": 115 + }, + { + "text": "seq/", + "lineNumber": 116 + }, + { + "lineNumber": 117 + }, + { + "text": "# Premiere", + "lineNumber": 118 + }, + { + "text": "*.prlock", + "lineNumber": 119 + }, + { + "text": "Adobe Premiere Pro Video Previews/", + "lineNumber": 120 + }, + { + "text": "Adobe Premiere Pro Audio Previews/", + "lineNumber": 121 + }, + { + "text": "Adobe Premiere Pro (Beta) Video Previews/", + "lineNumber": 122 + }, + { + "text": "Adobe Premiere Pro (Beta) Audio Previews/", + "lineNumber": 123 + }, + { + "text": "footage/", + "lineNumber": 124 + }, + { + "text": "plates/", + "lineNumber": 125 + }, + { + "lineNumber": 126 + }, + { + "text": "RnR/", + "lineNumber": 127 + } + ] + }, + "score": 0.08366996049880981 + }, + { + "codeBlock": { + "relativeWorkspacePath": ".\\Assets\\Blends\\blender_assets.cats.txt", + "range": { + "startPosition": {}, + "endPosition": { + "line": 11 + } + }, + "contents": "# This is an Asset Catalog Definition file for Blender.\n#\n# Empty lines and lines starting with `#` will be ignored.\n# The first non-ignored line should be the version indicator.\n# Other lines are of the format \"UUID:catalog/path/for/assets:simple catalog name\"\n\nVERSION 1\n\n0139c8f8-b738-47f6-aa0e-c5be2a944203:Char:Char\ne269b716-3bf9-451f-970f-305347f56952:Env:Env\nac0593da-29e3-4791-a96a-57074938ef26:Prop:Prop", + "signatures": {}, + "detailedLines": [ + { + "text": "# This is an Asset Catalog Definition file for Blender.", + "lineNumber": 1 + }, + { + "text": "#", + "lineNumber": 2 + }, + { + "text": "# Empty lines and lines starting with `#` will be ignored.", + "lineNumber": 3 + }, + { + "text": "# The first non-ignored line should be the version indicator.", + "lineNumber": 4 + }, + { + "text": "# Other lines are of the format \"UUID:catalog/path/for/assets:simple catalog name\"", + "lineNumber": 5 + }, + { + "lineNumber": 6 + }, + { + "text": "VERSION 1", + "lineNumber": 7 + }, + { + "lineNumber": 8 + }, + { + "text": "0139c8f8-b738-47f6-aa0e-c5be2a944203:Char:Char", + "lineNumber": 9 + }, + { + "text": "e269b716-3bf9-451f-970f-305347f56952:Env:Env", + "lineNumber": 10 + }, + { + "text": "ac0593da-29e3-4791-a96a-57074938ef26:Prop:Prop", + "lineNumber": 11 + } + ] + }, + "score": 0.07927525043487549 + }, + { + "codeBlock": { + "relativeWorkspacePath": ".\\Renders\\UpdateSequences.bat", + "range": { + "startPosition": {}, + "endPosition": { + "line": 34 + } + }, + "contents": "@echo off\nsetlocal EnableExtensions\n\nset \"script_dir=%~dp0\"\nset \"current_dir=%CD%\"\nset \"PROJ_ROOT=\"\n\nREM First, check project level (one directory up from current) - most common case\nfor %%I in (\"%current_dir%..\") do set \"project_level=%%~fI\"\nset \"project_config=%project_level%\\.config\\config.json\"\nif exist \"%project_config%\" (\n set \"PROJ_ROOT=%project_level%\"\n)\n\nREM If not found at project level, search up from current working directory\nif not defined PROJ_ROOT (\n for /f \"usebackq delims=\" %%I in (`powershell -NoProfile -ExecutionPolicy Bypass -Command \"Set-StrictMode -Version Latest; $dir = '%current_dir%'; $found = $null; while ($dir -and -not $found) { $configPath = Join-Path $dir '.config\\config.json'; if (Test-Path -LiteralPath $configPath) { $found = $dir; break }; $parent = Split-Path -Parent $dir; if ($parent -eq $dir) { break }; $dir = $parent }; if ($found) { Write-Output $found } else { Write-Output '' }\"`) do set \"PROJ_ROOT=%%I\"\n)\n\nREM If still not found, try searching from script location\nif not defined PROJ_ROOT (\n for /f \"usebackq delims=\" %%I in (`powershell -NoProfile -ExecutionPolicy Bypass -Command \"Set-StrictMode -Version Latest; $dir = '%script_dir%'; $found = $null; while ($dir -and -not $found) { $configPath = Join-Path $dir '.config\\config.json'; if (Test-Path -LiteralPath $configPath) { $found = $dir; break }; $parent = Split-Path -Parent $dir; if ($parent -eq $dir) { break }; $dir = $parent }; if ($found) { Write-Output $found } else { Write-Output '' }\"`) do set \"PROJ_ROOT=%%I\"\n)\n\nREM Fallback: try original logic (script in 3 ProjectStructure)\nif not defined PROJ_ROOT (\n for %%I in (\"%script_dir%..\\..\") do set \"PROJ_ROOT=%%~fI\"\n)\n\nset \"CONFIG_DIR=%PROJ_ROOT%\\.config\"\nset \"CONFIG_PATH=%CONFIG_DIR%\\config.json\"\n\nif not exist \"%CONFIG_PATH%\" (\n echo [ERROR] config.json not found at %CONFIG_PATH%", + "signatures": {}, + "detailedLines": [ + { + "text": "@echo off", + "lineNumber": 1 + }, + { + "text": "setlocal EnableExtensions", + "lineNumber": 2 + }, + { + "lineNumber": 3 + }, + { + "text": "set \"script_dir=%~dp0\"", + "lineNumber": 4 + }, + { + "text": "set \"current_dir=%CD%\"", + "lineNumber": 5 + }, + { + "text": "set \"PROJ_ROOT=\"", + "lineNumber": 6 + }, + { + "lineNumber": 7 + }, + { + "text": "REM First, check project level (one directory up from current) - most common case", + "lineNumber": 8 + }, + { + "text": "for %%I in (\"%current_dir%..\") do set \"project_level=%%~fI\"", + "lineNumber": 9 + }, + { + "text": "set \"project_config=%project_level%\\.config\\config.json\"", + "lineNumber": 10 + }, + { + "text": "if exist \"%project_config%\" (", + "lineNumber": 11 + }, + { + "text": " set \"PROJ_ROOT=%project_level%\"", + "lineNumber": 12 + }, + { + "text": ")", + "lineNumber": 13 + }, + { + "lineNumber": 14 + }, + { + "text": "REM If not found at project level, search up from current working directory", + "lineNumber": 15 + }, + { + "text": "if not defined PROJ_ROOT (", + "lineNumber": 16 + }, + { + "text": " for /f \"usebackq delims=\" %%I in (`powershell -NoProfile -ExecutionPolicy Bypass -Command \"Set-StrictMode -Version Latest; $dir = '%current_dir%'; $found = $null; while ($dir -and -not $found) { $configPath = Join-Path $dir '.config\\config.json'; if (Test-Path -LiteralPath $configPath) { $found = $dir; break }; $parent = Split-Path -Parent $dir; if ($parent -eq $dir) { break }; $dir = $parent }; if ($found) { Write-Output $found } else { Write-Output '' }\"`) do set \"PROJ_ROOT=%%I\"", + "lineNumber": 17 + }, + { + "text": ")", + "lineNumber": 18 + }, + { + "lineNumber": 19 + }, + { + "text": "REM If still not found, try searching from script location", + "lineNumber": 20 + }, + { + "text": "if not defined PROJ_ROOT (", + "lineNumber": 21 + }, + { + "text": " for /f \"usebackq delims=\" %%I in (`powershell -NoProfile -ExecutionPolicy Bypass -Command \"Set-StrictMode -Version Latest; $dir = '%script_dir%'; $found = $null; while ($dir -and -not $found) { $configPath = Join-Path $dir '.config\\config.json'; if (Test-Path -LiteralPath $configPath) { $found = $dir; break }; $parent = Split-Path -Parent $dir; if ($parent -eq $dir) { break }; $dir = $parent }; if ($found) { Write-Output $found } else { Write-Output '' }\"`) do set \"PROJ_ROOT=%%I\"", + "lineNumber": 22 + }, + { + "text": ")", + "lineNumber": 23 + }, + { + "lineNumber": 24 + }, + { + "text": "REM Fallback: try original logic (script in 3 ProjectStructure)", + "lineNumber": 25 + }, + { + "text": "if not defined PROJ_ROOT (", + "lineNumber": 26 + }, + { + "text": " for %%I in (\"%script_dir%..\\..\") do set \"PROJ_ROOT=%%~fI\"", + "lineNumber": 27 + }, + { + "text": ")", + "lineNumber": 28 + }, + { + "lineNumber": 29 + }, + { + "text": "set \"CONFIG_DIR=%PROJ_ROOT%\\.config\"", + "lineNumber": 30 + }, + { + "text": "set \"CONFIG_PATH=%CONFIG_DIR%\\config.json\"", + "lineNumber": 31 + }, + { + "lineNumber": 32 + }, + { + "text": "if not exist \"%CONFIG_PATH%\" (", + "lineNumber": 33 + }, + { + "text": " echo [ERROR] config.json not found at %CONFIG_PATH%", + "lineNumber": 34 + } + ] + }, + "score": 0.07237845659255981 + }, + { + "codeBlock": { + "relativeWorkspacePath": ".\\Assets\\DOJ\\index.html", + "range": { + "startPosition": { + "line": 324 + }, + "endPosition": { + "line": 360 + } + }, + "contents": " <li><a href=\"#\">Employment</a></li>\n </ul>\n </nav>\n\n <!-- Main content area (blank) -->\n <div class=\"main-content\">\n <div class=\"zip-file-container\">\n <div class=\"zip-file-icon\">\n <div class=\"zip-file-label\">EpsteinFiles.zip</div>\n </div>\n <button class=\"upload-button\" id=\"uploadBtn\">UPLOAD</button>\n <div class=\"progress-container\" id=\"progressContainer\">\n <div class=\"progress-bar-wrapper\">\n <div class=\"progress-bar\" id=\"progressBar\"></div>\n </div>\n </div>\n </div>\n </div>\n\n <script>\n const uploadBtn = document.getElementById('uploadBtn');\n const progressContainer = document.getElementById('progressContainer');\n const progressBar = document.getElementById('progressBar');\n\n uploadBtn.addEventListener('click', function() {\n // Disable button\n uploadBtn.disabled = true;\n uploadBtn.textContent = 'UPLOADING...';\n\n // Show progress bar\n progressContainer.classList.add('show');\n progressBar.style.width = '0%';\n progressBar.textContent = '0%';\n\n // Simulate upload progress\n let progress = 0;", + "signatures": {}, + "detailedLines": [ + { + "text": " <li><a href=\"#\">Employment</a></li>", + "lineNumber": 325 + }, + { + "text": " </ul>", + "lineNumber": 326 + }, + { + "text": " </nav>", + "lineNumber": 327 + }, + { + "lineNumber": 328 + }, + { + "text": " <!-- Main content area (blank) -->", + "lineNumber": 329 + }, + { + "text": " <div class=\"main-content\">", + "lineNumber": 330 + }, + { + "text": " <div class=\"zip-file-container\">", + "lineNumber": 331 + }, + { + "text": " <div class=\"zip-file-icon\">", + "lineNumber": 332 + }, + { + "text": " <div class=\"zip-file-label\">EpsteinFiles.zip</div>", + "lineNumber": 333 + }, + { + "text": " </div>", + "lineNumber": 334 + }, + { + "text": " <button class=\"upload-button\" id=\"uploadBtn\">UPLOAD</button>", + "lineNumber": 335 + }, + { + "text": " <div class=\"progress-container\" id=\"progressContainer\">", + "lineNumber": 336 + }, + { + "text": " <div class=\"progress-bar-wrapper\">", + "lineNumber": 337 + }, + { + "text": " <div class=\"progress-bar\" id=\"progressBar\"></div>", + "lineNumber": 338 + }, + { + "text": " </div>", + "lineNumber": 339 + }, + { + "text": " </div>", + "lineNumber": 340 + }, + { + "text": " </div>", + "lineNumber": 341 + }, + { + "text": " </div>", + "lineNumber": 342 + }, + { + "lineNumber": 343 + }, + { + "text": " <script>", + "lineNumber": 344 + }, + { + "text": " const uploadBtn = document.getElementById('uploadBtn');", + "lineNumber": 345 + }, + { + "text": " const progressContainer = document.getElementById('progressContainer');", + "lineNumber": 346 + }, + { + "text": " const progressBar = document.getElementById('progressBar');", + "lineNumber": 347 + }, + { + "lineNumber": 348 + }, + { + "text": " uploadBtn.addEventListener('click', function() {", + "lineNumber": 349 + }, + { + "text": " // Disable button", + "lineNumber": 350 + }, + { + "text": " uploadBtn.disabled = true;", + "lineNumber": 351 + }, + { + "text": " uploadBtn.textContent = 'UPLOADING...';", + "lineNumber": 352 + }, + { + "lineNumber": 353 + }, + { + "text": " // Show progress bar", + "lineNumber": 354 + }, + { + "text": " progressContainer.classList.add('show');", + "lineNumber": 355 + }, + { + "text": " progressBar.style.width = '0%';", + "lineNumber": 356 + }, + { + "text": " progressBar.textContent = '0%';", + "lineNumber": 357 + }, + { + "lineNumber": 358 + }, + { + "text": " // Simulate upload progress", + "lineNumber": 359 + }, + { + "text": " let progress = 0;", + "lineNumber": 360 + } + ] + }, + "score": 0.07026959955692291 + }, + { + "codeBlock": { + "relativeWorkspacePath": ".\\.config\\GetStructDir.ps1", + "range": { + "startPosition": {}, + "endPosition": { + "line": 33 + } + }, + "contents": "# Simple helper script to get structDir from project config.json\n# Reads config.json from .config folder in project root\n\nparam(\n [string]$ProjectRoot\n)\n\nSet-StrictMode -Version Latest\n$ErrorActionPreference = 'Stop'\n\nif ([string]::IsNullOrWhiteSpace($ProjectRoot)) {\n # Try to determine project root from script location\n if ($PSScriptRoot) {\n $ProjectRoot = Split-Path -Parent $PSScriptRoot\n }\n elseif ($MyInvocation.MyCommand.Path) {\n $ProjectRoot = Split-Path -Parent (Split-Path -Parent $MyInvocation.MyCommand.Path)\n }\n else {\n Write-Error \"Unable to determine project root. Please provide -ProjectRoot parameter.\"\n exit 1\n }\n}\n\n$configPath = Join-Path -Path $ProjectRoot -ChildPath '.config\\config.json'\n\nif (-not (Test-Path -LiteralPath $configPath -PathType Leaf)) {\n Write-Error \"config.json not found at: $configPath\"\n exit 1\n}\n\ntry {\n $config = Get-Content -LiteralPath $configPath -Raw -ErrorAction Stop | ConvertFrom-Json", + "signatures": {}, + "detailedLines": [ + { + "text": "# Simple helper script to get structDir from project config.json", + "lineNumber": 1 + }, + { + "text": "# Reads config.json from .config folder in project root", + "lineNumber": 2 + }, + { + "lineNumber": 3 + }, + { + "text": "param(", + "lineNumber": 4 + }, + { + "text": " [string]$ProjectRoot", + "lineNumber": 5 + }, + { + "text": ")", + "lineNumber": 6 + }, + { + "lineNumber": 7 + }, + { + "text": "Set-StrictMode -Version Latest", + "lineNumber": 8 + }, + { + "text": "$ErrorActionPreference = 'Stop'", + "lineNumber": 9 + }, + { + "lineNumber": 10 + }, + { + "text": "if ([string]::IsNullOrWhiteSpace($ProjectRoot)) {", + "lineNumber": 11 + }, + { + "text": " # Try to determine project root from script location", + "lineNumber": 12 + }, + { + "text": " if ($PSScriptRoot) {", + "lineNumber": 13 + }, + { + "text": " $ProjectRoot = Split-Path -Parent $PSScriptRoot", + "lineNumber": 14 + }, + { + "text": " }", + "lineNumber": 15 + }, + { + "text": " elseif ($MyInvocation.MyCommand.Path) {", + "lineNumber": 16 + }, + { + "text": " $ProjectRoot = Split-Path -Parent (Split-Path -Parent $MyInvocation.MyCommand.Path)", + "lineNumber": 17 + }, + { + "text": " }", + "lineNumber": 18 + }, + { + "text": " else {", + "lineNumber": 19 + }, + { + "text": " Write-Error \"Unable to determine project root. Please provide -ProjectRoot parameter.\"", + "lineNumber": 20 + }, + { + "text": " exit 1", + "lineNumber": 21 + }, + { + "text": " }", + "lineNumber": 22 + }, + { + "text": "}", + "lineNumber": 23 + }, + { + "lineNumber": 24 + }, + { + "text": "$configPath = Join-Path -Path $ProjectRoot -ChildPath '.config\\config.json'", + "lineNumber": 25 + }, + { + "lineNumber": 26 + }, + { + "text": "if (-not (Test-Path -LiteralPath $configPath -PathType Leaf)) {", + "lineNumber": 27 + }, + { + "text": " Write-Error \"config.json not found at: $configPath\"", + "lineNumber": 28 + }, + { + "text": " exit 1", + "lineNumber": 29 + }, + { + "text": "}", + "lineNumber": 30 + }, + { + "lineNumber": 31 + }, + { + "text": "try {", + "lineNumber": 32 + }, + { + "text": " $config = Get-Content -LiteralPath $configPath -Raw -ErrorAction Stop | ConvertFrom-Json", + "lineNumber": 33 + } + ] + }, + "score": 0.04480915889143944 + }, + { + "codeBlock": { + "relativeWorkspacePath": ".\\.gitattributes", + "range": { + "startPosition": {}, + "endPosition": { + "line": 53 + } + }, + "contents": "# Git LFS attributes configuration\n# All listed file types will be tracked by Git LFS\n\n# Video files\n*.avi filter=lfs diff=lfs merge=lfs -text\n*.mkv filter=lfs diff=lfs merge=lfs -text\n*.mov filter=lfs diff=lfs merge=lfs -text\n*.MOV filter=lfs diff=lfs merge=lfs -text\n*.mp4 filter=lfs diff=lfs merge=lfs -text\n*.webm filter=lfs diff=lfs merge=lfs -text\n\n# Image files\n*.bmp filter=lfs diff=lfs merge=lfs -text\n*.exr filter=lfs diff=lfs merge=lfs -text\n*.gif filter=lfs diff=lfs merge=lfs -text\n*.hdr filter=lfs diff=lfs merge=lfs -text\n*.jpg filter=lfs diff=lfs merge=lfs -text\n*.jpeg filter=lfs diff=lfs merge=lfs -text\n*.png filter=lfs diff=lfs merge=lfs -text\n*.tga filter=lfs diff=lfs merge=lfs -text\n*.tif filter=lfs diff=lfs merge=lfs -text\n*.tiff filter=lfs diff=lfs merge=lfs -text\n*.webp filter=lfs diff=lfs merge=lfs -text\n\n# 3D/CG files\n*.3ds filter=lfs diff=lfs merge=lfs -text\n*.abc filter=lfs diff=lfs merge=lfs -text\n*.blend filter=lfs diff=lfs merge=lfs -text\n*.blend1 filter=lfs diff=lfs merge=lfs -text\n*.blend2 filter=lfs diff=lfs merge=lfs -text\n*.bvh filter=lfs diff=lfs merge=lfs -text\n*.bvh.gz filter=lfs diff=lfs merge=lfs -text\n*.c4d filter=lfs diff=lfs merge=lfs -text\n*.dae filter=lfs diff=lfs merge=lfs -text\n*.fbx filter=lfs diff=lfs merge=lfs -text\n*.fbxkey filter=lfs diff=lfs merge=lfs -text\n*.ma filter=lfs diff=lfs merge=lfs -text\n*.max filter=lfs diff=lfs merge=lfs -text\n*.mb filter=lfs diff=lfs merge=lfs -text\n*.obj filter=lfs diff=lfs merge=lfs -text\n*.usd filter=lfs diff=lfs merge=lfs -text\n*.usdz filter=lfs diff=lfs merge=lfs -text\n*.vdb filter=lfs diff=lfs merge=lfs -text\n*.bphys filter=lfs diff=lfs merge=lfs -text\n*.bobj filter=lfs diff=lfs merge=lfs -text\n*.bvel filter=lfs diff=lfs merge=lfs -text\n*.bpointcache filter=lfs diff=lfs merge=lfs -text\n*.blob filter=lfs diff=lfs merge=lfs -text\n*.unitypackage filter=lfs diff=lfs merge=lfs -text\n\n# Houdini files\n*.hiplc filter=lfs diff=lfs merge=lfs -text\n*.bgeo filter=lfs diff=lfs merge=lfs -text", + "signatures": {}, + "detailedLines": [ + { + "text": "# Git LFS attributes configuration", + "lineNumber": 1 + }, + { + "text": "# All listed file types will be tracked by Git LFS", + "lineNumber": 2 + }, + { + "lineNumber": 3 + }, + { + "text": "# Video files", + "lineNumber": 4 + }, + { + "text": "*.avi filter=lfs diff=lfs merge=lfs -text", + "lineNumber": 5 + }, + { + "text": "*.mkv filter=lfs diff=lfs merge=lfs -text", + "lineNumber": 6 + }, + { + "text": "*.mov filter=lfs diff=lfs merge=lfs -text", + "lineNumber": 7 + }, + { + "text": "*.MOV filter=lfs diff=lfs merge=lfs -text", + "lineNumber": 8 + }, + { + "text": "*.mp4 filter=lfs diff=lfs merge=lfs -text", + "lineNumber": 9 + }, + { + "text": "*.webm filter=lfs diff=lfs merge=lfs -text", + "lineNumber": 10 + }, + { + "lineNumber": 11 + }, + { + "text": "# Image files", + "lineNumber": 12 + }, + { + "text": "*.bmp filter=lfs diff=lfs merge=lfs -text", + "lineNumber": 13 + }, + { + "text": "*.exr filter=lfs diff=lfs merge=lfs -text", + "lineNumber": 14 + }, + { + "text": "*.gif filter=lfs diff=lfs merge=lfs -text", + "lineNumber": 15 + }, + { + "text": "*.hdr filter=lfs diff=lfs merge=lfs -text", + "lineNumber": 16 + }, + { + "text": "*.jpg filter=lfs diff=lfs merge=lfs -text", + "lineNumber": 17 + }, + { + "text": "*.jpeg filter=lfs diff=lfs merge=lfs -text", + "lineNumber": 18 + }, + { + "text": "*.png filter=lfs diff=lfs merge=lfs -text", + "lineNumber": 19 + }, + { + "text": "*.tga filter=lfs diff=lfs merge=lfs -text", + "lineNumber": 20 + }, + { + "text": "*.tif filter=lfs diff=lfs merge=lfs -text", + "lineNumber": 21 + }, + { + "text": "*.tiff filter=lfs diff=lfs merge=lfs -text", + "lineNumber": 22 + }, + { + "text": "*.webp filter=lfs diff=lfs merge=lfs -text", + "lineNumber": 23 + }, + { + "lineNumber": 24 + }, + { + "text": "# 3D/CG files", + "lineNumber": 25 + }, + { + "text": "*.3ds filter=lfs diff=lfs merge=lfs -text", + "lineNumber": 26 + }, + { + "text": "*.abc filter=lfs diff=lfs merge=lfs -text", + "lineNumber": 27 + }, + { + "text": "*.blend filter=lfs diff=lfs merge=lfs -text", + "lineNumber": 28 + }, + { + "text": "*.blend1 filter=lfs diff=lfs merge=lfs -text", + "lineNumber": 29 + }, + { + "text": "*.blend2 filter=lfs diff=lfs merge=lfs -text", + "lineNumber": 30 + }, + { + "text": "*.bvh filter=lfs diff=lfs merge=lfs -text", + "lineNumber": 31 + }, + { + "text": "*.bvh.gz filter=lfs diff=lfs merge=lfs -text", + "lineNumber": 32 + }, + { + "text": "*.c4d filter=lfs diff=lfs merge=lfs -text", + "lineNumber": 33 + }, + { + "text": "*.dae filter=lfs diff=lfs merge=lfs -text", + "lineNumber": 34 + }, + { + "text": "*.fbx filter=lfs diff=lfs merge=lfs -text", + "lineNumber": 35 + }, + { + "text": "*.fbxkey filter=lfs diff=lfs merge=lfs -text", + "lineNumber": 36 + }, + { + "text": "*.ma filter=lfs diff=lfs merge=lfs -text", + "lineNumber": 37 + }, + { + "text": "*.max filter=lfs diff=lfs merge=lfs -text", + "lineNumber": 38 + }, + { + "text": "*.mb filter=lfs diff=lfs merge=lfs -text", + "lineNumber": 39 + }, + { + "text": "*.obj filter=lfs diff=lfs merge=lfs -text", + "lineNumber": 40 + }, + { + "text": "*.usd filter=lfs diff=lfs merge=lfs -text", + "lineNumber": 41 + }, + { + "text": "*.usdz filter=lfs diff=lfs merge=lfs -text", + "lineNumber": 42 + }, + { + "text": "*.vdb filter=lfs diff=lfs merge=lfs -text", + "lineNumber": 43 + }, + { + "text": "*.bphys filter=lfs diff=lfs merge=lfs -text", + "lineNumber": 44 + }, + { + "text": "*.bobj filter=lfs diff=lfs merge=lfs -text", + "lineNumber": 45 + }, + { + "text": "*.bvel filter=lfs diff=lfs merge=lfs -text", + "lineNumber": 46 + }, + { + "text": "*.bpointcache filter=lfs diff=lfs merge=lfs -text", + "lineNumber": 47 + }, + { + "text": "*.blob filter=lfs diff=lfs merge=lfs -text", + "lineNumber": 48 + }, + { + "text": "*.unitypackage filter=lfs diff=lfs merge=lfs -text", + "lineNumber": 49 + }, + { + "lineNumber": 50 + }, + { + "text": "# Houdini files", + "lineNumber": 51 + }, + { + "text": "*.hiplc filter=lfs diff=lfs merge=lfs -text", + "lineNumber": 52 + }, + { + "text": "*.bgeo filter=lfs diff=lfs merge=lfs -text", + "lineNumber": 53 + } + ] + }, + "score": 0.04056793078780174 + }, + { + "codeBlock": { + "relativeWorkspacePath": ".\\.gitattributes", + "range": { + "startPosition": { + "line": 51 + }, + "endPosition": { + "line": 115 + } + }, + "contents": "*.hiplc filter=lfs diff=lfs merge=lfs -text\n*.bgeo filter=lfs diff=lfs merge=lfs -text\n*.bgeo.sc filter=lfs diff=lfs merge=lfs -text\n\n# Flip Fluids cache files\n*.data filter=lfs diff=lfs merge=lfs -text\n*.sqlite3 filter=lfs diff=lfs merge=lfs -text\n*.ffp3 filter=lfs diff=lfs merge=lfs -text\n\n# Substance files\n*.sbs filter=lfs diff=lfs merge=lfs -text\n*.sbsar filter=lfs diff=lfs merge=lfs -text\n*.spp filter=lfs diff=lfs merge=lfs -text\n\n# Audio files\n*.mp3 filter=lfs diff=lfs merge=lfs -text\n*.wav filter=lfs diff=lfs merge=lfs -text\n*.m4a filter=lfs diff=lfs merge=lfs -text\n*.aac filter=lfs diff=lfs merge=lfs -text\n*.ogg filter=lfs diff=lfs merge=lfs -text\n*.flac filter=lfs diff=lfs merge=lfs -text\n\n# Archive/Compression files\n*.7z filter=lfs diff=lfs merge=lfs -text\n*.bz2 filter=lfs diff=lfs merge=lfs -text\n*.gz filter=lfs diff=lfs merge=lfs -text\n*.rar filter=lfs diff=lfs merge=lfs -text\n*.tar filter=lfs diff=lfs merge=lfs -text\n*.zip filter=lfs diff=lfs merge=lfs -text\n\n# Documents\n*.docx filter=lfs diff=lfs merge=lfs -text\n*.xlsx filter=lfs diff=lfs merge=lfs -text\n*.eps filter=lfs diff=lfs merge=lfs -text\n*.pdf filter=lfs diff=lfs merge=lfs -text\n\n# Adobe files\n*.aegraphic filter=lfs diff=lfs merge=lfs -text\n*.aep filter=lfs diff=lfs merge=lfs -text\n*.prel filter=lfs diff=lfs merge=lfs -text\n*.prin filter=lfs diff=lfs merge=lfs -text\n*.prmf filter=lfs diff=lfs merge=lfs -text\n*.prproj filter=lfs diff=lfs merge=lfs -text\n*.ai filter=lfs diff=lfs merge=lfs -text\n*.psd filter=lfs diff=lfs merge=lfs -text\n\n# Davinci Resolve files\n*.dpx filter=lfs diff=lfs merge=lfs -text\n*.drp filter=lfs diff=lfs merge=lfs -text\n\n# Data files\n*.h5 filter=lfs diff=lfs merge=lfs -text\n*.hdf5 filter=lfs diff=lfs merge=lfs -text\n\n# Other\n*.uni filter=lfs diff=lfs merge=lfs -text\n*.pdn filter=lfs diff=lfs merge=lfs -text\n*.pur filter=lfs diff=lfs merge=lfs -text\n*.db filter=lfs diff=lfs merge=lfs -text\n\n# Python files\n*.npz filter=lfs diff=lfs merge=lfs -text\n\n# Adobe Alternatives", + "signatures": {}, + "detailedLines": [ + { + "text": "*.hiplc filter=lfs diff=lfs merge=lfs -text", + "lineNumber": 52 + }, + { + "text": "*.bgeo filter=lfs diff=lfs merge=lfs -text", + "lineNumber": 53 + }, + { + "text": "*.bgeo.sc filter=lfs diff=lfs merge=lfs -text", + "lineNumber": 54 + }, + { + "lineNumber": 55 + }, + { + "text": "# Flip Fluids cache files", + "lineNumber": 56 + }, + { + "text": "*.data filter=lfs diff=lfs merge=lfs -text", + "lineNumber": 57 + }, + { + "text": "*.sqlite3 filter=lfs diff=lfs merge=lfs -text", + "lineNumber": 58 + }, + { + "text": "*.ffp3 filter=lfs diff=lfs merge=lfs -text", + "lineNumber": 59 + }, + { + "lineNumber": 60 + }, + { + "text": "# Substance files", + "lineNumber": 61 + }, + { + "text": "*.sbs filter=lfs diff=lfs merge=lfs -text", + "lineNumber": 62 + }, + { + "text": "*.sbsar filter=lfs diff=lfs merge=lfs -text", + "lineNumber": 63 + }, + { + "text": "*.spp filter=lfs diff=lfs merge=lfs -text", + "lineNumber": 64 + }, + { + "lineNumber": 65 + }, + { + "text": "# Audio files", + "lineNumber": 66 + }, + { + "text": "*.mp3 filter=lfs diff=lfs merge=lfs -text", + "lineNumber": 67 + }, + { + "text": "*.wav filter=lfs diff=lfs merge=lfs -text", + "lineNumber": 68 + }, + { + "text": "*.m4a filter=lfs diff=lfs merge=lfs -text", + "lineNumber": 69 + }, + { + "text": "*.aac filter=lfs diff=lfs merge=lfs -text", + "lineNumber": 70 + }, + { + "text": "*.ogg filter=lfs diff=lfs merge=lfs -text", + "lineNumber": 71 + }, + { + "text": "*.flac filter=lfs diff=lfs merge=lfs -text", + "lineNumber": 72 + }, + { + "lineNumber": 73 + }, + { + "text": "# Archive/Compression files", + "lineNumber": 74 + }, + { + "text": "*.7z filter=lfs diff=lfs merge=lfs -text", + "lineNumber": 75 + }, + { + "text": "*.bz2 filter=lfs diff=lfs merge=lfs -text", + "lineNumber": 76 + }, + { + "text": "*.gz filter=lfs diff=lfs merge=lfs -text", + "lineNumber": 77 + }, + { + "text": "*.rar filter=lfs diff=lfs merge=lfs -text", + "lineNumber": 78 + }, + { + "text": "*.tar filter=lfs diff=lfs merge=lfs -text", + "lineNumber": 79 + }, + { + "text": "*.zip filter=lfs diff=lfs merge=lfs -text", + "lineNumber": 80 + }, + { + "lineNumber": 81 + }, + { + "text": "# Documents", + "lineNumber": 82 + }, + { + "text": "*.docx filter=lfs diff=lfs merge=lfs -text", + "lineNumber": 83 + }, + { + "text": "*.xlsx filter=lfs diff=lfs merge=lfs -text", + "lineNumber": 84 + }, + { + "text": "*.eps filter=lfs diff=lfs merge=lfs -text", + "lineNumber": 85 + }, + { + "text": "*.pdf filter=lfs diff=lfs merge=lfs -text", + "lineNumber": 86 + }, + { + "lineNumber": 87 + }, + { + "text": "# Adobe files", + "lineNumber": 88 + }, + { + "text": "*.aegraphic filter=lfs diff=lfs merge=lfs -text", + "lineNumber": 89 + }, + { + "text": "*.aep filter=lfs diff=lfs merge=lfs -text", + "lineNumber": 90 + }, + { + "text": "*.prel filter=lfs diff=lfs merge=lfs -text", + "lineNumber": 91 + }, + { + "text": "*.prin filter=lfs diff=lfs merge=lfs -text", + "lineNumber": 92 + }, + { + "text": "*.prmf filter=lfs diff=lfs merge=lfs -text", + "lineNumber": 93 + }, + { + "text": "*.prproj filter=lfs diff=lfs merge=lfs -text", + "lineNumber": 94 + }, + { + "text": "*.ai filter=lfs diff=lfs merge=lfs -text", + "lineNumber": 95 + }, + { + "text": "*.psd filter=lfs diff=lfs merge=lfs -text", + "lineNumber": 96 + }, + { + "lineNumber": 97 + }, + { + "text": "# Davinci Resolve files", + "lineNumber": 98 + }, + { + "text": "*.dpx filter=lfs diff=lfs merge=lfs -text", + "lineNumber": 99 + }, + { + "text": "*.drp filter=lfs diff=lfs merge=lfs -text", + "lineNumber": 100 + }, + { + "lineNumber": 101 + }, + { + "text": "# Data files", + "lineNumber": 102 + }, + { + "text": "*.h5 filter=lfs diff=lfs merge=lfs -text", + "lineNumber": 103 + }, + { + "text": "*.hdf5 filter=lfs diff=lfs merge=lfs -text", + "lineNumber": 104 + }, + { + "lineNumber": 105 + }, + { + "text": "# Other", + "lineNumber": 106 + }, + { + "text": "*.uni filter=lfs diff=lfs merge=lfs -text", + "lineNumber": 107 + }, + { + "text": "*.pdn filter=lfs diff=lfs merge=lfs -text", + "lineNumber": 108 + }, + { + "text": "*.pur filter=lfs diff=lfs merge=lfs -text", + "lineNumber": 109 + }, + { + "text": "*.db filter=lfs diff=lfs merge=lfs -text", + "lineNumber": 110 + }, + { + "lineNumber": 111 + }, + { + "text": "# Python files", + "lineNumber": 112 + }, + { + "text": "*.npz filter=lfs diff=lfs merge=lfs -text", + "lineNumber": 113 + }, + { + "lineNumber": 114 + }, + { + "text": "# Adobe Alternatives", + "lineNumber": 115 + } + ] + }, + "score": 0.024357600137591362 + }, + { + "codeBlock": { + "relativeWorkspacePath": ".\\Assets\\DOJ\\index.html", + "range": { + "startPosition": { + "line": 356 + }, + "endPosition": { + "line": 382, + "column": 7 + } + }, + "contents": " progressBar.textContent = '0%';\n\n // Simulate upload progress\n let progress = 0;\n const interval = setInterval(() => {\n progress += Math.random() * 15;\n if (progress >= 100) {\n progress = 100;\n clearInterval(interval);\n progressBar.textContent = '100%';\n \n // Reset after a moment\n setTimeout(() => {\n progressContainer.classList.remove('show');\n uploadBtn.disabled = false;\n uploadBtn.textContent = 'UPLOAD';\n progressBar.style.width = '0%';\n }, 1000);\n } else {\n progressBar.style.width = progress + '%';\n progressBar.textContent = Math.round(progress) + '%';\n }\n }, 200);\n });\n </script>\n</body>\n</html>", + "signatures": {}, + "detailedLines": [ + { + "text": " progressBar.textContent = '0%';", + "lineNumber": 357 + }, + { + "lineNumber": 358 + }, + { + "text": " // Simulate upload progress", + "lineNumber": 359 + }, + { + "text": " let progress = 0;", + "lineNumber": 360 + }, + { + "text": " const interval = setInterval(() => {", + "lineNumber": 361 + }, + { + "text": " progress += Math.random() * 15;", + "lineNumber": 362 + }, + { + "text": " if (progress >= 100) {", + "lineNumber": 363 + }, + { + "text": " progress = 100;", + "lineNumber": 364 + }, + { + "text": " clearInterval(interval);", + "lineNumber": 365 + }, + { + "text": " progressBar.textContent = '100%';", + "lineNumber": 366 + }, + { + "text": " ", + "lineNumber": 367 + }, + { + "text": " // Reset after a moment", + "lineNumber": 368 + }, + { + "text": " setTimeout(() => {", + "lineNumber": 369 + }, + { + "text": " progressContainer.classList.remove('show');", + "lineNumber": 370 + }, + { + "text": " uploadBtn.disabled = false;", + "lineNumber": 371 + }, + { + "text": " uploadBtn.textContent = 'UPLOAD';", + "lineNumber": 372 + }, + { + "text": " progressBar.style.width = '0%';", + "lineNumber": 373 + }, + { + "text": " }, 1000);", + "lineNumber": 374 + }, + { + "text": " } else {", + "lineNumber": 375 + }, + { + "text": " progressBar.style.width = progress + '%';", + "lineNumber": 376 + }, + { + "text": " progressBar.textContent = Math.round(progress) + '%';", + "lineNumber": 377 + }, + { + "text": " }", + "lineNumber": 378 + }, + { + "text": " }, 200);", + "lineNumber": 379 + }, + { + "text": " });", + "lineNumber": 380 + }, + { + "text": " </script>", + "lineNumber": 381 + }, + { + "text": "</body>", + "lineNumber": 382 + }, + { + "text": "</html>", + "lineNumber": 383 + } + ] + }, + "score": 0.020785870030522346 + }, + { + "codeBlock": { + "relativeWorkspacePath": ".\\.config\\GetStructDir.ps1", + "range": { + "startPosition": { + "line": 31 + }, + "endPosition": { + "line": 68 + } + }, + "contents": "try {\n $config = Get-Content -LiteralPath $configPath -Raw -ErrorAction Stop | ConvertFrom-Json\n \n if ($config.PSObject.Properties.Name -contains 'structDir') {\n $structDir = $config.structDir\n if ($null -ne $structDir -and ($structDir -isnot [string] -or $structDir.Trim().Length -gt 0)) {\n # If it's an absolute path, resolve it\n if ([System.IO.Path]::IsPathRooted($structDir)) {\n $resolved = Resolve-Path -LiteralPath $structDir -ErrorAction SilentlyContinue\n if ($null -ne $resolved) {\n Write-Output $resolved.Path\n exit 0\n }\n Write-Output $structDir\n exit 0\n }\n # Relative path - resolve relative to config location\n $candidate = Join-Path -Path (Split-Path -Parent $configPath) -ChildPath $structDir\n $resolvedCandidate = Resolve-Path -LiteralPath $candidate -ErrorAction SilentlyContinue\n if ($null -ne $resolvedCandidate) {\n Write-Output $resolvedCandidate.Path\n exit 0\n }\n Write-Output $candidate\n exit 0\n }\n }\n \n # Default: return the directory containing config.json (project root)\n Write-Output $ProjectRoot\n exit 0\n}\ncatch {\n Write-Error \"Failed to read or parse config.json: $($_.Exception.Message)\"\n exit 1\n}", + "signatures": {}, + "detailedLines": [ + { + "text": "try {", + "lineNumber": 32 + }, + { + "text": " $config = Get-Content -LiteralPath $configPath -Raw -ErrorAction Stop | ConvertFrom-Json", + "lineNumber": 33 + }, + { + "text": " ", + "lineNumber": 34 + }, + { + "text": " if ($config.PSObject.Properties.Name -contains 'structDir') {", + "lineNumber": 35 + }, + { + "text": " $structDir = $config.structDir", + "lineNumber": 36 + }, + { + "text": " if ($null -ne $structDir -and ($structDir -isnot [string] -or $structDir.Trim().Length -gt 0)) {", + "lineNumber": 37 + }, + { + "text": " # If it's an absolute path, resolve it", + "lineNumber": 38 + }, + { + "text": " if ([System.IO.Path]::IsPathRooted($structDir)) {", + "lineNumber": 39 + }, + { + "text": " $resolved = Resolve-Path -LiteralPath $structDir -ErrorAction SilentlyContinue", + "lineNumber": 40 + }, + { + "text": " if ($null -ne $resolved) {", + "lineNumber": 41 + }, + { + "text": " Write-Output $resolved.Path", + "lineNumber": 42 + }, + { + "text": " exit 0", + "lineNumber": 43 + }, + { + "text": " }", + "lineNumber": 44 + }, + { + "text": " Write-Output $structDir", + "lineNumber": 45 + }, + { + "text": " exit 0", + "lineNumber": 46 + }, + { + "text": " }", + "lineNumber": 47 + }, + { + "text": " # Relative path - resolve relative to config location", + "lineNumber": 48 + }, + { + "text": " $candidate = Join-Path -Path (Split-Path -Parent $configPath) -ChildPath $structDir", + "lineNumber": 49 + }, + { + "text": " $resolvedCandidate = Resolve-Path -LiteralPath $candidate -ErrorAction SilentlyContinue", + "lineNumber": 50 + }, + { + "text": " if ($null -ne $resolvedCandidate) {", + "lineNumber": 51 + }, + { + "text": " Write-Output $resolvedCandidate.Path", + "lineNumber": 52 + }, + { + "text": " exit 0", + "lineNumber": 53 + }, + { + "text": " }", + "lineNumber": 54 + }, + { + "text": " Write-Output $candidate", + "lineNumber": 55 + }, + { + "text": " exit 0", + "lineNumber": 56 + }, + { + "text": " }", + "lineNumber": 57 + }, + { + "text": " }", + "lineNumber": 58 + }, + { + "text": " ", + "lineNumber": 59 + }, + { + "text": " # Default: return the directory containing config.json (project root)", + "lineNumber": 60 + }, + { + "text": " Write-Output $ProjectRoot", + "lineNumber": 61 + }, + { + "text": " exit 0", + "lineNumber": 62 + }, + { + "text": "}", + "lineNumber": 63 + }, + { + "text": "catch {", + "lineNumber": 64 + }, + { + "text": " Write-Error \"Failed to read or parse config.json: $($_.Exception.Message)\"", + "lineNumber": 65 + }, + { + "text": " exit 1", + "lineNumber": 66 + }, + { + "text": "}", + "lineNumber": 67 + } + ] + }, + "score": 0.0142900999635458 + } + ] +} +``` +Status: **completed** + + +
+
+ +--- + + +MCP tools aren't available. Here's a Python script you can run in Blender's Python console to convert modular parenting to a fixed hierarchy: + + +--- + +Cancelled + +--- + +_**User**_ + +How are they unavailable? + +--- + +_**Agent (model default, mode Agent)**_ + + +Checking available MCP tools: + + +--- + + +
+Tool use: **ripgrep_raw_search** + + +Parameters: + +```json +{ + "pattern": "blender|mcp", + "path": ".", + "caseInsensitive": true +} +``` +Result: + +```json +{ + "success": { + "pattern": "blender|mcp", + "path": ".", + "outputMode": "content", + "workspaceResults": { + "d:\\2025-12-28 ytshorts gigaproj": { + "content": { + "matches": [ + { + "file": ".\\.specstory\\history\\2026-01-13_05-41Z-gimble-live-animation-in-b5-0.md", + "matches": [ + { + "lineNumber": 31, + "content": " - **Blender's Input System**: Configure it in Edit → Preferences → Input" + }, + { + "lineNumber": 39, + "content": "Should I check your Blender scene and set this up, or help configure a specific gimbal device?" + }, + { + "lineNumber": 52, + "content": "Checking the Blender scene to diagnose why Alt+G/S/R isn't working on bones." + }, + { + "lineNumber": 57, + "content": "<tool-use data-tool-type=\"unknown\" data-tool-name=\"mcp-blender-user-blender-get_scene_info\">" + }, + { + "lineNumber": 59, + "content": "<summary>Tool use: **mcp-blender-user-blender-get_scene_info**</summary>" + }, + { + "lineNumber": 70, + "content": " \"serverName\": \"blender\"" + }, + { + "lineNumber": 105, + "content": "<tool-use data-tool-type=\"unknown\" data-tool-name=\"mcp-blender-user-blender-execute_blender_code\">" + }, + { + "lineNumber": 107, + "content": "<summary>Tool use: **mcp-blender-user-blender-execute_blender_code**</summary>" + }, + { + "lineNumber": 116, + "content": " \"name\": \"execute_blender_code\"," + }, + { + "lineNumber": 118, + "content": " \"serverName\": \"blender\"" + }, + { + "lineNumber": 153, + "content": "<tool-use data-tool-type=\"unknown\" data-tool-name=\"mcp-blender-user-blender-execute_blender_code\">" + }, + { + "lineNumber": 155, + "content": "<summary>Tool use: **mcp-blender-user-blender-execute_blender_code**</summary>" + }, + { + "lineNumber": 164, + "content": " \"name\": \"execute_blender_code\"," + }, + { + "lineNumber": 166, + "content": " \"serverName\": \"blender\"" + }, + { + "lineNumber": 182, + "content": " \"result\": \"{\\\"content\\\":[{\\\"type\\\":\\\"text\\\",\\\"text\\\":\\\"Error executing code: Communication error with Blender: Code execution error: 'Action' object has no attribute 'fcurves'\\\"}]}\"" + }, + { + "lineNumber": 201, + "content": "<tool-use data-tool-type=\"unknown\" data-tool-name=\"mcp-blender-user-blender-execute_blender_code\">" + }, + { + "lineNumber": 203, + "content": "<summary>Tool use: **mcp-blender-user-blender-execute_blender_code**</summary>" + }, + { + "lineNumber": 212, + "content": " \"name\": \"execute_blender_code\"," + }, + { + "lineNumber": 214, + "content": " \"serverName\": \"blender\"" + }, + { + "lineNumber": 256, + "content": "<tool-use data-tool-type=\"unknown\" data-tool-name=\"mcp-blender-user-blender-execute_blender_code\">" + } + ] + } + ], + "totalLines": 20, + "totalMatchedLines": 20 + } + } + } + } +} +``` +Status: **completed** + + +
+
+ +--- + + +Using the correct tool names. Fixing the modular parenting: + + +--- + + +
+Tool use: **mcp--** + +Status: **loading** + + +
+
+ +--- + diff --git a/.specstory/history/2026-01-27_01-19Z-alt+r-shortcut-interception.md b/.specstory/history/2026-01-27_01-19Z-alt+r-shortcut-interception.md new file mode 100644 index 0000000..ba627e9 --- /dev/null +++ b/.specstory/history/2026-01-27_01-19Z-alt+r-shortcut-interception.md @@ -0,0 +1,15437 @@ + + + + +# Alt+R shortcut interception (2026-01-27 01:19Z) + +_**User**_ + +Something is impeding my ability to use the shortcut alt+R. I tested by trying to manually set a blender hotkey, I can hit alt and other things, but alt R is being intercepted by something and thus never makes it to blender. + +--- + +_**Agent (model default, mode Agent)**_ + +Checking Cursor/VS Code keybindings and Windows shortcuts that might intercept Alt+R. + + +--- + + +
+Tool use: **semantic_search_full** + + +Parameters: + +```json +{ + "query": "keybindings keyboard shortcuts Alt+R configuration", + "topK": 10, + "explanation": "" +} +``` +Result: + +```json +{ + "codeResults": [ + { + "codeBlock": { + "relativeWorkspacePath": ".\\Renders\\UpdateSequences.bat", + "range": { + "startPosition": {}, + "endPosition": { + "line": 34 + } + }, + "contents": "@echo off\nsetlocal EnableExtensions\n\nset \"script_dir=%~dp0\"\nset \"current_dir=%CD%\"\nset \"PROJ_ROOT=\"\n\nREM First, check project level (one directory up from current) - most common case\nfor %%I in (\"%current_dir%..\") do set \"project_level=%%~fI\"\nset \"project_config=%project_level%\\.config\\config.json\"\nif exist \"%project_config%\" (\n set \"PROJ_ROOT=%project_level%\"\n)\n\nREM If not found at project level, search up from current working directory\nif not defined PROJ_ROOT (\n for /f \"usebackq delims=\" %%I in (`powershell -NoProfile -ExecutionPolicy Bypass -Command \"Set-StrictMode -Version Latest; $dir = '%current_dir%'; $found = $null; while ($dir -and -not $found) { $configPath = Join-Path $dir '.config\\config.json'; if (Test-Path -LiteralPath $configPath) { $found = $dir; break }; $parent = Split-Path -Parent $dir; if ($parent -eq $dir) { break }; $dir = $parent }; if ($found) { Write-Output $found } else { Write-Output '' }\"`) do set \"PROJ_ROOT=%%I\"\n)\n\nREM If still not found, try searching from script location\nif not defined PROJ_ROOT (\n for /f \"usebackq delims=\" %%I in (`powershell -NoProfile -ExecutionPolicy Bypass -Command \"Set-StrictMode -Version Latest; $dir = '%script_dir%'; $found = $null; while ($dir -and -not $found) { $configPath = Join-Path $dir '.config\\config.json'; if (Test-Path -LiteralPath $configPath) { $found = $dir; break }; $parent = Split-Path -Parent $dir; if ($parent -eq $dir) { break }; $dir = $parent }; if ($found) { Write-Output $found } else { Write-Output '' }\"`) do set \"PROJ_ROOT=%%I\"\n)\n\nREM Fallback: try original logic (script in 3 ProjectStructure)\nif not defined PROJ_ROOT (\n for %%I in (\"%script_dir%..\\..\") do set \"PROJ_ROOT=%%~fI\"\n)\n\nset \"CONFIG_DIR=%PROJ_ROOT%\\.config\"\nset \"CONFIG_PATH=%CONFIG_DIR%\\config.json\"\n\nif not exist \"%CONFIG_PATH%\" (\n echo [ERROR] config.json not found at %CONFIG_PATH%", + "signatures": {}, + "detailedLines": [ + { + "text": "@echo off", + "lineNumber": 1 + }, + { + "text": "setlocal EnableExtensions", + "lineNumber": 2 + }, + { + "lineNumber": 3 + }, + { + "text": "set \"script_dir=%~dp0\"", + "lineNumber": 4 + }, + { + "text": "set \"current_dir=%CD%\"", + "lineNumber": 5 + }, + { + "text": "set \"PROJ_ROOT=\"", + "lineNumber": 6 + }, + { + "lineNumber": 7 + }, + { + "text": "REM First, check project level (one directory up from current) - most common case", + "lineNumber": 8 + }, + { + "text": "for %%I in (\"%current_dir%..\") do set \"project_level=%%~fI\"", + "lineNumber": 9 + }, + { + "text": "set \"project_config=%project_level%\\.config\\config.json\"", + "lineNumber": 10 + }, + { + "text": "if exist \"%project_config%\" (", + "lineNumber": 11 + }, + { + "text": " set \"PROJ_ROOT=%project_level%\"", + "lineNumber": 12 + }, + { + "text": ")", + "lineNumber": 13 + }, + { + "lineNumber": 14 + }, + { + "text": "REM If not found at project level, search up from current working directory", + "lineNumber": 15 + }, + { + "text": "if not defined PROJ_ROOT (", + "lineNumber": 16 + }, + { + "text": " for /f \"usebackq delims=\" %%I in (`powershell -NoProfile -ExecutionPolicy Bypass -Command \"Set-StrictMode -Version Latest; $dir = '%current_dir%'; $found = $null; while ($dir -and -not $found) { $configPath = Join-Path $dir '.config\\config.json'; if (Test-Path -LiteralPath $configPath) { $found = $dir; break }; $parent = Split-Path -Parent $dir; if ($parent -eq $dir) { break }; $dir = $parent }; if ($found) { Write-Output $found } else { Write-Output '' }\"`) do set \"PROJ_ROOT=%%I\"", + "lineNumber": 17 + }, + { + "text": ")", + "lineNumber": 18 + }, + { + "lineNumber": 19 + }, + { + "text": "REM If still not found, try searching from script location", + "lineNumber": 20 + }, + { + "text": "if not defined PROJ_ROOT (", + "lineNumber": 21 + }, + { + "text": " for /f \"usebackq delims=\" %%I in (`powershell -NoProfile -ExecutionPolicy Bypass -Command \"Set-StrictMode -Version Latest; $dir = '%script_dir%'; $found = $null; while ($dir -and -not $found) { $configPath = Join-Path $dir '.config\\config.json'; if (Test-Path -LiteralPath $configPath) { $found = $dir; break }; $parent = Split-Path -Parent $dir; if ($parent -eq $dir) { break }; $dir = $parent }; if ($found) { Write-Output $found } else { Write-Output '' }\"`) do set \"PROJ_ROOT=%%I\"", + "lineNumber": 22 + }, + { + "text": ")", + "lineNumber": 23 + }, + { + "lineNumber": 24 + }, + { + "text": "REM Fallback: try original logic (script in 3 ProjectStructure)", + "lineNumber": 25 + }, + { + "text": "if not defined PROJ_ROOT (", + "lineNumber": 26 + }, + { + "text": " for %%I in (\"%script_dir%..\\..\") do set \"PROJ_ROOT=%%~fI\"", + "lineNumber": 27 + }, + { + "text": ")", + "lineNumber": 28 + }, + { + "lineNumber": 29 + }, + { + "text": "set \"CONFIG_DIR=%PROJ_ROOT%\\.config\"", + "lineNumber": 30 + }, + { + "text": "set \"CONFIG_PATH=%CONFIG_DIR%\\config.json\"", + "lineNumber": 31 + }, + { + "lineNumber": 32 + }, + { + "text": "if not exist \"%CONFIG_PATH%\" (", + "lineNumber": 33 + }, + { + "text": " echo [ERROR] config.json not found at %CONFIG_PATH%", + "lineNumber": 34 + } + ] + }, + "score": 0.13953180611133575 + }, + { + "codeBlock": { + "relativeWorkspacePath": ".\\.gitignore", + "range": { + "startPosition": {}, + "endPosition": { + "line": 126, + "column": 4 + } + }, + "contents": "# Blender Studio Git Management - .gitignore\n\n# Blender auto-save files\n*.blend1\n*.blend2\n*.blend3\n*.blend4\n*.blend5\n*.blend6\n*.blend7\n*.blend8\n*.blend9\n*.blend10\n*.blend11\n*.blend12\n*.blend13\n*.blend14\n*.blend15\n*.blend16\n*.blend17\n*.blend18\n*.blend19\n*.blend20\n*.blend21\n*.blend22\n*.blend23\n*.blend24\n*.blend25\n*.blend26\n*.blend27\n*.blend28\n*.blend29\n*.blend30\n*.blend31\n*.blend32\n\n# Blender cache and temporary files\n*.swp\n*.swo\n*~\n*.tmp\n*.temp\nBL_proxy/\n\n# OS generated files\n.DS_Store\n.DS_Store?\n._*\n.Spotlight-V100\n.Trashes\nehthumbs.db\nThumbs.db\ndesktop.ini\n\n# Editor files\n.vscode/\n.idea/\n*.swp\n*.swo\n*~\n\n# Large media files (uncomment if you want to exclude rendered outputs)\n# *.mp4\n# *.avi\n# *.mov\n# *.png\n# *.jpg\n# *.jpeg\n# *.exr\n# *.hdr\n# *.tiff\n# *.tga\n\n# Audio files (uncomment if excluding)\n# *.wav\n# *.mp3\n# *.aac\n# *.ogg\n\n# Log files\n*.log\n\n# Python cache\n__pycache__/\n*.pyc\n*.pyo\n*.pyd\n.Python\n\n# Node modules (if using any web tools)\nnode_modules/\n\n# Environment files\n.env\n.env.local\n.env.development.local\n.env.test.local\n.env.production.local\n\n# Backup files\n*.bak\n*.backup\n*.old\n\n# Temporary files\ntemp/\ntmp/\ncache/ \n\nRenders/**\n!Renders/_zipped/\n!Renders/_zipped/**\n!Renders/**/\n!Renders/**/*.bat\n!Renders/**/*.log\nseq/\n\n# Premiere\n*.prlock\nAdobe Premiere Pro Video Previews/\nAdobe Premiere Pro Audio Previews/\nAdobe Premiere Pro (Beta) Video Previews/\nAdobe Premiere Pro (Beta) Audio Previews/\nfootage/\nplates/\n\nRnR/", + "signatures": {}, + "detailedLines": [ + { + "text": "# Blender Studio Git Management - .gitignore", + "lineNumber": 1 + }, + { + "lineNumber": 2 + }, + { + "text": "# Blender auto-save files", + "lineNumber": 3 + }, + { + "text": "*.blend1", + "lineNumber": 4 + }, + { + "text": "*.blend2", + "lineNumber": 5 + }, + { + "text": "*.blend3", + "lineNumber": 6 + }, + { + "text": "*.blend4", + "lineNumber": 7 + }, + { + "text": "*.blend5", + "lineNumber": 8 + }, + { + "text": "*.blend6", + "lineNumber": 9 + }, + { + "text": "*.blend7", + "lineNumber": 10 + }, + { + "text": "*.blend8", + "lineNumber": 11 + }, + { + "text": "*.blend9", + "lineNumber": 12 + }, + { + "text": "*.blend10", + "lineNumber": 13 + }, + { + "text": "*.blend11", + "lineNumber": 14 + }, + { + "text": "*.blend12", + "lineNumber": 15 + }, + { + "text": "*.blend13", + "lineNumber": 16 + }, + { + "text": "*.blend14", + "lineNumber": 17 + }, + { + "text": "*.blend15", + "lineNumber": 18 + }, + { + "text": "*.blend16", + "lineNumber": 19 + }, + { + "text": "*.blend17", + "lineNumber": 20 + }, + { + "text": "*.blend18", + "lineNumber": 21 + }, + { + "text": "*.blend19", + "lineNumber": 22 + }, + { + "text": "*.blend20", + "lineNumber": 23 + }, + { + "text": "*.blend21", + "lineNumber": 24 + }, + { + "text": "*.blend22", + "lineNumber": 25 + }, + { + "text": "*.blend23", + "lineNumber": 26 + }, + { + "text": "*.blend24", + "lineNumber": 27 + }, + { + "text": "*.blend25", + "lineNumber": 28 + }, + { + "text": "*.blend26", + "lineNumber": 29 + }, + { + "text": "*.blend27", + "lineNumber": 30 + }, + { + "text": "*.blend28", + "lineNumber": 31 + }, + { + "text": "*.blend29", + "lineNumber": 32 + }, + { + "text": "*.blend30", + "lineNumber": 33 + }, + { + "text": "*.blend31", + "lineNumber": 34 + }, + { + "text": "*.blend32", + "lineNumber": 35 + }, + { + "lineNumber": 36 + }, + { + "text": "# Blender cache and temporary files", + "lineNumber": 37 + }, + { + "text": "*.swp", + "lineNumber": 38 + }, + { + "text": "*.swo", + "lineNumber": 39 + }, + { + "text": "*~", + "lineNumber": 40 + }, + { + "text": "*.tmp", + "lineNumber": 41 + }, + { + "text": "*.temp", + "lineNumber": 42 + }, + { + "text": "BL_proxy/", + "lineNumber": 43 + }, + { + "lineNumber": 44 + }, + { + "text": "# OS generated files", + "lineNumber": 45 + }, + { + "text": ".DS_Store", + "lineNumber": 46 + }, + { + "text": ".DS_Store?", + "lineNumber": 47 + }, + { + "text": "._*", + "lineNumber": 48 + }, + { + "text": ".Spotlight-V100", + "lineNumber": 49 + }, + { + "text": ".Trashes", + "lineNumber": 50 + }, + { + "text": "ehthumbs.db", + "lineNumber": 51 + }, + { + "text": "Thumbs.db", + "lineNumber": 52 + }, + { + "text": "desktop.ini", + "lineNumber": 53 + }, + { + "lineNumber": 54 + }, + { + "text": "# Editor files", + "lineNumber": 55 + }, + { + "text": ".vscode/", + "lineNumber": 56 + }, + { + "text": ".idea/", + "lineNumber": 57 + }, + { + "text": "*.swp", + "lineNumber": 58 + }, + { + "text": "*.swo", + "lineNumber": 59 + }, + { + "text": "*~", + "lineNumber": 60 + }, + { + "lineNumber": 61 + }, + { + "text": "# Large media files (uncomment if you want to exclude rendered outputs)", + "lineNumber": 62 + }, + { + "text": "# *.mp4", + "lineNumber": 63 + }, + { + "text": "# *.avi", + "lineNumber": 64 + }, + { + "text": "# *.mov", + "lineNumber": 65 + }, + { + "text": "# *.png", + "lineNumber": 66 + }, + { + "text": "# *.jpg", + "lineNumber": 67 + }, + { + "text": "# *.jpeg", + "lineNumber": 68 + }, + { + "text": "# *.exr", + "lineNumber": 69 + }, + { + "text": "# *.hdr", + "lineNumber": 70 + }, + { + "text": "# *.tiff", + "lineNumber": 71 + }, + { + "text": "# *.tga", + "lineNumber": 72 + }, + { + "lineNumber": 73 + }, + { + "text": "# Audio files (uncomment if excluding)", + "lineNumber": 74 + }, + { + "text": "# *.wav", + "lineNumber": 75 + }, + { + "text": "# *.mp3", + "lineNumber": 76 + }, + { + "text": "# *.aac", + "lineNumber": 77 + }, + { + "text": "# *.ogg", + "lineNumber": 78 + }, + { + "lineNumber": 79 + }, + { + "text": "# Log files", + "lineNumber": 80 + }, + { + "text": "*.log", + "lineNumber": 81 + }, + { + "lineNumber": 82 + }, + { + "text": "# Python cache", + "lineNumber": 83 + }, + { + "text": "__pycache__/", + "lineNumber": 84 + }, + { + "text": "*.pyc", + "lineNumber": 85 + }, + { + "text": "*.pyo", + "lineNumber": 86 + }, + { + "text": "*.pyd", + "lineNumber": 87 + }, + { + "text": ".Python", + "lineNumber": 88 + }, + { + "lineNumber": 89 + }, + { + "text": "# Node modules (if using any web tools)", + "lineNumber": 90 + }, + { + "text": "node_modules/", + "lineNumber": 91 + }, + { + "lineNumber": 92 + }, + { + "text": "# Environment files", + "lineNumber": 93 + }, + { + "text": ".env", + "lineNumber": 94 + }, + { + "text": ".env.local", + "lineNumber": 95 + }, + { + "text": ".env.development.local", + "lineNumber": 96 + }, + { + "text": ".env.test.local", + "lineNumber": 97 + }, + { + "text": ".env.production.local", + "lineNumber": 98 + }, + { + "lineNumber": 99 + }, + { + "text": "# Backup files", + "lineNumber": 100 + }, + { + "text": "*.bak", + "lineNumber": 101 + }, + { + "text": "*.backup", + "lineNumber": 102 + }, + { + "text": "*.old", + "lineNumber": 103 + }, + { + "lineNumber": 104 + }, + { + "text": "# Temporary files", + "lineNumber": 105 + }, + { + "text": "temp/", + "lineNumber": 106 + }, + { + "text": "tmp/", + "lineNumber": 107 + }, + { + "text": "cache/ ", + "lineNumber": 108 + }, + { + "lineNumber": 109 + }, + { + "text": "Renders/**", + "lineNumber": 110 + }, + { + "text": "!Renders/_zipped/", + "lineNumber": 111 + }, + { + "text": "!Renders/_zipped/**", + "lineNumber": 112 + }, + { + "text": "!Renders/**/", + "lineNumber": 113 + }, + { + "text": "!Renders/**/*.bat", + "lineNumber": 114 + }, + { + "text": "!Renders/**/*.log", + "lineNumber": 115 + }, + { + "text": "seq/", + "lineNumber": 116 + }, + { + "lineNumber": 117 + }, + { + "text": "# Premiere", + "lineNumber": 118 + }, + { + "text": "*.prlock", + "lineNumber": 119 + }, + { + "text": "Adobe Premiere Pro Video Previews/", + "lineNumber": 120 + }, + { + "text": "Adobe Premiere Pro Audio Previews/", + "lineNumber": 121 + }, + { + "text": "Adobe Premiere Pro (Beta) Video Previews/", + "lineNumber": 122 + }, + { + "text": "Adobe Premiere Pro (Beta) Audio Previews/", + "lineNumber": 123 + }, + { + "text": "footage/", + "lineNumber": 124 + }, + { + "text": "plates/", + "lineNumber": 125 + }, + { + "lineNumber": 126 + }, + { + "text": "RnR/", + "lineNumber": 127 + } + ] + }, + "score": 0.13731634616851807 + }, + { + "codeBlock": { + "relativeWorkspacePath": ".\\Renders\\ZipSeqArchv.bat", + "range": { + "startPosition": {}, + "endPosition": { + "line": 44 + } + }, + "contents": "@echo off\nsetlocal EnableExtensions EnableDelayedExpansion\n\nset \"REN_DIR=%~dp0\"\nfor %%I in (\"%REN_DIR%..\") do set \"PROJ_ROOT=%%~fI\"\n\nset \"CONFIG_DIR=%PROJ_ROOT%\\.config\"\nset \"CONFIG_PATH=%CONFIG_DIR%\\config.json\"\nset \"GET_STRUCT_DIR=%CONFIG_DIR%\\GetStructDir.ps1\"\n\nif not exist \"%CONFIG_PATH%\" (\n echo [ERROR] config.json not found at %CONFIG_PATH%\n echo Please run ConfigLoader.ps1 to deploy helper files.\n exit /b 1\n)\n\nif not exist \"%GET_STRUCT_DIR%\" (\n echo [ERROR] GetStructDir.ps1 not found at %GET_STRUCT_DIR%\n echo Please run ConfigLoader.ps1 to deploy helper files.\n exit /b 1\n)\n\nfor /f \"usebackq delims=\" %%I in (`powershell -NoProfile -ExecutionPolicy Bypass -Command ^\n \"Set-StrictMode -Version Latest; $structDir = & '%GET_STRUCT_DIR%' -ProjectRoot '%PROJ_ROOT%'; if (-not $structDir) { throw \\\"Failed to get structDir from GetStructDir.ps1\\\" }; $pyPath = Join-Path $structDir 'zip_sequences.py'; if (-not (Test-Path -LiteralPath $pyPath)) { throw \\\"zip_sequences.py not found at $pyPath\\\" }; Write-Output $pyPath\"`) do set \"PY_SCRIPT=%%~I\"\n\nif not defined PY_SCRIPT (\n echo [ERROR] Unable to resolve zip_sequences.py path from config.\n exit /b 1\n)\n\npushd \"%PROJ_ROOT%\" >nul 2>&1\n\npython \"%PY_SCRIPT%\" --verbose %*\nset \"ERR=!ERRORLEVEL!\"\n\npopd >nul 2>&1\n\nif !ERR! NEQ 0 (\n echo Failed to update render sequence archives ^(exit code !ERR!^).\n exit /b !ERR!\n)\n\nexit /b 0", + "signatures": {}, + "detailedLines": [ + { + "text": "@echo off", + "lineNumber": 1 + }, + { + "text": "setlocal EnableExtensions EnableDelayedExpansion", + "lineNumber": 2 + }, + { + "lineNumber": 3 + }, + { + "text": "set \"REN_DIR=%~dp0\"", + "lineNumber": 4 + }, + { + "text": "for %%I in (\"%REN_DIR%..\") do set \"PROJ_ROOT=%%~fI\"", + "lineNumber": 5 + }, + { + "lineNumber": 6 + }, + { + "text": "set \"CONFIG_DIR=%PROJ_ROOT%\\.config\"", + "lineNumber": 7 + }, + { + "text": "set \"CONFIG_PATH=%CONFIG_DIR%\\config.json\"", + "lineNumber": 8 + }, + { + "text": "set \"GET_STRUCT_DIR=%CONFIG_DIR%\\GetStructDir.ps1\"", + "lineNumber": 9 + }, + { + "lineNumber": 10 + }, + { + "text": "if not exist \"%CONFIG_PATH%\" (", + "lineNumber": 11 + }, + { + "text": " echo [ERROR] config.json not found at %CONFIG_PATH%", + "lineNumber": 12 + }, + { + "text": " echo Please run ConfigLoader.ps1 to deploy helper files.", + "lineNumber": 13 + }, + { + "text": " exit /b 1", + "lineNumber": 14 + }, + { + "text": ")", + "lineNumber": 15 + }, + { + "lineNumber": 16 + }, + { + "text": "if not exist \"%GET_STRUCT_DIR%\" (", + "lineNumber": 17 + }, + { + "text": " echo [ERROR] GetStructDir.ps1 not found at %GET_STRUCT_DIR%", + "lineNumber": 18 + }, + { + "text": " echo Please run ConfigLoader.ps1 to deploy helper files.", + "lineNumber": 19 + }, + { + "text": " exit /b 1", + "lineNumber": 20 + }, + { + "text": ")", + "lineNumber": 21 + }, + { + "lineNumber": 22 + }, + { + "text": "for /f \"usebackq delims=\" %%I in (`powershell -NoProfile -ExecutionPolicy Bypass -Command ^", + "lineNumber": 23 + }, + { + "text": " \"Set-StrictMode -Version Latest; $structDir = & '%GET_STRUCT_DIR%' -ProjectRoot '%PROJ_ROOT%'; if (-not $structDir) { throw \\\"Failed to get structDir from GetStructDir.ps1\\\" }; $pyPath = Join-Path $structDir 'zip_sequences.py'; if (-not (Test-Path -LiteralPath $pyPath)) { throw \\\"zip_sequences.py not found at $pyPath\\\" }; Write-Output $pyPath\"`) do set \"PY_SCRIPT=%%~I\"", + "lineNumber": 24 + }, + { + "lineNumber": 25 + }, + { + "text": "if not defined PY_SCRIPT (", + "lineNumber": 26 + }, + { + "text": " echo [ERROR] Unable to resolve zip_sequences.py path from config.", + "lineNumber": 27 + }, + { + "text": " exit /b 1", + "lineNumber": 28 + }, + { + "text": ")", + "lineNumber": 29 + }, + { + "lineNumber": 30 + }, + { + "text": "pushd \"%PROJ_ROOT%\" >nul 2>&1", + "lineNumber": 31 + }, + { + "lineNumber": 32 + }, + { + "text": "python \"%PY_SCRIPT%\" --verbose %*", + "lineNumber": 33 + }, + { + "text": "set \"ERR=!ERRORLEVEL!\"", + "lineNumber": 34 + }, + { + "lineNumber": 35 + }, + { + "text": "popd >nul 2>&1", + "lineNumber": 36 + }, + { + "lineNumber": 37 + }, + { + "text": "if !ERR! NEQ 0 (", + "lineNumber": 38 + }, + { + "text": " echo Failed to update render sequence archives ^(exit code !ERR!^).", + "lineNumber": 39 + }, + { + "text": " exit /b !ERR!", + "lineNumber": 40 + }, + { + "text": ")", + "lineNumber": 41 + }, + { + "lineNumber": 42 + }, + { + "text": "exit /b 0", + "lineNumber": 43 + } + ] + }, + "score": 0.12919500470161438 + }, + { + "codeBlock": { + "relativeWorkspacePath": ".\\TODO.md", + "range": { + "startPosition": {}, + "endPosition": { + "line": 13 + } + }, + "contents": "# TODO\n\n- [ ] freddyEpstein\n - [ ] Blender proj\n - [X] Edit rigs\n - [ ] vanessa\n - [ ] needs bone parenting fix, too\n - [ ] vanessa passed out drunk on the steps next to granddaddy\n - [ ] afton twitches which makes the metal thumping sounds\n - [ ] initial \"our democracy\" - freddy accidentally hitler salutes, squints, glitches, then:\n - [X] ~~double take maybe?~~\n - [ ] gregory follows his arm raising of course\n - [X] \"the fate of our democracy\" = springtrap electoral map i made a while ago", + "signatures": {}, + "detailedLines": [ + { + "text": "# TODO", + "lineNumber": 1 + }, + { + "lineNumber": 2 + }, + { + "text": "- [ ] freddyEpstein", + "lineNumber": 3 + }, + { + "text": " - [ ] Blender proj", + "lineNumber": 4 + }, + { + "text": " - [X] Edit rigs", + "lineNumber": 5 + }, + { + "text": " - [ ] vanessa", + "lineNumber": 6 + }, + { + "text": " - [ ] needs bone parenting fix, too", + "lineNumber": 7 + }, + { + "text": " - [ ] vanessa passed out drunk on the steps next to granddaddy", + "lineNumber": 8 + }, + { + "text": " - [ ] afton twitches which makes the metal thumping sounds", + "lineNumber": 9 + }, + { + "text": " - [ ] initial \"our democracy\" - freddy accidentally hitler salutes, squints, glitches, then:", + "lineNumber": 10 + }, + { + "text": " - [X] ~~double take maybe?~~", + "lineNumber": 11 + }, + { + "text": " - [ ] gregory follows his arm raising of course", + "lineNumber": 12 + }, + { + "text": " - [X] \"the fate of our democracy\" = springtrap electoral map i made a while ago", + "lineNumber": 13 + } + ] + }, + "score": 0.11794789880514145 + }, + { + "codeBlock": { + "relativeWorkspacePath": ".\\.config\\config.json", + "range": { + "startPosition": {}, + "endPosition": { + "line": 6, + "column": 1 + } + }, + "contents": "{\n \"dailyFormat\": \"YYYY-MM-DD\",\n \"structDir\": \"D:\\\\0 ProjectStructure\",\n \"zipper\": \"7z\",\n \"compression\": 0,\n \"Max7zInst\": 0\n}", + "signatures": {}, + "detailedLines": [ + { + "text": "{", + "lineNumber": 1 + }, + { + "text": " \"dailyFormat\": \"YYYY-MM-DD\",", + "lineNumber": 2 + }, + { + "text": " \"structDir\": \"D:\\\\0 ProjectStructure\",", + "lineNumber": 3 + }, + { + "text": " \"zipper\": \"7z\",", + "lineNumber": 4 + }, + { + "text": " \"compression\": 0,", + "lineNumber": 5 + }, + { + "text": " \"Max7zInst\": 0", + "lineNumber": 6 + }, + { + "text": "}", + "lineNumber": 7 + } + ] + }, + "score": 0.11249289661645889 + }, + { + "codeBlock": { + "relativeWorkspacePath": ".\\Renders\\UnzipSeqArchv.bat", + "range": { + "startPosition": {}, + "endPosition": { + "line": 42 + } + }, + "contents": "@echo off\nsetlocal EnableExtensions EnableDelayedExpansion\n\nset \"REN_DIR=%~dp0\"\nfor %%I in (\"%REN_DIR%..\") do set \"PROJ_ROOT=%%~fI\"\n\nset \"CONFIG_DIR=%PROJ_ROOT%\\.config\"\nset \"CONFIG_PATH=%CONFIG_DIR%\\config.json\"\nset \"GET_STRUCT_DIR=%CONFIG_DIR%\\GetStructDir.ps1\"\n\nif not exist \"%CONFIG_PATH%\" (\n echo [ERROR] config.json not found at %CONFIG_PATH%\n echo Please run ConfigLoader.ps1 to deploy helper files.\n exit /b 1\n)\n\nif not exist \"%GET_STRUCT_DIR%\" (\n echo [ERROR] GetStructDir.ps1 not found at %GET_STRUCT_DIR%\n echo Please run ConfigLoader.ps1 to deploy helper files.\n exit /b 1\n)\n\nfor /f \"usebackq delims=\" %%I in (`powershell -NoProfile -ExecutionPolicy Bypass -Command ^\n \"Set-StrictMode -Version Latest; $structDir = & '%GET_STRUCT_DIR%' -ProjectRoot '%PROJ_ROOT%'; if (-not $structDir) { throw \\\"Failed to get structDir from GetStructDir.ps1\\\" }; $pyPath = Join-Path $structDir 'zip_sequences.py'; if (-not (Test-Path -LiteralPath $pyPath)) { throw \\\"zip_sequences.py not found at $pyPath\\\" }; Write-Output $pyPath\"`) do set \"PY_SCRIPT=%%I\"\n\nif not defined PY_SCRIPT (\n echo [ERROR] Unable to resolve zip_sequences.py path from config.\n exit /b 1\n)\n\npushd \"%PROJ_ROOT%\" >nul 2>&1\n\npython \"%PY_SCRIPT%\" --mode expand --verbose %*\nset \"ERR=!ERRORLEVEL!\"\n\nif not \"!ERR!\"==\"0\" (\n echo Failed to expand render sequence archives (exit code !ERR!).\n)\n\npopd >nul 2>&1\nexit /b !ERR!", + "signatures": {}, + "detailedLines": [ + { + "text": "@echo off", + "lineNumber": 1 + }, + { + "text": "setlocal EnableExtensions EnableDelayedExpansion", + "lineNumber": 2 + }, + { + "lineNumber": 3 + }, + { + "text": "set \"REN_DIR=%~dp0\"", + "lineNumber": 4 + }, + { + "text": "for %%I in (\"%REN_DIR%..\") do set \"PROJ_ROOT=%%~fI\"", + "lineNumber": 5 + }, + { + "lineNumber": 6 + }, + { + "text": "set \"CONFIG_DIR=%PROJ_ROOT%\\.config\"", + "lineNumber": 7 + }, + { + "text": "set \"CONFIG_PATH=%CONFIG_DIR%\\config.json\"", + "lineNumber": 8 + }, + { + "text": "set \"GET_STRUCT_DIR=%CONFIG_DIR%\\GetStructDir.ps1\"", + "lineNumber": 9 + }, + { + "lineNumber": 10 + }, + { + "text": "if not exist \"%CONFIG_PATH%\" (", + "lineNumber": 11 + }, + { + "text": " echo [ERROR] config.json not found at %CONFIG_PATH%", + "lineNumber": 12 + }, + { + "text": " echo Please run ConfigLoader.ps1 to deploy helper files.", + "lineNumber": 13 + }, + { + "text": " exit /b 1", + "lineNumber": 14 + }, + { + "text": ")", + "lineNumber": 15 + }, + { + "lineNumber": 16 + }, + { + "text": "if not exist \"%GET_STRUCT_DIR%\" (", + "lineNumber": 17 + }, + { + "text": " echo [ERROR] GetStructDir.ps1 not found at %GET_STRUCT_DIR%", + "lineNumber": 18 + }, + { + "text": " echo Please run ConfigLoader.ps1 to deploy helper files.", + "lineNumber": 19 + }, + { + "text": " exit /b 1", + "lineNumber": 20 + }, + { + "text": ")", + "lineNumber": 21 + }, + { + "lineNumber": 22 + }, + { + "text": "for /f \"usebackq delims=\" %%I in (`powershell -NoProfile -ExecutionPolicy Bypass -Command ^", + "lineNumber": 23 + }, + { + "text": " \"Set-StrictMode -Version Latest; $structDir = & '%GET_STRUCT_DIR%' -ProjectRoot '%PROJ_ROOT%'; if (-not $structDir) { throw \\\"Failed to get structDir from GetStructDir.ps1\\\" }; $pyPath = Join-Path $structDir 'zip_sequences.py'; if (-not (Test-Path -LiteralPath $pyPath)) { throw \\\"zip_sequences.py not found at $pyPath\\\" }; Write-Output $pyPath\"`) do set \"PY_SCRIPT=%%I\"", + "lineNumber": 24 + }, + { + "lineNumber": 25 + }, + { + "text": "if not defined PY_SCRIPT (", + "lineNumber": 26 + }, + { + "text": " echo [ERROR] Unable to resolve zip_sequences.py path from config.", + "lineNumber": 27 + }, + { + "text": " exit /b 1", + "lineNumber": 28 + }, + { + "text": ")", + "lineNumber": 29 + }, + { + "lineNumber": 30 + }, + { + "text": "pushd \"%PROJ_ROOT%\" >nul 2>&1", + "lineNumber": 31 + }, + { + "lineNumber": 32 + }, + { + "text": "python \"%PY_SCRIPT%\" --mode expand --verbose %*", + "lineNumber": 33 + }, + { + "text": "set \"ERR=!ERRORLEVEL!\"", + "lineNumber": 34 + }, + { + "lineNumber": 35 + }, + { + "text": "if not \"!ERR!\"==\"0\" (", + "lineNumber": 36 + }, + { + "text": " echo Failed to expand render sequence archives (exit code !ERR!).", + "lineNumber": 37 + }, + { + "text": ")", + "lineNumber": 38 + }, + { + "lineNumber": 39 + }, + { + "text": "popd >nul 2>&1", + "lineNumber": 40 + }, + { + "text": "exit /b !ERR!", + "lineNumber": 41 + } + ] + }, + "score": 0.11237479746341705 + }, + { + "codeBlock": { + "relativeWorkspacePath": ".\\Renders\\UpdateSequences.bat", + "range": { + "startPosition": { + "line": 31 + }, + "endPosition": { + "line": 64 + } + }, + "contents": "if not exist \"%CONFIG_PATH%\" (\n echo [ERROR] config.json not found at %CONFIG_PATH%\n if defined project_config (\n echo Also checked: %project_config%\n )\n echo Please run ConfigLoader.ps1 to deploy helper files.\n exit /b 1\n)\n\nset \"GET_STRUCT_DIR=%CONFIG_DIR%\\GetStructDir.ps1\"\n\nif not exist \"%GET_STRUCT_DIR%\" (\n echo [ERROR] GetStructDir.ps1 not found at %GET_STRUCT_DIR%\n echo Please run ConfigLoader.ps1 to deploy helper files.\n exit /b 1\n)\n\nfor /f \"usebackq delims=\" %%I in (`powershell -NoProfile -ExecutionPolicy Bypass -Command ^\n \"Set-StrictMode -Version Latest; $structDir = & '%GET_STRUCT_DIR%' -ProjectRoot '%PROJ_ROOT%'; if (-not $structDir) { throw \\\"Failed to get structDir from GetStructDir.ps1\\\" }; $ps1Path = Join-Path $structDir 'UpdateSequences.ps1'; if (-not (Test-Path -LiteralPath $ps1Path)) { throw \\\"UpdateSequences.ps1 not found at $ps1Path\\\" }; Write-Output $ps1Path\"`) do set \"ps1=%%I\"\n\nif not defined ps1 (\n echo [ERROR] Unable to resolve UpdateSequences.ps1 path from config.\n exit /b 1\n)\n\necho Running PowerShell update script...\npowershell -NoProfile -ExecutionPolicy Bypass -File \"%ps1%\"\nset \"rc=%errorlevel%\"\necho PowerShell exited with RC=%rc%\necho Done.\npause >nul\nexit /b %rc%", + "signatures": {}, + "detailedLines": [ + { + "text": "if not exist \"%CONFIG_PATH%\" (", + "lineNumber": 33 + }, + { + "text": " echo [ERROR] config.json not found at %CONFIG_PATH%", + "lineNumber": 34 + }, + { + "text": " if defined project_config (", + "lineNumber": 35 + }, + { + "text": " echo Also checked: %project_config%", + "lineNumber": 36 + }, + { + "text": " )", + "lineNumber": 37 + }, + { + "text": " echo Please run ConfigLoader.ps1 to deploy helper files.", + "lineNumber": 38 + }, + { + "text": " exit /b 1", + "lineNumber": 39 + }, + { + "text": ")", + "lineNumber": 40 + }, + { + "lineNumber": 41 + }, + { + "text": "set \"GET_STRUCT_DIR=%CONFIG_DIR%\\GetStructDir.ps1\"", + "lineNumber": 42 + }, + { + "lineNumber": 43 + }, + { + "text": "if not exist \"%GET_STRUCT_DIR%\" (", + "lineNumber": 44 + }, + { + "text": " echo [ERROR] GetStructDir.ps1 not found at %GET_STRUCT_DIR%", + "lineNumber": 45 + }, + { + "text": " echo Please run ConfigLoader.ps1 to deploy helper files.", + "lineNumber": 46 + }, + { + "text": " exit /b 1", + "lineNumber": 47 + }, + { + "text": ")", + "lineNumber": 48 + }, + { + "lineNumber": 49 + }, + { + "text": "for /f \"usebackq delims=\" %%I in (`powershell -NoProfile -ExecutionPolicy Bypass -Command ^", + "lineNumber": 50 + }, + { + "text": " \"Set-StrictMode -Version Latest; $structDir = & '%GET_STRUCT_DIR%' -ProjectRoot '%PROJ_ROOT%'; if (-not $structDir) { throw \\\"Failed to get structDir from GetStructDir.ps1\\\" }; $ps1Path = Join-Path $structDir 'UpdateSequences.ps1'; if (-not (Test-Path -LiteralPath $ps1Path)) { throw \\\"UpdateSequences.ps1 not found at $ps1Path\\\" }; Write-Output $ps1Path\"`) do set \"ps1=%%I\"", + "lineNumber": 51 + }, + { + "lineNumber": 52 + }, + { + "text": "if not defined ps1 (", + "lineNumber": 53 + }, + { + "text": " echo [ERROR] Unable to resolve UpdateSequences.ps1 path from config.", + "lineNumber": 54 + }, + { + "text": " exit /b 1", + "lineNumber": 55 + }, + { + "text": ")", + "lineNumber": 56 + }, + { + "lineNumber": 57 + }, + { + "text": "echo Running PowerShell update script...", + "lineNumber": 58 + }, + { + "text": "powershell -NoProfile -ExecutionPolicy Bypass -File \"%ps1%\"", + "lineNumber": 59 + }, + { + "text": "set \"rc=%errorlevel%\"", + "lineNumber": 60 + }, + { + "text": "echo PowerShell exited with RC=%rc%", + "lineNumber": 61 + }, + { + "text": "echo Done.", + "lineNumber": 62 + }, + { + "text": "pause >nul", + "lineNumber": 63 + }, + { + "text": "exit /b %rc%", + "lineNumber": 64 + } + ] + }, + "score": 0.10077609866857529 + }, + { + "codeBlock": { + "relativeWorkspacePath": ".\\.config\\GetStructDir.ps1", + "range": { + "startPosition": { + "line": 31 + }, + "endPosition": { + "line": 68 + } + }, + "contents": "try {\n $config = Get-Content -LiteralPath $configPath -Raw -ErrorAction Stop | ConvertFrom-Json\n \n if ($config.PSObject.Properties.Name -contains 'structDir') {\n $structDir = $config.structDir\n if ($null -ne $structDir -and ($structDir -isnot [string] -or $structDir.Trim().Length -gt 0)) {\n # If it's an absolute path, resolve it\n if ([System.IO.Path]::IsPathRooted($structDir)) {\n $resolved = Resolve-Path -LiteralPath $structDir -ErrorAction SilentlyContinue\n if ($null -ne $resolved) {\n Write-Output $resolved.Path\n exit 0\n }\n Write-Output $structDir\n exit 0\n }\n # Relative path - resolve relative to config location\n $candidate = Join-Path -Path (Split-Path -Parent $configPath) -ChildPath $structDir\n $resolvedCandidate = Resolve-Path -LiteralPath $candidate -ErrorAction SilentlyContinue\n if ($null -ne $resolvedCandidate) {\n Write-Output $resolvedCandidate.Path\n exit 0\n }\n Write-Output $candidate\n exit 0\n }\n }\n \n # Default: return the directory containing config.json (project root)\n Write-Output $ProjectRoot\n exit 0\n}\ncatch {\n Write-Error \"Failed to read or parse config.json: $($_.Exception.Message)\"\n exit 1\n}", + "signatures": {}, + "detailedLines": [ + { + "text": "try {", + "lineNumber": 32 + }, + { + "text": " $config = Get-Content -LiteralPath $configPath -Raw -ErrorAction Stop | ConvertFrom-Json", + "lineNumber": 33 + }, + { + "text": " ", + "lineNumber": 34 + }, + { + "text": " if ($config.PSObject.Properties.Name -contains 'structDir') {", + "lineNumber": 35 + }, + { + "text": " $structDir = $config.structDir", + "lineNumber": 36 + }, + { + "text": " if ($null -ne $structDir -and ($structDir -isnot [string] -or $structDir.Trim().Length -gt 0)) {", + "lineNumber": 37 + }, + { + "text": " # If it's an absolute path, resolve it", + "lineNumber": 38 + }, + { + "text": " if ([System.IO.Path]::IsPathRooted($structDir)) {", + "lineNumber": 39 + }, + { + "text": " $resolved = Resolve-Path -LiteralPath $structDir -ErrorAction SilentlyContinue", + "lineNumber": 40 + }, + { + "text": " if ($null -ne $resolved) {", + "lineNumber": 41 + }, + { + "text": " Write-Output $resolved.Path", + "lineNumber": 42 + }, + { + "text": " exit 0", + "lineNumber": 43 + }, + { + "text": " }", + "lineNumber": 44 + }, + { + "text": " Write-Output $structDir", + "lineNumber": 45 + }, + { + "text": " exit 0", + "lineNumber": 46 + }, + { + "text": " }", + "lineNumber": 47 + }, + { + "text": " # Relative path - resolve relative to config location", + "lineNumber": 48 + }, + { + "text": " $candidate = Join-Path -Path (Split-Path -Parent $configPath) -ChildPath $structDir", + "lineNumber": 49 + }, + { + "text": " $resolvedCandidate = Resolve-Path -LiteralPath $candidate -ErrorAction SilentlyContinue", + "lineNumber": 50 + }, + { + "text": " if ($null -ne $resolvedCandidate) {", + "lineNumber": 51 + }, + { + "text": " Write-Output $resolvedCandidate.Path", + "lineNumber": 52 + }, + { + "text": " exit 0", + "lineNumber": 53 + }, + { + "text": " }", + "lineNumber": 54 + }, + { + "text": " Write-Output $candidate", + "lineNumber": 55 + }, + { + "text": " exit 0", + "lineNumber": 56 + }, + { + "text": " }", + "lineNumber": 57 + }, + { + "text": " }", + "lineNumber": 58 + }, + { + "text": " ", + "lineNumber": 59 + }, + { + "text": " # Default: return the directory containing config.json (project root)", + "lineNumber": 60 + }, + { + "text": " Write-Output $ProjectRoot", + "lineNumber": 61 + }, + { + "text": " exit 0", + "lineNumber": 62 + }, + { + "text": "}", + "lineNumber": 63 + }, + { + "text": "catch {", + "lineNumber": 64 + }, + { + "text": " Write-Error \"Failed to read or parse config.json: $($_.Exception.Message)\"", + "lineNumber": 65 + }, + { + "text": " exit 1", + "lineNumber": 66 + }, + { + "text": "}", + "lineNumber": 67 + } + ] + }, + "score": 0.07307785749435425 + }, + { + "codeBlock": { + "relativeWorkspacePath": ".\\.cursorindexingignore", + "range": { + "startPosition": {}, + "endPosition": { + "line": 3 + } + }, + "contents": "# Don't index SpecStory auto-save files, but allow explicit context inclusion via @ references\n.specstory/**", + "signatures": {}, + "detailedLines": [ + { + "text": "# Don't index SpecStory auto-save files, but allow explicit context inclusion via @ references", + "lineNumber": 2 + }, + { + "text": ".specstory/**", + "lineNumber": 3 + } + ] + }, + "score": 0.06791789829730988 + }, + { + "codeBlock": { + "relativeWorkspacePath": ".\\.config\\GetStructDir.ps1", + "range": { + "startPosition": {}, + "endPosition": { + "line": 33 + } + }, + "contents": "# Simple helper script to get structDir from project config.json\n# Reads config.json from .config folder in project root\n\nparam(\n [string]$ProjectRoot\n)\n\nSet-StrictMode -Version Latest\n$ErrorActionPreference = 'Stop'\n\nif ([string]::IsNullOrWhiteSpace($ProjectRoot)) {\n # Try to determine project root from script location\n if ($PSScriptRoot) {\n $ProjectRoot = Split-Path -Parent $PSScriptRoot\n }\n elseif ($MyInvocation.MyCommand.Path) {\n $ProjectRoot = Split-Path -Parent (Split-Path -Parent $MyInvocation.MyCommand.Path)\n }\n else {\n Write-Error \"Unable to determine project root. Please provide -ProjectRoot parameter.\"\n exit 1\n }\n}\n\n$configPath = Join-Path -Path $ProjectRoot -ChildPath '.config\\config.json'\n\nif (-not (Test-Path -LiteralPath $configPath -PathType Leaf)) {\n Write-Error \"config.json not found at: $configPath\"\n exit 1\n}\n\ntry {\n $config = Get-Content -LiteralPath $configPath -Raw -ErrorAction Stop | ConvertFrom-Json", + "signatures": {}, + "detailedLines": [ + { + "text": "# Simple helper script to get structDir from project config.json", + "lineNumber": 1 + }, + { + "text": "# Reads config.json from .config folder in project root", + "lineNumber": 2 + }, + { + "lineNumber": 3 + }, + { + "text": "param(", + "lineNumber": 4 + }, + { + "text": " [string]$ProjectRoot", + "lineNumber": 5 + }, + { + "text": ")", + "lineNumber": 6 + }, + { + "lineNumber": 7 + }, + { + "text": "Set-StrictMode -Version Latest", + "lineNumber": 8 + }, + { + "text": "$ErrorActionPreference = 'Stop'", + "lineNumber": 9 + }, + { + "lineNumber": 10 + }, + { + "text": "if ([string]::IsNullOrWhiteSpace($ProjectRoot)) {", + "lineNumber": 11 + }, + { + "text": " # Try to determine project root from script location", + "lineNumber": 12 + }, + { + "text": " if ($PSScriptRoot) {", + "lineNumber": 13 + }, + { + "text": " $ProjectRoot = Split-Path -Parent $PSScriptRoot", + "lineNumber": 14 + }, + { + "text": " }", + "lineNumber": 15 + }, + { + "text": " elseif ($MyInvocation.MyCommand.Path) {", + "lineNumber": 16 + }, + { + "text": " $ProjectRoot = Split-Path -Parent (Split-Path -Parent $MyInvocation.MyCommand.Path)", + "lineNumber": 17 + }, + { + "text": " }", + "lineNumber": 18 + }, + { + "text": " else {", + "lineNumber": 19 + }, + { + "text": " Write-Error \"Unable to determine project root. Please provide -ProjectRoot parameter.\"", + "lineNumber": 20 + }, + { + "text": " exit 1", + "lineNumber": 21 + }, + { + "text": " }", + "lineNumber": 22 + }, + { + "text": "}", + "lineNumber": 23 + }, + { + "lineNumber": 24 + }, + { + "text": "$configPath = Join-Path -Path $ProjectRoot -ChildPath '.config\\config.json'", + "lineNumber": 25 + }, + { + "lineNumber": 26 + }, + { + "text": "if (-not (Test-Path -LiteralPath $configPath -PathType Leaf)) {", + "lineNumber": 27 + }, + { + "text": " Write-Error \"config.json not found at: $configPath\"", + "lineNumber": 28 + }, + { + "text": " exit 1", + "lineNumber": 29 + }, + { + "text": "}", + "lineNumber": 30 + }, + { + "lineNumber": 31 + }, + { + "text": "try {", + "lineNumber": 32 + }, + { + "text": " $config = Get-Content -LiteralPath $configPath -Raw -ErrorAction Stop | ConvertFrom-Json", + "lineNumber": 33 + } + ] + }, + "score": 0.055728551000356674 + }, + { + "codeBlock": { + "relativeWorkspacePath": ".\\README.md", + "range": { + "startPosition": {}, + "endPosition": { + "line": 15, + "column": 110 + } + }, + "contents": "# Shorts GigaProject\n\nA git project for my 2025 stream clips.\n\n## FreddyEpstein\n\nSources:\n\n* ~~[Glamrock Freddy by Amqerica](https://www.deviantart.com/amqerica/art/FNAF-Blender-Glamrock-Freddy-RELEASE-SB-908174870)~~\n* [Security Breach Model Pack by DravenJV01](https://www.deviantart.com/dravenjv01/art/FNAF-Security-Breach-Models-Blender-2-9-918173924)\n* [Atrium by DravenJV01](https://www.deviantart.com/dravenjv01/art/Blender-2-9-FNAF-SB-Atrium-Port-924450287)\n* Green Rooms by DravenJV01\n * [Roxy](https://www.deviantart.com/dravenjv01/art/FNaF-Security-Breach-Roxanne-s-Greenroom-2-9-905396856https:/)\n * [Monty](https://www.deviantart.com/dravenjv01/art/FNaF-Security-Breach-Monty-s-Greenroom-2-9-905396973https:/)\n * [Others](https://drive.google.com/drive/folders/1xze9QLcttoWOYvmnZ5S0_KG5eaDaWXpx)\n* [Laptop by Polara 3D](https://www.blenderkit.com/asset-gallery-detail/39134e2f-be5b-471d-ae59-a04286a01132/)", + "signatures": {}, + "detailedLines": [ + { + "text": "# Shorts GigaProject", + "lineNumber": 1 + }, + { + "lineNumber": 2 + }, + { + "text": "A git project for my 2025 stream clips.", + "lineNumber": 3 + }, + { + "lineNumber": 4 + }, + { + "text": "## FreddyEpstein", + "lineNumber": 5 + }, + { + "lineNumber": 6 + }, + { + "text": "Sources:", + "lineNumber": 7 + }, + { + "lineNumber": 8 + }, + { + "text": "* ~~[Glamrock Freddy by Amqerica](https://www.deviantart.com/amqerica/art/FNAF-Blender-Glamrock-Freddy-RELEASE-SB-908174870)~~", + "lineNumber": 9 + }, + { + "text": "* [Security Breach Model Pack by DravenJV01](https://www.deviantart.com/dravenjv01/art/FNAF-Security-Breach-Models-Blender-2-9-918173924)", + "lineNumber": 10 + }, + { + "text": "* [Atrium by DravenJV01](https://www.deviantart.com/dravenjv01/art/Blender-2-9-FNAF-SB-Atrium-Port-924450287)", + "lineNumber": 11 + }, + { + "text": "* Green Rooms by DravenJV01", + "lineNumber": 12 + }, + { + "text": " * [Roxy](https://www.deviantart.com/dravenjv01/art/FNaF-Security-Breach-Roxanne-s-Greenroom-2-9-905396856https:/)", + "lineNumber": 13 + }, + { + "text": " * [Monty](https://www.deviantart.com/dravenjv01/art/FNaF-Security-Breach-Monty-s-Greenroom-2-9-905396973https:/)", + "lineNumber": 14 + }, + { + "text": " * [Others](https://drive.google.com/drive/folders/1xze9QLcttoWOYvmnZ5S0_KG5eaDaWXpx)", + "lineNumber": 15 + }, + { + "text": "* [Laptop by Polara 3D](https://www.blenderkit.com/asset-gallery-detail/39134e2f-be5b-471d-ae59-a04286a01132/)", + "lineNumber": 16 + } + ] + }, + "score": 0.053911030292510986 + } + ] +} +``` +Status: **completed** + + +
+
+ +--- + + +
+Tool use: **glob_file_search** • Searched codebase "undefined" • **0** result in **1** directory + +Directory: **undefined** (0 file) + +
+
+ +--- + + +
+Tool use: **glob_file_search** • Searched codebase "undefined" • **0** result in **1** directory + +Directory: **undefined** (0 file) + +
+
+ +--- + + +
Tool use: **read_file_v2** • Read file: D:\2025-12-28 ytshorts gigaproj\.config\config.json + +
+
+ +--- + +Checking Cursor's keybindings and providing steps to identify what's intercepting Alt+R: + + +--- + + +
+ Tool use: **web_search** • Searched web `undefined` • **1** results + +| Title | URL | Chunk | +|-------|-----|-------| +| Web search results for query: Cursor VS Code Alt+R keyboard shortcut default binding | | Links:
1. [Cursor Documentation](https://docs.cursor.com/advanced/keyboard-shortcuts)
2. [Keyboard Shortcuts](https://www.aidoczh.com/cursor/kbd.html)
3. [Keyboard shortcuts for Visual Studio Code](https://code.visualstudio.com/docs/getstarted/keybindings)
4. [Keyboard shortcuts for Visual Studio Code](https://code.visualstudio.com/docs/configure/keybindings)
5. [VS Code & Cursor Shortcuts](https://design.dev/guides/cursor-shortcuts/)

# Alt+R Keyboard Shortcut in Cursor vs VS Code

Based on the search results, there is no default Alt+R binding mentioned in either Cursor or VS Code's documentation.

In **Cursor**, Alt+R is not listed among the documented keyboard shortcuts.[2] The closest relevant shortcuts in Cursor are:
- Cmd+R (or Ctrl+R on Windows) - Create new chat[2]
- Cmd+R then Cmd+S - View all keyboard shortcuts[2]

In **VS Code**, Alt+R is similarly not documented as a default binding in the official keyboard shortcuts reference.[3][4]

If you're looking for a specific function that Alt+R performs in either editor, it may be a custom binding you've set up, an extension-specific binding, or a platform-specific variation not covered in the standard documentation. | + +
+
+ +--- + +Cancelled + +--- + +_**User**_ + +It's not cursor. Cursor's shortcuts are only when the window is active. + +--- + +_**Agent (model default, mode Agent)**_ + + +Since Cursor isn't intercepting it, something else is capturing Alt+R globally. Checking Windows accessibility settings and common apps that might use Alt+R: + + +--- + + +
+ Tool use: **web_search** • Searched web `undefined` • **1** results + +| Title | URL | Chunk | +|-------|-----|-------| +| Web search results for query: Windows 10 Alt+R keyboard shortcut system default what application uses | | Links:
1. [Disable Windows 10 Alt+R and Alt+S](https://answers.microsoft.com/en-us/windows/forum/all/disable-windows-10-altr-and-alts/e2630698-9a1b-4e29-9756-5465f4df90b0)
2. [What is Alt R?](https://www.lenovo.com/us/en/glossary/alt-r/)
3. [List of all Windows 10 keyboard shortcuts: The ultimate guide](https://www.windowscentral.com/best-windows-10-keyboard-shortcuts)
4. [Windows keyboard tips and tricks](https://support.microsoft.com/en-us/windows/windows-keyboard-tips-and-tricks-588e0b72-0fff-6d3f-aeee-6e5116097942)
5. [Keyboard shortcuts in apps](https://support.microsoft.com/en-us/windows/keyboard-shortcuts-in-apps-139014e7-177b-d1f3-eb2e-7298b2599a34)

Based on the search results, Alt+R is not a default Windows 10 system keyboard shortcut with a built-in function.[2]

Alt+R's function varies depending on the context and application you're using:[2] In text editors or word processors, it might open a review tab or trigger a "replace" function. In web browsers, it could refresh the page, though this varies by browser. In programming IDEs, it might run code or open a resource view.

The search results indicate that Alt+R is application-specific rather than a Windows system default.[2] The specific action depends on how the software developers have programmed it. Many applications allow you to customize what Alt+R does, so if it doesn't perform the action you want, you may be able to remap it in that application's settings. | + +
+
+ +--- + + +
Tool use: **run_terminal_command_v2** • Run command: powershell -Command "Get-Process | Where-Object { $_.MainWindowTitle -ne '' } | Select-Object ProcessName, MainWindowTitle | Sort-Object ProcessName | Format-Table -AutoSize" + +```bash +powershell -Command "Get-Process | Where-Object { $_.MainWindowTitle -ne '' } | Select-Object ProcessName, MainWindowTitle | Sort-Object ProcessName | Format-Table -AutoSize" +``` + +``` +.MainWindowTitle : The term '.MainWindowTitle' is not recognized as the name of a cmdlet, function, script file, or +operable program. Check the spelling of the name, or if a path was included, verify that the path is correct and try +again. +At line:1 char:30 ++ Get-Process | Where-Object { .MainWindowTitle -ne '' } | Select-Objec ... ++ ~~~~~~~~~~~~~~~~ + + CategoryInfo : ObjectNotFound: (.MainWindowTitle:String) [], CommandNotFoundException + + FullyQualifiedErrorId : CommandNotFoundException + +.MainWindowTitle : The term '.MainWindowTitle' is not recognized as the name of a cmdlet, function, script file, or +operable program. Check the spelling of the name, or if a path was included, verify that the path is correct and try +again. +At line:1 char:30 ++ Get-Process | Where-Object { .MainWindowTitle -ne '' } | Select-Objec ... ++ ~~~~~~~~~~~~~~~~ + + CategoryInfo : ObjectNotFound: (.MainWindowTitle:String) [], CommandNotFoundException + + FullyQualifiedErrorId : CommandNotFoundException + +.MainWindowTitle : The term '.MainWindowTitle' is not recognized as the name of a cmdlet, function, script file, or +operable program. Check the spelling of the name, or if a path was included, verify that the path is correct and try +again. +At line:1 char:30 ++ Get-Process | Where-Object { .MainWindowTitle -ne '' } | Select-Objec ... ++ ~~~~~~~~~~~~~~~~ + + CategoryInfo : ObjectNotFound: (.MainWindowTitle:String) [], CommandNotFoundException + + FullyQualifiedErrorId : CommandNotFoundException + +.MainWindowTitle : The term '.MainWindowTitle' is not recognized as the name of a cmdlet, function, script file, or +operable program. Check the spelling of the name, or if a path was included, verify that the path is correct and try +again. +At line:1 char:30 ++ Get-Process | Where-Object { .MainWindowTitle -ne '' } | Select-Objec ... ++ ~~~~~~~~~~~~~~~~ + + CategoryInfo : ObjectNotFound: (.MainWindowTitle:String) [], CommandNotFoundException + + FullyQualifiedErrorId : CommandNotFoundException + +.MainWindowTitle : The term '.MainWindowTitle' is not recognized as the name of a cmdlet, function, script file, or +operable program. Check the spelling of the name, or if a path was included, verify that the path is correct and try +again. +At line:1 char:30 ++ Get-Process | Where-Object { .MainWindowTitle -ne '' } | Select-Objec ... ++ ~~~~~~~~~~~~~~~~ + + CategoryInfo : ObjectNotFound: (.MainWindowTitle:String) [], CommandNotFoundException + + FullyQualifiedErrorId : CommandNotFoundException + +.MainWindowTitle : The term '.MainWindowTitle' is not recognized as the name of a cmdlet, function, script file, or +operable program. Check the spelling of the name, or if a path was included, verify that the path is correct and try +again. +At line:1 char:30 ++ Get-Process | Where-Object { .MainWindowTitle -ne '' } | Select-Objec ... ++ ~~~~~~~~~~~~~~~~ + + CategoryInfo : ObjectNotFound: (.MainWindowTitle:String) [], CommandNotFoundException + + FullyQualifiedErrorId : CommandNotFoundException + +.MainWindowTitle : The term '.MainWindowTitle' is not recognized as the name of a cmdlet, function, script file, or +operable program. Check the spelling of the name, or if a path was included, verify that the path is correct and try +again. +At line:1 char:30 ++ Get-Process | Where-Object { .MainWindowTitle -ne '' } | Select-Objec ... ++ ~~~~~~~~~~~~~~~~ + + CategoryInfo : ObjectNotFound: (.MainWindowTitle:String) [], CommandNotFoundException + + FullyQualifiedErrorId : CommandNotFoundException + +.MainWindowTitle : The term '.MainWindowTitle' is not recognized as the name of a cmdlet, function, script file, or +operable program. Check the spelling of the name, or if a path was included, verify that the path is correct and try +again. +At line:1 char:30 ++ Get-Process | Where-Object { .MainWindowTitle -ne '' } | Select-Objec ... ++ ~~~~~~~~~~~~~~~~ + + CategoryInfo : ObjectNotFound: (.MainWindowTitle:String) [], CommandNotFoundException + + FullyQualifiedErrorId : CommandNotFoundException + +.MainWindowTitle : The term '.MainWindowTitle' is not recognized as the name of a cmdlet, function, script file, or +operable program. Check the spelling of the name, or if a path was included, verify that the path is correct and try +again. +At line:1 char:30 ++ Get-Process | Where-Object { .MainWindowTitle -ne '' } | Select-Objec ... ++ ~~~~~~~~~~~~~~~~ + + CategoryInfo : ObjectNotFound: (.MainWindowTitle:String) [], CommandNotFoundException + + FullyQualifiedErrorId : CommandNotFoundException + +.MainWindowTitle : The term '.MainWindowTitle' is not recognized as the name of a cmdlet, function, script file, or +operable program. Check the spelling of the name, or if a path was included, verify that the path is correct and try +again. +At line:1 char:30 ++ Get-Process | Where-Object { .MainWindowTitle -ne '' } | Select-Objec ... ++ ~~~~~~~~~~~~~~~~ + + CategoryInfo : ObjectNotFound: (.MainWindowTitle:String) [], CommandNotFoundException + + FullyQualifiedErrorId : CommandNotFoundException + +.MainWindowTitle : The term '.MainWindowTitle' is not recognized as the name of a cmdlet, function, script file, or +operable program. Check the spelling of the name, or if a path was included, verify that the path is correct and try +again. +At line:1 char:30 ++ Get-Process | Where-Object { .MainWindowTitle -ne '' } | Select-Objec ... ++ ~~~~~~~~~~~~~~~~ + + CategoryInfo : ObjectNotFound: (.MainWindowTitle:String) [], CommandNotFoundException + + FullyQualifiedErrorId : CommandNotFoundException + +.MainWindowTitle : The term '.MainWindowTitle' is not recognized as the name of a cmdlet, function, script file, or +operable program. Check the spelling of the name, or if a path was included, verify that the path is correct and try +again. +At line:1 char:30 ++ Get-Process | Where-Object { .MainWindowTitle -ne '' } | Select-Objec ... ++ ~~~~~~~~~~~~~~~~ + + CategoryInfo : ObjectNotFound: (.MainWindowTitle:String) [], CommandNotFoundException + + FullyQualifiedErrorId : CommandNotFoundException + +.MainWindowTitle : The term '.MainWindowTitle' is not recognized as the name of a cmdlet, function, script file, or +operable program. Check the spelling of the name, or if a path was included, verify that the path is correct and try +again. +At line:1 char:30 ++ Get-Process | Where-Object { .MainWindowTitle -ne '' } | Select-Objec ... ++ ~~~~~~~~~~~~~~~~ + + CategoryInfo : ObjectNotFound: (.MainWindowTitle:String) [], CommandNotFoundException + + FullyQualifiedErrorId : CommandNotFoundException + +.MainWindowTitle : The term '.MainWindowTitle' is not recognized as the name of a cmdlet, function, script file, or +operable program. Check the spelling of the name, or if a path was included, verify that the path is correct and try +again. +At line:1 char:30 ++ Get-Process | Where-Object { .MainWindowTitle -ne '' } | Select-Objec ... ++ ~~~~~~~~~~~~~~~~ + + CategoryInfo : ObjectNotFound: (.MainWindowTitle:String) [], CommandNotFoundException + + FullyQualifiedErrorId : CommandNotFoundException + +.MainWindowTitle : The term '.MainWindowTitle' is not recognized as the name of a cmdlet, function, script file, or +operable program. Check the spelling of the name, or if a path was included, verify that the path is correct and try +again. +At line:1 char:30 ++ Get-Process | Where-Object { .MainWindowTitle -ne '' } | Select-Objec ... ++ ~~~~~~~~~~~~~~~~ + + CategoryInfo : ObjectNotFound: (.MainWindowTitle:String) [], CommandNotFoundException + + FullyQualifiedErrorId : CommandNotFoundException + +.MainWindowTitle : The term '.MainWindowTitle' is not recognized as the name of a cmdlet, function, script file, or +operable program. Check the spelling of the name, or if a path was included, verify that the path is correct and try +again. +At line:1 char:30 ++ Get-Process | Where-Object { .MainWindowTitle -ne '' } | Select-Objec ... ++ ~~~~~~~~~~~~~~~~ + + CategoryInfo : ObjectNotFound: (.MainWindowTitle:String) [], CommandNotFoundException + + FullyQualifiedErrorId : CommandNotFoundException + +.MainWindowTitle : The term '.MainWindowTitle' is not recognized as the name of a cmdlet, function, script file, or +operable program. Check the spelling of the name, or if a path was included, verify that the path is correct and try +again. +At line:1 char:30 ++ Get-Process | Where-Object { .MainWindowTitle -ne '' } | Select-Objec ... ++ ~~~~~~~~~~~~~~~~ + + CategoryInfo : ObjectNotFound: (.MainWindowTitle:String) [], CommandNotFoundException + + FullyQualifiedErrorId : CommandNotFoundException + +.MainWindowTitle : The term '.MainWindowTitle' is not recognized as the name of a cmdlet, function, script file, or +operable program. Check the spelling of the name, or if a path was included, verify that the path is correct and try +again. +At line:1 char:30 ++ Get-Process | Where-Object { .MainWindowTitle -ne '' } | Select-Objec ... ++ ~~~~~~~~~~~~~~~~ + + CategoryInfo : ObjectNotFound: (.MainWindowTitle:String) [], CommandNotFoundException + + FullyQualifiedErrorId : CommandNotFoundException + +.MainWindowTitle : The term '.MainWindowTitle' is not recognized as the name of a cmdlet, function, script file, or +operable program. Check the spelling of the name, or if a path was included, verify that the path is correct and try +again. +At line:1 char:30 ++ Get-Process | Where-Object { .MainWindowTitle -ne '' } | Select-Objec ... ++ ~~~~~~~~~~~~~~~~ + + CategoryInfo : ObjectNotFound: (.MainWindowTitle:String) [], CommandNotFoundException + + FullyQualifiedErrorId : CommandNotFoundException + +.MainWindowTitle : The term '.MainWindowTitle' is not recognized as the name of a cmdlet, function, script file, or +operable program. Check the spelling of the name, or if a path was included, verify that the path is correct and try +again. +At line:1 char:30 ++ Get-Process | Where-Object { .MainWindowTitle -ne '' } | Select-Objec ... ++ ~~~~~~~~~~~~~~~~ + + CategoryInfo : ObjectNotFound: (.MainWindowTitle:String) [], CommandNotFoundException + + FullyQualifiedErrorId : CommandNotFoundException + +.MainWindowTitle : The term '.MainWindowTitle' is not recognized as the name of a cmdlet, function, script file, or +operable program. Check the spelling of the name, or if a path was included, verify that the path is correct and try +again. +At line:1 char:30 ++ Get-Process | Where-Object { .MainWindowTitle -ne '' } | Select-Objec ... ++ ~~~~~~~~~~~~~~~~ + + CategoryInfo : ObjectNotFound: (.MainWindowTitle:String) [], CommandNotFoundException + + FullyQualifiedErrorId : CommandNotFoundException + +.MainWindowTitle : The term '.MainWindowTitle' is not recognized as the name of a cmdlet, function, script file, or +operable program. Check the spelling of the name, or if a path was included, verify that the path is correct and try +again. +At line:1 char:30 ++ Get-Process | Where-Object { .MainWindowTitle -ne '' } | Select-Objec ... ++ ~~~~~~~~~~~~~~~~ + + CategoryInfo : ObjectNotFound: (.MainWindowTitle:String) [], CommandNotFoundException + + FullyQualifiedErrorId : CommandNotFoundException + +.MainWindowTitle : The term '.MainWindowTitle' is not recognized as the name of a cmdlet, function, script file, or +operable program. Check the spelling of the name, or if a path was included, verify that the path is correct and try +again. +At line:1 char:30 ++ Get-Process | Where-Object { .MainWindowTitle -ne '' } | Select-Objec ... ++ ~~~~~~~~~~~~~~~~ + + CategoryInfo : ObjectNotFound: (.MainWindowTitle:String) [], CommandNotFoundException + + FullyQualifiedErrorId : CommandNotFoundException + +.MainWindowTitle : The term '.MainWindowTitle' is not recognized as the name of a cmdlet, function, script file, or +operable program. Check the spelling of the name, or if a path was included, verify that the path is correct and try +again. +At line:1 char:30 ++ Get-Process | Where-Object { .MainWindowTitle -ne '' } | Select-Objec ... ++ ~~~~~~~~~~~~~~~~ + + CategoryInfo : ObjectNotFound: (.MainWindowTitle:String) [], CommandNotFoundException + + FullyQualifiedErrorId : CommandNotFoundException + +.MainWindowTitle : The term '.MainWindowTitle' is not recognized as the name of a cmdlet, function, script file, or +operable program. Check the spelling of the name, or if a path was included, verify that the path is correct and try +again. +At line:1 char:30 ++ Get-Process | Where-Object { .MainWindowTitle -ne '' } | Select-Objec ... ++ ~~~~~~~~~~~~~~~~ + + CategoryInfo : ObjectNotFound: (.MainWindowTitle:String) [], CommandNotFoundException + + FullyQualifiedErrorId : CommandNotFoundException + +.MainWindowTitle : The term '.MainWindowTitle' is not recognized as the name of a cmdlet, function, script file, or +operable program. Check the spelling of the name, or if a path was included, verify that the path is correct and try +again. +At line:1 char:30 ++ Get-Process | Where-Object { .MainWindowTitle -ne '' } | Select-Objec ... ++ ~~~~~~~~~~~~~~~~ + + CategoryInfo : ObjectNotFound: (.MainWindowTitle:String) [], CommandNotFoundException + + FullyQualifiedErrorId : CommandNotFoundException + +.MainWindowTitle : The term '.MainWindowTitle' is not recognized as the name of a cmdlet, function, script file, or +operable program. Check the spelling of the name, or if a path was included, verify that the path is correct and try +again. +At line:1 char:30 ++ Get-Process | Where-Object { .MainWindowTitle -ne '' } | Select-Objec ... ++ ~~~~~~~~~~~~~~~~ + + CategoryInfo : ObjectNotFound: (.MainWindowTitle:String) [], CommandNotFoundException + + FullyQualifiedErrorId : CommandNotFoundException + +.MainWindowTitle : The term '.MainWindowTitle' is not recognized as the name of a cmdlet, function, script file, or +operable program. Check the spelling of the name, or if a path was included, verify that the path is correct and try +again. +At line:1 char:30 ++ Get-Process | Where-Object { .MainWindowTitle -ne '' } | Select-Objec ... ++ ~~~~~~~~~~~~~~~~ + + CategoryInfo : ObjectNotFound: (.MainWindowTitle:String) [], CommandNotFoundException + + FullyQualifiedErrorId : CommandNotFoundException + +.MainWindowTitle : The term '.MainWindowTitle' is not recognized as the name of a cmdlet, function, script file, or +operable program. Check the spelling of the name, or if a path was included, verify that the path is correct and try +again. +At line:1 char:30 ++ Get-Process | Where-Object { .MainWindowTitle -ne '' } | Select-Objec ... ++ ~~~~~~~~~~~~~~~~ + + CategoryInfo : ObjectNotFound: (.MainWindowTitle:String) [], CommandNotFoundException + + FullyQualifiedErrorId : CommandNotFoundException + +.MainWindowTitle : The term '.MainWindowTitle' is not recognized as the name of a cmdlet, function, script file, or +operable program. Check the spelling of the name, or if a path was included, verify that the path is correct and try +again. +At line:1 char:30 ++ Get-Process | Where-Object { .MainWindowTitle -ne '' } | Select-Objec ... ++ ~~~~~~~~~~~~~~~~ + + CategoryInfo : ObjectNotFound: (.MainWindowTitle:String) [], CommandNotFoundException + + FullyQualifiedErrorId : CommandNotFoundException + +.MainWindowTitle : The term '.MainWindowTitle' is not recognized as the name of a cmdlet, function, script file, or +operable program. Check the spelling of the name, or if a path was included, verify that the path is correct and try +again. +At line:1 char:30 ++ Get-Process | Where-Object { .MainWindowTitle -ne '' } | Select-Objec ... ++ ~~~~~~~~~~~~~~~~ + + CategoryInfo : ObjectNotFound: (.MainWindowTitle:String) [], CommandNotFoundException + + FullyQualifiedErrorId : CommandNotFoundException + +.MainWindowTitle : The term '.MainWindowTitle' is not recognized as the name of a cmdlet, function, script file, or +operable program. Check the spelling of the name, or if a path was included, verify that the path is correct and try +again. +At line:1 char:30 ++ Get-Process | Where-Object { .MainWindowTitle -ne '' } | Select-Objec ... ++ ~~~~~~~~~~~~~~~~ + + CategoryInfo : ObjectNotFound: (.MainWindowTitle:String) [], CommandNotFoundException + + FullyQualifiedErrorId : CommandNotFoundException + +.MainWindowTitle : The term '.MainWindowTitle' is not recognized as the name of a cmdlet, function, script file, or +operable program. Check the spelling of the name, or if a path was included, verify that the path is correct and try +again. +At line:1 char:30 ++ Get-Process | Where-Object { .MainWindowTitle -ne '' } | Select-Objec ... ++ ~~~~~~~~~~~~~~~~ + + CategoryInfo : ObjectNotFound: (.MainWindowTitle:String) [], CommandNotFoundException + + FullyQualifiedErrorId : CommandNotFoundException + +.MainWindowTitle : The term '.MainWindowTitle' is not recognized as the name of a cmdlet, function, script file, or +operable program. Check the spelling of the name, or if a path was included, verify that the path is correct and try +again. +At line:1 char:30 ++ Get-Process | Where-Object { .MainWindowTitle -ne '' } | Select-Objec ... ++ ~~~~~~~~~~~~~~~~ + + CategoryInfo : ObjectNotFound: (.MainWindowTitle:String) [], CommandNotFoundException + + FullyQualifiedErrorId : CommandNotFoundException + +.MainWindowTitle : The term '.MainWindowTitle' is not recognized as the name of a cmdlet, function, script file, or +operable program. Check the spelling of the name, or if a path was included, verify that the path is correct and try +again. +At line:1 char:30 ++ Get-Process | Where-Object { .MainWindowTitle -ne '' } | Select-Objec ... ++ ~~~~~~~~~~~~~~~~ + + CategoryInfo : ObjectNotFound: (.MainWindowTitle:String) [], CommandNotFoundException + + FullyQualifiedErrorId : CommandNotFoundException + +.MainWindowTitle : The term '.MainWindowTitle' is not recognized as the name of a cmdlet, function, script file, or +operable program. Check the spelling of the name, or if a path was included, verify that the path is correct and try +again. +At line:1 char:30 ++ Get-Process | Where-Object { .MainWindowTitle -ne '' } | Select-Objec ... ++ ~~~~~~~~~~~~~~~~ + + CategoryInfo : ObjectNotFound: (.MainWindowTitle:String) [], CommandNotFoundException + + FullyQualifiedErrorId : CommandNotFoundException + +.MainWindowTitle : The term '.MainWindowTitle' is not recognized as the name of a cmdlet, function, script file, or +operable program. Check the spelling of the name, or if a path was included, verify that the path is correct and try +again. +At line:1 char:30 ++ Get-Process | Where-Object { .MainWindowTitle -ne '' } | Select-Objec ... ++ ~~~~~~~~~~~~~~~~ + + CategoryInfo : ObjectNotFound: (.MainWindowTitle:String) [], CommandNotFoundException + + FullyQualifiedErrorId : CommandNotFoundException + +.MainWindowTitle : The term '.MainWindowTitle' is not recognized as the name of a cmdlet, function, script file, or +operable program. Check the spelling of the name, or if a path was included, verify that the path is correct and try +again. +At line:1 char:30 ++ Get-Process | Where-Object { .MainWindowTitle -ne '' } | Select-Objec ... ++ ~~~~~~~~~~~~~~~~ + + CategoryInfo : ObjectNotFound: (.MainWindowTitle:String) [], CommandNotFoundException + + FullyQualifiedErrorId : CommandNotFoundException + +.MainWindowTitle : The term '.MainWindowTitle' is not recognized as the name of a cmdlet, function, script file, or +operable program. Check the spelling of the name, or if a path was included, verify that the path is correct and try +again. +At line:1 char:30 ++ Get-Process | Where-Object { .MainWindowTitle -ne '' } | Select-Objec ... ++ ~~~~~~~~~~~~~~~~ + + CategoryInfo : ObjectNotFound: (.MainWindowTitle:String) [], CommandNotFoundException + + FullyQualifiedErrorId : CommandNotFoundException + +.MainWindowTitle : The term '.MainWindowTitle' is not recognized as the name of a cmdlet, function, script file, or +operable program. Check the spelling of the name, or if a path was included, verify that the path is correct and try +again. +At line:1 char:30 ++ Get-Process | Where-Object { .MainWindowTitle -ne '' } | Select-Objec ... ++ ~~~~~~~~~~~~~~~~ + + CategoryInfo : ObjectNotFound: (.MainWindowTitle:String) [], CommandNotFoundException + + FullyQualifiedErrorId : CommandNotFoundException + +.MainWindowTitle : The term '.MainWindowTitle' is not recognized as the name of a cmdlet, function, script file, or +operable program. Check the spelling of the name, or if a path was included, verify that the path is correct and try +again. +At line:1 char:30 ++ Get-Process | Where-Object { .MainWindowTitle -ne '' } | Select-Objec ... ++ ~~~~~~~~~~~~~~~~ + + CategoryInfo : ObjectNotFound: (.MainWindowTitle:String) [], CommandNotFoundException + + FullyQualifiedErrorId : CommandNotFoundException + +.MainWindowTitle : The term '.MainWindowTitle' is not recognized as the name of a cmdlet, function, script file, or +operable program. Check the spelling of the name, or if a path was included, verify that the path is correct and try +again. +At line:1 char:30 ++ Get-Process | Where-Object { .MainWindowTitle -ne '' } | Select-Objec ... ++ ~~~~~~~~~~~~~~~~ + + CategoryInfo : ObjectNotFound: (.MainWindowTitle:String) [], CommandNotFoundException + + FullyQualifiedErrorId : CommandNotFoundException + +.MainWindowTitle : The term '.MainWindowTitle' is not recognized as the name of a cmdlet, function, script file, or +operable program. Check the spelling of the name, or if a path was included, verify that the path is correct and try +again. +At line:1 char:30 ++ Get-Process | Where-Object { .MainWindowTitle -ne '' } | Select-Objec ... ++ ~~~~~~~~~~~~~~~~ + + CategoryInfo : ObjectNotFound: (.MainWindowTitle:String) [], CommandNotFoundException + + FullyQualifiedErrorId : CommandNotFoundException + +.MainWindowTitle : The term '.MainWindowTitle' is not recognized as the name of a cmdlet, function, script file, or +operable program. Check the spelling of the name, or if a path was included, verify that the path is correct and try +again. +At line:1 char:30 ++ Get-Process | Where-Object { .MainWindowTitle -ne '' } | Select-Objec ... ++ ~~~~~~~~~~~~~~~~ + + CategoryInfo : ObjectNotFound: (.MainWindowTitle:String) [], CommandNotFoundException + + FullyQualifiedErrorId : CommandNotFoundException + +.MainWindowTitle : The term '.MainWindowTitle' is not recognized as the name of a cmdlet, function, script file, or +operable program. Check the spelling of the name, or if a path was included, verify that the path is correct and try +again. +At line:1 char:30 ++ Get-Process | Where-Object { .MainWindowTitle -ne '' } | Select-Objec ... ++ ~~~~~~~~~~~~~~~~ + + CategoryInfo : ObjectNotFound: (.MainWindowTitle:String) [], CommandNotFoundException + + FullyQualifiedErrorId : CommandNotFoundException + +.MainWindowTitle : The term '.MainWindowTitle' is not recognized as the name of a cmdlet, function, script file, or +operable program. Check the spelling of the name, or if a path was included, verify that the path is correct and try +again. +At line:1 char:30 ++ Get-Process | Where-Object { .MainWindowTitle -ne '' } | Select-Objec ... ++ ~~~~~~~~~~~~~~~~ + + CategoryInfo : ObjectNotFound: (.MainWindowTitle:String) [], CommandNotFoundException + + FullyQualifiedErrorId : CommandNotFoundException + +.MainWindowTitle : The term '.MainWindowTitle' is not recognized as the name of a cmdlet, function, script file, or +operable program. Check the spelling of the name, or if a path was included, verify that the path is correct and try +again. +At line:1 char:30 ++ Get-Process | Where-Object { .MainWindowTitle -ne '' } | Select-Objec ... ++ ~~~~~~~~~~~~~~~~ + + CategoryInfo : ObjectNotFound: (.MainWindowTitle:String) [], CommandNotFoundException + + FullyQualifiedErrorId : CommandNotFoundException + +.MainWindowTitle : The term '.MainWindowTitle' is not recognized as the name of a cmdlet, function, script file, or +operable program. Check the spelling of the name, or if a path was included, verify that the path is correct and try +again. +At line:1 char:30 ++ Get-Process | Where-Object { .MainWindowTitle -ne '' } | Select-Objec ... ++ ~~~~~~~~~~~~~~~~ + + CategoryInfo : ObjectNotFound: (.MainWindowTitle:String) [], CommandNotFoundException + + FullyQualifiedErrorId : CommandNotFoundException + +.MainWindowTitle : The term '.MainWindowTitle' is not recognized as the name of a cmdlet, function, script file, or +operable program. Check the spelling of the name, or if a path was included, verify that the path is correct and try +again. +At line:1 char:30 ++ Get-Process | Where-Object { .MainWindowTitle -ne '' } | Select-Objec ... ++ ~~~~~~~~~~~~~~~~ + + CategoryInfo : ObjectNotFound: (.MainWindowTitle:String) [], CommandNotFoundException + + FullyQualifiedErrorId : CommandNotFoundException + +.MainWindowTitle : The term '.MainWindowTitle' is not recognized as the name of a cmdlet, function, script file, or +operable program. Check the spelling of the name, or if a path was included, verify that the path is correct and try +again. +At line:1 char:30 ++ Get-Process | Where-Object { .MainWindowTitle -ne '' } | Select-Objec ... ++ ~~~~~~~~~~~~~~~~ + + CategoryInfo : ObjectNotFound: (.MainWindowTitle:String) [], CommandNotFoundException + + FullyQualifiedErrorId : CommandNotFoundException + +.MainWindowTitle : The term '.MainWindowTitle' is not recognized as the name of a cmdlet, function, script file, or +operable program. Check the spelling of the name, or if a path was included, verify that the path is correct and try +again. +At line:1 char:30 ++ Get-Process | Where-Object { .MainWindowTitle -ne '' } | Select-Objec ... ++ ~~~~~~~~~~~~~~~~ + + CategoryInfo : ObjectNotFound: (.MainWindowTitle:String) [], CommandNotFoundException + + FullyQualifiedErrorId : CommandNotFoundException + +.MainWindowTitle : The term '.MainWindowTitle' is not recognized as the name of a cmdlet, function, script file, or +operable program. Check the spelling of the name, or if a path was included, verify that the path is correct and try +again. +At line:1 char:30 ++ Get-Process | Where-Object { .MainWindowTitle -ne '' } | Select-Objec ... ++ ~~~~~~~~~~~~~~~~ + + CategoryInfo : ObjectNotFound: (.MainWindowTitle:String) [], CommandNotFoundException + + FullyQualifiedErrorId : CommandNotFoundException + +.MainWindowTitle : The term '.MainWindowTitle' is not recognized as the name of a cmdlet, function, script file, or +operable program. Check the spelling of the name, or if a path was included, verify that the path is correct and try +again. +At line:1 char:30 ++ Get-Process | Where-Object { .MainWindowTitle -ne '' } | Select-Objec ... ++ ~~~~~~~~~~~~~~~~ + + CategoryInfo : ObjectNotFound: (.MainWindowTitle:String) [], CommandNotFoundException + + FullyQualifiedErrorId : CommandNotFoundException + +.MainWindowTitle : The term '.MainWindowTitle' is not recognized as the name of a cmdlet, function, script file, or +operable program. Check the spelling of the name, or if a path was included, verify that the path is correct and try +again. +At line:1 char:30 ++ Get-Process | Where-Object { .MainWindowTitle -ne '' } | Select-Objec ... ++ ~~~~~~~~~~~~~~~~ + + CategoryInfo : ObjectNotFound: (.MainWindowTitle:String) [], CommandNotFoundException + + FullyQualifiedErrorId : CommandNotFoundException + +.MainWindowTitle : The term '.MainWindowTitle' is not recognized as the name of a cmdlet, function, script file, or +operable program. Check the spelling of the name, or if a path was included, verify that the path is correct and try +again. +At line:1 char:30 ++ Get-Process | Where-Object { .MainWindowTitle -ne '' } | Select-Objec ... ++ ~~~~~~~~~~~~~~~~ + + CategoryInfo : ObjectNotFound: (.MainWindowTitle:String) [], CommandNotFoundException + + FullyQualifiedErrorId : CommandNotFoundException + +.MainWindowTitle : The term '.MainWindowTitle' is not recognized as the name of a cmdlet, function, script file, or +operable program. Check the spelling of the name, or if a path was included, verify that the path is correct and try +again. +At line:1 char:30 ++ Get-Process | Where-Object { .MainWindowTitle -ne '' } | Select-Objec ... ++ ~~~~~~~~~~~~~~~~ + + CategoryInfo : ObjectNotFound: (.MainWindowTitle:String) [], CommandNotFoundException + + FullyQualifiedErrorId : CommandNotFoundException + +.MainWindowTitle : The term '.MainWindowTitle' is not recognized as the name of a cmdlet, function, script file, or +operable program. Check the spelling of the name, or if a path was included, verify that the path is correct and try +again. +At line:1 char:30 ++ Get-Process | Where-Object { .MainWindowTitle -ne '' } | Select-Objec ... ++ ~~~~~~~~~~~~~~~~ + + CategoryInfo : ObjectNotFound: (.MainWindowTitle:String) [], CommandNotFoundException + + FullyQualifiedErrorId : CommandNotFoundException + +.MainWindowTitle : The term '.MainWindowTitle' is not recognized as the name of a cmdlet, function, script file, or +operable program. Check the spelling of the name, or if a path was included, verify that the path is correct and try +again. +At line:1 char:30 ++ Get-Process | Where-Object { .MainWindowTitle -ne '' } | Select-Objec ... ++ ~~~~~~~~~~~~~~~~ + + CategoryInfo : ObjectNotFound: (.MainWindowTitle:String) [], CommandNotFoundException + + FullyQualifiedErrorId : CommandNotFoundException + +.MainWindowTitle : The term '.MainWindowTitle' is not recognized as the name of a cmdlet, function, script file, or +operable program. Check the spelling of the name, or if a path was included, verify that the path is correct and try +again. +At line:1 char:30 ++ Get-Process | Where-Object { .MainWindowTitle -ne '' } | Select-Objec ... ++ ~~~~~~~~~~~~~~~~ + + CategoryInfo : ObjectNotFound: (.MainWindowTitle:String) [], CommandNotFoundException + + FullyQualifiedErrorId : CommandNotFoundException + +.MainWindowTitle : The term '.MainWindowTitle' is not recognized as the name of a cmdlet, function, script file, or +operable program. Check the spelling of the name, or if a path was included, verify that the path is correct and try +again. +At line:1 char:30 ++ Get-Process | Where-Object { .MainWindowTitle -ne '' } | Select-Objec ... ++ ~~~~~~~~~~~~~~~~ + + CategoryInfo : ObjectNotFound: (.MainWindowTitle:String) [], CommandNotFoundException + + FullyQualifiedErrorId : CommandNotFoundException + +.MainWindowTitle : The term '.MainWindowTitle' is not recognized as the name of a cmdlet, function, script file, or +operable program. Check the spelling of the name, or if a path was included, verify that the path is correct and try +again. +At line:1 char:30 ++ Get-Process | Where-Object { .MainWindowTitle -ne '' } | Select-Objec ... ++ ~~~~~~~~~~~~~~~~ + + CategoryInfo : ObjectNotFound: (.MainWindowTitle:String) [], CommandNotFoundException + + FullyQualifiedErrorId : CommandNotFoundException + +.MainWindowTitle : The term '.MainWindowTitle' is not recognized as the name of a cmdlet, function, script file, or +operable program. Check the spelling of the name, or if a path was included, verify that the path is correct and try +again. +At line:1 char:30 ++ Get-Process | Where-Object { .MainWindowTitle -ne '' } | Select-Objec ... ++ ~~~~~~~~~~~~~~~~ + + CategoryInfo : ObjectNotFound: (.MainWindowTitle:String) [], CommandNotFoundException + + FullyQualifiedErrorId : CommandNotFoundException + +.MainWindowTitle : The term '.MainWindowTitle' is not recognized as the name of a cmdlet, function, script file, or +operable program. Check the spelling of the name, or if a path was included, verify that the path is correct and try +again. +At line:1 char:30 ++ Get-Process | Where-Object { .MainWindowTitle -ne '' } | Select-Objec ... ++ ~~~~~~~~~~~~~~~~ + + CategoryInfo : ObjectNotFound: (.MainWindowTitle:String) [], CommandNotFoundException + + FullyQualifiedErrorId : CommandNotFoundException + +.MainWindowTitle : The term '.MainWindowTitle' is not recognized as the name of a cmdlet, function, script file, or +operable program. Check the spelling of the name, or if a path was included, verify that the path is correct and try +again. +At line:1 char:30 ++ Get-Process | Where-Object { .MainWindowTitle -ne '' } | Select-Objec ... ++ ~~~~~~~~~~~~~~~~ + + CategoryInfo : ObjectNotFound: (.MainWindowTitle:String) [], CommandNotFoundException + + FullyQualifiedErrorId : CommandNotFoundException + +.MainWindowTitle : The term '.MainWindowTitle' is not recognized as the name of a cmdlet, function, script file, or +operable program. Check the spelling of the name, or if a path was included, verify that the path is correct and try +again. +At line:1 char:30 ++ Get-Process | Where-Object { .MainWindowTitle -ne '' } | Select-Objec ... ++ ~~~~~~~~~~~~~~~~ + + CategoryInfo : ObjectNotFound: (.MainWindowTitle:String) [], CommandNotFoundException + + FullyQualifiedErrorId : CommandNotFoundException + +.MainWindowTitle : The term '.MainWindowTitle' is not recognized as the name of a cmdlet, function, script file, or +operable program. Check the spelling of the name, or if a path was included, verify that the path is correct and try +again. +At line:1 char:30 ++ Get-Process | Where-Object { .MainWindowTitle -ne '' } | Select-Objec ... ++ ~~~~~~~~~~~~~~~~ + + CategoryInfo : ObjectNotFound: (.MainWindowTitle:String) [], CommandNotFoundException + + FullyQualifiedErrorId : CommandNotFoundException + +.MainWindowTitle : The term '.MainWindowTitle' is not recognized as the name of a cmdlet, function, script file, or +operable program. Check the spelling of the name, or if a path was included, verify that the path is correct and try +again. +At line:1 char:30 ++ Get-Process | Where-Object { .MainWindowTitle -ne '' } | Select-Objec ... ++ ~~~~~~~~~~~~~~~~ + + CategoryInfo : ObjectNotFound: (.MainWindowTitle:String) [], CommandNotFoundException + + FullyQualifiedErrorId : CommandNotFoundException + +.MainWindowTitle : The term '.MainWindowTitle' is not recognized as the name of a cmdlet, function, script file, or +operable program. Check the spelling of the name, or if a path was included, verify that the path is correct and try +again. +At line:1 char:30 ++ Get-Process | Where-Object { .MainWindowTitle -ne '' } | Select-Objec ... ++ ~~~~~~~~~~~~~~~~ + + CategoryInfo : ObjectNotFound: (.MainWindowTitle:String) [], CommandNotFoundException + + FullyQualifiedErrorId : CommandNotFoundException + +.MainWindowTitle : The term '.MainWindowTitle' is not recognized as the name of a cmdlet, function, script file, or +operable program. Check the spelling of the name, or if a path was included, verify that the path is correct and try +again. +At line:1 char:30 ++ Get-Process | Where-Object { .MainWindowTitle -ne '' } | Select-Objec ... ++ ~~~~~~~~~~~~~~~~ + + CategoryInfo : ObjectNotFound: (.MainWindowTitle:String) [], CommandNotFoundException + + FullyQualifiedErrorId : CommandNotFoundException + +.MainWindowTitle : The term '.MainWindowTitle' is not recognized as the name of a cmdlet, function, script file, or +operable program. Check the spelling of the name, or if a path was included, verify that the path is correct and try +again. +At line:1 char:30 ++ Get-Process | Where-Object { .MainWindowTitle -ne '' } | Select-Objec ... ++ ~~~~~~~~~~~~~~~~ + + CategoryInfo : ObjectNotFound: (.MainWindowTitle:String) [], CommandNotFoundException + + FullyQualifiedErrorId : CommandNotFoundException + +.MainWindowTitle : The term '.MainWindowTitle' is not recognized as the name of a cmdlet, function, script file, or +operable program. Check the spelling of the name, or if a path was included, verify that the path is correct and try +again. +At line:1 char:30 ++ Get-Process | Where-Object { .MainWindowTitle -ne '' } | Select-Objec ... ++ ~~~~~~~~~~~~~~~~ + + CategoryInfo : ObjectNotFound: (.MainWindowTitle:String) [], CommandNotFoundException + + FullyQualifiedErrorId : CommandNotFoundException + +.MainWindowTitle : The term '.MainWindowTitle' is not recognized as the name of a cmdlet, function, script file, or +operable program. Check the spelling of the name, or if a path was included, verify that the path is correct and try +again. +At line:1 char:30 ++ Get-Process | Where-Object { .MainWindowTitle -ne '' } | Select-Objec ... ++ ~~~~~~~~~~~~~~~~ + + CategoryInfo : ObjectNotFound: (.MainWindowTitle:String) [], CommandNotFoundException + + FullyQualifiedErrorId : CommandNotFoundException + +.MainWindowTitle : The term '.MainWindowTitle' is not recognized as the name of a cmdlet, function, script file, or +operable program. Check the spelling of the name, or if a path was included, verify that the path is correct and try +again. +At line:1 char:30 ++ Get-Process | Where-Object { .MainWindowTitle -ne '' } | Select-Objec ... ++ ~~~~~~~~~~~~~~~~ + + CategoryInfo : ObjectNotFound: (.MainWindowTitle:String) [], CommandNotFoundException + + FullyQualifiedErrorId : CommandNotFoundException + +.MainWindowTitle : The term '.MainWindowTitle' is not recognized as the name of a cmdlet, function, script file, or +operable program. Check the spelling of the name, or if a path was included, verify that the path is correct and try +again. +At line:1 char:30 ++ Get-Process | Where-Object { .MainWindowTitle -ne '' } | Select-Objec ... ++ ~~~~~~~~~~~~~~~~ + + CategoryInfo : ObjectNotFound: (.MainWindowTitle:String) [], CommandNotFoundException + + FullyQualifiedErrorId : CommandNotFoundException + +.MainWindowTitle : The term '.MainWindowTitle' is not recognized as the name of a cmdlet, function, script file, or +operable program. Check the spelling of the name, or if a path was included, verify that the path is correct and try +again. +At line:1 char:30 ++ Get-Process | Where-Object { .MainWindowTitle -ne '' } | Select-Objec ... ++ ~~~~~~~~~~~~~~~~ + + CategoryInfo : ObjectNotFound: (.MainWindowTitle:String) [], CommandNotFoundException + + FullyQualifiedErrorId : CommandNotFoundException + +.MainWindowTitle : The term '.MainWindowTitle' is not recognized as the name of a cmdlet, function, script file, or +operable program. Check the spelling of the name, or if a path was included, verify that the path is correct and try +again. +At line:1 char:30 ++ Get-Process | Where-Object { .MainWindowTitle -ne '' } | Select-Objec ... ++ ~~~~~~~~~~~~~~~~ + + CategoryInfo : ObjectNotFound: (.MainWindowTitle:String) [], CommandNotFoundException + + FullyQualifiedErrorId : CommandNotFoundException + +.MainWindowTitle : The term '.MainWindowTitle' is not recognized as the name of a cmdlet, function, script file, or +operable program. Check the spelling of the name, or if a path was included, verify that the path is correct and try +again. +At line:1 char:30 ++ Get-Process | Where-Object { .MainWindowTitle -ne '' } | Select-Objec ... ++ ~~~~~~~~~~~~~~~~ + + CategoryInfo : ObjectNotFound: (.MainWindowTitle:String) [], CommandNotFoundException + + FullyQualifiedErrorId : CommandNotFoundException + +.MainWindowTitle : The term '.MainWindowTitle' is not recognized as the name of a cmdlet, function, script file, or +operable program. Check the spelling of the name, or if a path was included, verify that the path is correct and try +again. +At line:1 char:30 ++ Get-Process | Where-Object { .MainWindowTitle -ne '' } | Select-Objec ... ++ ~~~~~~~~~~~~~~~~ + + CategoryInfo : ObjectNotFound: (.MainWindowTitle:String) [], CommandNotFoundException + + FullyQualifiedErrorId : CommandNotFoundException + +.MainWindowTitle : The term '.MainWindowTitle' is not recognized as the name of a cmdlet, function, script file, or +operable program. Check the spelling of the name, or if a path was included, verify that the path is correct and try +again. +At line:1 char:30 ++ Get-Process | Where-Object { .MainWindowTitle -ne '' } | Select-Objec ... ++ ~~~~~~~~~~~~~~~~ + + CategoryInfo : ObjectNotFound: (.MainWindowTitle:String) [], CommandNotFoundException + + FullyQualifiedErrorId : CommandNotFoundException + +.MainWindowTitle : The term '.MainWindowTitle' is not recognized as the name of a cmdlet, function, script file, or +operable program. Check the spelling of the name, or if a path was included, verify that the path is correct and try +again. +At line:1 char:30 ++ Get-Process | Where-Object { .MainWindowTitle -ne '' } | Select-Objec ... ++ ~~~~~~~~~~~~~~~~ + + CategoryInfo : ObjectNotFound: (.MainWindowTitle:String) [], CommandNotFoundException + + FullyQualifiedErrorId : CommandNotFoundException + +.MainWindowTitle : The term '.MainWindowTitle' is not recognized as the name of a cmdlet, function, script file, or +operable program. Check the spelling of the name, or if a path was included, verify that the path is correct and try +again. +At line:1 char:30 ++ Get-Process | Where-Object { .MainWindowTitle -ne '' } | Select-Objec ... ++ ~~~~~~~~~~~~~~~~ + + CategoryInfo : ObjectNotFound: (.MainWindowTitle:String) [], CommandNotFoundException + + FullyQualifiedErrorId : CommandNotFoundException + +.MainWindowTitle : The term '.MainWindowTitle' is not recognized as the name of a cmdlet, function, script file, or +operable program. Check the spelling of the name, or if a path was included, verify that the path is correct and try +again. +At line:1 char:30 ++ Get-Process | Where-Object { .MainWindowTitle -ne '' } | Select-Objec ... ++ ~~~~~~~~~~~~~~~~ + + CategoryInfo : ObjectNotFound: (.MainWindowTitle:String) [], CommandNotFoundException + + FullyQualifiedErrorId : CommandNotFoundException + +.MainWindowTitle : The term '.MainWindowTitle' is not recognized as the name of a cmdlet, function, script file, or +operable program. Check the spelling of the name, or if a path was included, verify that the path is correct and try +again. +At line:1 char:30 ++ Get-Process | Where-Object { .MainWindowTitle -ne '' } | Select-Objec ... ++ ~~~~~~~~~~~~~~~~ + + CategoryInfo : ObjectNotFound: (.MainWindowTitle:String) [], CommandNotFoundException + + FullyQualifiedErrorId : CommandNotFoundException + +.MainWindowTitle : The term '.MainWindowTitle' is not recognized as the name of a cmdlet, function, script file, or +operable program. Check the spelling of the name, or if a path was included, verify that the path is correct and try +again. +At line:1 char:30 ++ Get-Process | Where-Object { .MainWindowTitle -ne '' } | Select-Objec ... ++ ~~~~~~~~~~~~~~~~ + + CategoryInfo : ObjectNotFound: (.MainWindowTitle:String) [], CommandNotFoundException + + FullyQualifiedErrorId : CommandNotFoundException + +.MainWindowTitle : The term '.MainWindowTitle' is not recognized as the name of a cmdlet, function, script file, or +operable program. Check the spelling of the name, or if a path was included, verify that the path is correct and try +again. +At line:1 char:30 ++ Get-Process | Where-Object { .MainWindowTitle -ne '' } | Select-Objec ... ++ ~~~~~~~~~~~~~~~~ + + CategoryInfo : ObjectNotFound: (.MainWindowTitle:String) [], CommandNotFoundException + + FullyQualifiedErrorId : CommandNotFoundException + +.MainWindowTitle : The term '.MainWindowTitle' is not recognized as the name of a cmdlet, function, script file, or +operable program. Check the spelling of the name, or if a path was included, verify that the path is correct and try +again. +At line:1 char:30 ++ Get-Process | Where-Object { .MainWindowTitle -ne '' } | Select-Objec ... ++ ~~~~~~~~~~~~~~~~ + + CategoryInfo : ObjectNotFound: (.MainWindowTitle:String) [], CommandNotFoundException + + FullyQualifiedErrorId : CommandNotFoundException + +.MainWindowTitle : The term '.MainWindowTitle' is not recognized as the name of a cmdlet, function, script file, or +operable program. Check the spelling of the name, or if a path was included, verify that the path is correct and try +again. +At line:1 char:30 ++ Get-Process | Where-Object { .MainWindowTitle -ne '' } | Select-Objec ... ++ ~~~~~~~~~~~~~~~~ + + CategoryInfo : ObjectNotFound: (.MainWindowTitle:String) [], CommandNotFoundException + + FullyQualifiedErrorId : CommandNotFoundException + +.MainWindowTitle : The term '.MainWindowTitle' is not recognized as the name of a cmdlet, function, script file, or +operable program. Check the spelling of the name, or if a path was included, verify that the path is correct and try +again. +At line:1 char:30 ++ Get-Process | Where-Object { .MainWindowTitle -ne '' } | Select-Objec ... ++ ~~~~~~~~~~~~~~~~ + + CategoryInfo : ObjectNotFound: (.MainWindowTitle:String) [], CommandNotFoundException + + FullyQualifiedErrorId : CommandNotFoundException + +.MainWindowTitle : The term '.MainWindowTitle' is not recognized as the name of a cmdlet, function, script file, or +operable program. Check the spelling of the name, or if a path was included, verify that the path is correct and try +again. +At line:1 char:30 ++ Get-Process | Where-Object { .MainWindowTitle -ne '' } | Select-Objec ... ++ ~~~~~~~~~~~~~~~~ + + CategoryInfo : ObjectNotFound: (.MainWindowTitle:String) [], CommandNotFoundException + + FullyQualifiedErrorId : CommandNotFoundException + +.MainWindowTitle : The term '.MainWindowTitle' is not recognized as the name of a cmdlet, function, script file, or +operable program. Check the spelling of the name, or if a path was included, verify that the path is correct and try +again. +At line:1 char:30 ++ Get-Process | Where-Object { .MainWindowTitle -ne '' } | Select-Objec ... ++ ~~~~~~~~~~~~~~~~ + + CategoryInfo : ObjectNotFound: (.MainWindowTitle:String) [], CommandNotFoundException + + FullyQualifiedErrorId : CommandNotFoundException + +.MainWindowTitle : The term '.MainWindowTitle' is not recognized as the name of a cmdlet, function, script file, or +operable program. Check the spelling of the name, or if a path was included, verify that the path is correct and try +again. +At line:1 char:30 ++ Get-Process | Where-Object { .MainWindowTitle -ne '' } | Select-Objec ... ++ ~~~~~~~~~~~~~~~~ + + CategoryInfo : ObjectNotFound: (.MainWindowTitle:String) [], CommandNotFoundException + + FullyQualifiedErrorId : CommandNotFoundException + +.MainWindowTitle : The term '.MainWindowTitle' is not recognized as the name of a cmdlet, function, script file, or +operable program. Check the spelling of the name, or if a path was included, verify that the path is correct and try +again. +At line:1 char:30 ++ Get-Process | Where-Object { .MainWindowTitle -ne '' } | Select-Objec ... ++ ~~~~~~~~~~~~~~~~ + + CategoryInfo : ObjectNotFound: (.MainWindowTitle:String) [], CommandNotFoundException + + FullyQualifiedErrorId : CommandNotFoundException + +.MainWindowTitle : The term '.MainWindowTitle' is not recognized as the name of a cmdlet, function, script file, or +operable program. Check the spelling of the name, or if a path was included, verify that the path is correct and try +again. +At line:1 char:30 ++ Get-Process | Where-Object { .MainWindowTitle -ne '' } | Select-Objec ... ++ ~~~~~~~~~~~~~~~~ + + CategoryInfo : ObjectNotFound: (.MainWindowTitle:String) [], CommandNotFoundException + + FullyQualifiedErrorId : CommandNotFoundException + +.MainWindowTitle : The term '.MainWindowTitle' is not recognized as the name of a cmdlet, function, script file, or +operable program. Check the spelling of the name, or if a path was included, verify that the path is correct and try +again. +At line:1 char:30 ++ Get-Process | Where-Object { .MainWindowTitle -ne '' } | Select-Objec ... ++ ~~~~~~~~~~~~~~~~ + + CategoryInfo : ObjectNotFound: (.MainWindowTitle:String) [], CommandNotFoundException + + FullyQualifiedErrorId : CommandNotFoundException + +.MainWindowTitle : The term '.MainWindowTitle' is not recognized as the name of a cmdlet, function, script file, or +operable program. Check the spelling of the name, or if a path was included, verify that the path is correct and try +again. +At line:1 char:30 ++ Get-Process | Where-Object { .MainWindowTitle -ne '' } | Select-Objec ... ++ ~~~~~~~~~~~~~~~~ + + CategoryInfo : ObjectNotFound: (.MainWindowTitle:String) [], CommandNotFoundException + + FullyQualifiedErrorId : CommandNotFoundException + +.MainWindowTitle : The term '.MainWindowTitle' is not recognized as the name of a cmdlet, function, script file, or +operable program. Check the spelling of the name, or if a path was included, verify that the path is correct and try +again. +At line:1 char:30 ++ Get-Process | Where-Object { .MainWindowTitle -ne '' } | Select-Objec ... ++ ~~~~~~~~~~~~~~~~ + + CategoryInfo : ObjectNotFound: (.MainWindowTitle:String) [], CommandNotFoundException + + FullyQualifiedErrorId : CommandNotFoundException + +.MainWindowTitle : The term '.MainWindowTitle' is not recognized as the name of a cmdlet, function, script file, or +operable program. Check the spelling of the name, or if a path was included, verify that the path is correct and try +again. +At line:1 char:30 ++ Get-Process | Where-Object { .MainWindowTitle -ne '' } | Select-Objec ... ++ ~~~~~~~~~~~~~~~~ + + CategoryInfo : ObjectNotFound: (.MainWindowTitle:String) [], CommandNotFoundException + + FullyQualifiedErrorId : CommandNotFoundException + +.MainWindowTitle : The term '.MainWindowTitle' is not recognized as the name of a cmdlet, function, script file, or +operable program. Check the spelling of the name, or if a path was included, verify that the path is correct and try +again. +At line:1 char:30 ++ Get-Process | Where-Object { .MainWindowTitle -ne '' } | Select-Objec ... ++ ~~~~~~~~~~~~~~~~ + + CategoryInfo : ObjectNotFound: (.MainWindowTitle:String) [], CommandNotFoundException + + FullyQualifiedErrorId : CommandNotFoundException + +.MainWindowTitle : The term '.MainWindowTitle' is not recognized as the name of a cmdlet, function, script file, or +operable program. Check the spelling of the name, or if a path was included, verify that the path is correct and try +again. +At line:1 char:30 ++ Get-Process | Where-Object { .MainWindowTitle -ne '' } | Select-Objec ... ++ ~~~~~~~~~~~~~~~~ + + CategoryInfo : ObjectNotFound: (.MainWindowTitle:String) [], CommandNotFoundException + + FullyQualifiedErrorId : CommandNotFoundException + +.MainWindowTitle : The term '.MainWindowTitle' is not recognized as the name of a cmdlet, function, script file, or +operable program. Check the spelling of the name, or if a path was included, verify that the path is correct and try +again. +At line:1 char:30 ++ Get-Process | Where-Object { .MainWindowTitle -ne '' } | Select-Objec ... ++ ~~~~~~~~~~~~~~~~ + + CategoryInfo : ObjectNotFound: (.MainWindowTitle:String) [], CommandNotFoundException + + FullyQualifiedErrorId : CommandNotFoundException + +.MainWindowTitle : The term '.MainWindowTitle' is not recognized as the name of a cmdlet, function, script file, or +operable program. Check the spelling of the name, or if a path was included, verify that the path is correct and try +again. +At line:1 char:30 ++ Get-Process | Where-Object { .MainWindowTitle -ne '' } | Select-Objec ... ++ ~~~~~~~~~~~~~~~~ + + CategoryInfo : ObjectNotFound: (.MainWindowTitle:String) [], CommandNotFoundException + + FullyQualifiedErrorId : CommandNotFoundException + +.MainWindowTitle : The term '.MainWindowTitle' is not recognized as the name of a cmdlet, function, script file, or +operable program. Check the spelling of the name, or if a path was included, verify that the path is correct and try +again. +At line:1 char:30 ++ Get-Process | Where-Object { .MainWindowTitle -ne '' } | Select-Objec ... ++ ~~~~~~~~~~~~~~~~ + + CategoryInfo : ObjectNotFound: (.MainWindowTitle:String) [], CommandNotFoundException + + FullyQualifiedErrorId : CommandNotFoundException + +.MainWindowTitle : The term '.MainWindowTitle' is not recognized as the name of a cmdlet, function, script file, or +operable program. Check the spelling of the name, or if a path was included, verify that the path is correct and try +again. +At line:1 char:30 ++ Get-Process | Where-Object { .MainWindowTitle -ne '' } | Select-Objec ... ++ ~~~~~~~~~~~~~~~~ + + CategoryInfo : ObjectNotFound: (.MainWindowTitle:String) [], CommandNotFoundException + + FullyQualifiedErrorId : CommandNotFoundException + +.MainWindowTitle : The term '.MainWindowTitle' is not recognized as the name of a cmdlet, function, script file, or +operable program. Check the spelling of the name, or if a path was included, verify that the path is correct and try +again. +At line:1 char:30 ++ Get-Process | Where-Object { .MainWindowTitle -ne '' } | Select-Objec ... ++ ~~~~~~~~~~~~~~~~ + + CategoryInfo : ObjectNotFound: (.MainWindowTitle:String) [], CommandNotFoundException + + FullyQualifiedErrorId : CommandNotFoundException + +.MainWindowTitle : The term '.MainWindowTitle' is not recognized as the name of a cmdlet, function, script file, or +operable program. Check the spelling of the name, or if a path was included, verify that the path is correct and try +again. +At line:1 char:30 ++ Get-Process | Where-Object { .MainWindowTitle -ne '' } | Select-Objec ... ++ ~~~~~~~~~~~~~~~~ + + CategoryInfo : ObjectNotFound: (.MainWindowTitle:String) [], CommandNotFoundException + + FullyQualifiedErrorId : CommandNotFoundException + +.MainWindowTitle : The term '.MainWindowTitle' is not recognized as the name of a cmdlet, function, script file, or +operable program. Check the spelling of the name, or if a path was included, verify that the path is correct and try +again. +At line:1 char:30 ++ Get-Process | Where-Object { .MainWindowTitle -ne '' } | Select-Objec ... ++ ~~~~~~~~~~~~~~~~ + + CategoryInfo : ObjectNotFound: (.MainWindowTitle:String) [], CommandNotFoundException + + FullyQualifiedErrorId : CommandNotFoundException + +.MainWindowTitle : The term '.MainWindowTitle' is not recognized as the name of a cmdlet, function, script file, or +operable program. Check the spelling of the name, or if a path was included, verify that the path is correct and try +again. +At line:1 char:30 ++ Get-Process | Where-Object { .MainWindowTitle -ne '' } | Select-Objec ... ++ ~~~~~~~~~~~~~~~~ + + CategoryInfo : ObjectNotFound: (.MainWindowTitle:String) [], CommandNotFoundException + + FullyQualifiedErrorId : CommandNotFoundException + +.MainWindowTitle : The term '.MainWindowTitle' is not recognized as the name of a cmdlet, function, script file, or +operable program. Check the spelling of the name, or if a path was included, verify that the path is correct and try +again. +At line:1 char:30 ++ Get-Process | Where-Object { .MainWindowTitle -ne '' } | Select-Objec ... ++ ~~~~~~~~~~~~~~~~ + + CategoryInfo : ObjectNotFound: (.MainWindowTitle:String) [], CommandNotFoundException + + FullyQualifiedErrorId : CommandNotFoundException + +.MainWindowTitle : The term '.MainWindowTitle' is not recognized as the name of a cmdlet, function, script file, or +operable program. Check the spelling of the name, or if a path was included, verify that the path is correct and try +again. +At line:1 char:30 ++ Get-Process | Where-Object { .MainWindowTitle -ne '' } | Select-Objec ... ++ ~~~~~~~~~~~~~~~~ + + CategoryInfo : ObjectNotFound: (.MainWindowTitle:String) [], CommandNotFoundException + + FullyQualifiedErrorId : CommandNotFoundException + +.MainWindowTitle : The term '.MainWindowTitle' is not recognized as the name of a cmdlet, function, script file, or +operable program. Check the spelling of the name, or if a path was included, verify that the path is correct and try +again. +At line:1 char:30 ++ Get-Process | Where-Object { .MainWindowTitle -ne '' } | Select-Objec ... ++ ~~~~~~~~~~~~~~~~ + + CategoryInfo : ObjectNotFound: (.MainWindowTitle:String) [], CommandNotFoundException + + FullyQualifiedErrorId : CommandNotFoundException + +.MainWindowTitle : The term '.MainWindowTitle' is not recognized as the name of a cmdlet, function, script file, or +operable program. Check the spelling of the name, or if a path was included, verify that the path is correct and try +again. +At line:1 char:30 ++ Get-Process | Where-Object { .MainWindowTitle -ne '' } | Select-Objec ... ++ ~~~~~~~~~~~~~~~~ + + CategoryInfo : ObjectNotFound: (.MainWindowTitle:String) [], CommandNotFoundException + + FullyQualifiedErrorId : CommandNotFoundException + +.MainWindowTitle : The term '.MainWindowTitle' is not recognized as the name of a cmdlet, function, script file, or +operable program. Check the spelling of the name, or if a path was included, verify that the path is correct and try +again. +At line:1 char:30 ++ Get-Process | Where-Object { .MainWindowTitle -ne '' } | Select-Objec ... ++ ~~~~~~~~~~~~~~~~ + + CategoryInfo : ObjectNotFound: (.MainWindowTitle:String) [], CommandNotFoundException + + FullyQualifiedErrorId : CommandNotFoundException + +.MainWindowTitle : The term '.MainWindowTitle' is not recognized as the name of a cmdlet, function, script file, or +operable program. Check the spelling of the name, or if a path was included, verify that the path is correct and try +again. +At line:1 char:30 ++ Get-Process | Where-Object { .MainWindowTitle -ne '' } | Select-Objec ... ++ ~~~~~~~~~~~~~~~~ + + CategoryInfo : ObjectNotFound: (.MainWindowTitle:String) [], CommandNotFoundException + + FullyQualifiedErrorId : CommandNotFoundException + +.MainWindowTitle : The term '.MainWindowTitle' is not recognized as the name of a cmdlet, function, script file, or +operable program. Check the spelling of the name, or if a path was included, verify that the path is correct and try +again. +At line:1 char:30 ++ Get-Process | Where-Object { .MainWindowTitle -ne '' } | Select-Objec ... ++ ~~~~~~~~~~~~~~~~ + + CategoryInfo : ObjectNotFound: (.MainWindowTitle:String) [], CommandNotFoundException + + FullyQualifiedErrorId : CommandNotFoundException + +.MainWindowTitle : The term '.MainWindowTitle' is not recognized as the name of a cmdlet, function, script file, or +operable program. Check the spelling of the name, or if a path was included, verify that the path is correct and try +again. +At line:1 char:30 ++ Get-Process | Where-Object { .MainWindowTitle -ne '' } | Select-Objec ... ++ ~~~~~~~~~~~~~~~~ + + CategoryInfo : ObjectNotFound: (.MainWindowTitle:String) [], CommandNotFoundException + + FullyQualifiedErrorId : CommandNotFoundException + +.MainWindowTitle : The term '.MainWindowTitle' is not recognized as the name of a cmdlet, function, script file, or +operable program. Check the spelling of the name, or if a path was included, verify that the path is correct and try +again. +At line:1 char:30 ++ Get-Process | Where-Object { .MainWindowTitle -ne '' } | Select-Objec ... ++ ~~~~~~~~~~~~~~~~ + + CategoryInfo : ObjectNotFound: (.MainWindowTitle:String) [], CommandNotFoundException + + FullyQualifiedErrorId : CommandNotFoundException + +.MainWindowTitle : The term '.MainWindowTitle' is not recognized as the name of a cmdlet, function, script file, or +operable program. Check the spelling of the name, or if a path was included, verify that the path is correct and try +again. +At line:1 char:30 ++ Get-Process | Where-Object { .MainWindowTitle -ne '' } | Select-Objec ... ++ ~~~~~~~~~~~~~~~~ + + CategoryInfo : ObjectNotFound: (.MainWindowTitle:String) [], CommandNotFoundException + + FullyQualifiedErrorId : CommandNotFoundException + +.MainWindowTitle : The term '.MainWindowTitle' is not recognized as the name of a cmdlet, function, script file, or +operable program. Check the spelling of the name, or if a path was included, verify that the path is correct and try +again. +At line:1 char:30 ++ Get-Process | Where-Object { .MainWindowTitle -ne '' } | Select-Objec ... ++ ~~~~~~~~~~~~~~~~ + + CategoryInfo : ObjectNotFound: (.MainWindowTitle:String) [], CommandNotFoundException + + FullyQualifiedErrorId : CommandNotFoundException + +.MainWindowTitle : The term '.MainWindowTitle' is not recognized as the name of a cmdlet, function, script file, or +operable program. Check the spelling of the name, or if a path was included, verify that the path is correct and try +again. +At line:1 char:30 ++ Get-Process | Where-Object { .MainWindowTitle -ne '' } | Select-Objec ... ++ ~~~~~~~~~~~~~~~~ + + CategoryInfo : ObjectNotFound: (.MainWindowTitle:String) [], CommandNotFoundException + + FullyQualifiedErrorId : CommandNotFoundException + +.MainWindowTitle : The term '.MainWindowTitle' is not recognized as the name of a cmdlet, function, script file, or +operable program. Check the spelling of the name, or if a path was included, verify that the path is correct and try +again. +At line:1 char:30 ++ Get-Process | Where-Object { .MainWindowTitle -ne '' } | Select-Objec ... ++ ~~~~~~~~~~~~~~~~ + + CategoryInfo : ObjectNotFound: (.MainWindowTitle:String) [], CommandNotFoundException + + FullyQualifiedErrorId : CommandNotFoundException + +.MainWindowTitle : The term '.MainWindowTitle' is not recognized as the name of a cmdlet, function, script file, or +operable program. Check the spelling of the name, or if a path was included, verify that the path is correct and try +again. +At line:1 char:30 ++ Get-Process | Where-Object { .MainWindowTitle -ne '' } | Select-Objec ... ++ ~~~~~~~~~~~~~~~~ + + CategoryInfo : ObjectNotFound: (.MainWindowTitle:String) [], CommandNotFoundException + + FullyQualifiedErrorId : CommandNotFoundException + +.MainWindowTitle : The term '.MainWindowTitle' is not recognized as the name of a cmdlet, function, script file, or +operable program. Check the spelling of the name, or if a path was included, verify that the path is correct and try +again. +At line:1 char:30 ++ Get-Process | Where-Object { .MainWindowTitle -ne '' } | Select-Objec ... ++ ~~~~~~~~~~~~~~~~ + + CategoryInfo : ObjectNotFound: (.MainWindowTitle:String) [], CommandNotFoundException + + FullyQualifiedErrorId : CommandNotFoundException + +.MainWindowTitle : The term '.MainWindowTitle' is not recognized as the name of a cmdlet, function, script file, or +operable program. Check the spelling of the name, or if a path was included, verify that the path is correct and try +again. +At line:1 char:30 ++ Get-Process | Where-Object { .MainWindowTitle -ne '' } | Select-Objec ... ++ ~~~~~~~~~~~~~~~~ + + CategoryInfo : ObjectNotFound: (.MainWindowTitle:String) [], CommandNotFoundException + + FullyQualifiedErrorId : CommandNotFoundException + +.MainWindowTitle : The term '.MainWindowTitle' is not recognized as the name of a cmdlet, function, script file, or +operable program. Check the spelling of the name, or if a path was included, verify that the path is correct and try +again. +At line:1 char:30 ++ Get-Process | Where-Object { .MainWindowTitle -ne '' } | Select-Objec ... ++ ~~~~~~~~~~~~~~~~ + + CategoryInfo : ObjectNotFound: (.MainWindowTitle:String) [], CommandNotFoundException + + FullyQualifiedErrorId : CommandNotFoundException + +.MainWindowTitle : The term '.MainWindowTitle' is not recognized as the name of a cmdlet, function, script file, or +operable program. Check the spelling of the name, or if a path was included, verify that the path is correct and try +again. +At line:1 char:30 ++ Get-Process | Where-Object { .MainWindowTitle -ne '' } | Select-Objec ... ++ ~~~~~~~~~~~~~~~~ + + CategoryInfo : ObjectNotFound: (.MainWindowTitle:String) [], CommandNotFoundException + + FullyQualifiedErrorId : CommandNotFoundException + +.MainWindowTitle : The term '.MainWindowTitle' is not recognized as the name of a cmdlet, function, script file, or +operable program. Check the spelling of the name, or if a path was included, verify that the path is correct and try +again. +At line:1 char:30 ++ Get-Process | Where-Object { .MainWindowTitle -ne '' } | Select-Objec ... ++ ~~~~~~~~~~~~~~~~ + + CategoryInfo : ObjectNotFound: (.MainWindowTitle:String) [], CommandNotFoundException + + FullyQualifiedErrorId : CommandNotFoundException + +.MainWindowTitle : The term '.MainWindowTitle' is not recognized as the name of a cmdlet, function, script file, or +operable program. Check the spelling of the name, or if a path was included, verify that the path is correct and try +again. +At line:1 char:30 ++ Get-Process | Where-Object { .MainWindowTitle -ne '' } | Select-Objec ... ++ ~~~~~~~~~~~~~~~~ + + CategoryInfo : ObjectNotFound: (.MainWindowTitle:String) [], CommandNotFoundException + + FullyQualifiedErrorId : CommandNotFoundException + +.MainWindowTitle : The term '.MainWindowTitle' is not recognized as the name of a cmdlet, function, script file, or +operable program. Check the spelling of the name, or if a path was included, verify that the path is correct and try +again. +At line:1 char:30 ++ Get-Process | Where-Object { .MainWindowTitle -ne '' } | Select-Objec ... ++ ~~~~~~~~~~~~~~~~ + + CategoryInfo : ObjectNotFound: (.MainWindowTitle:String) [], CommandNotFoundException + + FullyQualifiedErrorId : CommandNotFoundException + +.MainWindowTitle : The term '.MainWindowTitle' is not recognized as the name of a cmdlet, function, script file, or +operable program. Check the spelling of the name, or if a path was included, verify that the path is correct and try +again. +At line:1 char:30 ++ Get-Process | Where-Object { .MainWindowTitle -ne '' } | Select-Objec ... ++ ~~~~~~~~~~~~~~~~ + + CategoryInfo : ObjectNotFound: (.MainWindowTitle:String) [], CommandNotFoundException + + FullyQualifiedErrorId : CommandNotFoundException + +.MainWindowTitle : The term '.MainWindowTitle' is not recognized as the name of a cmdlet, function, script file, or +operable program. Check the spelling of the name, or if a path was included, verify that the path is correct and try +again. +At line:1 char:30 ++ Get-Process | Where-Object { .MainWindowTitle -ne '' } | Select-Objec ... ++ ~~~~~~~~~~~~~~~~ + + CategoryInfo : ObjectNotFound: (.MainWindowTitle:String) [], CommandNotFoundException + + FullyQualifiedErrorId : CommandNotFoundException + +.MainWindowTitle : The term '.MainWindowTitle' is not recognized as the name of a cmdlet, function, script file, or +operable program. Check the spelling of the name, or if a path was included, verify that the path is correct and try +again. +At line:1 char:30 ++ Get-Process | Where-Object { .MainWindowTitle -ne '' } | Select-Objec ... ++ ~~~~~~~~~~~~~~~~ + + CategoryInfo : ObjectNotFound: (.MainWindowTitle:String) [], CommandNotFoundException + + FullyQualifiedErrorId : CommandNotFoundException + +.MainWindowTitle : The term '.MainWindowTitle' is not recognized as the name of a cmdlet, function, script file, or +operable program. Check the spelling of the name, or if a path was included, verify that the path is correct and try +again. +At line:1 char:30 ++ Get-Process | Where-Object { .MainWindowTitle -ne '' } | Select-Objec ... ++ ~~~~~~~~~~~~~~~~ + + CategoryInfo : ObjectNotFound: (.MainWindowTitle:String) [], CommandNotFoundException + + FullyQualifiedErrorId : CommandNotFoundException + +.MainWindowTitle : The term '.MainWindowTitle' is not recognized as the name of a cmdlet, function, script file, or +operable program. Check the spelling of the name, or if a path was included, verify that the path is correct and try +again. +At line:1 char:30 ++ Get-Process | Where-Object { .MainWindowTitle -ne '' } | Select-Objec ... ++ ~~~~~~~~~~~~~~~~ + + CategoryInfo : ObjectNotFound: (.MainWindowTitle:String) [], CommandNotFoundException + + FullyQualifiedErrorId : CommandNotFoundException + +.MainWindowTitle : The term '.MainWindowTitle' is not recognized as the name of a cmdlet, function, script file, or +operable program. Check the spelling of the name, or if a path was included, verify that the path is correct and try +again. +At line:1 char:30 ++ Get-Process | Where-Object { .MainWindowTitle -ne '' } | Select-Objec ... ++ ~~~~~~~~~~~~~~~~ + + CategoryInfo : ObjectNotFound: (.MainWindowTitle:String) [], CommandNotFoundException + + FullyQualifiedErrorId : CommandNotFoundException + +.MainWindowTitle : The term '.MainWindowTitle' is not recognized as the name of a cmdlet, function, script file, or +operable program. Check the spelling of the name, or if a path was included, verify that the path is correct and try +again. +At line:1 char:30 ++ Get-Process | Where-Object { .MainWindowTitle -ne '' } | Select-Objec ... ++ ~~~~~~~~~~~~~~~~ + + CategoryInfo : ObjectNotFound: (.MainWindowTitle:String) [], CommandNotFoundException + + FullyQualifiedErrorId : CommandNotFoundException + +.MainWindowTitle : The term '.MainWindowTitle' is not recognized as the name of a cmdlet, function, script file, or +operable program. Check the spelling of the name, or if a path was included, verify that the path is correct and try +again. +At line:1 char:30 ++ Get-Process | Where-Object { .MainWindowTitle -ne '' } | Select-Objec ... ++ ~~~~~~~~~~~~~~~~ + + CategoryInfo : ObjectNotFound: (.MainWindowTitle:String) [], CommandNotFoundException + + FullyQualifiedErrorId : CommandNotFoundException + +.MainWindowTitle : The term '.MainWindowTitle' is not recognized as the name of a cmdlet, function, script file, or +operable program. Check the spelling of the name, or if a path was included, verify that the path is correct and try +again. +At line:1 char:30 ++ Get-Process | Where-Object { .MainWindowTitle -ne '' } | Select-Objec ... ++ ~~~~~~~~~~~~~~~~ + + CategoryInfo : ObjectNotFound: (.MainWindowTitle:String) [], CommandNotFoundException + + FullyQualifiedErrorId : CommandNotFoundException + +.MainWindowTitle : The term '.MainWindowTitle' is not recognized as the name of a cmdlet, function, script file, or +operable program. Check the spelling of the name, or if a path was included, verify that the path is correct and try +again. +At line:1 char:30 ++ Get-Process | Where-Object { .MainWindowTitle -ne '' } | Select-Objec ... ++ ~~~~~~~~~~~~~~~~ + + CategoryInfo : ObjectNotFound: (.MainWindowTitle:String) [], CommandNotFoundException + + FullyQualifiedErrorId : CommandNotFoundException + +.MainWindowTitle : The term '.MainWindowTitle' is not recognized as the name of a cmdlet, function, script file, or +operable program. Check the spelling of the name, or if a path was included, verify that the path is correct and try +again. +At line:1 char:30 ++ Get-Process | Where-Object { .MainWindowTitle -ne '' } | Select-Objec ... ++ ~~~~~~~~~~~~~~~~ + + CategoryInfo : ObjectNotFound: (.MainWindowTitle:String) [], CommandNotFoundException + + FullyQualifiedErrorId : CommandNotFoundException + +.MainWindowTitle : The term '.MainWindowTitle' is not recognized as the name of a cmdlet, function, script file, or +operable program. Check the spelling of the name, or if a path was included, verify that the path is correct and try +again. +At line:1 char:30 ++ Get-Process | Where-Object { .MainWindowTitle -ne '' } | Select-Objec ... ++ ~~~~~~~~~~~~~~~~ + + CategoryInfo : ObjectNotFound: (.MainWindowTitle:String) [], CommandNotFoundException + + FullyQualifiedErrorId : CommandNotFoundException + +.MainWindowTitle : The term '.MainWindowTitle' is not recognized as the name of a cmdlet, function, script file, or +operable program. Check the spelling of the name, or if a path was included, verify that the path is correct and try +again. +At line:1 char:30 ++ Get-Process | Where-Object { .MainWindowTitle -ne '' } | Select-Objec ... ++ ~~~~~~~~~~~~~~~~ + + CategoryInfo : ObjectNotFound: (.MainWindowTitle:String) [], CommandNotFoundException + + FullyQualifiedErrorId : CommandNotFoundException + +.MainWindowTitle : The term '.MainWindowTitle' is not recognized as the name of a cmdlet, function, script file, or +operable program. Check the spelling of the name, or if a path was included, verify that the path is correct and try +again. +At line:1 char:30 ++ Get-Process | Where-Object { .MainWindowTitle -ne '' } | Select-Objec ... ++ ~~~~~~~~~~~~~~~~ + + CategoryInfo : ObjectNotFound: (.MainWindowTitle:String) [], CommandNotFoundException + + FullyQualifiedErrorId : CommandNotFoundException + +.MainWindowTitle : The term '.MainWindowTitle' is not recognized as the name of a cmdlet, function, script file, or +operable program. Check the spelling of the name, or if a path was included, verify that the path is correct and try +again. +At line:1 char:30 ++ Get-Process | Where-Object { .MainWindowTitle -ne '' } | Select-Objec ... ++ ~~~~~~~~~~~~~~~~ + + CategoryInfo : ObjectNotFound: (.MainWindowTitle:String) [], CommandNotFoundException + + FullyQualifiedErrorId : CommandNotFoundException + +.MainWindowTitle : The term '.MainWindowTitle' is not recognized as the name of a cmdlet, function, script file, or +operable program. Check the spelling of the name, or if a path was included, verify that the path is correct and try +again. +At line:1 char:30 ++ Get-Process | Where-Object { .MainWindowTitle -ne '' } | Select-Objec ... ++ ~~~~~~~~~~~~~~~~ + + CategoryInfo : ObjectNotFound: (.MainWindowTitle:String) [], CommandNotFoundException + + FullyQualifiedErrorId : CommandNotFoundException + +.MainWindowTitle : The term '.MainWindowTitle' is not recognized as the name of a cmdlet, function, script file, or +operable program. Check the spelling of the name, or if a path was included, verify that the path is correct and try +again. +At line:1 char:30 ++ Get-Process | Where-Object { .MainWindowTitle -ne '' } | Select-Objec ... ++ ~~~~~~~~~~~~~~~~ + + CategoryInfo : ObjectNotFound: (.MainWindowTitle:String) [], CommandNotFoundException + + FullyQualifiedErrorId : CommandNotFoundException + +.MainWindowTitle : The term '.MainWindowTitle' is not recognized as the name of a cmdlet, function, script file, or +operable program. Check the spelling of the name, or if a path was included, verify that the path is correct and try +again. +At line:1 char:30 ++ Get-Process | Where-Object { .MainWindowTitle -ne '' } | Select-Objec ... ++ ~~~~~~~~~~~~~~~~ + + CategoryInfo : ObjectNotFound: (.MainWindowTitle:String) [], CommandNotFoundException + + FullyQualifiedErrorId : CommandNotFoundException + +.MainWindowTitle : The term '.MainWindowTitle' is not recognized as the name of a cmdlet, function, script file, or +operable program. Check the spelling of the name, or if a path was included, verify that the path is correct and try +again. +At line:1 char:30 ++ Get-Process | Where-Object { .MainWindowTitle -ne '' } | Select-Objec ... ++ ~~~~~~~~~~~~~~~~ + + CategoryInfo : ObjectNotFound: (.MainWindowTitle:String) [], CommandNotFoundException + + FullyQualifiedErrorId : CommandNotFoundException + +.MainWindowTitle : The term '.MainWindowTitle' is not recognized as the name of a cmdlet, function, script file, or +operable program. Check the spelling of the name, or if a path was included, verify that the path is correct and try +again. +At line:1 char:30 ++ Get-Process | Where-Object { .MainWindowTitle -ne '' } | Select-Objec ... ++ ~~~~~~~~~~~~~~~~ + + CategoryInfo : ObjectNotFound: (.MainWindowTitle:String) [], CommandNotFoundException + + FullyQualifiedErrorId : CommandNotFoundException + +.MainWindowTitle : The term '.MainWindowTitle' is not recognized as the name of a cmdlet, function, script file, or +operable program. Check the spelling of the name, or if a path was included, verify that the path is correct and try +again. +At line:1 char:30 ++ Get-Process | Where-Object { .MainWindowTitle -ne '' } | Select-Objec ... ++ ~~~~~~~~~~~~~~~~ + + CategoryInfo : ObjectNotFound: (.MainWindowTitle:String) [], CommandNotFoundException + + FullyQualifiedErrorId : CommandNotFoundException + +.MainWindowTitle : The term '.MainWindowTitle' is not recognized as the name of a cmdlet, function, script file, or +operable program. Check the spelling of the name, or if a path was included, verify that the path is correct and try +again. +At line:1 char:30 ++ Get-Process | Where-Object { .MainWindowTitle -ne '' } | Select-Objec ... ++ ~~~~~~~~~~~~~~~~ + + CategoryInfo : ObjectNotFound: (.MainWindowTitle:String) [], CommandNotFoundException + + FullyQualifiedErrorId : CommandNotFoundException + +.MainWindowTitle : The term '.MainWindowTitle' is not recognized as the name of a cmdlet, function, script file, or +operable program. Check the spelling of the name, or if a path was included, verify that the path is correct and try +again. +At line:1 char:30 ++ Get-Process | Where-Object { .MainWindowTitle -ne '' } | Select-Objec ... ++ ~~~~~~~~~~~~~~~~ + + CategoryInfo : ObjectNotFound: (.MainWindowTitle:String) [], CommandNotFoundException + + FullyQualifiedErrorId : CommandNotFoundException + +.MainWindowTitle : The term '.MainWindowTitle' is not recognized as the name of a cmdlet, function, script file, or +operable program. Check the spelling of the name, or if a path was included, verify that the path is correct and try +again. +At line:1 char:30 ++ Get-Process | Where-Object { .MainWindowTitle -ne '' } | Select-Objec ... ++ ~~~~~~~~~~~~~~~~ + + CategoryInfo : ObjectNotFound: (.MainWindowTitle:String) [], CommandNotFoundException + + FullyQualifiedErrorId : CommandNotFoundException + +.MainWindowTitle : The term '.MainWindowTitle' is not recognized as the name of a cmdlet, function, script file, or +operable program. Check the spelling of the name, or if a path was included, verify that the path is correct and try +again. +At line:1 char:30 ++ Get-Process | Where-Object { .MainWindowTitle -ne '' } | Select-Objec ... ++ ~~~~~~~~~~~~~~~~ + + CategoryInfo : ObjectNotFound: (.MainWindowTitle:String) [], CommandNotFoundException + + FullyQualifiedErrorId : CommandNotFoundException + +.MainWindowTitle : The term '.MainWindowTitle' is not recognized as the name of a cmdlet, function, script file, or +operable program. Check the spelling of the name, or if a path was included, verify that the path is correct and try +again. +At line:1 char:30 ++ Get-Process | Where-Object { .MainWindowTitle -ne '' } | Select-Objec ... ++ ~~~~~~~~~~~~~~~~ + + CategoryInfo : ObjectNotFound: (.MainWindowTitle:String) [], CommandNotFoundException + + FullyQualifiedErrorId : CommandNotFoundException + +.MainWindowTitle : The term '.MainWindowTitle' is not recognized as the name of a cmdlet, function, script file, or +operable program. Check the spelling of the name, or if a path was included, verify that the path is correct and try +again. +At line:1 char:30 ++ Get-Process | Where-Object { .MainWindowTitle -ne '' } | Select-Objec ... ++ ~~~~~~~~~~~~~~~~ + + CategoryInfo : ObjectNotFound: (.MainWindowTitle:String) [], CommandNotFoundException + + FullyQualifiedErrorId : CommandNotFoundException + +.MainWindowTitle : The term '.MainWindowTitle' is not recognized as the name of a cmdlet, function, script file, or +operable program. Check the spelling of the name, or if a path was included, verify that the path is correct and try +again. +At line:1 char:30 ++ Get-Process | Where-Object { .MainWindowTitle -ne '' } | Select-Objec ... ++ ~~~~~~~~~~~~~~~~ + + CategoryInfo : ObjectNotFound: (.MainWindowTitle:String) [], CommandNotFoundException + + FullyQualifiedErrorId : CommandNotFoundException + +.MainWindowTitle : The term '.MainWindowTitle' is not recognized as the name of a cmdlet, function, script file, or +operable program. Check the spelling of the name, or if a path was included, verify that the path is correct and try +again. +At line:1 char:30 ++ Get-Process | Where-Object { .MainWindowTitle -ne '' } | Select-Objec ... ++ ~~~~~~~~~~~~~~~~ + + CategoryInfo : ObjectNotFound: (.MainWindowTitle:String) [], CommandNotFoundException + + FullyQualifiedErrorId : CommandNotFoundException + +.MainWindowTitle : The term '.MainWindowTitle' is not recognized as the name of a cmdlet, function, script file, or +operable program. Check the spelling of the name, or if a path was included, verify that the path is correct and try +again. +At line:1 char:30 ++ Get-Process | Where-Object { .MainWindowTitle -ne '' } | Select-Objec ... ++ ~~~~~~~~~~~~~~~~ + + CategoryInfo : ObjectNotFound: (.MainWindowTitle:String) [], CommandNotFoundException + + FullyQualifiedErrorId : CommandNotFoundException + +.MainWindowTitle : The term '.MainWindowTitle' is not recognized as the name of a cmdlet, function, script file, or +operable program. Check the spelling of the name, or if a path was included, verify that the path is correct and try +again. +At line:1 char:30 ++ Get-Process | Where-Object { .MainWindowTitle -ne '' } | Select-Objec ... ++ ~~~~~~~~~~~~~~~~ + + CategoryInfo : ObjectNotFound: (.MainWindowTitle:String) [], CommandNotFoundException + + FullyQualifiedErrorId : CommandNotFoundException + +.MainWindowTitle : The term '.MainWindowTitle' is not recognized as the name of a cmdlet, function, script file, or +operable program. Check the spelling of the name, or if a path was included, verify that the path is correct and try +again. +At line:1 char:30 ++ Get-Process | Where-Object { .MainWindowTitle -ne '' } | Select-Objec ... ++ ~~~~~~~~~~~~~~~~ + + CategoryInfo : ObjectNotFound: (.MainWindowTitle:String) [], CommandNotFoundException + + FullyQualifiedErrorId : CommandNotFoundException + +.MainWindowTitle : The term '.MainWindowTitle' is not recognized as the name of a cmdlet, function, script file, or +operable program. Check the spelling of the name, or if a path was included, verify that the path is correct and try +again. +At line:1 char:30 ++ Get-Process | Where-Object { .MainWindowTitle -ne '' } | Select-Objec ... ++ ~~~~~~~~~~~~~~~~ + + CategoryInfo : ObjectNotFound: (.MainWindowTitle:String) [], CommandNotFoundException + + FullyQualifiedErrorId : CommandNotFoundException + +.MainWindowTitle : The term '.MainWindowTitle' is not recognized as the name of a cmdlet, function, script file, or +operable program. Check the spelling of the name, or if a path was included, verify that the path is correct and try +again. +At line:1 char:30 ++ Get-Process | Where-Object { .MainWindowTitle -ne '' } | Select-Objec ... ++ ~~~~~~~~~~~~~~~~ + + CategoryInfo : ObjectNotFound: (.MainWindowTitle:String) [], CommandNotFoundException + + FullyQualifiedErrorId : CommandNotFoundException + +.MainWindowTitle : The term '.MainWindowTitle' is not recognized as the name of a cmdlet, function, script file, or +operable program. Check the spelling of the name, or if a path was included, verify that the path is correct and try +again. +At line:1 char:30 ++ Get-Process | Where-Object { .MainWindowTitle -ne '' } | Select-Objec ... ++ ~~~~~~~~~~~~~~~~ + + CategoryInfo : ObjectNotFound: (.MainWindowTitle:String) [], CommandNotFoundException + + FullyQualifiedErrorId : CommandNotFoundException + +.MainWindowTitle : The term '.MainWindowTitle' is not recognized as the name of a cmdlet, function, script file, or +operable program. Check the spelling of the name, or if a path was included, verify that the path is correct and try +again. +At line:1 char:30 ++ Get-Process | Where-Object { .MainWindowTitle -ne '' } | Select-Objec ... ++ ~~~~~~~~~~~~~~~~ + + CategoryInfo : ObjectNotFound: (.MainWindowTitle:String) [], CommandNotFoundException + + FullyQualifiedErrorId : CommandNotFoundException + +.MainWindowTitle : The term '.MainWindowTitle' is not recognized as the name of a cmdlet, function, script file, or +operable program. Check the spelling of the name, or if a path was included, verify that the path is correct and try +again. +At line:1 char:30 ++ Get-Process | Where-Object { .MainWindowTitle -ne '' } | Select-Objec ... ++ ~~~~~~~~~~~~~~~~ + + CategoryInfo : ObjectNotFound: (.MainWindowTitle:String) [], CommandNotFoundException + + FullyQualifiedErrorId : CommandNotFoundException + +.MainWindowTitle : The term '.MainWindowTitle' is not recognized as the name of a cmdlet, function, script file, or +operable program. Check the spelling of the name, or if a path was included, verify that the path is correct and try +again. +At line:1 char:30 ++ Get-Process | Where-Object { .MainWindowTitle -ne '' } | Select-Objec ... ++ ~~~~~~~~~~~~~~~~ + + CategoryInfo : ObjectNotFound: (.MainWindowTitle:String) [], CommandNotFoundException + + FullyQualifiedErrorId : CommandNotFoundException + +.MainWindowTitle : The term '.MainWindowTitle' is not recognized as the name of a cmdlet, function, script file, or +operable program. Check the spelling of the name, or if a path was included, verify that the path is correct and try +again. +At line:1 char:30 ++ Get-Process | Where-Object { .MainWindowTitle -ne '' } | Select-Objec ... ++ ~~~~~~~~~~~~~~~~ + + CategoryInfo : ObjectNotFound: (.MainWindowTitle:String) [], CommandNotFoundException + + FullyQualifiedErrorId : CommandNotFoundException + +.MainWindowTitle : The term '.MainWindowTitle' is not recognized as the name of a cmdlet, function, script file, or +operable program. Check the spelling of the name, or if a path was included, verify that the path is correct and try +again. +At line:1 char:30 ++ Get-Process | Where-Object { .MainWindowTitle -ne '' } | Select-Objec ... ++ ~~~~~~~~~~~~~~~~ + + CategoryInfo : ObjectNotFound: (.MainWindowTitle:String) [], CommandNotFoundException + + FullyQualifiedErrorId : CommandNotFoundException + +.MainWindowTitle : The term '.MainWindowTitle' is not recognized as the name of a cmdlet, function, script file, or +operable program. Check the spelling of the name, or if a path was included, verify that the path is correct and try +again. +At line:1 char:30 ++ Get-Process | Where-Object { .MainWindowTitle -ne '' } | Select-Objec ... ++ ~~~~~~~~~~~~~~~~ + + CategoryInfo : ObjectNotFound: (.MainWindowTitle:String) [], CommandNotFoundException + + FullyQualifiedErrorId : CommandNotFoundException + +.MainWindowTitle : The term '.MainWindowTitle' is not recognized as the name of a cmdlet, function, script file, or +operable program. Check the spelling of the name, or if a path was included, verify that the path is correct and try +again. +At line:1 char:30 ++ Get-Process | Where-Object { .MainWindowTitle -ne '' } | Select-Objec ... ++ ~~~~~~~~~~~~~~~~ + + CategoryInfo : ObjectNotFound: (.MainWindowTitle:String) [], CommandNotFoundException + + FullyQualifiedErrorId : CommandNotFoundException + +.MainWindowTitle : The term '.MainWindowTitle' is not recognized as the name of a cmdlet, function, script file, or +operable program. Check the spelling of the name, or if a path was included, verify that the path is correct and try +again. +At line:1 char:30 ++ Get-Process | Where-Object { .MainWindowTitle -ne '' } | Select-Objec ... ++ ~~~~~~~~~~~~~~~~ + + CategoryInfo : ObjectNotFound: (.MainWindowTitle:String) [], CommandNotFoundException + + FullyQualifiedErrorId : CommandNotFoundException + +.MainWindowTitle : The term '.MainWindowTitle' is not recognized as the name of a cmdlet, function, script file, or +operable program. Check the spelling of the name, or if a path was included, verify that the path is correct and try +again. +At line:1 char:30 ++ Get-Process | Where-Object { .MainWindowTitle -ne '' } | Select-Objec ... ++ ~~~~~~~~~~~~~~~~ + + CategoryInfo : ObjectNotFound: (.MainWindowTitle:String) [], CommandNotFoundException + + FullyQualifiedErrorId : CommandNotFoundException + +.MainWindowTitle : The term '.MainWindowTitle' is not recognized as the name of a cmdlet, function, script file, or +operable program. Check the spelling of the name, or if a path was included, verify that the path is correct and try +again. +At line:1 char:30 ++ Get-Process | Where-Object { .MainWindowTitle -ne '' } | Select-Objec ... ++ ~~~~~~~~~~~~~~~~ + + CategoryInfo : ObjectNotFound: (.MainWindowTitle:String) [], CommandNotFoundException + + FullyQualifiedErrorId : CommandNotFoundException + +.MainWindowTitle : The term '.MainWindowTitle' is not recognized as the name of a cmdlet, function, script file, or +operable program. Check the spelling of the name, or if a path was included, verify that the path is correct and try +again. +At line:1 char:30 ++ Get-Process | Where-Object { .MainWindowTitle -ne '' } | Select-Objec ... ++ ~~~~~~~~~~~~~~~~ + + CategoryInfo : ObjectNotFound: (.MainWindowTitle:String) [], CommandNotFoundException + + FullyQualifiedErrorId : CommandNotFoundException + +.MainWindowTitle : The term '.MainWindowTitle' is not recognized as the name of a cmdlet, function, script file, or +operable program. Check the spelling of the name, or if a path was included, verify that the path is correct and try +again. +At line:1 char:30 ++ Get-Process | Where-Object { .MainWindowTitle -ne '' } | Select-Objec ... ++ ~~~~~~~~~~~~~~~~ + + CategoryInfo : ObjectNotFound: (.MainWindowTitle:String) [], CommandNotFoundException + + FullyQualifiedErrorId : CommandNotFoundException + +.MainWindowTitle : The term '.MainWindowTitle' is not recognized as the name of a cmdlet, function, script file, or +operable program. Check the spelling of the name, or if a path was included, verify that the path is correct and try +again. +At line:1 char:30 ++ Get-Process | Where-Object { .MainWindowTitle -ne '' } | Select-Objec ... ++ ~~~~~~~~~~~~~~~~ + + CategoryInfo : ObjectNotFound: (.MainWindowTitle:String) [], CommandNotFoundException + + FullyQualifiedErrorId : CommandNotFoundException + +.MainWindowTitle : The term '.MainWindowTitle' is not recognized as the name of a cmdlet, function, script file, or +operable program. Check the spelling of the name, or if a path was included, verify that the path is correct and try +again. +At line:1 char:30 ++ Get-Process | Where-Object { .MainWindowTitle -ne '' } | Select-Objec ... ++ ~~~~~~~~~~~~~~~~ + + CategoryInfo : ObjectNotFound: (.MainWindowTitle:String) [], CommandNotFoundException + + FullyQualifiedErrorId : CommandNotFoundException + +.MainWindowTitle : The term '.MainWindowTitle' is not recognized as the name of a cmdlet, function, script file, or +operable program. Check the spelling of the name, or if a path was included, verify that the path is correct and try +again. +At line:1 char:30 ++ Get-Process | Where-Object { .MainWindowTitle -ne '' } | Select-Objec ... ++ ~~~~~~~~~~~~~~~~ + + CategoryInfo : ObjectNotFound: (.MainWindowTitle:String) [], CommandNotFoundException + + FullyQualifiedErrorId : CommandNotFoundException + +.MainWindowTitle : The term '.MainWindowTitle' is not recognized as the name of a cmdlet, function, script file, or +operable program. Check the spelling of the name, or if a path was included, verify that the path is correct and try +again. +At line:1 char:30 ++ Get-Process | Where-Object { .MainWindowTitle -ne '' } | Select-Objec ... ++ ~~~~~~~~~~~~~~~~ + + CategoryInfo : ObjectNotFound: (.MainWindowTitle:String) [], CommandNotFoundException + + FullyQualifiedErrorId : CommandNotFoundException + +.MainWindowTitle : The term '.MainWindowTitle' is not recognized as the name of a cmdlet, function, script file, or +operable program. Check the spelling of the name, or if a path was included, verify that the path is correct and try +again. +At line:1 char:30 ++ Get-Process | Where-Object { .MainWindowTitle -ne '' } | Select-Objec ... ++ ~~~~~~~~~~~~~~~~ + + CategoryInfo : ObjectNotFound: (.MainWindowTitle:String) [], CommandNotFoundException + + FullyQualifiedErrorId : CommandNotFoundException + +.MainWindowTitle : The term '.MainWindowTitle' is not recognized as the name of a cmdlet, function, script file, or +operable program. Check the spelling of the name, or if a path was included, verify that the path is correct and try +again. +At line:1 char:30 ++ Get-Process | Where-Object { .MainWindowTitle -ne '' } | Select-Objec ... ++ ~~~~~~~~~~~~~~~~ + + CategoryInfo : ObjectNotFound: (.MainWindowTitle:String) [], CommandNotFoundException + + FullyQualifiedErrorId : CommandNotFoundException + +.MainWindowTitle : The term '.MainWindowTitle' is not recognized as the name of a cmdlet, function, script file, or +operable program. Check the spelling of the name, or if a path was included, verify that the path is correct and try +again. +At line:1 char:30 ++ Get-Process | Where-Object { .MainWindowTitle -ne '' } | Select-Objec ... ++ ~~~~~~~~~~~~~~~~ + + CategoryInfo : ObjectNotFound: (.MainWindowTitle:String) [], CommandNotFoundException + + FullyQualifiedErrorId : CommandNotFoundException + +.MainWindowTitle : The term '.MainWindowTitle' is not recognized as the name of a cmdlet, function, script file, or +operable program. Check the spelling of the name, or if a path was included, verify that the path is correct and try +again. +At line:1 char:30 ++ Get-Process | Where-Object { .MainWindowTitle -ne '' } | Select-Objec ... ++ ~~~~~~~~~~~~~~~~ + + CategoryInfo : ObjectNotFound: (.MainWindowTitle:String) [], CommandNotFoundException + + FullyQualifiedErrorId : CommandNotFoundException + +.MainWindowTitle : The term '.MainWindowTitle' is not recognized as the name of a cmdlet, function, script file, or +operable program. Check the spelling of the name, or if a path was included, verify that the path is correct and try +again. +At line:1 char:30 ++ Get-Process | Where-Object { .MainWindowTitle -ne '' } | Select-Objec ... ++ ~~~~~~~~~~~~~~~~ + + CategoryInfo : ObjectNotFound: (.MainWindowTitle:String) [], CommandNotFoundException + + FullyQualifiedErrorId : CommandNotFoundException + +.MainWindowTitle : The term '.MainWindowTitle' is not recognized as the name of a cmdlet, function, script file, or +operable program. Check the spelling of the name, or if a path was included, verify that the path is correct and try +again. +At line:1 char:30 ++ Get-Process | Where-Object { .MainWindowTitle -ne '' } | Select-Objec ... ++ ~~~~~~~~~~~~~~~~ + + CategoryInfo : ObjectNotFound: (.MainWindowTitle:String) [], CommandNotFoundException + + FullyQualifiedErrorId : CommandNotFoundException + +.MainWindowTitle : The term '.MainWindowTitle' is not recognized as the name of a cmdlet, function, script file, or +operable program. Check the spelling of the name, or if a path was included, verify that the path is correct and try +again. +At line:1 char:30 ++ Get-Process | Where-Object { .MainWindowTitle -ne '' } | Select-Objec ... ++ ~~~~~~~~~~~~~~~~ + + CategoryInfo : ObjectNotFound: (.MainWindowTitle:String) [], CommandNotFoundException + + FullyQualifiedErrorId : CommandNotFoundException + +.MainWindowTitle : The term '.MainWindowTitle' is not recognized as the name of a cmdlet, function, script file, or +operable program. Check the spelling of the name, or if a path was included, verify that the path is correct and try +again. +At line:1 char:30 ++ Get-Process | Where-Object { .MainWindowTitle -ne '' } | Select-Objec ... ++ ~~~~~~~~~~~~~~~~ + + CategoryInfo : ObjectNotFound: (.MainWindowTitle:String) [], CommandNotFoundException + + FullyQualifiedErrorId : CommandNotFoundException + +.MainWindowTitle : The term '.MainWindowTitle' is not recognized as the name of a cmdlet, function, script file, or +operable program. Check the spelling of the name, or if a path was included, verify that the path is correct and try +again. +At line:1 char:30 ++ Get-Process | Where-Object { .MainWindowTitle -ne '' } | Select-Objec ... ++ ~~~~~~~~~~~~~~~~ + + CategoryInfo : ObjectNotFound: (.MainWindowTitle:String) [], CommandNotFoundException + + FullyQualifiedErrorId : CommandNotFoundException + +.MainWindowTitle : The term '.MainWindowTitle' is not recognized as the name of a cmdlet, function, script file, or +operable program. Check the spelling of the name, or if a path was included, verify that the path is correct and try +again. +At line:1 char:30 ++ Get-Process | Where-Object { .MainWindowTitle -ne '' } | Select-Objec ... ++ ~~~~~~~~~~~~~~~~ + + CategoryInfo : ObjectNotFound: (.MainWindowTitle:String) [], CommandNotFoundException + + FullyQualifiedErrorId : CommandNotFoundException + +.MainWindowTitle : The term '.MainWindowTitle' is not recognized as the name of a cmdlet, function, script file, or +operable program. Check the spelling of the name, or if a path was included, verify that the path is correct and try +again. +At line:1 char:30 ++ Get-Process | Where-Object { .MainWindowTitle -ne '' } | Select-Objec ... ++ ~~~~~~~~~~~~~~~~ + + CategoryInfo : ObjectNotFound: (.MainWindowTitle:String) [], CommandNotFoundException + + FullyQualifiedErrorId : CommandNotFoundException + +.MainWindowTitle : The term '.MainWindowTitle' is not recognized as the name of a cmdlet, function, script file, or +operable program. Check the spelling of the name, or if a path was included, verify that the path is correct and try +again. +At line:1 char:30 ++ Get-Process | Where-Object { .MainWindowTitle -ne '' } | Select-Objec ... ++ ~~~~~~~~~~~~~~~~ + + CategoryInfo : ObjectNotFound: (.MainWindowTitle:String) [], CommandNotFoundException + + FullyQualifiedErrorId : CommandNotFoundException + +.MainWindowTitle : The term '.MainWindowTitle' is not recognized as the name of a cmdlet, function, script file, or +operable program. Check the spelling of the name, or if a path was included, verify that the path is correct and try +again. +At line:1 char:30 ++ Get-Process | Where-Object { .MainWindowTitle -ne '' } | Select-Objec ... ++ ~~~~~~~~~~~~~~~~ + + CategoryInfo : ObjectNotFound: (.MainWindowTitle:String) [], CommandNotFoundException + + FullyQualifiedErrorId : CommandNotFoundException + +.MainWindowTitle : The term '.MainWindowTitle' is not recognized as the name of a cmdlet, function, script file, or +operable program. Check the spelling of the name, or if a path was included, verify that the path is correct and try +again. +At line:1 char:30 ++ Get-Process | Where-Object { .MainWindowTitle -ne '' } | Select-Objec ... ++ ~~~~~~~~~~~~~~~~ + + CategoryInfo : ObjectNotFound: (.MainWindowTitle:String) [], CommandNotFoundException + + FullyQualifiedErrorId : CommandNotFoundException + +.MainWindowTitle : The term '.MainWindowTitle' is not recognized as the name of a cmdlet, function, script file, or +operable program. Check the spelling of the name, or if a path was included, verify that the path is correct and try +again. +At line:1 char:30 ++ Get-Process | Where-Object { .MainWindowTitle -ne '' } | Select-Objec ... ++ ~~~~~~~~~~~~~~~~ + + CategoryInfo : ObjectNotFound: (.MainWindowTitle:String) [], CommandNotFoundException + + FullyQualifiedErrorId : CommandNotFoundException + +.MainWindowTitle : The term '.MainWindowTitle' is not recognized as the name of a cmdlet, function, script file, or +operable program. Check the spelling of the name, or if a path was included, verify that the path is correct and try +again. +At line:1 char:30 ++ Get-Process | Where-Object { .MainWindowTitle -ne '' } | Select-Objec ... ++ ~~~~~~~~~~~~~~~~ + + CategoryInfo : ObjectNotFound: (.MainWindowTitle:String) [], CommandNotFoundException + + FullyQualifiedErrorId : CommandNotFoundException + +.MainWindowTitle : The term '.MainWindowTitle' is not recognized as the name of a cmdlet, function, script file, or +operable program. Check the spelling of the name, or if a path was included, verify that the path is correct and try +again. +At line:1 char:30 ++ Get-Process | Where-Object { .MainWindowTitle -ne '' } | Select-Objec ... ++ ~~~~~~~~~~~~~~~~ + + CategoryInfo : ObjectNotFound: (.MainWindowTitle:String) [], CommandNotFoundException + + FullyQualifiedErrorId : CommandNotFoundException + +.MainWindowTitle : The term '.MainWindowTitle' is not recognized as the name of a cmdlet, function, script file, or +operable program. Check the spelling of the name, or if a path was included, verify that the path is correct and try +again. +At line:1 char:30 ++ Get-Process | Where-Object { .MainWindowTitle -ne '' } | Select-Objec ... ++ ~~~~~~~~~~~~~~~~ + + CategoryInfo : ObjectNotFound: (.MainWindowTitle:String) [], CommandNotFoundException + + FullyQualifiedErrorId : CommandNotFoundException + +.MainWindowTitle : The term '.MainWindowTitle' is not recognized as the name of a cmdlet, function, script file, or +operable program. Check the spelling of the name, or if a path was included, verify that the path is correct and try +again. +At line:1 char:30 ++ Get-Process | Where-Object { .MainWindowTitle -ne '' } | Select-Objec ... ++ ~~~~~~~~~~~~~~~~ + + CategoryInfo : ObjectNotFound: (.MainWindowTitle:String) [], CommandNotFoundException + + FullyQualifiedErrorId : CommandNotFoundException + +.MainWindowTitle : The term '.MainWindowTitle' is not recognized as the name of a cmdlet, function, script file, or +operable program. Check the spelling of the name, or if a path was included, verify that the path is correct and try +again. +At line:1 char:30 ++ Get-Process | Where-Object { .MainWindowTitle -ne '' } | Select-Objec ... ++ ~~~~~~~~~~~~~~~~ + + CategoryInfo : ObjectNotFound: (.MainWindowTitle:String) [], CommandNotFoundException + + FullyQualifiedErrorId : CommandNotFoundException + +.MainWindowTitle : The term '.MainWindowTitle' is not recognized as the name of a cmdlet, function, script file, or +operable program. Check the spelling of the name, or if a path was included, verify that the path is correct and try +again. +At line:1 char:30 ++ Get-Process | Where-Object { .MainWindowTitle -ne '' } | Select-Objec ... ++ ~~~~~~~~~~~~~~~~ + + CategoryInfo : ObjectNotFound: (.MainWindowTitle:String) [], CommandNotFoundException + + FullyQualifiedErrorId : CommandNotFoundException + +.MainWindowTitle : The term '.MainWindowTitle' is not recognized as the name of a cmdlet, function, script file, or +operable program. Check the spelling of the name, or if a path was included, verify that the path is correct and try +again. +At line:1 char:30 ++ Get-Process | Where-Object { .MainWindowTitle -ne '' } | Select-Objec ... ++ ~~~~~~~~~~~~~~~~ + + CategoryInfo : ObjectNotFound: (.MainWindowTitle:String) [], CommandNotFoundException + + FullyQualifiedErrorId : CommandNotFoundException + +.MainWindowTitle : The term '.MainWindowTitle' is not recognized as the name of a cmdlet, function, script file, or +operable program. Check the spelling of the name, or if a path was included, verify that the path is correct and try +again. +At line:1 char:30 ++ Get-Process | Where-Object { .MainWindowTitle -ne '' } | Select-Objec ... ++ ~~~~~~~~~~~~~~~~ + + CategoryInfo : ObjectNotFound: (.MainWindowTitle:String) [], CommandNotFoundException + + FullyQualifiedErrorId : CommandNotFoundException + +.MainWindowTitle : The term '.MainWindowTitle' is not recognized as the name of a cmdlet, function, script file, or +operable program. Check the spelling of the name, or if a path was included, verify that the path is correct and try +again. +At line:1 char:30 ++ Get-Process | Where-Object { .MainWindowTitle -ne '' } | Select-Objec ... ++ ~~~~~~~~~~~~~~~~ + + CategoryInfo : ObjectNotFound: (.MainWindowTitle:String) [], CommandNotFoundException + + FullyQualifiedErrorId : CommandNotFoundException + +.MainWindowTitle : The term '.MainWindowTitle' is not recognized as the name of a cmdlet, function, script file, or +operable program. Check the spelling of the name, or if a path was included, verify that the path is correct and try +again. +At line:1 char:30 ++ Get-Process | Where-Object { .MainWindowTitle -ne '' } | Select-Objec ... ++ ~~~~~~~~~~~~~~~~ + + CategoryInfo : ObjectNotFound: (.MainWindowTitle:String) [], CommandNotFoundException + + FullyQualifiedErrorId : CommandNotFoundException + +.MainWindowTitle : The term '.MainWindowTitle' is not recognized as the name of a cmdlet, function, script file, or +operable program. Check the spelling of the name, or if a path was included, verify that the path is correct and try +again. +At line:1 char:30 ++ Get-Process | Where-Object { .MainWindowTitle -ne '' } | Select-Objec ... ++ ~~~~~~~~~~~~~~~~ + + CategoryInfo : ObjectNotFound: (.MainWindowTitle:String) [], CommandNotFoundException + + FullyQualifiedErrorId : CommandNotFoundException + +.MainWindowTitle : The term '.MainWindowTitle' is not recognized as the name of a cmdlet, function, script file, or +operable program. Check the spelling of the name, or if a path was included, verify that the path is correct and try +again. +At line:1 char:30 ++ Get-Process | Where-Object { .MainWindowTitle -ne '' } | Select-Objec ... ++ ~~~~~~~~~~~~~~~~ + + CategoryInfo : ObjectNotFound: (.MainWindowTitle:String) [], CommandNotFoundException + + FullyQualifiedErrorId : CommandNotFoundException + +.MainWindowTitle : The term '.MainWindowTitle' is not recognized as the name of a cmdlet, function, script file, or +operable program. Check the spelling of the name, or if a path was included, verify that the path is correct and try +again. +At line:1 char:30 ++ Get-Process | Where-Object { .MainWindowTitle -ne '' } | Select-Objec ... ++ ~~~~~~~~~~~~~~~~ + + CategoryInfo : ObjectNotFound: (.MainWindowTitle:String) [], CommandNotFoundException + + FullyQualifiedErrorId : CommandNotFoundException + +.MainWindowTitle : The term '.MainWindowTitle' is not recognized as the name of a cmdlet, function, script file, or +operable program. Check the spelling of the name, or if a path was included, verify that the path is correct and try +again. +At line:1 char:30 ++ Get-Process | Where-Object { .MainWindowTitle -ne '' } | Select-Objec ... ++ ~~~~~~~~~~~~~~~~ + + CategoryInfo : ObjectNotFound: (.MainWindowTitle:String) [], CommandNotFoundException + + FullyQualifiedErrorId : CommandNotFoundException + +.MainWindowTitle : The term '.MainWindowTitle' is not recognized as the name of a cmdlet, function, script file, or +operable program. Check the spelling of the name, or if a path was included, verify that the path is correct and try +again. +At line:1 char:30 ++ Get-Process | Where-Object { .MainWindowTitle -ne '' } | Select-Objec ... ++ ~~~~~~~~~~~~~~~~ + + CategoryInfo : ObjectNotFound: (.MainWindowTitle:String) [], CommandNotFoundException + + FullyQualifiedErrorId : CommandNotFoundException + +.MainWindowTitle : The term '.MainWindowTitle' is not recognized as the name of a cmdlet, function, script file, or +operable program. Check the spelling of the name, or if a path was included, verify that the path is correct and try +again. +At line:1 char:30 ++ Get-Process | Where-Object { .MainWindowTitle -ne '' } | Select-Objec ... ++ ~~~~~~~~~~~~~~~~ + + CategoryInfo : ObjectNotFound: (.MainWindowTitle:String) [], CommandNotFoundException + + FullyQualifiedErrorId : CommandNotFoundException + +.MainWindowTitle : The term '.MainWindowTitle' is not recognized as the name of a cmdlet, function, script file, or +operable program. Check the spelling of the name, or if a path was included, verify that the path is correct and try +again. +At line:1 char:30 ++ Get-Process | Where-Object { .MainWindowTitle -ne '' } | Select-Objec ... ++ ~~~~~~~~~~~~~~~~ + + CategoryInfo : ObjectNotFound: (.MainWindowTitle:String) [], CommandNotFoundException + + FullyQualifiedErrorId : CommandNotFoundException + +.MainWindowTitle : The term '.MainWindowTitle' is not recognized as the name of a cmdlet, function, script file, or +operable program. Check the spelling of the name, or if a path was included, verify that the path is correct and try +again. +At line:1 char:30 ++ Get-Process | Where-Object { .MainWindowTitle -ne '' } | Select-Objec ... ++ ~~~~~~~~~~~~~~~~ + + CategoryInfo : ObjectNotFound: (.MainWindowTitle:String) [], CommandNotFoundException + + FullyQualifiedErrorId : CommandNotFoundException + +.MainWindowTitle : The term '.MainWindowTitle' is not recognized as the name of a cmdlet, function, script file, or +operable program. Check the spelling of the name, or if a path was included, verify that the path is correct and try +again. +At line:1 char:30 ++ Get-Process | Where-Object { .MainWindowTitle -ne '' } | Select-Objec ... ++ ~~~~~~~~~~~~~~~~ + + CategoryInfo : ObjectNotFound: (.MainWindowTitle:String) [], CommandNotFoundException + + FullyQualifiedErrorId : CommandNotFoundException + +.MainWindowTitle : The term '.MainWindowTitle' is not recognized as the name of a cmdlet, function, script file, or +operable program. Check the spelling of the name, or if a path was included, verify that the path is correct and try +again. +At line:1 char:30 ++ Get-Process | Where-Object { .MainWindowTitle -ne '' } | Select-Objec ... ++ ~~~~~~~~~~~~~~~~ + + CategoryInfo : ObjectNotFound: (.MainWindowTitle:String) [], CommandNotFoundException + + FullyQualifiedErrorId : CommandNotFoundException + +.MainWindowTitle : The term '.MainWindowTitle' is not recognized as the name of a cmdlet, function, script file, or +operable program. Check the spelling of the name, or if a path was included, verify that the path is correct and try +again. +At line:1 char:30 ++ Get-Process | Where-Object { .MainWindowTitle -ne '' } | Select-Objec ... ++ ~~~~~~~~~~~~~~~~ + + CategoryInfo : ObjectNotFound: (.MainWindowTitle:String) [], CommandNotFoundException + + FullyQualifiedErrorId : CommandNotFoundException + +.MainWindowTitle : The term '.MainWindowTitle' is not recognized as the name of a cmdlet, function, script file, or +operable program. Check the spelling of the name, or if a path was included, verify that the path is correct and try +again. +At line:1 char:30 ++ Get-Process | Where-Object { .MainWindowTitle -ne '' } | Select-Objec ... ++ ~~~~~~~~~~~~~~~~ + + CategoryInfo : ObjectNotFound: (.MainWindowTitle:String) [], CommandNotFoundException + + FullyQualifiedErrorId : CommandNotFoundException + +.MainWindowTitle : The term '.MainWindowTitle' is not recognized as the name of a cmdlet, function, script file, or +operable program. Check the spelling of the name, or if a path was included, verify that the path is correct and try +again. +At line:1 char:30 ++ Get-Process | Where-Object { .MainWindowTitle -ne '' } | Select-Objec ... ++ ~~~~~~~~~~~~~~~~ + + CategoryInfo : ObjectNotFound: (.MainWindowTitle:String) [], CommandNotFoundException + + FullyQualifiedErrorId : CommandNotFoundException + +.MainWindowTitle : The term '.MainWindowTitle' is not recognized as the name of a cmdlet, function, script file, or +operable program. Check the spelling of the name, or if a path was included, verify that the path is correct and try +again. +At line:1 char:30 ++ Get-Process | Where-Object { .MainWindowTitle -ne '' } | Select-Objec ... ++ ~~~~~~~~~~~~~~~~ + + CategoryInfo : ObjectNotFound: (.MainWindowTitle:String) [], CommandNotFoundException + + FullyQualifiedErrorId : CommandNotFoundException + +.MainWindowTitle : The term '.MainWindowTitle' is not recognized as the name of a cmdlet, function, script file, or +operable program. Check the spelling of the name, or if a path was included, verify that the path is correct and try +again. +At line:1 char:30 ++ Get-Process | Where-Object { .MainWindowTitle -ne '' } | Select-Objec ... ++ ~~~~~~~~~~~~~~~~ + + CategoryInfo : ObjectNotFound: (.MainWindowTitle:String) [], CommandNotFoundException + + FullyQualifiedErrorId : CommandNotFoundException + +.MainWindowTitle : The term '.MainWindowTitle' is not recognized as the name of a cmdlet, function, script file, or +operable program. Check the spelling of the name, or if a path was included, verify that the path is correct and try +again. +At line:1 char:30 ++ Get-Process | Where-Object { .MainWindowTitle -ne '' } | Select-Objec ... ++ ~~~~~~~~~~~~~~~~ + + CategoryInfo : ObjectNotFound: (.MainWindowTitle:String) [], CommandNotFoundException + + FullyQualifiedErrorId : CommandNotFoundException + +.MainWindowTitle : The term '.MainWindowTitle' is not recognized as the name of a cmdlet, function, script file, or +operable program. Check the spelling of the name, or if a path was included, verify that the path is correct and try +again. +At line:1 char:30 ++ Get-Process | Where-Object { .MainWindowTitle -ne '' } | Select-Objec ... ++ ~~~~~~~~~~~~~~~~ + + CategoryInfo : ObjectNotFound: (.MainWindowTitle:String) [], CommandNotFoundException + + FullyQualifiedErrorId : CommandNotFoundException + +.MainWindowTitle : The term '.MainWindowTitle' is not recognized as the name of a cmdlet, function, script file, or +operable program. Check the spelling of the name, or if a path was included, verify that the path is correct and try +again. +At line:1 char:30 ++ Get-Process | Where-Object { .MainWindowTitle -ne '' } | Select-Objec ... ++ ~~~~~~~~~~~~~~~~ + + CategoryInfo : ObjectNotFound: (.MainWindowTitle:String) [], CommandNotFoundException + + FullyQualifiedErrorId : CommandNotFoundException + +.MainWindowTitle : The term '.MainWindowTitle' is not recognized as the name of a cmdlet, function, script file, or +operable program. Check the spelling of the name, or if a path was included, verify that the path is correct and try +again. +At line:1 char:30 ++ Get-Process | Where-Object { .MainWindowTitle -ne '' } | Select-Objec ... ++ ~~~~~~~~~~~~~~~~ + + CategoryInfo : ObjectNotFound: (.MainWindowTitle:String) [], CommandNotFoundException + + FullyQualifiedErrorId : CommandNotFoundException + +.MainWindowTitle : The term '.MainWindowTitle' is not recognized as the name of a cmdlet, function, script file, or +operable program. Check the spelling of the name, or if a path was included, verify that the path is correct and try +again. +At line:1 char:30 ++ Get-Process | Where-Object { .MainWindowTitle -ne '' } | Select-Objec ... ++ ~~~~~~~~~~~~~~~~ + + CategoryInfo : ObjectNotFound: (.MainWindowTitle:String) [], CommandNotFoundException + + FullyQualifiedErrorId : CommandNotFoundException + +.MainWindowTitle : The term '.MainWindowTitle' is not recognized as the name of a cmdlet, function, script file, or +operable program. Check the spelling of the name, or if a path was included, verify that the path is correct and try +again. +At line:1 char:30 ++ Get-Process | Where-Object { .MainWindowTitle -ne '' } | Select-Objec ... ++ ~~~~~~~~~~~~~~~~ + + CategoryInfo : ObjectNotFound: (.MainWindowTitle:String) [], CommandNotFoundException + + FullyQualifiedErrorId : CommandNotFoundException + +.MainWindowTitle : The term '.MainWindowTitle' is not recognized as the name of a cmdlet, function, script file, or +operable program. Check the spelling of the name, or if a path was included, verify that the path is correct and try +again. +At line:1 char:30 ++ Get-Process | Where-Object { .MainWindowTitle -ne '' } | Select-Objec ... ++ ~~~~~~~~~~~~~~~~ + + CategoryInfo : ObjectNotFound: (.MainWindowTitle:String) [], CommandNotFoundException + + FullyQualifiedErrorId : CommandNotFoundException + +.MainWindowTitle : The term '.MainWindowTitle' is not recognized as the name of a cmdlet, function, script file, or +operable program. Check the spelling of the name, or if a path was included, verify that the path is correct and try +again. +At line:1 char:30 ++ Get-Process | Where-Object { .MainWindowTitle -ne '' } | Select-Objec ... ++ ~~~~~~~~~~~~~~~~ + + CategoryInfo : ObjectNotFound: (.MainWindowTitle:String) [], CommandNotFoundException + + FullyQualifiedErrorId : CommandNotFoundException + +.MainWindowTitle : The term '.MainWindowTitle' is not recognized as the name of a cmdlet, function, script file, or +operable program. Check the spelling of the name, or if a path was included, verify that the path is correct and try +again. +At line:1 char:30 ++ Get-Process | Where-Object { .MainWindowTitle -ne '' } | Select-Objec ... ++ ~~~~~~~~~~~~~~~~ + + CategoryInfo : ObjectNotFound: (.MainWindowTitle:String) [], CommandNotFoundException + + FullyQualifiedErrorId : CommandNotFoundException + +.MainWindowTitle : The term '.MainWindowTitle' is not recognized as the name of a cmdlet, function, script file, or +operable program. Check the spelling of the name, or if a path was included, verify that the path is correct and try +again. +At line:1 char:30 ++ Get-Process | Where-Object { .MainWindowTitle -ne '' } | Select-Objec ... ++ ~~~~~~~~~~~~~~~~ + + CategoryInfo : ObjectNotFound: (.MainWindowTitle:String) [], CommandNotFoundException + + FullyQualifiedErrorId : CommandNotFoundException + +.MainWindowTitle : The term '.MainWindowTitle' is not recognized as the name of a cmdlet, function, script file, or +operable program. Check the spelling of the name, or if a path was included, verify that the path is correct and try +again. +At line:1 char:30 ++ Get-Process | Where-Object { .MainWindowTitle -ne '' } | Select-Objec ... ++ ~~~~~~~~~~~~~~~~ + + CategoryInfo : ObjectNotFound: (.MainWindowTitle:String) [], CommandNotFoundException + + FullyQualifiedErrorId : CommandNotFoundException + +.MainWindowTitle : The term '.MainWindowTitle' is not recognized as the name of a cmdlet, function, script file, or +operable program. Check the spelling of the name, or if a path was included, verify that the path is correct and try +again. +At line:1 char:30 ++ Get-Process | Where-Object { .MainWindowTitle -ne '' } | Select-Objec ... ++ ~~~~~~~~~~~~~~~~ + + CategoryInfo : ObjectNotFound: (.MainWindowTitle:String) [], CommandNotFoundException + + FullyQualifiedErrorId : CommandNotFoundException + +.MainWindowTitle : The term '.MainWindowTitle' is not recognized as the name of a cmdlet, function, script file, or +operable program. Check the spelling of the name, or if a path was included, verify that the path is correct and try +again. +At line:1 char:30 ++ Get-Process | Where-Object { .MainWindowTitle -ne '' } | Select-Objec ... ++ ~~~~~~~~~~~~~~~~ + + CategoryInfo : ObjectNotFound: (.MainWindowTitle:String) [], CommandNotFoundException + + FullyQualifiedErrorId : CommandNotFoundException + +.MainWindowTitle : The term '.MainWindowTitle' is not recognized as the name of a cmdlet, function, script file, or +operable program. Check the spelling of the name, or if a path was included, verify that the path is correct and try +again. +At line:1 char:30 ++ Get-Process | Where-Object { .MainWindowTitle -ne '' } | Select-Objec ... ++ ~~~~~~~~~~~~~~~~ + + CategoryInfo : ObjectNotFound: (.MainWindowTitle:String) [], CommandNotFoundException + + FullyQualifiedErrorId : CommandNotFoundException + +.MainWindowTitle : The term '.MainWindowTitle' is not recognized as the name of a cmdlet, function, script file, or +operable program. Check the spelling of the name, or if a path was included, verify that the path is correct and try +again. +At line:1 char:30 ++ Get-Process | Where-Object { .MainWindowTitle -ne '' } | Select-Objec ... ++ ~~~~~~~~~~~~~~~~ + + CategoryInfo : ObjectNotFound: (.MainWindowTitle:String) [], CommandNotFoundException + + FullyQualifiedErrorId : CommandNotFoundException + +.MainWindowTitle : The term '.MainWindowTitle' is not recognized as the name of a cmdlet, function, script file, or +operable program. Check the spelling of the name, or if a path was included, verify that the path is correct and try +again. +At line:1 char:30 ++ Get-Process | Where-Object { .MainWindowTitle -ne '' } | Select-Objec ... ++ ~~~~~~~~~~~~~~~~ + + CategoryInfo : ObjectNotFound: (.MainWindowTitle:String) [], CommandNotFoundException + + FullyQualifiedErrorId : CommandNotFoundException + +.MainWindowTitle : The term '.MainWindowTitle' is not recognized as the name of a cmdlet, function, script file, or +operable program. Check the spelling of the name, or if a path was included, verify that the path is correct and try +again. +At line:1 char:30 ++ Get-Process | Where-Object { .MainWindowTitle -ne '' } | Select-Objec ... ++ ~~~~~~~~~~~~~~~~ + + CategoryInfo : ObjectNotFound: (.MainWindowTitle:String) [], CommandNotFoundException + + FullyQualifiedErrorId : CommandNotFoundException + +.MainWindowTitle : The term '.MainWindowTitle' is not recognized as the name of a cmdlet, function, script file, or +operable program. Check the spelling of the name, or if a path was included, verify that the path is correct and try +again. +At line:1 char:30 ++ Get-Process | Where-Object { .MainWindowTitle -ne '' } | Select-Objec ... ++ ~~~~~~~~~~~~~~~~ + + CategoryInfo : ObjectNotFound: (.MainWindowTitle:String) [], CommandNotFoundException + + FullyQualifiedErrorId : CommandNotFoundException + +.MainWindowTitle : The term '.MainWindowTitle' is not recognized as the name of a cmdlet, function, script file, or +operable program. Check the spelling of the name, or if a path was included, verify that the path is correct and try +again. +At line:1 char:30 ++ Get-Process | Where-Object { .MainWindowTitle -ne '' } | Select-Objec ... ++ ~~~~~~~~~~~~~~~~ + + CategoryInfo : ObjectNotFound: (.MainWindowTitle:String) [], CommandNotFoundException + + FullyQualifiedErrorId : CommandNotFoundException + +.MainWindowTitle : The term '.MainWindowTitle' is not recognized as the name of a cmdlet, function, script file, or +operable program. Check the spelling of the name, or if a path was included, verify that the path is correct and try +again. +At line:1 char:30 ++ Get-Process | Where-Object { .MainWindowTitle -ne '' } | Select-Objec ... ++ ~~~~~~~~~~~~~~~~ + + CategoryInfo : ObjectNotFound: (.MainWindowTitle:String) [], CommandNotFoundException + + FullyQualifiedErrorId : CommandNotFoundException + +.MainWindowTitle : The term '.MainWindowTitle' is not recognized as the name of a cmdlet, function, script file, or +operable program. Check the spelling of the name, or if a path was included, verify that the path is correct and try +again. +At line:1 char:30 ++ Get-Process | Where-Object { .MainWindowTitle -ne '' } | Select-Objec ... ++ ~~~~~~~~~~~~~~~~ + + CategoryInfo : ObjectNotFound: (.MainWindowTitle:String) [], CommandNotFoundException + + FullyQualifiedErrorId : CommandNotFoundException + +.MainWindowTitle : The term '.MainWindowTitle' is not recognized as the name of a cmdlet, function, script file, or +operable program. Check the spelling of the name, or if a path was included, verify that the path is correct and try +again. +At line:1 char:30 ++ Get-Process | Where-Object { .MainWindowTitle -ne '' } | Select-Objec ... ++ ~~~~~~~~~~~~~~~~ + + CategoryInfo : ObjectNotFound: (.MainWindowTitle:String) [], CommandNotFoundException + + FullyQualifiedErrorId : CommandNotFoundException + +.MainWindowTitle : The term '.MainWindowTitle' is not recognized as the name of a cmdlet, function, script file, or +operable program. Check the spelling of the name, or if a path was included, verify that the path is correct and try +again. +At line:1 char:30 ++ Get-Process | Where-Object { .MainWindowTitle -ne '' } | Select-Objec ... ++ ~~~~~~~~~~~~~~~~ + + CategoryInfo : ObjectNotFound: (.MainWindowTitle:String) [], CommandNotFoundException + + FullyQualifiedErrorId : CommandNotFoundException + +.MainWindowTitle : The term '.MainWindowTitle' is not recognized as the name of a cmdlet, function, script file, or +operable program. Check the spelling of the name, or if a path was included, verify that the path is correct and try +again. +At line:1 char:30 ++ Get-Process | Where-Object { .MainWindowTitle -ne '' } | Select-Objec ... ++ ~~~~~~~~~~~~~~~~ + + CategoryInfo : ObjectNotFound: (.MainWindowTitle:String) [], CommandNotFoundException + + FullyQualifiedErrorId : CommandNotFoundException + +.MainWindowTitle : The term '.MainWindowTitle' is not recognized as the name of a cmdlet, function, script file, or +operable program. Check the spelling of the name, or if a path was included, verify that the path is correct and try +again. +At line:1 char:30 ++ Get-Process | Where-Object { .MainWindowTitle -ne '' } | Select-Objec ... ++ ~~~~~~~~~~~~~~~~ + + CategoryInfo : ObjectNotFound: (.MainWindowTitle:String) [], CommandNotFoundException + + FullyQualifiedErrorId : CommandNotFoundException + +.MainWindowTitle : The term '.MainWindowTitle' is not recognized as the name of a cmdlet, function, script file, or +operable program. Check the spelling of the name, or if a path was included, verify that the path is correct and try +again. +At line:1 char:30 ++ Get-Process | Where-Object { .MainWindowTitle -ne '' } | Select-Objec ... ++ ~~~~~~~~~~~~~~~~ + + CategoryInfo : ObjectNotFound: (.MainWindowTitle:String) [], CommandNotFoundException + + FullyQualifiedErrorId : CommandNotFoundException + +.MainWindowTitle : The term '.MainWindowTitle' is not recognized as the name of a cmdlet, function, script file, or +operable program. Check the spelling of the name, or if a path was included, verify that the path is correct and try +again. +At line:1 char:30 ++ Get-Process | Where-Object { .MainWindowTitle -ne '' } | Select-Objec ... ++ ~~~~~~~~~~~~~~~~ + + CategoryInfo : ObjectNotFound: (.MainWindowTitle:String) [], CommandNotFoundException + + FullyQualifiedErrorId : CommandNotFoundException + +.MainWindowTitle : The term '.MainWindowTitle' is not recognized as the name of a cmdlet, function, script file, or +operable program. Check the spelling of the name, or if a path was included, verify that the path is correct and try +again. +At line:1 char:30 ++ Get-Process | Where-Object { .MainWindowTitle -ne '' } | Select-Objec ... ++ ~~~~~~~~~~~~~~~~ + + CategoryInfo : ObjectNotFound: (.MainWindowTitle:String) [], CommandNotFoundException + + FullyQualifiedErrorId : CommandNotFoundException + +.MainWindowTitle : The term '.MainWindowTitle' is not recognized as the name of a cmdlet, function, script file, or +operable program. Check the spelling of the name, or if a path was included, verify that the path is correct and try +again. +At line:1 char:30 ++ Get-Process | Where-Object { .MainWindowTitle -ne '' } | Select-Objec ... ++ ~~~~~~~~~~~~~~~~ + + CategoryInfo : ObjectNotFound: (.MainWindowTitle:String) [], CommandNotFoundException + + FullyQualifiedErrorId : CommandNotFoundException + +.MainWindowTitle : The term '.MainWindowTitle' is not recognized as the name of a cmdlet, function, script file, or +operable program. Check the spelling of the name, or if a path was included, verify that the path is correct and try +again. +At line:1 char:30 ++ Get-Process | Where-Object { .MainWindowTitle -ne '' } | Select-Objec ... ++ ~~~~~~~~~~~~~~~~ + + CategoryInfo : ObjectNotFound: (.MainWindowTitle:String) [], CommandNotFoundException + + FullyQualifiedErrorId : CommandNotFoundException + +.MainWindowTitle : The term '.MainWindowTitle' is not recognized as the name of a cmdlet, function, script file, or +operable program. Check the spelling of the name, or if a path was included, verify that the path is correct and try +again. +At line:1 char:30 ++ Get-Process | Where-Object { .MainWindowTitle -ne '' } | Select-Objec ... ++ ~~~~~~~~~~~~~~~~ + + CategoryInfo : ObjectNotFound: (.MainWindowTitle:String) [], CommandNotFoundException + + FullyQualifiedErrorId : CommandNotFoundException + +.MainWindowTitle : The term '.MainWindowTitle' is not recognized as the name of a cmdlet, function, script file, or +operable program. Check the spelling of the name, or if a path was included, verify that the path is correct and try +again. +At line:1 char:30 ++ Get-Process | Where-Object { .MainWindowTitle -ne '' } | Select-Objec ... ++ ~~~~~~~~~~~~~~~~ + + CategoryInfo : ObjectNotFound: (.MainWindowTitle:String) [], CommandNotFoundException + + FullyQualifiedErrorId : CommandNotFoundException + +.MainWindowTitle : The term '.MainWindowTitle' is not recognized as the name of a cmdlet, function, script file, or +operable program. Check the spelling of the name, or if a path was included, verify that the path is correct and try +again. +At line:1 char:30 ++ Get-Process | Where-Object { .MainWindowTitle -ne '' } | Select-Objec ... ++ ~~~~~~~~~~~~~~~~ + + CategoryInfo : ObjectNotFound: (.MainWindowTitle:String) [], CommandNotFoundException + + FullyQualifiedErrorId : CommandNotFoundException + +.MainWindowTitle : The term '.MainWindowTitle' is not recognized as the name of a cmdlet, function, script file, or +operable program. Check the spelling of the name, or if a path was included, verify that the path is correct and try +again. +At line:1 char:30 ++ Get-Process | Where-Object { .MainWindowTitle -ne '' } | Select-Objec ... ++ ~~~~~~~~~~~~~~~~ + + CategoryInfo : ObjectNotFound: (.MainWindowTitle:String) [], CommandNotFoundException + + FullyQualifiedErrorId : CommandNotFoundException + +.MainWindowTitle : The term '.MainWindowTitle' is not recognized as the name of a cmdlet, function, script file, or +operable program. Check the spelling of the name, or if a path was included, verify that the path is correct and try +again. +At line:1 char:30 ++ Get-Process | Where-Object { .MainWindowTitle -ne '' } | Select-Objec ... ++ ~~~~~~~~~~~~~~~~ + + CategoryInfo : ObjectNotFound: (.MainWindowTitle:String) [], CommandNotFoundException + + FullyQualifiedErrorId : CommandNotFoundException + +.MainWindowTitle : The term '.MainWindowTitle' is not recognized as the name of a cmdlet, function, script file, or +operable program. Check the spelling of the name, or if a path was included, verify that the path is correct and try +again. +At line:1 char:30 ++ Get-Process | Where-Object { .MainWindowTitle -ne '' } | Select-Objec ... ++ ~~~~~~~~~~~~~~~~ + + CategoryInfo : ObjectNotFound: (.MainWindowTitle:String) [], CommandNotFoundException + + FullyQualifiedErrorId : CommandNotFoundException + +.MainWindowTitle : The term '.MainWindowTitle' is not recognized as the name of a cmdlet, function, script file, or +operable program. Check the spelling of the name, or if a path was included, verify that the path is correct and try +again. +At line:1 char:30 ++ Get-Process | Where-Object { .MainWindowTitle -ne '' } | Select-Objec ... ++ ~~~~~~~~~~~~~~~~ + + CategoryInfo : ObjectNotFound: (.MainWindowTitle:String) [], CommandNotFoundException + + FullyQualifiedErrorId : CommandNotFoundException + +.MainWindowTitle : The term '.MainWindowTitle' is not recognized as the name of a cmdlet, function, script file, or +operable program. Check the spelling of the name, or if a path was included, verify that the path is correct and try +again. +At line:1 char:30 ++ Get-Process | Where-Object { .MainWindowTitle -ne '' } | Select-Objec ... ++ ~~~~~~~~~~~~~~~~ + + CategoryInfo : ObjectNotFound: (.MainWindowTitle:String) [], CommandNotFoundException + + FullyQualifiedErrorId : CommandNotFoundException + +.MainWindowTitle : The term '.MainWindowTitle' is not recognized as the name of a cmdlet, function, script file, or +operable program. Check the spelling of the name, or if a path was included, verify that the path is correct and try +again. +At line:1 char:30 ++ Get-Process | Where-Object { .MainWindowTitle -ne '' } | Select-Objec ... ++ ~~~~~~~~~~~~~~~~ + + CategoryInfo : ObjectNotFound: (.MainWindowTitle:String) [], CommandNotFoundException + + FullyQualifiedErrorId : CommandNotFoundException + +.MainWindowTitle : The term '.MainWindowTitle' is not recognized as the name of a cmdlet, function, script file, or +operable program. Check the spelling of the name, or if a path was included, verify that the path is correct and try +again. +At line:1 char:30 ++ Get-Process | Where-Object { .MainWindowTitle -ne '' } | Select-Objec ... ++ ~~~~~~~~~~~~~~~~ + + CategoryInfo : ObjectNotFound: (.MainWindowTitle:String) [], CommandNotFoundException + + FullyQualifiedErrorId : CommandNotFoundException + +.MainWindowTitle : The term '.MainWindowTitle' is not recognized as the name of a cmdlet, function, script file, or +operable program. Check the spelling of the name, or if a path was included, verify that the path is correct and try +again. +At line:1 char:30 ++ Get-Process | Where-Object { .MainWindowTitle -ne '' } | Select-Objec ... ++ ~~~~~~~~~~~~~~~~ + + CategoryInfo : ObjectNotFound: (.MainWindowTitle:String) [], CommandNotFoundException + + FullyQualifiedErrorId : CommandNotFoundException + +.MainWindowTitle : The term '.MainWindowTitle' is not recognized as the name of a cmdlet, function, script file, or +operable program. Check the spelling of the name, or if a path was included, verify that the path is correct and try +again. +At line:1 char:30 ++ Get-Process | Where-Object { .MainWindowTitle -ne '' } | Select-Objec ... ++ ~~~~~~~~~~~~~~~~ + + CategoryInfo : ObjectNotFound: (.MainWindowTitle:String) [], CommandNotFoundException + + FullyQualifiedErrorId : CommandNotFoundException + +.MainWindowTitle : The term '.MainWindowTitle' is not recognized as the name of a cmdlet, function, script file, or +operable program. Check the spelling of the name, or if a path was included, verify that the path is correct and try +again. +At line:1 char:30 ++ Get-Process | Where-Object { .MainWindowTitle -ne '' } | Select-Objec ... ++ ~~~~~~~~~~~~~~~~ + + CategoryInfo : ObjectNotFound: (.MainWindowTitle:String) [], CommandNotFoundException + + FullyQualifiedErrorId : CommandNotFoundException + +.MainWindowTitle : The term '.MainWindowTitle' is not recognized as the name of a cmdlet, function, script file, or +operable program. Check the spelling of the name, or if a path was included, verify that the path is correct and try +again. +At line:1 char:30 ++ Get-Process | Where-Object { .MainWindowTitle -ne '' } | Select-Objec ... ++ ~~~~~~~~~~~~~~~~ + + CategoryInfo : ObjectNotFound: (.MainWindowTitle:String) [], CommandNotFoundException + + FullyQualifiedErrorId : CommandNotFoundException + +.MainWindowTitle : The term '.MainWindowTitle' is not recognized as the name of a cmdlet, function, script file, or +operable program. Check the spelling of the name, or if a path was included, verify that the path is correct and try +again. +At line:1 char:30 ++ Get-Process | Where-Object { .MainWindowTitle -ne '' } | Select-Objec ... ++ ~~~~~~~~~~~~~~~~ + + CategoryInfo : ObjectNotFound: (.MainWindowTitle:String) [], CommandNotFoundException + + FullyQualifiedErrorId : CommandNotFoundException + +.MainWindowTitle : The term '.MainWindowTitle' is not recognized as the name of a cmdlet, function, script file, or +operable program. Check the spelling of the name, or if a path was included, verify that the path is correct and try +again. +At line:1 char:30 ++ Get-Process | Where-Object { .MainWindowTitle -ne '' } | Select-Objec ... ++ ~~~~~~~~~~~~~~~~ + + CategoryInfo : ObjectNotFound: (.MainWindowTitle:String) [], CommandNotFoundException + + FullyQualifiedErrorId : CommandNotFoundException + +.MainWindowTitle : The term '.MainWindowTitle' is not recognized as the name of a cmdlet, function, script file, or +operable program. Check the spelling of the name, or if a path was included, verify that the path is correct and try +again. +At line:1 char:30 ++ Get-Process | Where-Object { .MainWindowTitle -ne '' } | Select-Objec ... ++ ~~~~~~~~~~~~~~~~ + + CategoryInfo : ObjectNotFound: (.MainWindowTitle:String) [], CommandNotFoundException + + FullyQualifiedErrorId : CommandNotFoundException + +.MainWindowTitle : The term '.MainWindowTitle' is not recognized as the name of a cmdlet, function, script file, or +operable program. Check the spelling of the name, or if a path was included, verify that the path is correct and try +again. +At line:1 char:30 ++ Get-Process | Where-Object { .MainWindowTitle -ne '' } | Select-Objec ... ++ ~~~~~~~~~~~~~~~~ + + CategoryInfo : ObjectNotFound: (.MainWindowTitle:String) [], CommandNotFoundException + + FullyQualifiedErrorId : CommandNotFoundException + +.MainWindowTitle : The term '.MainWindowTitle' is not recognized as the name of a cmdlet, function, script file, or +operable program. Check the spelling of the name, or if a path was included, verify that the path is correct and try +again. +At line:1 char:30 ++ Get-Process | Where-Object { .MainWindowTitle -ne '' } | Select-Objec ... ++ ~~~~~~~~~~~~~~~~ + + CategoryInfo : ObjectNotFound: (.MainWindowTitle:String) [], CommandNotFoundException + + FullyQualifiedErrorId : CommandNotFoundException + +.MainWindowTitle : The term '.MainWindowTitle' is not recognized as the name of a cmdlet, function, script file, or +operable program. Check the spelling of the name, or if a path was included, verify that the path is correct and try +again. +At line:1 char:30 ++ Get-Process | Where-Object { .MainWindowTitle -ne '' } | Select-Objec ... ++ ~~~~~~~~~~~~~~~~ + + CategoryInfo : ObjectNotFound: (.MainWindowTitle:String) [], CommandNotFoundException + + FullyQualifiedErrorId : CommandNotFoundException + +.MainWindowTitle : The term '.MainWindowTitle' is not recognized as the name of a cmdlet, function, script file, or +operable program. Check the spelling of the name, or if a path was included, verify that the path is correct and try +again. +At line:1 char:30 ++ Get-Process | Where-Object { .MainWindowTitle -ne '' } | Select-Objec ... ++ ~~~~~~~~~~~~~~~~ + + CategoryInfo : ObjectNotFound: (.MainWindowTitle:String) [], CommandNotFoundException + + FullyQualifiedErrorId : CommandNotFoundException + +.MainWindowTitle : The term '.MainWindowTitle' is not recognized as the name of a cmdlet, function, script file, or +operable program. Check the spelling of the name, or if a path was included, verify that the path is correct and try +again. +At line:1 char:30 ++ Get-Process | Where-Object { .MainWindowTitle -ne '' } | Select-Objec ... ++ ~~~~~~~~~~~~~~~~ + + CategoryInfo : ObjectNotFound: (.MainWindowTitle:String) [], CommandNotFoundException + + FullyQualifiedErrorId : CommandNotFoundException + +.MainWindowTitle : The term '.MainWindowTitle' is not recognized as the name of a cmdlet, function, script file, or +operable program. Check the spelling of the name, or if a path was included, verify that the path is correct and try +again. +At line:1 char:30 ++ Get-Process | Where-Object { .MainWindowTitle -ne '' } | Select-Objec ... ++ ~~~~~~~~~~~~~~~~ + + CategoryInfo : ObjectNotFound: (.MainWindowTitle:String) [], CommandNotFoundException + + FullyQualifiedErrorId : CommandNotFoundException + +.MainWindowTitle : The term '.MainWindowTitle' is not recognized as the name of a cmdlet, function, script file, or +operable program. Check the spelling of the name, or if a path was included, verify that the path is correct and try +again. +At line:1 char:30 ++ Get-Process | Where-Object { .MainWindowTitle -ne '' } | Select-Objec ... ++ ~~~~~~~~~~~~~~~~ + + CategoryInfo : ObjectNotFound: (.MainWindowTitle:String) [], CommandNotFoundException + + FullyQualifiedErrorId : CommandNotFoundException + +.MainWindowTitle : The term '.MainWindowTitle' is not recognized as the name of a cmdlet, function, script file, or +operable program. Check the spelling of the name, or if a path was included, verify that the path is correct and try +again. +At line:1 char:30 ++ Get-Process | Where-Object { .MainWindowTitle -ne '' } | Select-Objec ... ++ ~~~~~~~~~~~~~~~~ + + CategoryInfo : ObjectNotFound: (.MainWindowTitle:String) [], CommandNotFoundException + + FullyQualifiedErrorId : CommandNotFoundException + +.MainWindowTitle : The term '.MainWindowTitle' is not recognized as the name of a cmdlet, function, script file, or +operable program. Check the spelling of the name, or if a path was included, verify that the path is correct and try +again. +At line:1 char:30 ++ Get-Process | Where-Object { .MainWindowTitle -ne '' } | Select-Objec ... ++ ~~~~~~~~~~~~~~~~ + + CategoryInfo : ObjectNotFound: (.MainWindowTitle:String) [], CommandNotFoundException + + FullyQualifiedErrorId : CommandNotFoundException + +.MainWindowTitle : The term '.MainWindowTitle' is not recognized as the name of a cmdlet, function, script file, or +operable program. Check the spelling of the name, or if a path was included, verify that the path is correct and try +again. +At line:1 char:30 ++ Get-Process | Where-Object { .MainWindowTitle -ne '' } | Select-Objec ... ++ ~~~~~~~~~~~~~~~~ + + CategoryInfo : ObjectNotFound: (.MainWindowTitle:String) [], CommandNotFoundException + + FullyQualifiedErrorId : CommandNotFoundException + +.MainWindowTitle : The term '.MainWindowTitle' is not recognized as the name of a cmdlet, function, script file, or +operable program. Check the spelling of the name, or if a path was included, verify that the path is correct and try +again. +At line:1 char:30 ++ Get-Process | Where-Object { .MainWindowTitle -ne '' } | Select-Objec ... ++ ~~~~~~~~~~~~~~~~ + + CategoryInfo : ObjectNotFound: (.MainWindowTitle:String) [], CommandNotFoundException + + FullyQualifiedErrorId : CommandNotFoundException + +.MainWindowTitle : The term '.MainWindowTitle' is not recognized as the name of a cmdlet, function, script file, or +operable program. Check the spelling of the name, or if a path was included, verify that the path is correct and try +again. +At line:1 char:30 ++ Get-Process | Where-Object { .MainWindowTitle -ne '' } | Select-Objec ... ++ ~~~~~~~~~~~~~~~~ + + CategoryInfo : ObjectNotFound: (.MainWindowTitle:String) [], CommandNotFoundException + + FullyQualifiedErrorId : CommandNotFoundException + +.MainWindowTitle : The term '.MainWindowTitle' is not recognized as the name of a cmdlet, function, script file, or +operable program. Check the spelling of the name, or if a path was included, verify that the path is correct and try +again. +At line:1 char:30 ++ Get-Process | Where-Object { .MainWindowTitle -ne '' } | Select-Objec ... ++ ~~~~~~~~~~~~~~~~ + + CategoryInfo : ObjectNotFound: (.MainWindowTitle:String) [], CommandNotFoundException + + FullyQualifiedErrorId : CommandNotFoundException + +.MainWindowTitle : The term '.MainWindowTitle' is not recognized as the name of a cmdlet, function, script file, or +operable program. Check the spelling of the name, or if a path was included, verify that the path is correct and try +again. +At line:1 char:30 ++ Get-Process | Where-Object { .MainWindowTitle -ne '' } | Select-Objec ... ++ ~~~~~~~~~~~~~~~~ + + CategoryInfo : ObjectNotFound: (.MainWindowTitle:String) [], CommandNotFoundException + + FullyQualifiedErrorId : CommandNotFoundException + +.MainWindowTitle : The term '.MainWindowTitle' is not recognized as the name of a cmdlet, function, script file, or +operable program. Check the spelling of the name, or if a path was included, verify that the path is correct and try +again. +At line:1 char:30 ++ Get-Process | Where-Object { .MainWindowTitle -ne '' } | Select-Objec ... ++ ~~~~~~~~~~~~~~~~ + + CategoryInfo : ObjectNotFound: (.MainWindowTitle:String) [], CommandNotFoundException + + FullyQualifiedErrorId : CommandNotFoundException + +.MainWindowTitle : The term '.MainWindowTitle' is not recognized as the name of a cmdlet, function, script file, or +operable program. Check the spelling of the name, or if a path was included, verify that the path is correct and try +again. +At line:1 char:30 ++ Get-Process | Where-Object { .MainWindowTitle -ne '' } | Select-Objec ... ++ ~~~~~~~~~~~~~~~~ + + CategoryInfo : ObjectNotFound: (.MainWindowTitle:String) [], CommandNotFoundException + + FullyQualifiedErrorId : CommandNotFoundException + +.MainWindowTitle : The term '.MainWindowTitle' is not recognized as the name of a cmdlet, function, script file, or +operable program. Check the spelling of the name, or if a path was included, verify that the path is correct and try +again. +At line:1 char:30 ++ Get-Process | Where-Object { .MainWindowTitle -ne '' } | Select-Objec ... ++ ~~~~~~~~~~~~~~~~ + + CategoryInfo : ObjectNotFound: (.MainWindowTitle:String) [], CommandNotFoundException + + FullyQualifiedErrorId : CommandNotFoundException + +.MainWindowTitle : The term '.MainWindowTitle' is not recognized as the name of a cmdlet, function, script file, or +operable program. Check the spelling of the name, or if a path was included, verify that the path is correct and try +again. +At line:1 char:30 ++ Get-Process | Where-Object { .MainWindowTitle -ne '' } | Select-Objec ... ++ ~~~~~~~~~~~~~~~~ + + CategoryInfo : ObjectNotFound: (.MainWindowTitle:String) [], CommandNotFoundException + + FullyQualifiedErrorId : CommandNotFoundException + +.MainWindowTitle : The term '.MainWindowTitle' is not recognized as the name of a cmdlet, function, script file, or +operable program. Check the spelling of the name, or if a path was included, verify that the path is correct and try +again. +At line:1 char:30 ++ Get-Process | Where-Object { .MainWindowTitle -ne '' } | Select-Objec ... ++ ~~~~~~~~~~~~~~~~ + + CategoryInfo : ObjectNotFound: (.MainWindowTitle:String) [], CommandNotFoundException + + FullyQualifiedErrorId : CommandNotFoundException + +.MainWindowTitle : The term '.MainWindowTitle' is not recognized as the name of a cmdlet, function, script file, or +operable program. Check the spelling of the name, or if a path was included, verify that the path is correct and try +again. +At line:1 char:30 ++ Get-Process | Where-Object { .MainWindowTitle -ne '' } | Select-Objec ... ++ ~~~~~~~~~~~~~~~~ + + CategoryInfo : ObjectNotFound: (.MainWindowTitle:String) [], CommandNotFoundException + + FullyQualifiedErrorId : CommandNotFoundException + +.MainWindowTitle : The term '.MainWindowTitle' is not recognized as the name of a cmdlet, function, script file, or +operable program. Check the spelling of the name, or if a path was included, verify that the path is correct and try +again. +At line:1 char:30 ++ Get-Process | Where-Object { .MainWindowTitle -ne '' } | Select-Objec ... ++ ~~~~~~~~~~~~~~~~ + + CategoryInfo : ObjectNotFound: (.MainWindowTitle:String) [], CommandNotFoundException + + FullyQualifiedErrorId : CommandNotFoundException + +.MainWindowTitle : The term '.MainWindowTitle' is not recognized as the name of a cmdlet, function, script file, or +operable program. Check the spelling of the name, or if a path was included, verify that the path is correct and try +again. +At line:1 char:30 ++ Get-Process | Where-Object { .MainWindowTitle -ne '' } | Select-Objec ... ++ ~~~~~~~~~~~~~~~~ + + CategoryInfo : ObjectNotFound: (.MainWindowTitle:String) [], CommandNotFoundException + + FullyQualifiedErrorId : CommandNotFoundException + +.MainWindowTitle : The term '.MainWindowTitle' is not recognized as the name of a cmdlet, function, script file, or +operable program. Check the spelling of the name, or if a path was included, verify that the path is correct and try +again. +At line:1 char:30 ++ Get-Process | Where-Object { .MainWindowTitle -ne '' } | Select-Objec ... ++ ~~~~~~~~~~~~~~~~ + + CategoryInfo : ObjectNotFound: (.MainWindowTitle:String) [], CommandNotFoundException + + FullyQualifiedErrorId : CommandNotFoundException + +.MainWindowTitle : The term '.MainWindowTitle' is not recognized as the name of a cmdlet, function, script file, or +operable program. Check the spelling of the name, or if a path was included, verify that the path is correct and try +again. +At line:1 char:30 ++ Get-Process | Where-Object { .MainWindowTitle -ne '' } | Select-Objec ... ++ ~~~~~~~~~~~~~~~~ + + CategoryInfo : ObjectNotFound: (.MainWindowTitle:String) [], CommandNotFoundException + + FullyQualifiedErrorId : CommandNotFoundException + +.MainWindowTitle : The term '.MainWindowTitle' is not recognized as the name of a cmdlet, function, script file, or +operable program. Check the spelling of the name, or if a path was included, verify that the path is correct and try +again. +At line:1 char:30 ++ Get-Process | Where-Object { .MainWindowTitle -ne '' } | Select-Objec ... ++ ~~~~~~~~~~~~~~~~ + + CategoryInfo : ObjectNotFound: (.MainWindowTitle:String) [], CommandNotFoundException + + FullyQualifiedErrorId : CommandNotFoundException + +.MainWindowTitle : The term '.MainWindowTitle' is not recognized as the name of a cmdlet, function, script file, or +operable program. Check the spelling of the name, or if a path was included, verify that the path is correct and try +again. +At line:1 char:30 ++ Get-Process | Where-Object { .MainWindowTitle -ne '' } | Select-Objec ... ++ ~~~~~~~~~~~~~~~~ + + CategoryInfo : ObjectNotFound: (.MainWindowTitle:String) [], CommandNotFoundException + + FullyQualifiedErrorId : CommandNotFoundException + +.MainWindowTitle : The term '.MainWindowTitle' is not recognized as the name of a cmdlet, function, script file, or +operable program. Check the spelling of the name, or if a path was included, verify that the path is correct and try +again. +At line:1 char:30 ++ Get-Process | Where-Object { .MainWindowTitle -ne '' } | Select-Objec ... ++ ~~~~~~~~~~~~~~~~ + + CategoryInfo : ObjectNotFound: (.MainWindowTitle:String) [], CommandNotFoundException + + FullyQualifiedErrorId : CommandNotFoundException + +.MainWindowTitle : The term '.MainWindowTitle' is not recognized as the name of a cmdlet, function, script file, or +operable program. Check the spelling of the name, or if a path was included, verify that the path is correct and try +again. +At line:1 char:30 ++ Get-Process | Where-Object { .MainWindowTitle -ne '' } | Select-Objec ... ++ ~~~~~~~~~~~~~~~~ + + CategoryInfo : ObjectNotFound: (.MainWindowTitle:String) [], CommandNotFoundException + + FullyQualifiedErrorId : CommandNotFoundException + +.MainWindowTitle : The term '.MainWindowTitle' is not recognized as the name of a cmdlet, function, script file, or +operable program. Check the spelling of the name, or if a path was included, verify that the path is correct and try +again. +At line:1 char:30 ++ Get-Process | Where-Object { .MainWindowTitle -ne '' } | Select-Objec ... ++ ~~~~~~~~~~~~~~~~ + + CategoryInfo : ObjectNotFound: (.MainWindowTitle:String) [], CommandNotFoundException + + FullyQualifiedErrorId : CommandNotFoundException + +.MainWindowTitle : The term '.MainWindowTitle' is not recognized as the name of a cmdlet, function, script file, or +operable program. Check the spelling of the name, or if a path was included, verify that the path is correct and try +again. +At line:1 char:30 ++ Get-Process | Where-Object { .MainWindowTitle -ne '' } | Select-Objec ... ++ ~~~~~~~~~~~~~~~~ + + CategoryInfo : ObjectNotFound: (.MainWindowTitle:String) [], CommandNotFoundException + + FullyQualifiedErrorId : CommandNotFoundException + +.MainWindowTitle : The term '.MainWindowTitle' is not recognized as the name of a cmdlet, function, script file, or +operable program. Check the spelling of the name, or if a path was included, verify that the path is correct and try +again. +At line:1 char:30 ++ Get-Process | Where-Object { .MainWindowTitle -ne '' } | Select-Objec ... ++ ~~~~~~~~~~~~~~~~ + + CategoryInfo : ObjectNotFound: (.MainWindowTitle:String) [], CommandNotFoundException + + FullyQualifiedErrorId : CommandNotFoundException + +.MainWindowTitle : The term '.MainWindowTitle' is not recognized as the name of a cmdlet, function, script file, or +operable program. Check the spelling of the name, or if a path was included, verify that the path is correct and try +again. +At line:1 char:30 ++ Get-Process | Where-Object { .MainWindowTitle -ne '' } | Select-Objec ... ++ ~~~~~~~~~~~~~~~~ + + CategoryInfo : ObjectNotFound: (.MainWindowTitle:String) [], CommandNotFoundException + + FullyQualifiedErrorId : CommandNotFoundException + +.MainWindowTitle : The term '.MainWindowTitle' is not recognized as the name of a cmdlet, function, script file, or +operable program. Check the spelling of the name, or if a path was included, verify that the path is correct and try +again. +At line:1 char:30 ++ Get-Process | Where-Object { .MainWindowTitle -ne '' } | Select-Objec ... ++ ~~~~~~~~~~~~~~~~ + + CategoryInfo : ObjectNotFound: (.MainWindowTitle:String) [], CommandNotFoundException + + FullyQualifiedErrorId : CommandNotFoundException + +.MainWindowTitle : The term '.MainWindowTitle' is not recognized as the name of a cmdlet, function, script file, or +operable program. Check the spelling of the name, or if a path was included, verify that the path is correct and try +again. +At line:1 char:30 ++ Get-Process | Where-Object { .MainWindowTitle -ne '' } | Select-Objec ... ++ ~~~~~~~~~~~~~~~~ + + CategoryInfo : ObjectNotFound: (.MainWindowTitle:String) [], CommandNotFoundException + + FullyQualifiedErrorId : CommandNotFoundException + +.MainWindowTitle : The term '.MainWindowTitle' is not recognized as the name of a cmdlet, function, script file, or +operable program. Check the spelling of the name, or if a path was included, verify that the path is correct and try +again. +At line:1 char:30 ++ Get-Process | Where-Object { .MainWindowTitle -ne '' } | Select-Objec ... ++ ~~~~~~~~~~~~~~~~ + + CategoryInfo : ObjectNotFound: (.MainWindowTitle:String) [], CommandNotFoundException + + FullyQualifiedErrorId : CommandNotFoundException + +.MainWindowTitle : The term '.MainWindowTitle' is not recognized as the name of a cmdlet, function, script file, or +operable program. Check the spelling of the name, or if a path was included, verify that the path is correct and try +again. +At line:1 char:30 ++ Get-Process | Where-Object { .MainWindowTitle -ne '' } | Select-Objec ... ++ ~~~~~~~~~~~~~~~~ + + CategoryInfo : ObjectNotFound: (.MainWindowTitle:String) [], CommandNotFoundException + + FullyQualifiedErrorId : CommandNotFoundException + +.MainWindowTitle : The term '.MainWindowTitle' is not recognized as the name of a cmdlet, function, script file, or +operable program. Check the spelling of the name, or if a path was included, verify that the path is correct and try +again. +At line:1 char:30 ++ Get-Process | Where-Object { .MainWindowTitle -ne '' } | Select-Objec ... ++ ~~~~~~~~~~~~~~~~ + + CategoryInfo : ObjectNotFound: (.MainWindowTitle:String) [], CommandNotFoundException + + FullyQualifiedErrorId : CommandNotFoundException + +.MainWindowTitle : The term '.MainWindowTitle' is not recognized as the name of a cmdlet, function, script file, or +operable program. Check the spelling of the name, or if a path was included, verify that the path is correct and try +again. +At line:1 char:30 ++ Get-Process | Where-Object { .MainWindowTitle -ne '' } | Select-Objec ... ++ ~~~~~~~~~~~~~~~~ + + CategoryInfo : ObjectNotFound: (.MainWindowTitle:String) [], CommandNotFoundException + + FullyQualifiedErrorId : CommandNotFoundException + +.MainWindowTitle : The term '.MainWindowTitle' is not recognized as the name of a cmdlet, function, script file, or +operable program. Check the spelling of the name, or if a path was included, verify that the path is correct and try +again. +At line:1 char:30 ++ Get-Process | Where-Object { .MainWindowTitle -ne '' } | Select-Objec ... ++ ~~~~~~~~~~~~~~~~ + + CategoryInfo : ObjectNotFound: (.MainWindowTitle:String) [], CommandNotFoundException + + FullyQualifiedErrorId : CommandNotFoundException + +.MainWindowTitle : The term '.MainWindowTitle' is not recognized as the name of a cmdlet, function, script file, or +operable program. Check the spelling of the name, or if a path was included, verify that the path is correct and try +again. +At line:1 char:30 ++ Get-Process | Where-Object { .MainWindowTitle -ne '' } | Select-Objec ... ++ ~~~~~~~~~~~~~~~~ + + CategoryInfo : ObjectNotFound: (.MainWindowTitle:String) [], CommandNotFoundException + + FullyQualifiedErrorId : CommandNotFoundException + +.MainWindowTitle : The term '.MainWindowTitle' is not recognized as the name of a cmdlet, function, script file, or +operable program. Check the spelling of the name, or if a path was included, verify that the path is correct and try +again. +At line:1 char:30 ++ Get-Process | Where-Object { .MainWindowTitle -ne '' } | Select-Objec ... ++ ~~~~~~~~~~~~~~~~ + + CategoryInfo : ObjectNotFound: (.MainWindowTitle:String) [], CommandNotFoundException + + FullyQualifiedErrorId : CommandNotFoundException + +.MainWindowTitle : The term '.MainWindowTitle' is not recognized as the name of a cmdlet, function, script file, or +operable program. Check the spelling of the name, or if a path was included, verify that the path is correct and try +again. +At line:1 char:30 ++ Get-Process | Where-Object { .MainWindowTitle -ne '' } | Select-Objec ... ++ ~~~~~~~~~~~~~~~~ + + CategoryInfo : ObjectNotFound: (.MainWindowTitle:String) [], CommandNotFoundException + + FullyQualifiedErrorId : CommandNotFoundException + +.MainWindowTitle : The term '.MainWindowTitle' is not recognized as the name of a cmdlet, function, script file, or +operable program. Check the spelling of the name, or if a path was included, verify that the path is correct and try +again. +At line:1 char:30 ++ Get-Process | Where-Object { .MainWindowTitle -ne '' } | Select-Objec ... ++ ~~~~~~~~~~~~~~~~ + + CategoryInfo : ObjectNotFound: (.MainWindowTitle:String) [], CommandNotFoundException + + FullyQualifiedErrorId : CommandNotFoundException + +.MainWindowTitle : The term '.MainWindowTitle' is not recognized as the name of a cmdlet, function, script file, or +operable program. Check the spelling of the name, or if a path was included, verify that the path is correct and try +again. +At line:1 char:30 ++ Get-Process | Where-Object { .MainWindowTitle -ne '' } | Select-Objec ... ++ ~~~~~~~~~~~~~~~~ + + CategoryInfo : ObjectNotFound: (.MainWindowTitle:String) [], CommandNotFoundException + + FullyQualifiedErrorId : CommandNotFoundException + +.MainWindowTitle : The term '.MainWindowTitle' is not recognized as the name of a cmdlet, function, script file, or +operable program. Check the spelling of the name, or if a path was included, verify that the path is correct and try +again. +At line:1 char:30 ++ Get-Process | Where-Object { .MainWindowTitle -ne '' } | Select-Objec ... ++ ~~~~~~~~~~~~~~~~ + + CategoryInfo : ObjectNotFound: (.MainWindowTitle:String) [], CommandNotFoundException + + FullyQualifiedErrorId : CommandNotFoundException + +.MainWindowTitle : The term '.MainWindowTitle' is not recognized as the name of a cmdlet, function, script file, or +operable program. Check the spelling of the name, or if a path was included, verify that the path is correct and try +again. +At line:1 char:30 ++ Get-Process | Where-Object { .MainWindowTitle -ne '' } | Select-Objec ... ++ ~~~~~~~~~~~~~~~~ + + CategoryInfo : ObjectNotFound: (.MainWindowTitle:String) [], CommandNotFoundException + + FullyQualifiedErrorId : CommandNotFoundException + + +``` +
+
+ +--- + + +Fixing the command and checking running processes that might intercept Alt+R: + + +--- + + +
Tool use: **run_terminal_command_v2** • Run command: powershell -Command "Get-Process | Where-Object { $_.MainWindowTitle -ne '' } | Select-Object ProcessName, MainWindowTitle | Sort-Object ProcessName" + +```bash +powershell -Command "Get-Process | Where-Object { $_.MainWindowTitle -ne '' } | Select-Object ProcessName, MainWindowTitle | Sort-Object ProcessName" +``` + +``` +.MainWindowTitle : The term '.MainWindowTitle' is not recognized as the name of a cmdlet, function, script file, or +operable program. Check the spelling of the name, or if a path was included, verify that the path is correct and try +again. +At line:1 char:30 ++ Get-Process | Where-Object { .MainWindowTitle -ne '' } | Select-Objec ... ++ ~~~~~~~~~~~~~~~~ + + CategoryInfo : ObjectNotFound: (.MainWindowTitle:String) [], CommandNotFoundException + + FullyQualifiedErrorId : CommandNotFoundException + +.MainWindowTitle : The term '.MainWindowTitle' is not recognized as the name of a cmdlet, function, script file, or +operable program. Check the spelling of the name, or if a path was included, verify that the path is correct and try +again. +At line:1 char:30 ++ Get-Process | Where-Object { .MainWindowTitle -ne '' } | Select-Objec ... ++ ~~~~~~~~~~~~~~~~ + + CategoryInfo : ObjectNotFound: (.MainWindowTitle:String) [], CommandNotFoundException + + FullyQualifiedErrorId : CommandNotFoundException + +.MainWindowTitle : The term '.MainWindowTitle' is not recognized as the name of a cmdlet, function, script file, or +operable program. Check the spelling of the name, or if a path was included, verify that the path is correct and try +again. +At line:1 char:30 ++ Get-Process | Where-Object { .MainWindowTitle -ne '' } | Select-Objec ... ++ ~~~~~~~~~~~~~~~~ + + CategoryInfo : ObjectNotFound: (.MainWindowTitle:String) [], CommandNotFoundException + + FullyQualifiedErrorId : CommandNotFoundException + +.MainWindowTitle : The term '.MainWindowTitle' is not recognized as the name of a cmdlet, function, script file, or +operable program. Check the spelling of the name, or if a path was included, verify that the path is correct and try +again. +At line:1 char:30 ++ Get-Process | Where-Object { .MainWindowTitle -ne '' } | Select-Objec ... ++ ~~~~~~~~~~~~~~~~ + + CategoryInfo : ObjectNotFound: (.MainWindowTitle:String) [], CommandNotFoundException + + FullyQualifiedErrorId : CommandNotFoundException + +.MainWindowTitle : The term '.MainWindowTitle' is not recognized as the name of a cmdlet, function, script file, or +operable program. Check the spelling of the name, or if a path was included, verify that the path is correct and try +again. +At line:1 char:30 ++ Get-Process | Where-Object { .MainWindowTitle -ne '' } | Select-Objec ... ++ ~~~~~~~~~~~~~~~~ + + CategoryInfo : ObjectNotFound: (.MainWindowTitle:String) [], CommandNotFoundException + + FullyQualifiedErrorId : CommandNotFoundException + +.MainWindowTitle : The term '.MainWindowTitle' is not recognized as the name of a cmdlet, function, script file, or +operable program. Check the spelling of the name, or if a path was included, verify that the path is correct and try +again. +At line:1 char:30 ++ Get-Process | Where-Object { .MainWindowTitle -ne '' } | Select-Objec ... ++ ~~~~~~~~~~~~~~~~ + + CategoryInfo : ObjectNotFound: (.MainWindowTitle:String) [], CommandNotFoundException + + FullyQualifiedErrorId : CommandNotFoundException + +.MainWindowTitle : The term '.MainWindowTitle' is not recognized as the name of a cmdlet, function, script file, or +operable program. Check the spelling of the name, or if a path was included, verify that the path is correct and try +again. +At line:1 char:30 ++ Get-Process | Where-Object { .MainWindowTitle -ne '' } | Select-Objec ... ++ ~~~~~~~~~~~~~~~~ + + CategoryInfo : ObjectNotFound: (.MainWindowTitle:String) [], CommandNotFoundException + + FullyQualifiedErrorId : CommandNotFoundException + +.MainWindowTitle : The term '.MainWindowTitle' is not recognized as the name of a cmdlet, function, script file, or +operable program. Check the spelling of the name, or if a path was included, verify that the path is correct and try +again. +At line:1 char:30 ++ Get-Process | Where-Object { .MainWindowTitle -ne '' } | Select-Objec ... ++ ~~~~~~~~~~~~~~~~ + + CategoryInfo : ObjectNotFound: (.MainWindowTitle:String) [], CommandNotFoundException + + FullyQualifiedErrorId : CommandNotFoundException + +.MainWindowTitle : The term '.MainWindowTitle' is not recognized as the name of a cmdlet, function, script file, or +operable program. Check the spelling of the name, or if a path was included, verify that the path is correct and try +again. +At line:1 char:30 ++ Get-Process | Where-Object { .MainWindowTitle -ne '' } | Select-Objec ... ++ ~~~~~~~~~~~~~~~~ + + CategoryInfo : ObjectNotFound: (.MainWindowTitle:String) [], CommandNotFoundException + + FullyQualifiedErrorId : CommandNotFoundException + +.MainWindowTitle : The term '.MainWindowTitle' is not recognized as the name of a cmdlet, function, script file, or +operable program. Check the spelling of the name, or if a path was included, verify that the path is correct and try +again. +At line:1 char:30 ++ Get-Process | Where-Object { .MainWindowTitle -ne '' } | Select-Objec ... ++ ~~~~~~~~~~~~~~~~ + + CategoryInfo : ObjectNotFound: (.MainWindowTitle:String) [], CommandNotFoundException + + FullyQualifiedErrorId : CommandNotFoundException + +.MainWindowTitle : The term '.MainWindowTitle' is not recognized as the name of a cmdlet, function, script file, or +operable program. Check the spelling of the name, or if a path was included, verify that the path is correct and try +again. +At line:1 char:30 ++ Get-Process | Where-Object { .MainWindowTitle -ne '' } | Select-Objec ... ++ ~~~~~~~~~~~~~~~~ + + CategoryInfo : ObjectNotFound: (.MainWindowTitle:String) [], CommandNotFoundException + + FullyQualifiedErrorId : CommandNotFoundException + +.MainWindowTitle : The term '.MainWindowTitle' is not recognized as the name of a cmdlet, function, script file, or +operable program. Check the spelling of the name, or if a path was included, verify that the path is correct and try +again. +At line:1 char:30 ++ Get-Process | Where-Object { .MainWindowTitle -ne '' } | Select-Objec ... ++ ~~~~~~~~~~~~~~~~ + + CategoryInfo : ObjectNotFound: (.MainWindowTitle:String) [], CommandNotFoundException + + FullyQualifiedErrorId : CommandNotFoundException + +.MainWindowTitle : The term '.MainWindowTitle' is not recognized as the name of a cmdlet, function, script file, or +operable program. Check the spelling of the name, or if a path was included, verify that the path is correct and try +again. +At line:1 char:30 ++ Get-Process | Where-Object { .MainWindowTitle -ne '' } | Select-Objec ... ++ ~~~~~~~~~~~~~~~~ + + CategoryInfo : ObjectNotFound: (.MainWindowTitle:String) [], CommandNotFoundException + + FullyQualifiedErrorId : CommandNotFoundException + +.MainWindowTitle : The term '.MainWindowTitle' is not recognized as the name of a cmdlet, function, script file, or +operable program. Check the spelling of the name, or if a path was included, verify that the path is correct and try +again. +At line:1 char:30 ++ Get-Process | Where-Object { .MainWindowTitle -ne '' } | Select-Objec ... ++ ~~~~~~~~~~~~~~~~ + + CategoryInfo : ObjectNotFound: (.MainWindowTitle:String) [], CommandNotFoundException + + FullyQualifiedErrorId : CommandNotFoundException + +.MainWindowTitle : The term '.MainWindowTitle' is not recognized as the name of a cmdlet, function, script file, or +operable program. Check the spelling of the name, or if a path was included, verify that the path is correct and try +again. +At line:1 char:30 ++ Get-Process | Where-Object { .MainWindowTitle -ne '' } | Select-Objec ... ++ ~~~~~~~~~~~~~~~~ + + CategoryInfo : ObjectNotFound: (.MainWindowTitle:String) [], CommandNotFoundException + + FullyQualifiedErrorId : CommandNotFoundException + +.MainWindowTitle : The term '.MainWindowTitle' is not recognized as the name of a cmdlet, function, script file, or +operable program. Check the spelling of the name, or if a path was included, verify that the path is correct and try +again. +At line:1 char:30 ++ Get-Process | Where-Object { .MainWindowTitle -ne '' } | Select-Objec ... ++ ~~~~~~~~~~~~~~~~ + + CategoryInfo : ObjectNotFound: (.MainWindowTitle:String) [], CommandNotFoundException + + FullyQualifiedErrorId : CommandNotFoundException + +.MainWindowTitle : The term '.MainWindowTitle' is not recognized as the name of a cmdlet, function, script file, or +operable program. Check the spelling of the name, or if a path was included, verify that the path is correct and try +again. +At line:1 char:30 ++ Get-Process | Where-Object { .MainWindowTitle -ne '' } | Select-Objec ... ++ ~~~~~~~~~~~~~~~~ + + CategoryInfo : ObjectNotFound: (.MainWindowTitle:String) [], CommandNotFoundException + + FullyQualifiedErrorId : CommandNotFoundException + +.MainWindowTitle : The term '.MainWindowTitle' is not recognized as the name of a cmdlet, function, script file, or +operable program. Check the spelling of the name, or if a path was included, verify that the path is correct and try +again. +At line:1 char:30 ++ Get-Process | Where-Object { .MainWindowTitle -ne '' } | Select-Objec ... ++ ~~~~~~~~~~~~~~~~ + + CategoryInfo : ObjectNotFound: (.MainWindowTitle:String) [], CommandNotFoundException + + FullyQualifiedErrorId : CommandNotFoundException + +.MainWindowTitle : The term '.MainWindowTitle' is not recognized as the name of a cmdlet, function, script file, or +operable program. Check the spelling of the name, or if a path was included, verify that the path is correct and try +again. +At line:1 char:30 ++ Get-Process | Where-Object { .MainWindowTitle -ne '' } | Select-Objec ... ++ ~~~~~~~~~~~~~~~~ + + CategoryInfo : ObjectNotFound: (.MainWindowTitle:String) [], CommandNotFoundException + + FullyQualifiedErrorId : CommandNotFoundException + +.MainWindowTitle : The term '.MainWindowTitle' is not recognized as the name of a cmdlet, function, script file, or +operable program. Check the spelling of the name, or if a path was included, verify that the path is correct and try +again. +At line:1 char:30 ++ Get-Process | Where-Object { .MainWindowTitle -ne '' } | Select-Objec ... ++ ~~~~~~~~~~~~~~~~ + + CategoryInfo : ObjectNotFound: (.MainWindowTitle:String) [], CommandNotFoundException + + FullyQualifiedErrorId : CommandNotFoundException + +.MainWindowTitle : The term '.MainWindowTitle' is not recognized as the name of a cmdlet, function, script file, or +operable program. Check the spelling of the name, or if a path was included, verify that the path is correct and try +again. +At line:1 char:30 ++ Get-Process | Where-Object { .MainWindowTitle -ne '' } | Select-Objec ... ++ ~~~~~~~~~~~~~~~~ + + CategoryInfo : ObjectNotFound: (.MainWindowTitle:String) [], CommandNotFoundException + + FullyQualifiedErrorId : CommandNotFoundException + +.MainWindowTitle : The term '.MainWindowTitle' is not recognized as the name of a cmdlet, function, script file, or +operable program. Check the spelling of the name, or if a path was included, verify that the path is correct and try +again. +At line:1 char:30 ++ Get-Process | Where-Object { .MainWindowTitle -ne '' } | Select-Objec ... ++ ~~~~~~~~~~~~~~~~ + + CategoryInfo : ObjectNotFound: (.MainWindowTitle:String) [], CommandNotFoundException + + FullyQualifiedErrorId : CommandNotFoundException + +.MainWindowTitle : The term '.MainWindowTitle' is not recognized as the name of a cmdlet, function, script file, or +operable program. Check the spelling of the name, or if a path was included, verify that the path is correct and try +again. +At line:1 char:30 ++ Get-Process | Where-Object { .MainWindowTitle -ne '' } | Select-Objec ... ++ ~~~~~~~~~~~~~~~~ + + CategoryInfo : ObjectNotFound: (.MainWindowTitle:String) [], CommandNotFoundException + + FullyQualifiedErrorId : CommandNotFoundException + +.MainWindowTitle : The term '.MainWindowTitle' is not recognized as the name of a cmdlet, function, script file, or +operable program. Check the spelling of the name, or if a path was included, verify that the path is correct and try +again. +At line:1 char:30 ++ Get-Process | Where-Object { .MainWindowTitle -ne '' } | Select-Objec ... ++ ~~~~~~~~~~~~~~~~ + + CategoryInfo : ObjectNotFound: (.MainWindowTitle:String) [], CommandNotFoundException + + FullyQualifiedErrorId : CommandNotFoundException + +.MainWindowTitle : The term '.MainWindowTitle' is not recognized as the name of a cmdlet, function, script file, or +operable program. Check the spelling of the name, or if a path was included, verify that the path is correct and try +again. +At line:1 char:30 ++ Get-Process | Where-Object { .MainWindowTitle -ne '' } | Select-Objec ... ++ ~~~~~~~~~~~~~~~~ + + CategoryInfo : ObjectNotFound: (.MainWindowTitle:String) [], CommandNotFoundException + + FullyQualifiedErrorId : CommandNotFoundException + +.MainWindowTitle : The term '.MainWindowTitle' is not recognized as the name of a cmdlet, function, script file, or +operable program. Check the spelling of the name, or if a path was included, verify that the path is correct and try +again. +At line:1 char:30 ++ Get-Process | Where-Object { .MainWindowTitle -ne '' } | Select-Objec ... ++ ~~~~~~~~~~~~~~~~ + + CategoryInfo : ObjectNotFound: (.MainWindowTitle:String) [], CommandNotFoundException + + FullyQualifiedErrorId : CommandNotFoundException + +.MainWindowTitle : The term '.MainWindowTitle' is not recognized as the name of a cmdlet, function, script file, or +operable program. Check the spelling of the name, or if a path was included, verify that the path is correct and try +again. +At line:1 char:30 ++ Get-Process | Where-Object { .MainWindowTitle -ne '' } | Select-Objec ... ++ ~~~~~~~~~~~~~~~~ + + CategoryInfo : ObjectNotFound: (.MainWindowTitle:String) [], CommandNotFoundException + + FullyQualifiedErrorId : CommandNotFoundException + +.MainWindowTitle : The term '.MainWindowTitle' is not recognized as the name of a cmdlet, function, script file, or +operable program. Check the spelling of the name, or if a path was included, verify that the path is correct and try +again. +At line:1 char:30 ++ Get-Process | Where-Object { .MainWindowTitle -ne '' } | Select-Objec ... ++ ~~~~~~~~~~~~~~~~ + + CategoryInfo : ObjectNotFound: (.MainWindowTitle:String) [], CommandNotFoundException + + FullyQualifiedErrorId : CommandNotFoundException + +.MainWindowTitle : The term '.MainWindowTitle' is not recognized as the name of a cmdlet, function, script file, or +operable program. Check the spelling of the name, or if a path was included, verify that the path is correct and try +again. +At line:1 char:30 ++ Get-Process | Where-Object { .MainWindowTitle -ne '' } | Select-Objec ... ++ ~~~~~~~~~~~~~~~~ + + CategoryInfo : ObjectNotFound: (.MainWindowTitle:String) [], CommandNotFoundException + + FullyQualifiedErrorId : CommandNotFoundException + +.MainWindowTitle : The term '.MainWindowTitle' is not recognized as the name of a cmdlet, function, script file, or +operable program. Check the spelling of the name, or if a path was included, verify that the path is correct and try +again. +At line:1 char:30 ++ Get-Process | Where-Object { .MainWindowTitle -ne '' } | Select-Objec ... ++ ~~~~~~~~~~~~~~~~ + + CategoryInfo : ObjectNotFound: (.MainWindowTitle:String) [], CommandNotFoundException + + FullyQualifiedErrorId : CommandNotFoundException + +.MainWindowTitle : The term '.MainWindowTitle' is not recognized as the name of a cmdlet, function, script file, or +operable program. Check the spelling of the name, or if a path was included, verify that the path is correct and try +again. +At line:1 char:30 ++ Get-Process | Where-Object { .MainWindowTitle -ne '' } | Select-Objec ... ++ ~~~~~~~~~~~~~~~~ + + CategoryInfo : ObjectNotFound: (.MainWindowTitle:String) [], CommandNotFoundException + + FullyQualifiedErrorId : CommandNotFoundException + +.MainWindowTitle : The term '.MainWindowTitle' is not recognized as the name of a cmdlet, function, script file, or +operable program. Check the spelling of the name, or if a path was included, verify that the path is correct and try +again. +At line:1 char:30 ++ Get-Process | Where-Object { .MainWindowTitle -ne '' } | Select-Objec ... ++ ~~~~~~~~~~~~~~~~ + + CategoryInfo : ObjectNotFound: (.MainWindowTitle:String) [], CommandNotFoundException + + FullyQualifiedErrorId : CommandNotFoundException + +.MainWindowTitle : The term '.MainWindowTitle' is not recognized as the name of a cmdlet, function, script file, or +operable program. Check the spelling of the name, or if a path was included, verify that the path is correct and try +again. +At line:1 char:30 ++ Get-Process | Where-Object { .MainWindowTitle -ne '' } | Select-Objec ... ++ ~~~~~~~~~~~~~~~~ + + CategoryInfo : ObjectNotFound: (.MainWindowTitle:String) [], CommandNotFoundException + + FullyQualifiedErrorId : CommandNotFoundException + +.MainWindowTitle : The term '.MainWindowTitle' is not recognized as the name of a cmdlet, function, script file, or +operable program. Check the spelling of the name, or if a path was included, verify that the path is correct and try +again. +At line:1 char:30 ++ Get-Process | Where-Object { .MainWindowTitle -ne '' } | Select-Objec ... ++ ~~~~~~~~~~~~~~~~ + + CategoryInfo : ObjectNotFound: (.MainWindowTitle:String) [], CommandNotFoundException + + FullyQualifiedErrorId : CommandNotFoundException + +.MainWindowTitle : The term '.MainWindowTitle' is not recognized as the name of a cmdlet, function, script file, or +operable program. Check the spelling of the name, or if a path was included, verify that the path is correct and try +again. +At line:1 char:30 ++ Get-Process | Where-Object { .MainWindowTitle -ne '' } | Select-Objec ... ++ ~~~~~~~~~~~~~~~~ + + CategoryInfo : ObjectNotFound: (.MainWindowTitle:String) [], CommandNotFoundException + + FullyQualifiedErrorId : CommandNotFoundException + +.MainWindowTitle : The term '.MainWindowTitle' is not recognized as the name of a cmdlet, function, script file, or +operable program. Check the spelling of the name, or if a path was included, verify that the path is correct and try +again. +At line:1 char:30 ++ Get-Process | Where-Object { .MainWindowTitle -ne '' } | Select-Objec ... ++ ~~~~~~~~~~~~~~~~ + + CategoryInfo : ObjectNotFound: (.MainWindowTitle:String) [], CommandNotFoundException + + FullyQualifiedErrorId : CommandNotFoundException + +.MainWindowTitle : The term '.MainWindowTitle' is not recognized as the name of a cmdlet, function, script file, or +operable program. Check the spelling of the name, or if a path was included, verify that the path is correct and try +again. +At line:1 char:30 ++ Get-Process | Where-Object { .MainWindowTitle -ne '' } | Select-Objec ... ++ ~~~~~~~~~~~~~~~~ + + CategoryInfo : ObjectNotFound: (.MainWindowTitle:String) [], CommandNotFoundException + + FullyQualifiedErrorId : CommandNotFoundException + +.MainWindowTitle : The term '.MainWindowTitle' is not recognized as the name of a cmdlet, function, script file, or +operable program. Check the spelling of the name, or if a path was included, verify that the path is correct and try +again. +At line:1 char:30 ++ Get-Process | Where-Object { .MainWindowTitle -ne '' } | Select-Objec ... ++ ~~~~~~~~~~~~~~~~ + + CategoryInfo : ObjectNotFound: (.MainWindowTitle:String) [], CommandNotFoundException + + FullyQualifiedErrorId : CommandNotFoundException + +.MainWindowTitle : The term '.MainWindowTitle' is not recognized as the name of a cmdlet, function, script file, or +operable program. Check the spelling of the name, or if a path was included, verify that the path is correct and try +again. +At line:1 char:30 ++ Get-Process | Where-Object { .MainWindowTitle -ne '' } | Select-Objec ... ++ ~~~~~~~~~~~~~~~~ + + CategoryInfo : ObjectNotFound: (.MainWindowTitle:String) [], CommandNotFoundException + + FullyQualifiedErrorId : CommandNotFoundException + +.MainWindowTitle : The term '.MainWindowTitle' is not recognized as the name of a cmdlet, function, script file, or +operable program. Check the spelling of the name, or if a path was included, verify that the path is correct and try +again. +At line:1 char:30 ++ Get-Process | Where-Object { .MainWindowTitle -ne '' } | Select-Objec ... ++ ~~~~~~~~~~~~~~~~ + + CategoryInfo : ObjectNotFound: (.MainWindowTitle:String) [], CommandNotFoundException + + FullyQualifiedErrorId : CommandNotFoundException + +.MainWindowTitle : The term '.MainWindowTitle' is not recognized as the name of a cmdlet, function, script file, or +operable program. Check the spelling of the name, or if a path was included, verify that the path is correct and try +again. +At line:1 char:30 ++ Get-Process | Where-Object { .MainWindowTitle -ne '' } | Select-Objec ... ++ ~~~~~~~~~~~~~~~~ + + CategoryInfo : ObjectNotFound: (.MainWindowTitle:String) [], CommandNotFoundException + + FullyQualifiedErrorId : CommandNotFoundException + +.MainWindowTitle : The term '.MainWindowTitle' is not recognized as the name of a cmdlet, function, script file, or +operable program. Check the spelling of the name, or if a path was included, verify that the path is correct and try +again. +At line:1 char:30 ++ Get-Process | Where-Object { .MainWindowTitle -ne '' } | Select-Objec ... ++ ~~~~~~~~~~~~~~~~ + + CategoryInfo : ObjectNotFound: (.MainWindowTitle:String) [], CommandNotFoundException + + FullyQualifiedErrorId : CommandNotFoundException + +.MainWindowTitle : The term '.MainWindowTitle' is not recognized as the name of a cmdlet, function, script file, or +operable program. Check the spelling of the name, or if a path was included, verify that the path is correct and try +again. +At line:1 char:30 ++ Get-Process | Where-Object { .MainWindowTitle -ne '' } | Select-Objec ... ++ ~~~~~~~~~~~~~~~~ + + CategoryInfo : ObjectNotFound: (.MainWindowTitle:String) [], CommandNotFoundException + + FullyQualifiedErrorId : CommandNotFoundException + +.MainWindowTitle : The term '.MainWindowTitle' is not recognized as the name of a cmdlet, function, script file, or +operable program. Check the spelling of the name, or if a path was included, verify that the path is correct and try +again. +At line:1 char:30 ++ Get-Process | Where-Object { .MainWindowTitle -ne '' } | Select-Objec ... ++ ~~~~~~~~~~~~~~~~ + + CategoryInfo : ObjectNotFound: (.MainWindowTitle:String) [], CommandNotFoundException + + FullyQualifiedErrorId : CommandNotFoundException + +.MainWindowTitle : The term '.MainWindowTitle' is not recognized as the name of a cmdlet, function, script file, or +operable program. Check the spelling of the name, or if a path was included, verify that the path is correct and try +again. +At line:1 char:30 ++ Get-Process | Where-Object { .MainWindowTitle -ne '' } | Select-Objec ... ++ ~~~~~~~~~~~~~~~~ + + CategoryInfo : ObjectNotFound: (.MainWindowTitle:String) [], CommandNotFoundException + + FullyQualifiedErrorId : CommandNotFoundException + +.MainWindowTitle : The term '.MainWindowTitle' is not recognized as the name of a cmdlet, function, script file, or +operable program. Check the spelling of the name, or if a path was included, verify that the path is correct and try +again. +At line:1 char:30 ++ Get-Process | Where-Object { .MainWindowTitle -ne '' } | Select-Objec ... ++ ~~~~~~~~~~~~~~~~ + + CategoryInfo : ObjectNotFound: (.MainWindowTitle:String) [], CommandNotFoundException + + FullyQualifiedErrorId : CommandNotFoundException + +.MainWindowTitle : The term '.MainWindowTitle' is not recognized as the name of a cmdlet, function, script file, or +operable program. Check the spelling of the name, or if a path was included, verify that the path is correct and try +again. +At line:1 char:30 ++ Get-Process | Where-Object { .MainWindowTitle -ne '' } | Select-Objec ... ++ ~~~~~~~~~~~~~~~~ + + CategoryInfo : ObjectNotFound: (.MainWindowTitle:String) [], CommandNotFoundException + + FullyQualifiedErrorId : CommandNotFoundException + +.MainWindowTitle : The term '.MainWindowTitle' is not recognized as the name of a cmdlet, function, script file, or +operable program. Check the spelling of the name, or if a path was included, verify that the path is correct and try +again. +At line:1 char:30 ++ Get-Process | Where-Object { .MainWindowTitle -ne '' } | Select-Objec ... ++ ~~~~~~~~~~~~~~~~ + + CategoryInfo : ObjectNotFound: (.MainWindowTitle:String) [], CommandNotFoundException + + FullyQualifiedErrorId : CommandNotFoundException + +.MainWindowTitle : The term '.MainWindowTitle' is not recognized as the name of a cmdlet, function, script file, or +operable program. Check the spelling of the name, or if a path was included, verify that the path is correct and try +again. +At line:1 char:30 ++ Get-Process | Where-Object { .MainWindowTitle -ne '' } | Select-Objec ... ++ ~~~~~~~~~~~~~~~~ + + CategoryInfo : ObjectNotFound: (.MainWindowTitle:String) [], CommandNotFoundException + + FullyQualifiedErrorId : CommandNotFoundException + +.MainWindowTitle : The term '.MainWindowTitle' is not recognized as the name of a cmdlet, function, script file, or +operable program. Check the spelling of the name, or if a path was included, verify that the path is correct and try +again. +At line:1 char:30 ++ Get-Process | Where-Object { .MainWindowTitle -ne '' } | Select-Objec ... ++ ~~~~~~~~~~~~~~~~ + + CategoryInfo : ObjectNotFound: (.MainWindowTitle:String) [], CommandNotFoundException + + FullyQualifiedErrorId : CommandNotFoundException + +.MainWindowTitle : The term '.MainWindowTitle' is not recognized as the name of a cmdlet, function, script file, or +operable program. Check the spelling of the name, or if a path was included, verify that the path is correct and try +again. +At line:1 char:30 ++ Get-Process | Where-Object { .MainWindowTitle -ne '' } | Select-Objec ... ++ ~~~~~~~~~~~~~~~~ + + CategoryInfo : ObjectNotFound: (.MainWindowTitle:String) [], CommandNotFoundException + + FullyQualifiedErrorId : CommandNotFoundException + +.MainWindowTitle : The term '.MainWindowTitle' is not recognized as the name of a cmdlet, function, script file, or +operable program. Check the spelling of the name, or if a path was included, verify that the path is correct and try +again. +At line:1 char:30 ++ Get-Process | Where-Object { .MainWindowTitle -ne '' } | Select-Objec ... ++ ~~~~~~~~~~~~~~~~ + + CategoryInfo : ObjectNotFound: (.MainWindowTitle:String) [], CommandNotFoundException + + FullyQualifiedErrorId : CommandNotFoundException + +.MainWindowTitle : The term '.MainWindowTitle' is not recognized as the name of a cmdlet, function, script file, or +operable program. Check the spelling of the name, or if a path was included, verify that the path is correct and try +again. +At line:1 char:30 ++ Get-Process | Where-Object { .MainWindowTitle -ne '' } | Select-Objec ... ++ ~~~~~~~~~~~~~~~~ + + CategoryInfo : ObjectNotFound: (.MainWindowTitle:String) [], CommandNotFoundException + + FullyQualifiedErrorId : CommandNotFoundException + +.MainWindowTitle : The term '.MainWindowTitle' is not recognized as the name of a cmdlet, function, script file, or +operable program. Check the spelling of the name, or if a path was included, verify that the path is correct and try +again. +At line:1 char:30 ++ Get-Process | Where-Object { .MainWindowTitle -ne '' } | Select-Objec ... ++ ~~~~~~~~~~~~~~~~ + + CategoryInfo : ObjectNotFound: (.MainWindowTitle:String) [], CommandNotFoundException + + FullyQualifiedErrorId : CommandNotFoundException + +.MainWindowTitle : The term '.MainWindowTitle' is not recognized as the name of a cmdlet, function, script file, or +operable program. Check the spelling of the name, or if a path was included, verify that the path is correct and try +again. +At line:1 char:30 ++ Get-Process | Where-Object { .MainWindowTitle -ne '' } | Select-Objec ... ++ ~~~~~~~~~~~~~~~~ + + CategoryInfo : ObjectNotFound: (.MainWindowTitle:String) [], CommandNotFoundException + + FullyQualifiedErrorId : CommandNotFoundException + +.MainWindowTitle : The term '.MainWindowTitle' is not recognized as the name of a cmdlet, function, script file, or +operable program. Check the spelling of the name, or if a path was included, verify that the path is correct and try +again. +At line:1 char:30 ++ Get-Process | Where-Object { .MainWindowTitle -ne '' } | Select-Objec ... ++ ~~~~~~~~~~~~~~~~ + + CategoryInfo : ObjectNotFound: (.MainWindowTitle:String) [], CommandNotFoundException + + FullyQualifiedErrorId : CommandNotFoundException + +.MainWindowTitle : The term '.MainWindowTitle' is not recognized as the name of a cmdlet, function, script file, or +operable program. Check the spelling of the name, or if a path was included, verify that the path is correct and try +again. +At line:1 char:30 ++ Get-Process | Where-Object { .MainWindowTitle -ne '' } | Select-Objec ... ++ ~~~~~~~~~~~~~~~~ + + CategoryInfo : ObjectNotFound: (.MainWindowTitle:String) [], CommandNotFoundException + + FullyQualifiedErrorId : CommandNotFoundException + +.MainWindowTitle : The term '.MainWindowTitle' is not recognized as the name of a cmdlet, function, script file, or +operable program. Check the spelling of the name, or if a path was included, verify that the path is correct and try +again. +At line:1 char:30 ++ Get-Process | Where-Object { .MainWindowTitle -ne '' } | Select-Objec ... ++ ~~~~~~~~~~~~~~~~ + + CategoryInfo : ObjectNotFound: (.MainWindowTitle:String) [], CommandNotFoundException + + FullyQualifiedErrorId : CommandNotFoundException + +.MainWindowTitle : The term '.MainWindowTitle' is not recognized as the name of a cmdlet, function, script file, or +operable program. Check the spelling of the name, or if a path was included, verify that the path is correct and try +again. +At line:1 char:30 ++ Get-Process | Where-Object { .MainWindowTitle -ne '' } | Select-Objec ... ++ ~~~~~~~~~~~~~~~~ + + CategoryInfo : ObjectNotFound: (.MainWindowTitle:String) [], CommandNotFoundException + + FullyQualifiedErrorId : CommandNotFoundException + +.MainWindowTitle : The term '.MainWindowTitle' is not recognized as the name of a cmdlet, function, script file, or +operable program. Check the spelling of the name, or if a path was included, verify that the path is correct and try +again. +At line:1 char:30 ++ Get-Process | Where-Object { .MainWindowTitle -ne '' } | Select-Objec ... ++ ~~~~~~~~~~~~~~~~ + + CategoryInfo : ObjectNotFound: (.MainWindowTitle:String) [], CommandNotFoundException + + FullyQualifiedErrorId : CommandNotFoundException + +.MainWindowTitle : The term '.MainWindowTitle' is not recognized as the name of a cmdlet, function, script file, or +operable program. Check the spelling of the name, or if a path was included, verify that the path is correct and try +again. +At line:1 char:30 ++ Get-Process | Where-Object { .MainWindowTitle -ne '' } | Select-Objec ... ++ ~~~~~~~~~~~~~~~~ + + CategoryInfo : ObjectNotFound: (.MainWindowTitle:String) [], CommandNotFoundException + + FullyQualifiedErrorId : CommandNotFoundException + +.MainWindowTitle : The term '.MainWindowTitle' is not recognized as the name of a cmdlet, function, script file, or +operable program. Check the spelling of the name, or if a path was included, verify that the path is correct and try +again. +At line:1 char:30 ++ Get-Process | Where-Object { .MainWindowTitle -ne '' } | Select-Objec ... ++ ~~~~~~~~~~~~~~~~ + + CategoryInfo : ObjectNotFound: (.MainWindowTitle:String) [], CommandNotFoundException + + FullyQualifiedErrorId : CommandNotFoundException + +.MainWindowTitle : The term '.MainWindowTitle' is not recognized as the name of a cmdlet, function, script file, or +operable program. Check the spelling of the name, or if a path was included, verify that the path is correct and try +again. +At line:1 char:30 ++ Get-Process | Where-Object { .MainWindowTitle -ne '' } | Select-Objec ... ++ ~~~~~~~~~~~~~~~~ + + CategoryInfo : ObjectNotFound: (.MainWindowTitle:String) [], CommandNotFoundException + + FullyQualifiedErrorId : CommandNotFoundException + +.MainWindowTitle : The term '.MainWindowTitle' is not recognized as the name of a cmdlet, function, script file, or +operable program. Check the spelling of the name, or if a path was included, verify that the path is correct and try +again. +At line:1 char:30 ++ Get-Process | Where-Object { .MainWindowTitle -ne '' } | Select-Objec ... ++ ~~~~~~~~~~~~~~~~ + + CategoryInfo : ObjectNotFound: (.MainWindowTitle:String) [], CommandNotFoundException + + FullyQualifiedErrorId : CommandNotFoundException + +.MainWindowTitle : The term '.MainWindowTitle' is not recognized as the name of a cmdlet, function, script file, or +operable program. Check the spelling of the name, or if a path was included, verify that the path is correct and try +again. +At line:1 char:30 ++ Get-Process | Where-Object { .MainWindowTitle -ne '' } | Select-Objec ... ++ ~~~~~~~~~~~~~~~~ + + CategoryInfo : ObjectNotFound: (.MainWindowTitle:String) [], CommandNotFoundException + + FullyQualifiedErrorId : CommandNotFoundException + +.MainWindowTitle : The term '.MainWindowTitle' is not recognized as the name of a cmdlet, function, script file, or +operable program. Check the spelling of the name, or if a path was included, verify that the path is correct and try +again. +At line:1 char:30 ++ Get-Process | Where-Object { .MainWindowTitle -ne '' } | Select-Objec ... ++ ~~~~~~~~~~~~~~~~ + + CategoryInfo : ObjectNotFound: (.MainWindowTitle:String) [], CommandNotFoundException + + FullyQualifiedErrorId : CommandNotFoundException + +.MainWindowTitle : The term '.MainWindowTitle' is not recognized as the name of a cmdlet, function, script file, or +operable program. Check the spelling of the name, or if a path was included, verify that the path is correct and try +again. +At line:1 char:30 ++ Get-Process | Where-Object { .MainWindowTitle -ne '' } | Select-Objec ... ++ ~~~~~~~~~~~~~~~~ + + CategoryInfo : ObjectNotFound: (.MainWindowTitle:String) [], CommandNotFoundException + + FullyQualifiedErrorId : CommandNotFoundException + +.MainWindowTitle : The term '.MainWindowTitle' is not recognized as the name of a cmdlet, function, script file, or +operable program. Check the spelling of the name, or if a path was included, verify that the path is correct and try +again. +At line:1 char:30 ++ Get-Process | Where-Object { .MainWindowTitle -ne '' } | Select-Objec ... ++ ~~~~~~~~~~~~~~~~ + + CategoryInfo : ObjectNotFound: (.MainWindowTitle:String) [], CommandNotFoundException + + FullyQualifiedErrorId : CommandNotFoundException + +.MainWindowTitle : The term '.MainWindowTitle' is not recognized as the name of a cmdlet, function, script file, or +operable program. Check the spelling of the name, or if a path was included, verify that the path is correct and try +again. +At line:1 char:30 ++ Get-Process | Where-Object { .MainWindowTitle -ne '' } | Select-Objec ... ++ ~~~~~~~~~~~~~~~~ + + CategoryInfo : ObjectNotFound: (.MainWindowTitle:String) [], CommandNotFoundException + + FullyQualifiedErrorId : CommandNotFoundException + +.MainWindowTitle : The term '.MainWindowTitle' is not recognized as the name of a cmdlet, function, script file, or +operable program. Check the spelling of the name, or if a path was included, verify that the path is correct and try +again. +At line:1 char:30 ++ Get-Process | Where-Object { .MainWindowTitle -ne '' } | Select-Objec ... ++ ~~~~~~~~~~~~~~~~ + + CategoryInfo : ObjectNotFound: (.MainWindowTitle:String) [], CommandNotFoundException + + FullyQualifiedErrorId : CommandNotFoundException + +.MainWindowTitle : The term '.MainWindowTitle' is not recognized as the name of a cmdlet, function, script file, or +operable program. Check the spelling of the name, or if a path was included, verify that the path is correct and try +again. +At line:1 char:30 ++ Get-Process | Where-Object { .MainWindowTitle -ne '' } | Select-Objec ... ++ ~~~~~~~~~~~~~~~~ + + CategoryInfo : ObjectNotFound: (.MainWindowTitle:String) [], CommandNotFoundException + + FullyQualifiedErrorId : CommandNotFoundException + +.MainWindowTitle : The term '.MainWindowTitle' is not recognized as the name of a cmdlet, function, script file, or +operable program. Check the spelling of the name, or if a path was included, verify that the path is correct and try +again. +At line:1 char:30 ++ Get-Process | Where-Object { .MainWindowTitle -ne '' } | Select-Objec ... ++ ~~~~~~~~~~~~~~~~ + + CategoryInfo : ObjectNotFound: (.MainWindowTitle:String) [], CommandNotFoundException + + FullyQualifiedErrorId : CommandNotFoundException + +.MainWindowTitle : The term '.MainWindowTitle' is not recognized as the name of a cmdlet, function, script file, or +operable program. Check the spelling of the name, or if a path was included, verify that the path is correct and try +again. +At line:1 char:30 ++ Get-Process | Where-Object { .MainWindowTitle -ne '' } | Select-Objec ... ++ ~~~~~~~~~~~~~~~~ + + CategoryInfo : ObjectNotFound: (.MainWindowTitle:String) [], CommandNotFoundException + + FullyQualifiedErrorId : CommandNotFoundException + +.MainWindowTitle : The term '.MainWindowTitle' is not recognized as the name of a cmdlet, function, script file, or +operable program. Check the spelling of the name, or if a path was included, verify that the path is correct and try +again. +At line:1 char:30 ++ Get-Process | Where-Object { .MainWindowTitle -ne '' } | Select-Objec ... ++ ~~~~~~~~~~~~~~~~ + + CategoryInfo : ObjectNotFound: (.MainWindowTitle:String) [], CommandNotFoundException + + FullyQualifiedErrorId : CommandNotFoundException + +.MainWindowTitle : The term '.MainWindowTitle' is not recognized as the name of a cmdlet, function, script file, or +operable program. Check the spelling of the name, or if a path was included, verify that the path is correct and try +again. +At line:1 char:30 ++ Get-Process | Where-Object { .MainWindowTitle -ne '' } | Select-Objec ... ++ ~~~~~~~~~~~~~~~~ + + CategoryInfo : ObjectNotFound: (.MainWindowTitle:String) [], CommandNotFoundException + + FullyQualifiedErrorId : CommandNotFoundException + +.MainWindowTitle : The term '.MainWindowTitle' is not recognized as the name of a cmdlet, function, script file, or +operable program. Check the spelling of the name, or if a path was included, verify that the path is correct and try +again. +At line:1 char:30 ++ Get-Process | Where-Object { .MainWindowTitle -ne '' } | Select-Objec ... ++ ~~~~~~~~~~~~~~~~ + + CategoryInfo : ObjectNotFound: (.MainWindowTitle:String) [], CommandNotFoundException + + FullyQualifiedErrorId : CommandNotFoundException + +.MainWindowTitle : The term '.MainWindowTitle' is not recognized as the name of a cmdlet, function, script file, or +operable program. Check the spelling of the name, or if a path was included, verify that the path is correct and try +again. +At line:1 char:30 ++ Get-Process | Where-Object { .MainWindowTitle -ne '' } | Select-Objec ... ++ ~~~~~~~~~~~~~~~~ + + CategoryInfo : ObjectNotFound: (.MainWindowTitle:String) [], CommandNotFoundException + + FullyQualifiedErrorId : CommandNotFoundException + +.MainWindowTitle : The term '.MainWindowTitle' is not recognized as the name of a cmdlet, function, script file, or +operable program. Check the spelling of the name, or if a path was included, verify that the path is correct and try +again. +At line:1 char:30 ++ Get-Process | Where-Object { .MainWindowTitle -ne '' } | Select-Objec ... ++ ~~~~~~~~~~~~~~~~ + + CategoryInfo : ObjectNotFound: (.MainWindowTitle:String) [], CommandNotFoundException + + FullyQualifiedErrorId : CommandNotFoundException + +.MainWindowTitle : The term '.MainWindowTitle' is not recognized as the name of a cmdlet, function, script file, or +operable program. Check the spelling of the name, or if a path was included, verify that the path is correct and try +again. +At line:1 char:30 ++ Get-Process | Where-Object { .MainWindowTitle -ne '' } | Select-Objec ... ++ ~~~~~~~~~~~~~~~~ + + CategoryInfo : ObjectNotFound: (.MainWindowTitle:String) [], CommandNotFoundException + + FullyQualifiedErrorId : CommandNotFoundException + +.MainWindowTitle : The term '.MainWindowTitle' is not recognized as the name of a cmdlet, function, script file, or +operable program. Check the spelling of the name, or if a path was included, verify that the path is correct and try +again. +At line:1 char:30 ++ Get-Process | Where-Object { .MainWindowTitle -ne '' } | Select-Objec ... ++ ~~~~~~~~~~~~~~~~ + + CategoryInfo : ObjectNotFound: (.MainWindowTitle:String) [], CommandNotFoundException + + FullyQualifiedErrorId : CommandNotFoundException + +.MainWindowTitle : The term '.MainWindowTitle' is not recognized as the name of a cmdlet, function, script file, or +operable program. Check the spelling of the name, or if a path was included, verify that the path is correct and try +again. +At line:1 char:30 ++ Get-Process | Where-Object { .MainWindowTitle -ne '' } | Select-Objec ... ++ ~~~~~~~~~~~~~~~~ + + CategoryInfo : ObjectNotFound: (.MainWindowTitle:String) [], CommandNotFoundException + + FullyQualifiedErrorId : CommandNotFoundException + +.MainWindowTitle : The term '.MainWindowTitle' is not recognized as the name of a cmdlet, function, script file, or +operable program. Check the spelling of the name, or if a path was included, verify that the path is correct and try +again. +At line:1 char:30 ++ Get-Process | Where-Object { .MainWindowTitle -ne '' } | Select-Objec ... ++ ~~~~~~~~~~~~~~~~ + + CategoryInfo : ObjectNotFound: (.MainWindowTitle:String) [], CommandNotFoundException + + FullyQualifiedErrorId : CommandNotFoundException + +.MainWindowTitle : The term '.MainWindowTitle' is not recognized as the name of a cmdlet, function, script file, or +operable program. Check the spelling of the name, or if a path was included, verify that the path is correct and try +again. +At line:1 char:30 ++ Get-Process | Where-Object { .MainWindowTitle -ne '' } | Select-Objec ... ++ ~~~~~~~~~~~~~~~~ + + CategoryInfo : ObjectNotFound: (.MainWindowTitle:String) [], CommandNotFoundException + + FullyQualifiedErrorId : CommandNotFoundException + +.MainWindowTitle : The term '.MainWindowTitle' is not recognized as the name of a cmdlet, function, script file, or +operable program. Check the spelling of the name, or if a path was included, verify that the path is correct and try +again. +At line:1 char:30 ++ Get-Process | Where-Object { .MainWindowTitle -ne '' } | Select-Objec ... ++ ~~~~~~~~~~~~~~~~ + + CategoryInfo : ObjectNotFound: (.MainWindowTitle:String) [], CommandNotFoundException + + FullyQualifiedErrorId : CommandNotFoundException + +.MainWindowTitle : The term '.MainWindowTitle' is not recognized as the name of a cmdlet, function, script file, or +operable program. Check the spelling of the name, or if a path was included, verify that the path is correct and try +again. +At line:1 char:30 ++ Get-Process | Where-Object { .MainWindowTitle -ne '' } | Select-Objec ... ++ ~~~~~~~~~~~~~~~~ + + CategoryInfo : ObjectNotFound: (.MainWindowTitle:String) [], CommandNotFoundException + + FullyQualifiedErrorId : CommandNotFoundException + +.MainWindowTitle : The term '.MainWindowTitle' is not recognized as the name of a cmdlet, function, script file, or +operable program. Check the spelling of the name, or if a path was included, verify that the path is correct and try +again. +At line:1 char:30 ++ Get-Process | Where-Object { .MainWindowTitle -ne '' } | Select-Objec ... ++ ~~~~~~~~~~~~~~~~ + + CategoryInfo : ObjectNotFound: (.MainWindowTitle:String) [], CommandNotFoundException + + FullyQualifiedErrorId : CommandNotFoundException + +.MainWindowTitle : The term '.MainWindowTitle' is not recognized as the name of a cmdlet, function, script file, or +operable program. Check the spelling of the name, or if a path was included, verify that the path is correct and try +again. +At line:1 char:30 ++ Get-Process | Where-Object { .MainWindowTitle -ne '' } | Select-Objec ... ++ ~~~~~~~~~~~~~~~~ + + CategoryInfo : ObjectNotFound: (.MainWindowTitle:String) [], CommandNotFoundException + + FullyQualifiedErrorId : CommandNotFoundException + +.MainWindowTitle : The term '.MainWindowTitle' is not recognized as the name of a cmdlet, function, script file, or +operable program. Check the spelling of the name, or if a path was included, verify that the path is correct and try +again. +At line:1 char:30 ++ Get-Process | Where-Object { .MainWindowTitle -ne '' } | Select-Objec ... ++ ~~~~~~~~~~~~~~~~ + + CategoryInfo : ObjectNotFound: (.MainWindowTitle:String) [], CommandNotFoundException + + FullyQualifiedErrorId : CommandNotFoundException + +.MainWindowTitle : The term '.MainWindowTitle' is not recognized as the name of a cmdlet, function, script file, or +operable program. Check the spelling of the name, or if a path was included, verify that the path is correct and try +again. +At line:1 char:30 ++ Get-Process | Where-Object { .MainWindowTitle -ne '' } | Select-Objec ... ++ ~~~~~~~~~~~~~~~~ + + CategoryInfo : ObjectNotFound: (.MainWindowTitle:String) [], CommandNotFoundException + + FullyQualifiedErrorId : CommandNotFoundException + +.MainWindowTitle : The term '.MainWindowTitle' is not recognized as the name of a cmdlet, function, script file, or +operable program. Check the spelling of the name, or if a path was included, verify that the path is correct and try +again. +At line:1 char:30 ++ Get-Process | Where-Object { .MainWindowTitle -ne '' } | Select-Objec ... ++ ~~~~~~~~~~~~~~~~ + + CategoryInfo : ObjectNotFound: (.MainWindowTitle:String) [], CommandNotFoundException + + FullyQualifiedErrorId : CommandNotFoundException + +.MainWindowTitle : The term '.MainWindowTitle' is not recognized as the name of a cmdlet, function, script file, or +operable program. Check the spelling of the name, or if a path was included, verify that the path is correct and try +again. +At line:1 char:30 ++ Get-Process | Where-Object { .MainWindowTitle -ne '' } | Select-Objec ... ++ ~~~~~~~~~~~~~~~~ + + CategoryInfo : ObjectNotFound: (.MainWindowTitle:String) [], CommandNotFoundException + + FullyQualifiedErrorId : CommandNotFoundException + +.MainWindowTitle : The term '.MainWindowTitle' is not recognized as the name of a cmdlet, function, script file, or +operable program. Check the spelling of the name, or if a path was included, verify that the path is correct and try +again. +At line:1 char:30 ++ Get-Process | Where-Object { .MainWindowTitle -ne '' } | Select-Objec ... ++ ~~~~~~~~~~~~~~~~ + + CategoryInfo : ObjectNotFound: (.MainWindowTitle:String) [], CommandNotFoundException + + FullyQualifiedErrorId : CommandNotFoundException + +.MainWindowTitle : The term '.MainWindowTitle' is not recognized as the name of a cmdlet, function, script file, or +operable program. Check the spelling of the name, or if a path was included, verify that the path is correct and try +again. +At line:1 char:30 ++ Get-Process | Where-Object { .MainWindowTitle -ne '' } | Select-Objec ... ++ ~~~~~~~~~~~~~~~~ + + CategoryInfo : ObjectNotFound: (.MainWindowTitle:String) [], CommandNotFoundException + + FullyQualifiedErrorId : CommandNotFoundException + +.MainWindowTitle : The term '.MainWindowTitle' is not recognized as the name of a cmdlet, function, script file, or +operable program. Check the spelling of the name, or if a path was included, verify that the path is correct and try +again. +At line:1 char:30 ++ Get-Process | Where-Object { .MainWindowTitle -ne '' } | Select-Objec ... ++ ~~~~~~~~~~~~~~~~ + + CategoryInfo : ObjectNotFound: (.MainWindowTitle:String) [], CommandNotFoundException + + FullyQualifiedErrorId : CommandNotFoundException + +.MainWindowTitle : The term '.MainWindowTitle' is not recognized as the name of a cmdlet, function, script file, or +operable program. Check the spelling of the name, or if a path was included, verify that the path is correct and try +again. +At line:1 char:30 ++ Get-Process | Where-Object { .MainWindowTitle -ne '' } | Select-Objec ... ++ ~~~~~~~~~~~~~~~~ + + CategoryInfo : ObjectNotFound: (.MainWindowTitle:String) [], CommandNotFoundException + + FullyQualifiedErrorId : CommandNotFoundException + +.MainWindowTitle : The term '.MainWindowTitle' is not recognized as the name of a cmdlet, function, script file, or +operable program. Check the spelling of the name, or if a path was included, verify that the path is correct and try +again. +At line:1 char:30 ++ Get-Process | Where-Object { .MainWindowTitle -ne '' } | Select-Objec ... ++ ~~~~~~~~~~~~~~~~ + + CategoryInfo : ObjectNotFound: (.MainWindowTitle:String) [], CommandNotFoundException + + FullyQualifiedErrorId : CommandNotFoundException + +.MainWindowTitle : The term '.MainWindowTitle' is not recognized as the name of a cmdlet, function, script file, or +operable program. Check the spelling of the name, or if a path was included, verify that the path is correct and try +again. +At line:1 char:30 ++ Get-Process | Where-Object { .MainWindowTitle -ne '' } | Select-Objec ... ++ ~~~~~~~~~~~~~~~~ + + CategoryInfo : ObjectNotFound: (.MainWindowTitle:String) [], CommandNotFoundException + + FullyQualifiedErrorId : CommandNotFoundException + +.MainWindowTitle : The term '.MainWindowTitle' is not recognized as the name of a cmdlet, function, script file, or +operable program. Check the spelling of the name, or if a path was included, verify that the path is correct and try +again. +At line:1 char:30 ++ Get-Process | Where-Object { .MainWindowTitle -ne '' } | Select-Objec ... ++ ~~~~~~~~~~~~~~~~ + + CategoryInfo : ObjectNotFound: (.MainWindowTitle:String) [], CommandNotFoundException + + FullyQualifiedErrorId : CommandNotFoundException + +.MainWindowTitle : The term '.MainWindowTitle' is not recognized as the name of a cmdlet, function, script file, or +operable program. Check the spelling of the name, or if a path was included, verify that the path is correct and try +again. +At line:1 char:30 ++ Get-Process | Where-Object { .MainWindowTitle -ne '' } | Select-Objec ... ++ ~~~~~~~~~~~~~~~~ + + CategoryInfo : ObjectNotFound: (.MainWindowTitle:String) [], CommandNotFoundException + + FullyQualifiedErrorId : CommandNotFoundException + +.MainWindowTitle : The term '.MainWindowTitle' is not recognized as the name of a cmdlet, function, script file, or +operable program. Check the spelling of the name, or if a path was included, verify that the path is correct and try +again. +At line:1 char:30 ++ Get-Process | Where-Object { .MainWindowTitle -ne '' } | Select-Objec ... ++ ~~~~~~~~~~~~~~~~ + + CategoryInfo : ObjectNotFound: (.MainWindowTitle:String) [], CommandNotFoundException + + FullyQualifiedErrorId : CommandNotFoundException + +.MainWindowTitle : The term '.MainWindowTitle' is not recognized as the name of a cmdlet, function, script file, or +operable program. Check the spelling of the name, or if a path was included, verify that the path is correct and try +again. +At line:1 char:30 ++ Get-Process | Where-Object { .MainWindowTitle -ne '' } | Select-Objec ... ++ ~~~~~~~~~~~~~~~~ + + CategoryInfo : ObjectNotFound: (.MainWindowTitle:String) [], CommandNotFoundException + + FullyQualifiedErrorId : CommandNotFoundException + +.MainWindowTitle : The term '.MainWindowTitle' is not recognized as the name of a cmdlet, function, script file, or +operable program. Check the spelling of the name, or if a path was included, verify that the path is correct and try +again. +At line:1 char:30 ++ Get-Process | Where-Object { .MainWindowTitle -ne '' } | Select-Objec ... ++ ~~~~~~~~~~~~~~~~ + + CategoryInfo : ObjectNotFound: (.MainWindowTitle:String) [], CommandNotFoundException + + FullyQualifiedErrorId : CommandNotFoundException + +.MainWindowTitle : The term '.MainWindowTitle' is not recognized as the name of a cmdlet, function, script file, or +operable program. Check the spelling of the name, or if a path was included, verify that the path is correct and try +again. +At line:1 char:30 ++ Get-Process | Where-Object { .MainWindowTitle -ne '' } | Select-Objec ... ++ ~~~~~~~~~~~~~~~~ + + CategoryInfo : ObjectNotFound: (.MainWindowTitle:String) [], CommandNotFoundException + + FullyQualifiedErrorId : CommandNotFoundException + +.MainWindowTitle : The term '.MainWindowTitle' is not recognized as the name of a cmdlet, function, script file, or +operable program. Check the spelling of the name, or if a path was included, verify that the path is correct and try +again. +At line:1 char:30 ++ Get-Process | Where-Object { .MainWindowTitle -ne '' } | Select-Objec ... ++ ~~~~~~~~~~~~~~~~ + + CategoryInfo : ObjectNotFound: (.MainWindowTitle:String) [], CommandNotFoundException + + FullyQualifiedErrorId : CommandNotFoundException + +.MainWindowTitle : The term '.MainWindowTitle' is not recognized as the name of a cmdlet, function, script file, or +operable program. Check the spelling of the name, or if a path was included, verify that the path is correct and try +again. +At line:1 char:30 ++ Get-Process | Where-Object { .MainWindowTitle -ne '' } | Select-Objec ... ++ ~~~~~~~~~~~~~~~~ + + CategoryInfo : ObjectNotFound: (.MainWindowTitle:String) [], CommandNotFoundException + + FullyQualifiedErrorId : CommandNotFoundException + +.MainWindowTitle : The term '.MainWindowTitle' is not recognized as the name of a cmdlet, function, script file, or +operable program. Check the spelling of the name, or if a path was included, verify that the path is correct and try +again. +At line:1 char:30 ++ Get-Process | Where-Object { .MainWindowTitle -ne '' } | Select-Objec ... ++ ~~~~~~~~~~~~~~~~ + + CategoryInfo : ObjectNotFound: (.MainWindowTitle:String) [], CommandNotFoundException + + FullyQualifiedErrorId : CommandNotFoundException + +.MainWindowTitle : The term '.MainWindowTitle' is not recognized as the name of a cmdlet, function, script file, or +operable program. Check the spelling of the name, or if a path was included, verify that the path is correct and try +again. +At line:1 char:30 ++ Get-Process | Where-Object { .MainWindowTitle -ne '' } | Select-Objec ... ++ ~~~~~~~~~~~~~~~~ + + CategoryInfo : ObjectNotFound: (.MainWindowTitle:String) [], CommandNotFoundException + + FullyQualifiedErrorId : CommandNotFoundException + +.MainWindowTitle : The term '.MainWindowTitle' is not recognized as the name of a cmdlet, function, script file, or +operable program. Check the spelling of the name, or if a path was included, verify that the path is correct and try +again. +At line:1 char:30 ++ Get-Process | Where-Object { .MainWindowTitle -ne '' } | Select-Objec ... ++ ~~~~~~~~~~~~~~~~ + + CategoryInfo : ObjectNotFound: (.MainWindowTitle:String) [], CommandNotFoundException + + FullyQualifiedErrorId : CommandNotFoundException + +.MainWindowTitle : The term '.MainWindowTitle' is not recognized as the name of a cmdlet, function, script file, or +operable program. Check the spelling of the name, or if a path was included, verify that the path is correct and try +again. +At line:1 char:30 ++ Get-Process | Where-Object { .MainWindowTitle -ne '' } | Select-Objec ... ++ ~~~~~~~~~~~~~~~~ + + CategoryInfo : ObjectNotFound: (.MainWindowTitle:String) [], CommandNotFoundException + + FullyQualifiedErrorId : CommandNotFoundException + +.MainWindowTitle : The term '.MainWindowTitle' is not recognized as the name of a cmdlet, function, script file, or +operable program. Check the spelling of the name, or if a path was included, verify that the path is correct and try +again. +At line:1 char:30 ++ Get-Process | Where-Object { .MainWindowTitle -ne '' } | Select-Objec ... ++ ~~~~~~~~~~~~~~~~ + + CategoryInfo : ObjectNotFound: (.MainWindowTitle:String) [], CommandNotFoundException + + FullyQualifiedErrorId : CommandNotFoundException + +.MainWindowTitle : The term '.MainWindowTitle' is not recognized as the name of a cmdlet, function, script file, or +operable program. Check the spelling of the name, or if a path was included, verify that the path is correct and try +again. +At line:1 char:30 ++ Get-Process | Where-Object { .MainWindowTitle -ne '' } | Select-Objec ... ++ ~~~~~~~~~~~~~~~~ + + CategoryInfo : ObjectNotFound: (.MainWindowTitle:String) [], CommandNotFoundException + + FullyQualifiedErrorId : CommandNotFoundException + +.MainWindowTitle : The term '.MainWindowTitle' is not recognized as the name of a cmdlet, function, script file, or +operable program. Check the spelling of the name, or if a path was included, verify that the path is correct and try +again. +At line:1 char:30 ++ Get-Process | Where-Object { .MainWindowTitle -ne '' } | Select-Objec ... ++ ~~~~~~~~~~~~~~~~ + + CategoryInfo : ObjectNotFound: (.MainWindowTitle:String) [], CommandNotFoundException + + FullyQualifiedErrorId : CommandNotFoundException + +.MainWindowTitle : The term '.MainWindowTitle' is not recognized as the name of a cmdlet, function, script file, or +operable program. Check the spelling of the name, or if a path was included, verify that the path is correct and try +again. +At line:1 char:30 ++ Get-Process | Where-Object { .MainWindowTitle -ne '' } | Select-Objec ... ++ ~~~~~~~~~~~~~~~~ + + CategoryInfo : ObjectNotFound: (.MainWindowTitle:String) [], CommandNotFoundException + + FullyQualifiedErrorId : CommandNotFoundException + +.MainWindowTitle : The term '.MainWindowTitle' is not recognized as the name of a cmdlet, function, script file, or +operable program. Check the spelling of the name, or if a path was included, verify that the path is correct and try +again. +At line:1 char:30 ++ Get-Process | Where-Object { .MainWindowTitle -ne '' } | Select-Objec ... ++ ~~~~~~~~~~~~~~~~ + + CategoryInfo : ObjectNotFound: (.MainWindowTitle:String) [], CommandNotFoundException + + FullyQualifiedErrorId : CommandNotFoundException + +.MainWindowTitle : The term '.MainWindowTitle' is not recognized as the name of a cmdlet, function, script file, or +operable program. Check the spelling of the name, or if a path was included, verify that the path is correct and try +again. +At line:1 char:30 ++ Get-Process | Where-Object { .MainWindowTitle -ne '' } | Select-Objec ... ++ ~~~~~~~~~~~~~~~~ + + CategoryInfo : ObjectNotFound: (.MainWindowTitle:String) [], CommandNotFoundException + + FullyQualifiedErrorId : CommandNotFoundException + +.MainWindowTitle : The term '.MainWindowTitle' is not recognized as the name of a cmdlet, function, script file, or +operable program. Check the spelling of the name, or if a path was included, verify that the path is correct and try +again. +At line:1 char:30 ++ Get-Process | Where-Object { .MainWindowTitle -ne '' } | Select-Objec ... ++ ~~~~~~~~~~~~~~~~ + + CategoryInfo : ObjectNotFound: (.MainWindowTitle:String) [], CommandNotFoundException + + FullyQualifiedErrorId : CommandNotFoundException + +.MainWindowTitle : The term '.MainWindowTitle' is not recognized as the name of a cmdlet, function, script file, or +operable program. Check the spelling of the name, or if a path was included, verify that the path is correct and try +again. +At line:1 char:30 ++ Get-Process | Where-Object { .MainWindowTitle -ne '' } | Select-Objec ... ++ ~~~~~~~~~~~~~~~~ + + CategoryInfo : ObjectNotFound: (.MainWindowTitle:String) [], CommandNotFoundException + + FullyQualifiedErrorId : CommandNotFoundException + +.MainWindowTitle : The term '.MainWindowTitle' is not recognized as the name of a cmdlet, function, script file, or +operable program. Check the spelling of the name, or if a path was included, verify that the path is correct and try +again. +At line:1 char:30 ++ Get-Process | Where-Object { .MainWindowTitle -ne '' } | Select-Objec ... ++ ~~~~~~~~~~~~~~~~ + + CategoryInfo : ObjectNotFound: (.MainWindowTitle:String) [], CommandNotFoundException + + FullyQualifiedErrorId : CommandNotFoundException + +.MainWindowTitle : The term '.MainWindowTitle' is not recognized as the name of a cmdlet, function, script file, or +operable program. Check the spelling of the name, or if a path was included, verify that the path is correct and try +again. +At line:1 char:30 ++ Get-Process | Where-Object { .MainWindowTitle -ne '' } | Select-Objec ... ++ ~~~~~~~~~~~~~~~~ + + CategoryInfo : ObjectNotFound: (.MainWindowTitle:String) [], CommandNotFoundException + + FullyQualifiedErrorId : CommandNotFoundException + +.MainWindowTitle : The term '.MainWindowTitle' is not recognized as the name of a cmdlet, function, script file, or +operable program. Check the spelling of the name, or if a path was included, verify that the path is correct and try +again. +At line:1 char:30 ++ Get-Process | Where-Object { .MainWindowTitle -ne '' } | Select-Objec ... ++ ~~~~~~~~~~~~~~~~ + + CategoryInfo : ObjectNotFound: (.MainWindowTitle:String) [], CommandNotFoundException + + FullyQualifiedErrorId : CommandNotFoundException + +.MainWindowTitle : The term '.MainWindowTitle' is not recognized as the name of a cmdlet, function, script file, or +operable program. Check the spelling of the name, or if a path was included, verify that the path is correct and try +again. +At line:1 char:30 ++ Get-Process | Where-Object { .MainWindowTitle -ne '' } | Select-Objec ... ++ ~~~~~~~~~~~~~~~~ + + CategoryInfo : ObjectNotFound: (.MainWindowTitle:String) [], CommandNotFoundException + + FullyQualifiedErrorId : CommandNotFoundException + +.MainWindowTitle : The term '.MainWindowTitle' is not recognized as the name of a cmdlet, function, script file, or +operable program. Check the spelling of the name, or if a path was included, verify that the path is correct and try +again. +At line:1 char:30 ++ Get-Process | Where-Object { .MainWindowTitle -ne '' } | Select-Objec ... ++ ~~~~~~~~~~~~~~~~ + + CategoryInfo : ObjectNotFound: (.MainWindowTitle:String) [], CommandNotFoundException + + FullyQualifiedErrorId : CommandNotFoundException + +.MainWindowTitle : The term '.MainWindowTitle' is not recognized as the name of a cmdlet, function, script file, or +operable program. Check the spelling of the name, or if a path was included, verify that the path is correct and try +again. +At line:1 char:30 ++ Get-Process | Where-Object { .MainWindowTitle -ne '' } | Select-Objec ... ++ ~~~~~~~~~~~~~~~~ + + CategoryInfo : ObjectNotFound: (.MainWindowTitle:String) [], CommandNotFoundException + + FullyQualifiedErrorId : CommandNotFoundException + +.MainWindowTitle : The term '.MainWindowTitle' is not recognized as the name of a cmdlet, function, script file, or +operable program. Check the spelling of the name, or if a path was included, verify that the path is correct and try +again. +At line:1 char:30 ++ Get-Process | Where-Object { .MainWindowTitle -ne '' } | Select-Objec ... ++ ~~~~~~~~~~~~~~~~ + + CategoryInfo : ObjectNotFound: (.MainWindowTitle:String) [], CommandNotFoundException + + FullyQualifiedErrorId : CommandNotFoundException + +.MainWindowTitle : The term '.MainWindowTitle' is not recognized as the name of a cmdlet, function, script file, or +operable program. Check the spelling of the name, or if a path was included, verify that the path is correct and try +again. +At line:1 char:30 ++ Get-Process | Where-Object { .MainWindowTitle -ne '' } | Select-Objec ... ++ ~~~~~~~~~~~~~~~~ + + CategoryInfo : ObjectNotFound: (.MainWindowTitle:String) [], CommandNotFoundException + + FullyQualifiedErrorId : CommandNotFoundException + +.MainWindowTitle : The term '.MainWindowTitle' is not recognized as the name of a cmdlet, function, script file, or +operable program. Check the spelling of the name, or if a path was included, verify that the path is correct and try +again. +At line:1 char:30 ++ Get-Process | Where-Object { .MainWindowTitle -ne '' } | Select-Objec ... ++ ~~~~~~~~~~~~~~~~ + + CategoryInfo : ObjectNotFound: (.MainWindowTitle:String) [], CommandNotFoundException + + FullyQualifiedErrorId : CommandNotFoundException + +.MainWindowTitle : The term '.MainWindowTitle' is not recognized as the name of a cmdlet, function, script file, or +operable program. Check the spelling of the name, or if a path was included, verify that the path is correct and try +again. +At line:1 char:30 ++ Get-Process | Where-Object { .MainWindowTitle -ne '' } | Select-Objec ... ++ ~~~~~~~~~~~~~~~~ + + CategoryInfo : ObjectNotFound: (.MainWindowTitle:String) [], CommandNotFoundException + + FullyQualifiedErrorId : CommandNotFoundException + +.MainWindowTitle : The term '.MainWindowTitle' is not recognized as the name of a cmdlet, function, script file, or +operable program. Check the spelling of the name, or if a path was included, verify that the path is correct and try +again. +At line:1 char:30 ++ Get-Process | Where-Object { .MainWindowTitle -ne '' } | Select-Objec ... ++ ~~~~~~~~~~~~~~~~ + + CategoryInfo : ObjectNotFound: (.MainWindowTitle:String) [], CommandNotFoundException + + FullyQualifiedErrorId : CommandNotFoundException + +.MainWindowTitle : The term '.MainWindowTitle' is not recognized as the name of a cmdlet, function, script file, or +operable program. Check the spelling of the name, or if a path was included, verify that the path is correct and try +again. +At line:1 char:30 ++ Get-Process | Where-Object { .MainWindowTitle -ne '' } | Select-Objec ... ++ ~~~~~~~~~~~~~~~~ + + CategoryInfo : ObjectNotFound: (.MainWindowTitle:String) [], CommandNotFoundException + + FullyQualifiedErrorId : CommandNotFoundException + +.MainWindowTitle : The term '.MainWindowTitle' is not recognized as the name of a cmdlet, function, script file, or +operable program. Check the spelling of the name, or if a path was included, verify that the path is correct and try +again. +At line:1 char:30 ++ Get-Process | Where-Object { .MainWindowTitle -ne '' } | Select-Objec ... ++ ~~~~~~~~~~~~~~~~ + + CategoryInfo : ObjectNotFound: (.MainWindowTitle:String) [], CommandNotFoundException + + FullyQualifiedErrorId : CommandNotFoundException + +.MainWindowTitle : The term '.MainWindowTitle' is not recognized as the name of a cmdlet, function, script file, or +operable program. Check the spelling of the name, or if a path was included, verify that the path is correct and try +again. +At line:1 char:30 ++ Get-Process | Where-Object { .MainWindowTitle -ne '' } | Select-Objec ... ++ ~~~~~~~~~~~~~~~~ + + CategoryInfo : ObjectNotFound: (.MainWindowTitle:String) [], CommandNotFoundException + + FullyQualifiedErrorId : CommandNotFoundException + +.MainWindowTitle : The term '.MainWindowTitle' is not recognized as the name of a cmdlet, function, script file, or +operable program. Check the spelling of the name, or if a path was included, verify that the path is correct and try +again. +At line:1 char:30 ++ Get-Process | Where-Object { .MainWindowTitle -ne '' } | Select-Objec ... ++ ~~~~~~~~~~~~~~~~ + + CategoryInfo : ObjectNotFound: (.MainWindowTitle:String) [], CommandNotFoundException + + FullyQualifiedErrorId : CommandNotFoundException + +.MainWindowTitle : The term '.MainWindowTitle' is not recognized as the name of a cmdlet, function, script file, or +operable program. Check the spelling of the name, or if a path was included, verify that the path is correct and try +again. +At line:1 char:30 ++ Get-Process | Where-Object { .MainWindowTitle -ne '' } | Select-Objec ... ++ ~~~~~~~~~~~~~~~~ + + CategoryInfo : ObjectNotFound: (.MainWindowTitle:String) [], CommandNotFoundException + + FullyQualifiedErrorId : CommandNotFoundException + +.MainWindowTitle : The term '.MainWindowTitle' is not recognized as the name of a cmdlet, function, script file, or +operable program. Check the spelling of the name, or if a path was included, verify that the path is correct and try +again. +At line:1 char:30 ++ Get-Process | Where-Object { .MainWindowTitle -ne '' } | Select-Objec ... ++ ~~~~~~~~~~~~~~~~ + + CategoryInfo : ObjectNotFound: (.MainWindowTitle:String) [], CommandNotFoundException + + FullyQualifiedErrorId : CommandNotFoundException + +.MainWindowTitle : The term '.MainWindowTitle' is not recognized as the name of a cmdlet, function, script file, or +operable program. Check the spelling of the name, or if a path was included, verify that the path is correct and try +again. +At line:1 char:30 ++ Get-Process | Where-Object { .MainWindowTitle -ne '' } | Select-Objec ... ++ ~~~~~~~~~~~~~~~~ + + CategoryInfo : ObjectNotFound: (.MainWindowTitle:String) [], CommandNotFoundException + + FullyQualifiedErrorId : CommandNotFoundException + +.MainWindowTitle : The term '.MainWindowTitle' is not recognized as the name of a cmdlet, function, script file, or +operable program. Check the spelling of the name, or if a path was included, verify that the path is correct and try +again. +At line:1 char:30 ++ Get-Process | Where-Object { .MainWindowTitle -ne '' } | Select-Objec ... ++ ~~~~~~~~~~~~~~~~ + + CategoryInfo : ObjectNotFound: (.MainWindowTitle:String) [], CommandNotFoundException + + FullyQualifiedErrorId : CommandNotFoundException + +.MainWindowTitle : The term '.MainWindowTitle' is not recognized as the name of a cmdlet, function, script file, or +operable program. Check the spelling of the name, or if a path was included, verify that the path is correct and try +again. +At line:1 char:30 ++ Get-Process | Where-Object { .MainWindowTitle -ne '' } | Select-Objec ... ++ ~~~~~~~~~~~~~~~~ + + CategoryInfo : ObjectNotFound: (.MainWindowTitle:String) [], CommandNotFoundException + + FullyQualifiedErrorId : CommandNotFoundException + +.MainWindowTitle : The term '.MainWindowTitle' is not recognized as the name of a cmdlet, function, script file, or +operable program. Check the spelling of the name, or if a path was included, verify that the path is correct and try +again. +At line:1 char:30 ++ Get-Process | Where-Object { .MainWindowTitle -ne '' } | Select-Objec ... ++ ~~~~~~~~~~~~~~~~ + + CategoryInfo : ObjectNotFound: (.MainWindowTitle:String) [], CommandNotFoundException + + FullyQualifiedErrorId : CommandNotFoundException + +.MainWindowTitle : The term '.MainWindowTitle' is not recognized as the name of a cmdlet, function, script file, or +operable program. Check the spelling of the name, or if a path was included, verify that the path is correct and try +again. +At line:1 char:30 ++ Get-Process | Where-Object { .MainWindowTitle -ne '' } | Select-Objec ... ++ ~~~~~~~~~~~~~~~~ + + CategoryInfo : ObjectNotFound: (.MainWindowTitle:String) [], CommandNotFoundException + + FullyQualifiedErrorId : CommandNotFoundException + +.MainWindowTitle : The term '.MainWindowTitle' is not recognized as the name of a cmdlet, function, script file, or +operable program. Check the spelling of the name, or if a path was included, verify that the path is correct and try +again. +At line:1 char:30 ++ Get-Process | Where-Object { .MainWindowTitle -ne '' } | Select-Objec ... ++ ~~~~~~~~~~~~~~~~ + + CategoryInfo : ObjectNotFound: (.MainWindowTitle:String) [], CommandNotFoundException + + FullyQualifiedErrorId : CommandNotFoundException + +.MainWindowTitle : The term '.MainWindowTitle' is not recognized as the name of a cmdlet, function, script file, or +operable program. Check the spelling of the name, or if a path was included, verify that the path is correct and try +again. +At line:1 char:30 ++ Get-Process | Where-Object { .MainWindowTitle -ne '' } | Select-Objec ... ++ ~~~~~~~~~~~~~~~~ + + CategoryInfo : ObjectNotFound: (.MainWindowTitle:String) [], CommandNotFoundException + + FullyQualifiedErrorId : CommandNotFoundException + +.MainWindowTitle : The term '.MainWindowTitle' is not recognized as the name of a cmdlet, function, script file, or +operable program. Check the spelling of the name, or if a path was included, verify that the path is correct and try +again. +At line:1 char:30 ++ Get-Process | Where-Object { .MainWindowTitle -ne '' } | Select-Objec ... ++ ~~~~~~~~~~~~~~~~ + + CategoryInfo : ObjectNotFound: (.MainWindowTitle:String) [], CommandNotFoundException + + FullyQualifiedErrorId : CommandNotFoundException + +.MainWindowTitle : The term '.MainWindowTitle' is not recognized as the name of a cmdlet, function, script file, or +operable program. Check the spelling of the name, or if a path was included, verify that the path is correct and try +again. +At line:1 char:30 ++ Get-Process | Where-Object { .MainWindowTitle -ne '' } | Select-Objec ... ++ ~~~~~~~~~~~~~~~~ + + CategoryInfo : ObjectNotFound: (.MainWindowTitle:String) [], CommandNotFoundException + + FullyQualifiedErrorId : CommandNotFoundException + +.MainWindowTitle : The term '.MainWindowTitle' is not recognized as the name of a cmdlet, function, script file, or +operable program. Check the spelling of the name, or if a path was included, verify that the path is correct and try +again. +At line:1 char:30 ++ Get-Process | Where-Object { .MainWindowTitle -ne '' } | Select-Objec ... ++ ~~~~~~~~~~~~~~~~ + + CategoryInfo : ObjectNotFound: (.MainWindowTitle:String) [], CommandNotFoundException + + FullyQualifiedErrorId : CommandNotFoundException + +.MainWindowTitle : The term '.MainWindowTitle' is not recognized as the name of a cmdlet, function, script file, or +operable program. Check the spelling of the name, or if a path was included, verify that the path is correct and try +again. +At line:1 char:30 ++ Get-Process | Where-Object { .MainWindowTitle -ne '' } | Select-Objec ... ++ ~~~~~~~~~~~~~~~~ + + CategoryInfo : ObjectNotFound: (.MainWindowTitle:String) [], CommandNotFoundException + + FullyQualifiedErrorId : CommandNotFoundException + +.MainWindowTitle : The term '.MainWindowTitle' is not recognized as the name of a cmdlet, function, script file, or +operable program. Check the spelling of the name, or if a path was included, verify that the path is correct and try +again. +At line:1 char:30 ++ Get-Process | Where-Object { .MainWindowTitle -ne '' } | Select-Objec ... ++ ~~~~~~~~~~~~~~~~ + + CategoryInfo : ObjectNotFound: (.MainWindowTitle:String) [], CommandNotFoundException + + FullyQualifiedErrorId : CommandNotFoundException + +.MainWindowTitle : The term '.MainWindowTitle' is not recognized as the name of a cmdlet, function, script file, or +operable program. Check the spelling of the name, or if a path was included, verify that the path is correct and try +again. +At line:1 char:30 ++ Get-Process | Where-Object { .MainWindowTitle -ne '' } | Select-Objec ... ++ ~~~~~~~~~~~~~~~~ + + CategoryInfo : ObjectNotFound: (.MainWindowTitle:String) [], CommandNotFoundException + + FullyQualifiedErrorId : CommandNotFoundException + +.MainWindowTitle : The term '.MainWindowTitle' is not recognized as the name of a cmdlet, function, script file, or +operable program. Check the spelling of the name, or if a path was included, verify that the path is correct and try +again. +At line:1 char:30 ++ Get-Process | Where-Object { .MainWindowTitle -ne '' } | Select-Objec ... ++ ~~~~~~~~~~~~~~~~ + + CategoryInfo : ObjectNotFound: (.MainWindowTitle:String) [], CommandNotFoundException + + FullyQualifiedErrorId : CommandNotFoundException + +.MainWindowTitle : The term '.MainWindowTitle' is not recognized as the name of a cmdlet, function, script file, or +operable program. Check the spelling of the name, or if a path was included, verify that the path is correct and try +again. +At line:1 char:30 ++ Get-Process | Where-Object { .MainWindowTitle -ne '' } | Select-Objec ... ++ ~~~~~~~~~~~~~~~~ + + CategoryInfo : ObjectNotFound: (.MainWindowTitle:String) [], CommandNotFoundException + + FullyQualifiedErrorId : CommandNotFoundException + +.MainWindowTitle : The term '.MainWindowTitle' is not recognized as the name of a cmdlet, function, script file, or +operable program. Check the spelling of the name, or if a path was included, verify that the path is correct and try +again. +At line:1 char:30 ++ Get-Process | Where-Object { .MainWindowTitle -ne '' } | Select-Objec ... ++ ~~~~~~~~~~~~~~~~ + + CategoryInfo : ObjectNotFound: (.MainWindowTitle:String) [], CommandNotFoundException + + FullyQualifiedErrorId : CommandNotFoundException + +.MainWindowTitle : The term '.MainWindowTitle' is not recognized as the name of a cmdlet, function, script file, or +operable program. Check the spelling of the name, or if a path was included, verify that the path is correct and try +again. +At line:1 char:30 ++ Get-Process | Where-Object { .MainWindowTitle -ne '' } | Select-Objec ... ++ ~~~~~~~~~~~~~~~~ + + CategoryInfo : ObjectNotFound: (.MainWindowTitle:String) [], CommandNotFoundException + + FullyQualifiedErrorId : CommandNotFoundException + +.MainWindowTitle : The term '.MainWindowTitle' is not recognized as the name of a cmdlet, function, script file, or +operable program. Check the spelling of the name, or if a path was included, verify that the path is correct and try +again. +At line:1 char:30 ++ Get-Process | Where-Object { .MainWindowTitle -ne '' } | Select-Objec ... ++ ~~~~~~~~~~~~~~~~ + + CategoryInfo : ObjectNotFound: (.MainWindowTitle:String) [], CommandNotFoundException + + FullyQualifiedErrorId : CommandNotFoundException + +.MainWindowTitle : The term '.MainWindowTitle' is not recognized as the name of a cmdlet, function, script file, or +operable program. Check the spelling of the name, or if a path was included, verify that the path is correct and try +again. +At line:1 char:30 ++ Get-Process | Where-Object { .MainWindowTitle -ne '' } | Select-Objec ... ++ ~~~~~~~~~~~~~~~~ + + CategoryInfo : ObjectNotFound: (.MainWindowTitle:String) [], CommandNotFoundException + + FullyQualifiedErrorId : CommandNotFoundException + +.MainWindowTitle : The term '.MainWindowTitle' is not recognized as the name of a cmdlet, function, script file, or +operable program. Check the spelling of the name, or if a path was included, verify that the path is correct and try +again. +At line:1 char:30 ++ Get-Process | Where-Object { .MainWindowTitle -ne '' } | Select-Objec ... ++ ~~~~~~~~~~~~~~~~ + + CategoryInfo : ObjectNotFound: (.MainWindowTitle:String) [], CommandNotFoundException + + FullyQualifiedErrorId : CommandNotFoundException + +.MainWindowTitle : The term '.MainWindowTitle' is not recognized as the name of a cmdlet, function, script file, or +operable program. Check the spelling of the name, or if a path was included, verify that the path is correct and try +again. +At line:1 char:30 ++ Get-Process | Where-Object { .MainWindowTitle -ne '' } | Select-Objec ... ++ ~~~~~~~~~~~~~~~~ + + CategoryInfo : ObjectNotFound: (.MainWindowTitle:String) [], CommandNotFoundException + + FullyQualifiedErrorId : CommandNotFoundException + +.MainWindowTitle : The term '.MainWindowTitle' is not recognized as the name of a cmdlet, function, script file, or +operable program. Check the spelling of the name, or if a path was included, verify that the path is correct and try +again. +At line:1 char:30 ++ Get-Process | Where-Object { .MainWindowTitle -ne '' } | Select-Objec ... ++ ~~~~~~~~~~~~~~~~ + + CategoryInfo : ObjectNotFound: (.MainWindowTitle:String) [], CommandNotFoundException + + FullyQualifiedErrorId : CommandNotFoundException + +.MainWindowTitle : The term '.MainWindowTitle' is not recognized as the name of a cmdlet, function, script file, or +operable program. Check the spelling of the name, or if a path was included, verify that the path is correct and try +again. +At line:1 char:30 ++ Get-Process | Where-Object { .MainWindowTitle -ne '' } | Select-Objec ... ++ ~~~~~~~~~~~~~~~~ + + CategoryInfo : ObjectNotFound: (.MainWindowTitle:String) [], CommandNotFoundException + + FullyQualifiedErrorId : CommandNotFoundException + +.MainWindowTitle : The term '.MainWindowTitle' is not recognized as the name of a cmdlet, function, script file, or +operable program. Check the spelling of the name, or if a path was included, verify that the path is correct and try +again. +At line:1 char:30 ++ Get-Process | Where-Object { .MainWindowTitle -ne '' } | Select-Objec ... ++ ~~~~~~~~~~~~~~~~ + + CategoryInfo : ObjectNotFound: (.MainWindowTitle:String) [], CommandNotFoundException + + FullyQualifiedErrorId : CommandNotFoundException + +.MainWindowTitle : The term '.MainWindowTitle' is not recognized as the name of a cmdlet, function, script file, or +operable program. Check the spelling of the name, or if a path was included, verify that the path is correct and try +again. +At line:1 char:30 ++ Get-Process | Where-Object { .MainWindowTitle -ne '' } | Select-Objec ... ++ ~~~~~~~~~~~~~~~~ + + CategoryInfo : ObjectNotFound: (.MainWindowTitle:String) [], CommandNotFoundException + + FullyQualifiedErrorId : CommandNotFoundException + +.MainWindowTitle : The term '.MainWindowTitle' is not recognized as the name of a cmdlet, function, script file, or +operable program. Check the spelling of the name, or if a path was included, verify that the path is correct and try +again. +At line:1 char:30 ++ Get-Process | Where-Object { .MainWindowTitle -ne '' } | Select-Objec ... ++ ~~~~~~~~~~~~~~~~ + + CategoryInfo : ObjectNotFound: (.MainWindowTitle:String) [], CommandNotFoundException + + FullyQualifiedErrorId : CommandNotFoundException + +.MainWindowTitle : The term '.MainWindowTitle' is not recognized as the name of a cmdlet, function, script file, or +operable program. Check the spelling of the name, or if a path was included, verify that the path is correct and try +again. +At line:1 char:30 ++ Get-Process | Where-Object { .MainWindowTitle -ne '' } | Select-Objec ... ++ ~~~~~~~~~~~~~~~~ + + CategoryInfo : ObjectNotFound: (.MainWindowTitle:String) [], CommandNotFoundException + + FullyQualifiedErrorId : CommandNotFoundException + +.MainWindowTitle : The term '.MainWindowTitle' is not recognized as the name of a cmdlet, function, script file, or +operable program. Check the spelling of the name, or if a path was included, verify that the path is correct and try +again. +At line:1 char:30 ++ Get-Process | Where-Object { .MainWindowTitle -ne '' } | Select-Objec ... ++ ~~~~~~~~~~~~~~~~ + + CategoryInfo : ObjectNotFound: (.MainWindowTitle:String) [], CommandNotFoundException + + FullyQualifiedErrorId : CommandNotFoundException + +.MainWindowTitle : The term '.MainWindowTitle' is not recognized as the name of a cmdlet, function, script file, or +operable program. Check the spelling of the name, or if a path was included, verify that the path is correct and try +again. +At line:1 char:30 ++ Get-Process | Where-Object { .MainWindowTitle -ne '' } | Select-Objec ... ++ ~~~~~~~~~~~~~~~~ + + CategoryInfo : ObjectNotFound: (.MainWindowTitle:String) [], CommandNotFoundException + + FullyQualifiedErrorId : CommandNotFoundException + +.MainWindowTitle : The term '.MainWindowTitle' is not recognized as the name of a cmdlet, function, script file, or +operable program. Check the spelling of the name, or if a path was included, verify that the path is correct and try +again. +At line:1 char:30 ++ Get-Process | Where-Object { .MainWindowTitle -ne '' } | Select-Objec ... ++ ~~~~~~~~~~~~~~~~ + + CategoryInfo : ObjectNotFound: (.MainWindowTitle:String) [], CommandNotFoundException + + FullyQualifiedErrorId : CommandNotFoundException + +.MainWindowTitle : The term '.MainWindowTitle' is not recognized as the name of a cmdlet, function, script file, or +operable program. Check the spelling of the name, or if a path was included, verify that the path is correct and try +again. +At line:1 char:30 ++ Get-Process | Where-Object { .MainWindowTitle -ne '' } | Select-Objec ... ++ ~~~~~~~~~~~~~~~~ + + CategoryInfo : ObjectNotFound: (.MainWindowTitle:String) [], CommandNotFoundException + + FullyQualifiedErrorId : CommandNotFoundException + +.MainWindowTitle : The term '.MainWindowTitle' is not recognized as the name of a cmdlet, function, script file, or +operable program. Check the spelling of the name, or if a path was included, verify that the path is correct and try +again. +At line:1 char:30 ++ Get-Process | Where-Object { .MainWindowTitle -ne '' } | Select-Objec ... ++ ~~~~~~~~~~~~~~~~ + + CategoryInfo : ObjectNotFound: (.MainWindowTitle:String) [], CommandNotFoundException + + FullyQualifiedErrorId : CommandNotFoundException + +.MainWindowTitle : The term '.MainWindowTitle' is not recognized as the name of a cmdlet, function, script file, or +operable program. Check the spelling of the name, or if a path was included, verify that the path is correct and try +again. +At line:1 char:30 ++ Get-Process | Where-Object { .MainWindowTitle -ne '' } | Select-Objec ... ++ ~~~~~~~~~~~~~~~~ + + CategoryInfo : ObjectNotFound: (.MainWindowTitle:String) [], CommandNotFoundException + + FullyQualifiedErrorId : CommandNotFoundException + +.MainWindowTitle : The term '.MainWindowTitle' is not recognized as the name of a cmdlet, function, script file, or +operable program. Check the spelling of the name, or if a path was included, verify that the path is correct and try +again. +At line:1 char:30 ++ Get-Process | Where-Object { .MainWindowTitle -ne '' } | Select-Objec ... ++ ~~~~~~~~~~~~~~~~ + + CategoryInfo : ObjectNotFound: (.MainWindowTitle:String) [], CommandNotFoundException + + FullyQualifiedErrorId : CommandNotFoundException + +.MainWindowTitle : The term '.MainWindowTitle' is not recognized as the name of a cmdlet, function, script file, or +operable program. Check the spelling of the name, or if a path was included, verify that the path is correct and try +again. +At line:1 char:30 ++ Get-Process | Where-Object { .MainWindowTitle -ne '' } | Select-Objec ... ++ ~~~~~~~~~~~~~~~~ + + CategoryInfo : ObjectNotFound: (.MainWindowTitle:String) [], CommandNotFoundException + + FullyQualifiedErrorId : CommandNotFoundException + +.MainWindowTitle : The term '.MainWindowTitle' is not recognized as the name of a cmdlet, function, script file, or +operable program. Check the spelling of the name, or if a path was included, verify that the path is correct and try +again. +At line:1 char:30 ++ Get-Process | Where-Object { .MainWindowTitle -ne '' } | Select-Objec ... ++ ~~~~~~~~~~~~~~~~ + + CategoryInfo : ObjectNotFound: (.MainWindowTitle:String) [], CommandNotFoundException + + FullyQualifiedErrorId : CommandNotFoundException + +.MainWindowTitle : The term '.MainWindowTitle' is not recognized as the name of a cmdlet, function, script file, or +operable program. Check the spelling of the name, or if a path was included, verify that the path is correct and try +again. +At line:1 char:30 ++ Get-Process | Where-Object { .MainWindowTitle -ne '' } | Select-Objec ... ++ ~~~~~~~~~~~~~~~~ + + CategoryInfo : ObjectNotFound: (.MainWindowTitle:String) [], CommandNotFoundException + + FullyQualifiedErrorId : CommandNotFoundException + +.MainWindowTitle : The term '.MainWindowTitle' is not recognized as the name of a cmdlet, function, script file, or +operable program. Check the spelling of the name, or if a path was included, verify that the path is correct and try +again. +At line:1 char:30 ++ Get-Process | Where-Object { .MainWindowTitle -ne '' } | Select-Objec ... ++ ~~~~~~~~~~~~~~~~ + + CategoryInfo : ObjectNotFound: (.MainWindowTitle:String) [], CommandNotFoundException + + FullyQualifiedErrorId : CommandNotFoundException + +.MainWindowTitle : The term '.MainWindowTitle' is not recognized as the name of a cmdlet, function, script file, or +operable program. Check the spelling of the name, or if a path was included, verify that the path is correct and try +again. +At line:1 char:30 ++ Get-Process | Where-Object { .MainWindowTitle -ne '' } | Select-Objec ... ++ ~~~~~~~~~~~~~~~~ + + CategoryInfo : ObjectNotFound: (.MainWindowTitle:String) [], CommandNotFoundException + + FullyQualifiedErrorId : CommandNotFoundException + +.MainWindowTitle : The term '.MainWindowTitle' is not recognized as the name of a cmdlet, function, script file, or +operable program. Check the spelling of the name, or if a path was included, verify that the path is correct and try +again. +At line:1 char:30 ++ Get-Process | Where-Object { .MainWindowTitle -ne '' } | Select-Objec ... ++ ~~~~~~~~~~~~~~~~ + + CategoryInfo : ObjectNotFound: (.MainWindowTitle:String) [], CommandNotFoundException + + FullyQualifiedErrorId : CommandNotFoundException + +.MainWindowTitle : The term '.MainWindowTitle' is not recognized as the name of a cmdlet, function, script file, or +operable program. Check the spelling of the name, or if a path was included, verify that the path is correct and try +again. +At line:1 char:30 ++ Get-Process | Where-Object { .MainWindowTitle -ne '' } | Select-Objec ... ++ ~~~~~~~~~~~~~~~~ + + CategoryInfo : ObjectNotFound: (.MainWindowTitle:String) [], CommandNotFoundException + + FullyQualifiedErrorId : CommandNotFoundException + +.MainWindowTitle : The term '.MainWindowTitle' is not recognized as the name of a cmdlet, function, script file, or +operable program. Check the spelling of the name, or if a path was included, verify that the path is correct and try +again. +At line:1 char:30 ++ Get-Process | Where-Object { .MainWindowTitle -ne '' } | Select-Objec ... ++ ~~~~~~~~~~~~~~~~ + + CategoryInfo : ObjectNotFound: (.MainWindowTitle:String) [], CommandNotFoundException + + FullyQualifiedErrorId : CommandNotFoundException + +.MainWindowTitle : The term '.MainWindowTitle' is not recognized as the name of a cmdlet, function, script file, or +operable program. Check the spelling of the name, or if a path was included, verify that the path is correct and try +again. +At line:1 char:30 ++ Get-Process | Where-Object { .MainWindowTitle -ne '' } | Select-Objec ... ++ ~~~~~~~~~~~~~~~~ + + CategoryInfo : ObjectNotFound: (.MainWindowTitle:String) [], CommandNotFoundException + + FullyQualifiedErrorId : CommandNotFoundException + +.MainWindowTitle : The term '.MainWindowTitle' is not recognized as the name of a cmdlet, function, script file, or +operable program. Check the spelling of the name, or if a path was included, verify that the path is correct and try +again. +At line:1 char:30 ++ Get-Process | Where-Object { .MainWindowTitle -ne '' } | Select-Objec ... ++ ~~~~~~~~~~~~~~~~ + + CategoryInfo : ObjectNotFound: (.MainWindowTitle:String) [], CommandNotFoundException + + FullyQualifiedErrorId : CommandNotFoundException + +.MainWindowTitle : The term '.MainWindowTitle' is not recognized as the name of a cmdlet, function, script file, or +operable program. Check the spelling of the name, or if a path was included, verify that the path is correct and try +again. +At line:1 char:30 ++ Get-Process | Where-Object { .MainWindowTitle -ne '' } | Select-Objec ... ++ ~~~~~~~~~~~~~~~~ + + CategoryInfo : ObjectNotFound: (.MainWindowTitle:String) [], CommandNotFoundException + + FullyQualifiedErrorId : CommandNotFoundException + +.MainWindowTitle : The term '.MainWindowTitle' is not recognized as the name of a cmdlet, function, script file, or +operable program. Check the spelling of the name, or if a path was included, verify that the path is correct and try +again. +At line:1 char:30 ++ Get-Process | Where-Object { .MainWindowTitle -ne '' } | Select-Objec ... ++ ~~~~~~~~~~~~~~~~ + + CategoryInfo : ObjectNotFound: (.MainWindowTitle:String) [], CommandNotFoundException + + FullyQualifiedErrorId : CommandNotFoundException + +.MainWindowTitle : The term '.MainWindowTitle' is not recognized as the name of a cmdlet, function, script file, or +operable program. Check the spelling of the name, or if a path was included, verify that the path is correct and try +again. +At line:1 char:30 ++ Get-Process | Where-Object { .MainWindowTitle -ne '' } | Select-Objec ... ++ ~~~~~~~~~~~~~~~~ + + CategoryInfo : ObjectNotFound: (.MainWindowTitle:String) [], CommandNotFoundException + + FullyQualifiedErrorId : CommandNotFoundException + +.MainWindowTitle : The term '.MainWindowTitle' is not recognized as the name of a cmdlet, function, script file, or +operable program. Check the spelling of the name, or if a path was included, verify that the path is correct and try +again. +At line:1 char:30 ++ Get-Process | Where-Object { .MainWindowTitle -ne '' } | Select-Objec ... ++ ~~~~~~~~~~~~~~~~ + + CategoryInfo : ObjectNotFound: (.MainWindowTitle:String) [], CommandNotFoundException + + FullyQualifiedErrorId : CommandNotFoundException + +.MainWindowTitle : The term '.MainWindowTitle' is not recognized as the name of a cmdlet, function, script file, or +operable program. Check the spelling of the name, or if a path was included, verify that the path is correct and try +again. +At line:1 char:30 ++ Get-Process | Where-Object { .MainWindowTitle -ne '' } | Select-Objec ... ++ ~~~~~~~~~~~~~~~~ + + CategoryInfo : ObjectNotFound: (.MainWindowTitle:String) [], CommandNotFoundException + + FullyQualifiedErrorId : CommandNotFoundException + +.MainWindowTitle : The term '.MainWindowTitle' is not recognized as the name of a cmdlet, function, script file, or +operable program. Check the spelling of the name, or if a path was included, verify that the path is correct and try +again. +At line:1 char:30 ++ Get-Process | Where-Object { .MainWindowTitle -ne '' } | Select-Objec ... ++ ~~~~~~~~~~~~~~~~ + + CategoryInfo : ObjectNotFound: (.MainWindowTitle:String) [], CommandNotFoundException + + FullyQualifiedErrorId : CommandNotFoundException + +.MainWindowTitle : The term '.MainWindowTitle' is not recognized as the name of a cmdlet, function, script file, or +operable program. Check the spelling of the name, or if a path was included, verify that the path is correct and try +again. +At line:1 char:30 ++ Get-Process | Where-Object { .MainWindowTitle -ne '' } | Select-Objec ... ++ ~~~~~~~~~~~~~~~~ + + CategoryInfo : ObjectNotFound: (.MainWindowTitle:String) [], CommandNotFoundException + + FullyQualifiedErrorId : CommandNotFoundException + +.MainWindowTitle : The term '.MainWindowTitle' is not recognized as the name of a cmdlet, function, script file, or +operable program. Check the spelling of the name, or if a path was included, verify that the path is correct and try +again. +At line:1 char:30 ++ Get-Process | Where-Object { .MainWindowTitle -ne '' } | Select-Objec ... ++ ~~~~~~~~~~~~~~~~ + + CategoryInfo : ObjectNotFound: (.MainWindowTitle:String) [], CommandNotFoundException + + FullyQualifiedErrorId : CommandNotFoundException + +.MainWindowTitle : The term '.MainWindowTitle' is not recognized as the name of a cmdlet, function, script file, or +operable program. Check the spelling of the name, or if a path was included, verify that the path is correct and try +again. +At line:1 char:30 ++ Get-Process | Where-Object { .MainWindowTitle -ne '' } | Select-Objec ... ++ ~~~~~~~~~~~~~~~~ + + CategoryInfo : ObjectNotFound: (.MainWindowTitle:String) [], CommandNotFoundException + + FullyQualifiedErrorId : CommandNotFoundException + +.MainWindowTitle : The term '.MainWindowTitle' is not recognized as the name of a cmdlet, function, script file, or +operable program. Check the spelling of the name, or if a path was included, verify that the path is correct and try +again. +At line:1 char:30 ++ Get-Process | Where-Object { .MainWindowTitle -ne '' } | Select-Objec ... ++ ~~~~~~~~~~~~~~~~ + + CategoryInfo : ObjectNotFound: (.MainWindowTitle:String) [], CommandNotFoundException + + FullyQualifiedErrorId : CommandNotFoundException + +.MainWindowTitle : The term '.MainWindowTitle' is not recognized as the name of a cmdlet, function, script file, or +operable program. Check the spelling of the name, or if a path was included, verify that the path is correct and try +again. +At line:1 char:30 ++ Get-Process | Where-Object { .MainWindowTitle -ne '' } | Select-Objec ... ++ ~~~~~~~~~~~~~~~~ + + CategoryInfo : ObjectNotFound: (.MainWindowTitle:String) [], CommandNotFoundException + + FullyQualifiedErrorId : CommandNotFoundException + +.MainWindowTitle : The term '.MainWindowTitle' is not recognized as the name of a cmdlet, function, script file, or +operable program. Check the spelling of the name, or if a path was included, verify that the path is correct and try +again. +At line:1 char:30 ++ Get-Process | Where-Object { .MainWindowTitle -ne '' } | Select-Objec ... ++ ~~~~~~~~~~~~~~~~ + + CategoryInfo : ObjectNotFound: (.MainWindowTitle:String) [], CommandNotFoundException + + FullyQualifiedErrorId : CommandNotFoundException + +.MainWindowTitle : The term '.MainWindowTitle' is not recognized as the name of a cmdlet, function, script file, or +operable program. Check the spelling of the name, or if a path was included, verify that the path is correct and try +again. +At line:1 char:30 ++ Get-Process | Where-Object { .MainWindowTitle -ne '' } | Select-Objec ... ++ ~~~~~~~~~~~~~~~~ + + CategoryInfo : ObjectNotFound: (.MainWindowTitle:String) [], CommandNotFoundException + + FullyQualifiedErrorId : CommandNotFoundException + +.MainWindowTitle : The term '.MainWindowTitle' is not recognized as the name of a cmdlet, function, script file, or +operable program. Check the spelling of the name, or if a path was included, verify that the path is correct and try +again. +At line:1 char:30 ++ Get-Process | Where-Object { .MainWindowTitle -ne '' } | Select-Objec ... ++ ~~~~~~~~~~~~~~~~ + + CategoryInfo : ObjectNotFound: (.MainWindowTitle:String) [], CommandNotFoundException + + FullyQualifiedErrorId : CommandNotFoundException + +.MainWindowTitle : The term '.MainWindowTitle' is not recognized as the name of a cmdlet, function, script file, or +operable program. Check the spelling of the name, or if a path was included, verify that the path is correct and try +again. +At line:1 char:30 ++ Get-Process | Where-Object { .MainWindowTitle -ne '' } | Select-Objec ... ++ ~~~~~~~~~~~~~~~~ + + CategoryInfo : ObjectNotFound: (.MainWindowTitle:String) [], CommandNotFoundException + + FullyQualifiedErrorId : CommandNotFoundException + +.MainWindowTitle : The term '.MainWindowTitle' is not recognized as the name of a cmdlet, function, script file, or +operable program. Check the spelling of the name, or if a path was included, verify that the path is correct and try +again. +At line:1 char:30 ++ Get-Process | Where-Object { .MainWindowTitle -ne '' } | Select-Objec ... ++ ~~~~~~~~~~~~~~~~ + + CategoryInfo : ObjectNotFound: (.MainWindowTitle:String) [], CommandNotFoundException + + FullyQualifiedErrorId : CommandNotFoundException + +.MainWindowTitle : The term '.MainWindowTitle' is not recognized as the name of a cmdlet, function, script file, or +operable program. Check the spelling of the name, or if a path was included, verify that the path is correct and try +again. +At line:1 char:30 ++ Get-Process | Where-Object { .MainWindowTitle -ne '' } | Select-Objec ... ++ ~~~~~~~~~~~~~~~~ + + CategoryInfo : ObjectNotFound: (.MainWindowTitle:String) [], CommandNotFoundException + + FullyQualifiedErrorId : CommandNotFoundException + +.MainWindowTitle : The term '.MainWindowTitle' is not recognized as the name of a cmdlet, function, script file, or +operable program. Check the spelling of the name, or if a path was included, verify that the path is correct and try +again. +At line:1 char:30 ++ Get-Process | Where-Object { .MainWindowTitle -ne '' } | Select-Objec ... ++ ~~~~~~~~~~~~~~~~ + + CategoryInfo : ObjectNotFound: (.MainWindowTitle:String) [], CommandNotFoundException + + FullyQualifiedErrorId : CommandNotFoundException + +.MainWindowTitle : The term '.MainWindowTitle' is not recognized as the name of a cmdlet, function, script file, or +operable program. Check the spelling of the name, or if a path was included, verify that the path is correct and try +again. +At line:1 char:30 ++ Get-Process | Where-Object { .MainWindowTitle -ne '' } | Select-Objec ... ++ ~~~~~~~~~~~~~~~~ + + CategoryInfo : ObjectNotFound: (.MainWindowTitle:String) [], CommandNotFoundException + + FullyQualifiedErrorId : CommandNotFoundException + +.MainWindowTitle : The term '.MainWindowTitle' is not recognized as the name of a cmdlet, function, script file, or +operable program. Check the spelling of the name, or if a path was included, verify that the path is correct and try +again. +At line:1 char:30 ++ Get-Process | Where-Object { .MainWindowTitle -ne '' } | Select-Objec ... ++ ~~~~~~~~~~~~~~~~ + + CategoryInfo : ObjectNotFound: (.MainWindowTitle:String) [], CommandNotFoundException + + FullyQualifiedErrorId : CommandNotFoundException + +.MainWindowTitle : The term '.MainWindowTitle' is not recognized as the name of a cmdlet, function, script file, or +operable program. Check the spelling of the name, or if a path was included, verify that the path is correct and try +again. +At line:1 char:30 ++ Get-Process | Where-Object { .MainWindowTitle -ne '' } | Select-Objec ... ++ ~~~~~~~~~~~~~~~~ + + CategoryInfo : ObjectNotFound: (.MainWindowTitle:String) [], CommandNotFoundException + + FullyQualifiedErrorId : CommandNotFoundException + +.MainWindowTitle : The term '.MainWindowTitle' is not recognized as the name of a cmdlet, function, script file, or +operable program. Check the spelling of the name, or if a path was included, verify that the path is correct and try +again. +At line:1 char:30 ++ Get-Process | Where-Object { .MainWindowTitle -ne '' } | Select-Objec ... ++ ~~~~~~~~~~~~~~~~ + + CategoryInfo : ObjectNotFound: (.MainWindowTitle:String) [], CommandNotFoundException + + FullyQualifiedErrorId : CommandNotFoundException + +.MainWindowTitle : The term '.MainWindowTitle' is not recognized as the name of a cmdlet, function, script file, or +operable program. Check the spelling of the name, or if a path was included, verify that the path is correct and try +again. +At line:1 char:30 ++ Get-Process | Where-Object { .MainWindowTitle -ne '' } | Select-Objec ... ++ ~~~~~~~~~~~~~~~~ + + CategoryInfo : ObjectNotFound: (.MainWindowTitle:String) [], CommandNotFoundException + + FullyQualifiedErrorId : CommandNotFoundException + +.MainWindowTitle : The term '.MainWindowTitle' is not recognized as the name of a cmdlet, function, script file, or +operable program. Check the spelling of the name, or if a path was included, verify that the path is correct and try +again. +At line:1 char:30 ++ Get-Process | Where-Object { .MainWindowTitle -ne '' } | Select-Objec ... ++ ~~~~~~~~~~~~~~~~ + + CategoryInfo : ObjectNotFound: (.MainWindowTitle:String) [], CommandNotFoundException + + FullyQualifiedErrorId : CommandNotFoundException + +.MainWindowTitle : The term '.MainWindowTitle' is not recognized as the name of a cmdlet, function, script file, or +operable program. Check the spelling of the name, or if a path was included, verify that the path is correct and try +again. +At line:1 char:30 ++ Get-Process | Where-Object { .MainWindowTitle -ne '' } | Select-Objec ... ++ ~~~~~~~~~~~~~~~~ + + CategoryInfo : ObjectNotFound: (.MainWindowTitle:String) [], CommandNotFoundException + + FullyQualifiedErrorId : CommandNotFoundException + +.MainWindowTitle : The term '.MainWindowTitle' is not recognized as the name of a cmdlet, function, script file, or +operable program. Check the spelling of the name, or if a path was included, verify that the path is correct and try +again. +At line:1 char:30 ++ Get-Process | Where-Object { .MainWindowTitle -ne '' } | Select-Objec ... ++ ~~~~~~~~~~~~~~~~ + + CategoryInfo : ObjectNotFound: (.MainWindowTitle:String) [], CommandNotFoundException + + FullyQualifiedErrorId : CommandNotFoundException + +.MainWindowTitle : The term '.MainWindowTitle' is not recognized as the name of a cmdlet, function, script file, or +operable program. Check the spelling of the name, or if a path was included, verify that the path is correct and try +again. +At line:1 char:30 ++ Get-Process | Where-Object { .MainWindowTitle -ne '' } | Select-Objec ... ++ ~~~~~~~~~~~~~~~~ + + CategoryInfo : ObjectNotFound: (.MainWindowTitle:String) [], CommandNotFoundException + + FullyQualifiedErrorId : CommandNotFoundException + +.MainWindowTitle : The term '.MainWindowTitle' is not recognized as the name of a cmdlet, function, script file, or +operable program. Check the spelling of the name, or if a path was included, verify that the path is correct and try +again. +At line:1 char:30 ++ Get-Process | Where-Object { .MainWindowTitle -ne '' } | Select-Objec ... ++ ~~~~~~~~~~~~~~~~ + + CategoryInfo : ObjectNotFound: (.MainWindowTitle:String) [], CommandNotFoundException + + FullyQualifiedErrorId : CommandNotFoundException + +.MainWindowTitle : The term '.MainWindowTitle' is not recognized as the name of a cmdlet, function, script file, or +operable program. Check the spelling of the name, or if a path was included, verify that the path is correct and try +again. +At line:1 char:30 ++ Get-Process | Where-Object { .MainWindowTitle -ne '' } | Select-Objec ... ++ ~~~~~~~~~~~~~~~~ + + CategoryInfo : ObjectNotFound: (.MainWindowTitle:String) [], CommandNotFoundException + + FullyQualifiedErrorId : CommandNotFoundException + +.MainWindowTitle : The term '.MainWindowTitle' is not recognized as the name of a cmdlet, function, script file, or +operable program. Check the spelling of the name, or if a path was included, verify that the path is correct and try +again. +At line:1 char:30 ++ Get-Process | Where-Object { .MainWindowTitle -ne '' } | Select-Objec ... ++ ~~~~~~~~~~~~~~~~ + + CategoryInfo : ObjectNotFound: (.MainWindowTitle:String) [], CommandNotFoundException + + FullyQualifiedErrorId : CommandNotFoundException + +.MainWindowTitle : The term '.MainWindowTitle' is not recognized as the name of a cmdlet, function, script file, or +operable program. Check the spelling of the name, or if a path was included, verify that the path is correct and try +again. +At line:1 char:30 ++ Get-Process | Where-Object { .MainWindowTitle -ne '' } | Select-Objec ... ++ ~~~~~~~~~~~~~~~~ + + CategoryInfo : ObjectNotFound: (.MainWindowTitle:String) [], CommandNotFoundException + + FullyQualifiedErrorId : CommandNotFoundException + +.MainWindowTitle : The term '.MainWindowTitle' is not recognized as the name of a cmdlet, function, script file, or +operable program. Check the spelling of the name, or if a path was included, verify that the path is correct and try +again. +At line:1 char:30 ++ Get-Process | Where-Object { .MainWindowTitle -ne '' } | Select-Objec ... ++ ~~~~~~~~~~~~~~~~ + + CategoryInfo : ObjectNotFound: (.MainWindowTitle:String) [], CommandNotFoundException + + FullyQualifiedErrorId : CommandNotFoundException + +.MainWindowTitle : The term '.MainWindowTitle' is not recognized as the name of a cmdlet, function, script file, or +operable program. Check the spelling of the name, or if a path was included, verify that the path is correct and try +again. +At line:1 char:30 ++ Get-Process | Where-Object { .MainWindowTitle -ne '' } | Select-Objec ... ++ ~~~~~~~~~~~~~~~~ + + CategoryInfo : ObjectNotFound: (.MainWindowTitle:String) [], CommandNotFoundException + + FullyQualifiedErrorId : CommandNotFoundException + +.MainWindowTitle : The term '.MainWindowTitle' is not recognized as the name of a cmdlet, function, script file, or +operable program. Check the spelling of the name, or if a path was included, verify that the path is correct and try +again. +At line:1 char:30 ++ Get-Process | Where-Object { .MainWindowTitle -ne '' } | Select-Objec ... ++ ~~~~~~~~~~~~~~~~ + + CategoryInfo : ObjectNotFound: (.MainWindowTitle:String) [], CommandNotFoundException + + FullyQualifiedErrorId : CommandNotFoundException + +.MainWindowTitle : The term '.MainWindowTitle' is not recognized as the name of a cmdlet, function, script file, or +operable program. Check the spelling of the name, or if a path was included, verify that the path is correct and try +again. +At line:1 char:30 ++ Get-Process | Where-Object { .MainWindowTitle -ne '' } | Select-Objec ... ++ ~~~~~~~~~~~~~~~~ + + CategoryInfo : ObjectNotFound: (.MainWindowTitle:String) [], CommandNotFoundException + + FullyQualifiedErrorId : CommandNotFoundException + +.MainWindowTitle : The term '.MainWindowTitle' is not recognized as the name of a cmdlet, function, script file, or +operable program. Check the spelling of the name, or if a path was included, verify that the path is correct and try +again. +At line:1 char:30 ++ Get-Process | Where-Object { .MainWindowTitle -ne '' } | Select-Objec ... ++ ~~~~~~~~~~~~~~~~ + + CategoryInfo : ObjectNotFound: (.MainWindowTitle:String) [], CommandNotFoundException + + FullyQualifiedErrorId : CommandNotFoundException + +.MainWindowTitle : The term '.MainWindowTitle' is not recognized as the name of a cmdlet, function, script file, or +operable program. Check the spelling of the name, or if a path was included, verify that the path is correct and try +again. +At line:1 char:30 ++ Get-Process | Where-Object { .MainWindowTitle -ne '' } | Select-Objec ... ++ ~~~~~~~~~~~~~~~~ + + CategoryInfo : ObjectNotFound: (.MainWindowTitle:String) [], CommandNotFoundException + + FullyQualifiedErrorId : CommandNotFoundException + +.MainWindowTitle : The term '.MainWindowTitle' is not recognized as the name of a cmdlet, function, script file, or +operable program. Check the spelling of the name, or if a path was included, verify that the path is correct and try +again. +At line:1 char:30 ++ Get-Process | Where-Object { .MainWindowTitle -ne '' } | Select-Objec ... ++ ~~~~~~~~~~~~~~~~ + + CategoryInfo : ObjectNotFound: (.MainWindowTitle:String) [], CommandNotFoundException + + FullyQualifiedErrorId : CommandNotFoundException + +.MainWindowTitle : The term '.MainWindowTitle' is not recognized as the name of a cmdlet, function, script file, or +operable program. Check the spelling of the name, or if a path was included, verify that the path is correct and try +again. +At line:1 char:30 ++ Get-Process | Where-Object { .MainWindowTitle -ne '' } | Select-Objec ... ++ ~~~~~~~~~~~~~~~~ + + CategoryInfo : ObjectNotFound: (.MainWindowTitle:String) [], CommandNotFoundException + + FullyQualifiedErrorId : CommandNotFoundException + +.MainWindowTitle : The term '.MainWindowTitle' is not recognized as the name of a cmdlet, function, script file, or +operable program. Check the spelling of the name, or if a path was included, verify that the path is correct and try +again. +At line:1 char:30 ++ Get-Process | Where-Object { .MainWindowTitle -ne '' } | Select-Objec ... ++ ~~~~~~~~~~~~~~~~ + + CategoryInfo : ObjectNotFound: (.MainWindowTitle:String) [], CommandNotFoundException + + FullyQualifiedErrorId : CommandNotFoundException + +.MainWindowTitle : The term '.MainWindowTitle' is not recognized as the name of a cmdlet, function, script file, or +operable program. Check the spelling of the name, or if a path was included, verify that the path is correct and try +again. +At line:1 char:30 ++ Get-Process | Where-Object { .MainWindowTitle -ne '' } | Select-Objec ... ++ ~~~~~~~~~~~~~~~~ + + CategoryInfo : ObjectNotFound: (.MainWindowTitle:String) [], CommandNotFoundException + + FullyQualifiedErrorId : CommandNotFoundException + +.MainWindowTitle : The term '.MainWindowTitle' is not recognized as the name of a cmdlet, function, script file, or +operable program. Check the spelling of the name, or if a path was included, verify that the path is correct and try +again. +At line:1 char:30 ++ Get-Process | Where-Object { .MainWindowTitle -ne '' } | Select-Objec ... ++ ~~~~~~~~~~~~~~~~ + + CategoryInfo : ObjectNotFound: (.MainWindowTitle:String) [], CommandNotFoundException + + FullyQualifiedErrorId : CommandNotFoundException + +.MainWindowTitle : The term '.MainWindowTitle' is not recognized as the name of a cmdlet, function, script file, or +operable program. Check the spelling of the name, or if a path was included, verify that the path is correct and try +again. +At line:1 char:30 ++ Get-Process | Where-Object { .MainWindowTitle -ne '' } | Select-Objec ... ++ ~~~~~~~~~~~~~~~~ + + CategoryInfo : ObjectNotFound: (.MainWindowTitle:String) [], CommandNotFoundException + + FullyQualifiedErrorId : CommandNotFoundException + +.MainWindowTitle : The term '.MainWindowTitle' is not recognized as the name of a cmdlet, function, script file, or +operable program. Check the spelling of the name, or if a path was included, verify that the path is correct and try +again. +At line:1 char:30 ++ Get-Process | Where-Object { .MainWindowTitle -ne '' } | Select-Objec ... ++ ~~~~~~~~~~~~~~~~ + + CategoryInfo : ObjectNotFound: (.MainWindowTitle:String) [], CommandNotFoundException + + FullyQualifiedErrorId : CommandNotFoundException + +.MainWindowTitle : The term '.MainWindowTitle' is not recognized as the name of a cmdlet, function, script file, or +operable program. Check the spelling of the name, or if a path was included, verify that the path is correct and try +again. +At line:1 char:30 ++ Get-Process | Where-Object { .MainWindowTitle -ne '' } | Select-Objec ... ++ ~~~~~~~~~~~~~~~~ + + CategoryInfo : ObjectNotFound: (.MainWindowTitle:String) [], CommandNotFoundException + + FullyQualifiedErrorId : CommandNotFoundException + +.MainWindowTitle : The term '.MainWindowTitle' is not recognized as the name of a cmdlet, function, script file, or +operable program. Check the spelling of the name, or if a path was included, verify that the path is correct and try +again. +At line:1 char:30 ++ Get-Process | Where-Object { .MainWindowTitle -ne '' } | Select-Objec ... ++ ~~~~~~~~~~~~~~~~ + + CategoryInfo : ObjectNotFound: (.MainWindowTitle:String) [], CommandNotFoundException + + FullyQualifiedErrorId : CommandNotFoundException + +.MainWindowTitle : The term '.MainWindowTitle' is not recognized as the name of a cmdlet, function, script file, or +operable program. Check the spelling of the name, or if a path was included, verify that the path is correct and try +again. +At line:1 char:30 ++ Get-Process | Where-Object { .MainWindowTitle -ne '' } | Select-Objec ... ++ ~~~~~~~~~~~~~~~~ + + CategoryInfo : ObjectNotFound: (.MainWindowTitle:String) [], CommandNotFoundException + + FullyQualifiedErrorId : CommandNotFoundException + +.MainWindowTitle : The term '.MainWindowTitle' is not recognized as the name of a cmdlet, function, script file, or +operable program. Check the spelling of the name, or if a path was included, verify that the path is correct and try +again. +At line:1 char:30 ++ Get-Process | Where-Object { .MainWindowTitle -ne '' } | Select-Objec ... ++ ~~~~~~~~~~~~~~~~ + + CategoryInfo : ObjectNotFound: (.MainWindowTitle:String) [], CommandNotFoundException + + FullyQualifiedErrorId : CommandNotFoundException + +.MainWindowTitle : The term '.MainWindowTitle' is not recognized as the name of a cmdlet, function, script file, or +operable program. Check the spelling of the name, or if a path was included, verify that the path is correct and try +again. +At line:1 char:30 ++ Get-Process | Where-Object { .MainWindowTitle -ne '' } | Select-Objec ... ++ ~~~~~~~~~~~~~~~~ + + CategoryInfo : ObjectNotFound: (.MainWindowTitle:String) [], CommandNotFoundException + + FullyQualifiedErrorId : CommandNotFoundException + +.MainWindowTitle : The term '.MainWindowTitle' is not recognized as the name of a cmdlet, function, script file, or +operable program. Check the spelling of the name, or if a path was included, verify that the path is correct and try +again. +At line:1 char:30 ++ Get-Process | Where-Object { .MainWindowTitle -ne '' } | Select-Objec ... ++ ~~~~~~~~~~~~~~~~ + + CategoryInfo : ObjectNotFound: (.MainWindowTitle:String) [], CommandNotFoundException + + FullyQualifiedErrorId : CommandNotFoundException + +.MainWindowTitle : The term '.MainWindowTitle' is not recognized as the name of a cmdlet, function, script file, or +operable program. Check the spelling of the name, or if a path was included, verify that the path is correct and try +again. +At line:1 char:30 ++ Get-Process | Where-Object { .MainWindowTitle -ne '' } | Select-Objec ... ++ ~~~~~~~~~~~~~~~~ + + CategoryInfo : ObjectNotFound: (.MainWindowTitle:String) [], CommandNotFoundException + + FullyQualifiedErrorId : CommandNotFoundException + +.MainWindowTitle : The term '.MainWindowTitle' is not recognized as the name of a cmdlet, function, script file, or +operable program. Check the spelling of the name, or if a path was included, verify that the path is correct and try +again. +At line:1 char:30 ++ Get-Process | Where-Object { .MainWindowTitle -ne '' } | Select-Objec ... ++ ~~~~~~~~~~~~~~~~ + + CategoryInfo : ObjectNotFound: (.MainWindowTitle:String) [], CommandNotFoundException + + FullyQualifiedErrorId : CommandNotFoundException + +.MainWindowTitle : The term '.MainWindowTitle' is not recognized as the name of a cmdlet, function, script file, or +operable program. Check the spelling of the name, or if a path was included, verify that the path is correct and try +again. +At line:1 char:30 ++ Get-Process | Where-Object { .MainWindowTitle -ne '' } | Select-Objec ... ++ ~~~~~~~~~~~~~~~~ + + CategoryInfo : ObjectNotFound: (.MainWindowTitle:String) [], CommandNotFoundException + + FullyQualifiedErrorId : CommandNotFoundException + +.MainWindowTitle : The term '.MainWindowTitle' is not recognized as the name of a cmdlet, function, script file, or +operable program. Check the spelling of the name, or if a path was included, verify that the path is correct and try +again. +At line:1 char:30 ++ Get-Process | Where-Object { .MainWindowTitle -ne '' } | Select-Objec ... ++ ~~~~~~~~~~~~~~~~ + + CategoryInfo : ObjectNotFound: (.MainWindowTitle:String) [], CommandNotFoundException + + FullyQualifiedErrorId : CommandNotFoundException + +.MainWindowTitle : The term '.MainWindowTitle' is not recognized as the name of a cmdlet, function, script file, or +operable program. Check the spelling of the name, or if a path was included, verify that the path is correct and try +again. +At line:1 char:30 ++ Get-Process | Where-Object { .MainWindowTitle -ne '' } | Select-Objec ... ++ ~~~~~~~~~~~~~~~~ + + CategoryInfo : ObjectNotFound: (.MainWindowTitle:String) [], CommandNotFoundException + + FullyQualifiedErrorId : CommandNotFoundException + +.MainWindowTitle : The term '.MainWindowTitle' is not recognized as the name of a cmdlet, function, script file, or +operable program. Check the spelling of the name, or if a path was included, verify that the path is correct and try +again. +At line:1 char:30 ++ Get-Process | Where-Object { .MainWindowTitle -ne '' } | Select-Objec ... ++ ~~~~~~~~~~~~~~~~ + + CategoryInfo : ObjectNotFound: (.MainWindowTitle:String) [], CommandNotFoundException + + FullyQualifiedErrorId : CommandNotFoundException + +.MainWindowTitle : The term '.MainWindowTitle' is not recognized as the name of a cmdlet, function, script file, or +operable program. Check the spelling of the name, or if a path was included, verify that the path is correct and try +again. +At line:1 char:30 ++ Get-Process | Where-Object { .MainWindowTitle -ne '' } | Select-Objec ... ++ ~~~~~~~~~~~~~~~~ + + CategoryInfo : ObjectNotFound: (.MainWindowTitle:String) [], CommandNotFoundException + + FullyQualifiedErrorId : CommandNotFoundException + +.MainWindowTitle : The term '.MainWindowTitle' is not recognized as the name of a cmdlet, function, script file, or +operable program. Check the spelling of the name, or if a path was included, verify that the path is correct and try +again. +At line:1 char:30 ++ Get-Process | Where-Object { .MainWindowTitle -ne '' } | Select-Objec ... ++ ~~~~~~~~~~~~~~~~ + + CategoryInfo : ObjectNotFound: (.MainWindowTitle:String) [], CommandNotFoundException + + FullyQualifiedErrorId : CommandNotFoundException + +.MainWindowTitle : The term '.MainWindowTitle' is not recognized as the name of a cmdlet, function, script file, or +operable program. Check the spelling of the name, or if a path was included, verify that the path is correct and try +again. +At line:1 char:30 ++ Get-Process | Where-Object { .MainWindowTitle -ne '' } | Select-Objec ... ++ ~~~~~~~~~~~~~~~~ + + CategoryInfo : ObjectNotFound: (.MainWindowTitle:String) [], CommandNotFoundException + + FullyQualifiedErrorId : CommandNotFoundException + +.MainWindowTitle : The term '.MainWindowTitle' is not recognized as the name of a cmdlet, function, script file, or +operable program. Check the spelling of the name, or if a path was included, verify that the path is correct and try +again. +At line:1 char:30 ++ Get-Process | Where-Object { .MainWindowTitle -ne '' } | Select-Objec ... ++ ~~~~~~~~~~~~~~~~ + + CategoryInfo : ObjectNotFound: (.MainWindowTitle:String) [], CommandNotFoundException + + FullyQualifiedErrorId : CommandNotFoundException + +.MainWindowTitle : The term '.MainWindowTitle' is not recognized as the name of a cmdlet, function, script file, or +operable program. Check the spelling of the name, or if a path was included, verify that the path is correct and try +again. +At line:1 char:30 ++ Get-Process | Where-Object { .MainWindowTitle -ne '' } | Select-Objec ... ++ ~~~~~~~~~~~~~~~~ + + CategoryInfo : ObjectNotFound: (.MainWindowTitle:String) [], CommandNotFoundException + + FullyQualifiedErrorId : CommandNotFoundException + +.MainWindowTitle : The term '.MainWindowTitle' is not recognized as the name of a cmdlet, function, script file, or +operable program. Check the spelling of the name, or if a path was included, verify that the path is correct and try +again. +At line:1 char:30 ++ Get-Process | Where-Object { .MainWindowTitle -ne '' } | Select-Objec ... ++ ~~~~~~~~~~~~~~~~ + + CategoryInfo : ObjectNotFound: (.MainWindowTitle:String) [], CommandNotFoundException + + FullyQualifiedErrorId : CommandNotFoundException + +.MainWindowTitle : The term '.MainWindowTitle' is not recognized as the name of a cmdlet, function, script file, or +operable program. Check the spelling of the name, or if a path was included, verify that the path is correct and try +again. +At line:1 char:30 ++ Get-Process | Where-Object { .MainWindowTitle -ne '' } | Select-Objec ... ++ ~~~~~~~~~~~~~~~~ + + CategoryInfo : ObjectNotFound: (.MainWindowTitle:String) [], CommandNotFoundException + + FullyQualifiedErrorId : CommandNotFoundException + +.MainWindowTitle : The term '.MainWindowTitle' is not recognized as the name of a cmdlet, function, script file, or +operable program. Check the spelling of the name, or if a path was included, verify that the path is correct and try +again. +At line:1 char:30 ++ Get-Process | Where-Object { .MainWindowTitle -ne '' } | Select-Objec ... ++ ~~~~~~~~~~~~~~~~ + + CategoryInfo : ObjectNotFound: (.MainWindowTitle:String) [], CommandNotFoundException + + FullyQualifiedErrorId : CommandNotFoundException + +.MainWindowTitle : The term '.MainWindowTitle' is not recognized as the name of a cmdlet, function, script file, or +operable program. Check the spelling of the name, or if a path was included, verify that the path is correct and try +again. +At line:1 char:30 ++ Get-Process | Where-Object { .MainWindowTitle -ne '' } | Select-Objec ... ++ ~~~~~~~~~~~~~~~~ + + CategoryInfo : ObjectNotFound: (.MainWindowTitle:String) [], CommandNotFoundException + + FullyQualifiedErrorId : CommandNotFoundException + +.MainWindowTitle : The term '.MainWindowTitle' is not recognized as the name of a cmdlet, function, script file, or +operable program. Check the spelling of the name, or if a path was included, verify that the path is correct and try +again. +At line:1 char:30 ++ Get-Process | Where-Object { .MainWindowTitle -ne '' } | Select-Objec ... ++ ~~~~~~~~~~~~~~~~ + + CategoryInfo : ObjectNotFound: (.MainWindowTitle:String) [], CommandNotFoundException + + FullyQualifiedErrorId : CommandNotFoundException + +.MainWindowTitle : The term '.MainWindowTitle' is not recognized as the name of a cmdlet, function, script file, or +operable program. Check the spelling of the name, or if a path was included, verify that the path is correct and try +again. +At line:1 char:30 ++ Get-Process | Where-Object { .MainWindowTitle -ne '' } | Select-Objec ... ++ ~~~~~~~~~~~~~~~~ + + CategoryInfo : ObjectNotFound: (.MainWindowTitle:String) [], CommandNotFoundException + + FullyQualifiedErrorId : CommandNotFoundException + +.MainWindowTitle : The term '.MainWindowTitle' is not recognized as the name of a cmdlet, function, script file, or +operable program. Check the spelling of the name, or if a path was included, verify that the path is correct and try +again. +At line:1 char:30 ++ Get-Process | Where-Object { .MainWindowTitle -ne '' } | Select-Objec ... ++ ~~~~~~~~~~~~~~~~ + + CategoryInfo : ObjectNotFound: (.MainWindowTitle:String) [], CommandNotFoundException + + FullyQualifiedErrorId : CommandNotFoundException + +.MainWindowTitle : The term '.MainWindowTitle' is not recognized as the name of a cmdlet, function, script file, or +operable program. Check the spelling of the name, or if a path was included, verify that the path is correct and try +again. +At line:1 char:30 ++ Get-Process | Where-Object { .MainWindowTitle -ne '' } | Select-Objec ... ++ ~~~~~~~~~~~~~~~~ + + CategoryInfo : ObjectNotFound: (.MainWindowTitle:String) [], CommandNotFoundException + + FullyQualifiedErrorId : CommandNotFoundException + +.MainWindowTitle : The term '.MainWindowTitle' is not recognized as the name of a cmdlet, function, script file, or +operable program. Check the spelling of the name, or if a path was included, verify that the path is correct and try +again. +At line:1 char:30 ++ Get-Process | Where-Object { .MainWindowTitle -ne '' } | Select-Objec ... ++ ~~~~~~~~~~~~~~~~ + + CategoryInfo : ObjectNotFound: (.MainWindowTitle:String) [], CommandNotFoundException + + FullyQualifiedErrorId : CommandNotFoundException + +.MainWindowTitle : The term '.MainWindowTitle' is not recognized as the name of a cmdlet, function, script file, or +operable program. Check the spelling of the name, or if a path was included, verify that the path is correct and try +again. +At line:1 char:30 ++ Get-Process | Where-Object { .MainWindowTitle -ne '' } | Select-Objec ... ++ ~~~~~~~~~~~~~~~~ + + CategoryInfo : ObjectNotFound: (.MainWindowTitle:String) [], CommandNotFoundException + + FullyQualifiedErrorId : CommandNotFoundException + +.MainWindowTitle : The term '.MainWindowTitle' is not recognized as the name of a cmdlet, function, script file, or +operable program. Check the spelling of the name, or if a path was included, verify that the path is correct and try +again. +At line:1 char:30 ++ Get-Process | Where-Object { .MainWindowTitle -ne '' } | Select-Objec ... ++ ~~~~~~~~~~~~~~~~ + + CategoryInfo : ObjectNotFound: (.MainWindowTitle:String) [], CommandNotFoundException + + FullyQualifiedErrorId : CommandNotFoundException + +.MainWindowTitle : The term '.MainWindowTitle' is not recognized as the name of a cmdlet, function, script file, or +operable program. Check the spelling of the name, or if a path was included, verify that the path is correct and try +again. +At line:1 char:30 ++ Get-Process | Where-Object { .MainWindowTitle -ne '' } | Select-Objec ... ++ ~~~~~~~~~~~~~~~~ + + CategoryInfo : ObjectNotFound: (.MainWindowTitle:String) [], CommandNotFoundException + + FullyQualifiedErrorId : CommandNotFoundException + +.MainWindowTitle : The term '.MainWindowTitle' is not recognized as the name of a cmdlet, function, script file, or +operable program. Check the spelling of the name, or if a path was included, verify that the path is correct and try +again. +At line:1 char:30 ++ Get-Process | Where-Object { .MainWindowTitle -ne '' } | Select-Objec ... ++ ~~~~~~~~~~~~~~~~ + + CategoryInfo : ObjectNotFound: (.MainWindowTitle:String) [], CommandNotFoundException + + FullyQualifiedErrorId : CommandNotFoundException + +.MainWindowTitle : The term '.MainWindowTitle' is not recognized as the name of a cmdlet, function, script file, or +operable program. Check the spelling of the name, or if a path was included, verify that the path is correct and try +again. +At line:1 char:30 ++ Get-Process | Where-Object { .MainWindowTitle -ne '' } | Select-Objec ... ++ ~~~~~~~~~~~~~~~~ + + CategoryInfo : ObjectNotFound: (.MainWindowTitle:String) [], CommandNotFoundException + + FullyQualifiedErrorId : CommandNotFoundException + +.MainWindowTitle : The term '.MainWindowTitle' is not recognized as the name of a cmdlet, function, script file, or +operable program. Check the spelling of the name, or if a path was included, verify that the path is correct and try +again. +At line:1 char:30 ++ Get-Process | Where-Object { .MainWindowTitle -ne '' } | Select-Objec ... ++ ~~~~~~~~~~~~~~~~ + + CategoryInfo : ObjectNotFound: (.MainWindowTitle:String) [], CommandNotFoundException + + FullyQualifiedErrorId : CommandNotFoundException + +.MainWindowTitle : The term '.MainWindowTitle' is not recognized as the name of a cmdlet, function, script file, or +operable program. Check the spelling of the name, or if a path was included, verify that the path is correct and try +again. +At line:1 char:30 ++ Get-Process | Where-Object { .MainWindowTitle -ne '' } | Select-Objec ... ++ ~~~~~~~~~~~~~~~~ + + CategoryInfo : ObjectNotFound: (.MainWindowTitle:String) [], CommandNotFoundException + + FullyQualifiedErrorId : CommandNotFoundException + +.MainWindowTitle : The term '.MainWindowTitle' is not recognized as the name of a cmdlet, function, script file, or +operable program. Check the spelling of the name, or if a path was included, verify that the path is correct and try +again. +At line:1 char:30 ++ Get-Process | Where-Object { .MainWindowTitle -ne '' } | Select-Objec ... ++ ~~~~~~~~~~~~~~~~ + + CategoryInfo : ObjectNotFound: (.MainWindowTitle:String) [], CommandNotFoundException + + FullyQualifiedErrorId : CommandNotFoundException + +.MainWindowTitle : The term '.MainWindowTitle' is not recognized as the name of a cmdlet, function, script file, or +operable program. Check the spelling of the name, or if a path was included, verify that the path is correct and try +again. +At line:1 char:30 ++ Get-Process | Where-Object { .MainWindowTitle -ne '' } | Select-Objec ... ++ ~~~~~~~~~~~~~~~~ + + CategoryInfo : ObjectNotFound: (.MainWindowTitle:String) [], CommandNotFoundException + + FullyQualifiedErrorId : CommandNotFoundException + +.MainWindowTitle : The term '.MainWindowTitle' is not recognized as the name of a cmdlet, function, script file, or +operable program. Check the spelling of the name, or if a path was included, verify that the path is correct and try +again. +At line:1 char:30 ++ Get-Process | Where-Object { .MainWindowTitle -ne '' } | Select-Objec ... ++ ~~~~~~~~~~~~~~~~ + + CategoryInfo : ObjectNotFound: (.MainWindowTitle:String) [], CommandNotFoundException + + FullyQualifiedErrorId : CommandNotFoundException + +.MainWindowTitle : The term '.MainWindowTitle' is not recognized as the name of a cmdlet, function, script file, or +operable program. Check the spelling of the name, or if a path was included, verify that the path is correct and try +again. +At line:1 char:30 ++ Get-Process | Where-Object { .MainWindowTitle -ne '' } | Select-Objec ... ++ ~~~~~~~~~~~~~~~~ + + CategoryInfo : ObjectNotFound: (.MainWindowTitle:String) [], CommandNotFoundException + + FullyQualifiedErrorId : CommandNotFoundException + +.MainWindowTitle : The term '.MainWindowTitle' is not recognized as the name of a cmdlet, function, script file, or +operable program. Check the spelling of the name, or if a path was included, verify that the path is correct and try +again. +At line:1 char:30 ++ Get-Process | Where-Object { .MainWindowTitle -ne '' } | Select-Objec ... ++ ~~~~~~~~~~~~~~~~ + + CategoryInfo : ObjectNotFound: (.MainWindowTitle:String) [], CommandNotFoundException + + FullyQualifiedErrorId : CommandNotFoundException + +.MainWindowTitle : The term '.MainWindowTitle' is not recognized as the name of a cmdlet, function, script file, or +operable program. Check the spelling of the name, or if a path was included, verify that the path is correct and try +again. +At line:1 char:30 ++ Get-Process | Where-Object { .MainWindowTitle -ne '' } | Select-Objec ... ++ ~~~~~~~~~~~~~~~~ + + CategoryInfo : ObjectNotFound: (.MainWindowTitle:String) [], CommandNotFoundException + + FullyQualifiedErrorId : CommandNotFoundException + +.MainWindowTitle : The term '.MainWindowTitle' is not recognized as the name of a cmdlet, function, script file, or +operable program. Check the spelling of the name, or if a path was included, verify that the path is correct and try +again. +At line:1 char:30 ++ Get-Process | Where-Object { .MainWindowTitle -ne '' } | Select-Objec ... ++ ~~~~~~~~~~~~~~~~ + + CategoryInfo : ObjectNotFound: (.MainWindowTitle:String) [], CommandNotFoundException + + FullyQualifiedErrorId : CommandNotFoundException + +.MainWindowTitle : The term '.MainWindowTitle' is not recognized as the name of a cmdlet, function, script file, or +operable program. Check the spelling of the name, or if a path was included, verify that the path is correct and try +again. +At line:1 char:30 ++ Get-Process | Where-Object { .MainWindowTitle -ne '' } | Select-Objec ... ++ ~~~~~~~~~~~~~~~~ + + CategoryInfo : ObjectNotFound: (.MainWindowTitle:String) [], CommandNotFoundException + + FullyQualifiedErrorId : CommandNotFoundException + +.MainWindowTitle : The term '.MainWindowTitle' is not recognized as the name of a cmdlet, function, script file, or +operable program. Check the spelling of the name, or if a path was included, verify that the path is correct and try +again. +At line:1 char:30 ++ Get-Process | Where-Object { .MainWindowTitle -ne '' } | Select-Objec ... ++ ~~~~~~~~~~~~~~~~ + + CategoryInfo : ObjectNotFound: (.MainWindowTitle:String) [], CommandNotFoundException + + FullyQualifiedErrorId : CommandNotFoundException + +.MainWindowTitle : The term '.MainWindowTitle' is not recognized as the name of a cmdlet, function, script file, or +operable program. Check the spelling of the name, or if a path was included, verify that the path is correct and try +again. +At line:1 char:30 ++ Get-Process | Where-Object { .MainWindowTitle -ne '' } | Select-Objec ... ++ ~~~~~~~~~~~~~~~~ + + CategoryInfo : ObjectNotFound: (.MainWindowTitle:String) [], CommandNotFoundException + + FullyQualifiedErrorId : CommandNotFoundException + +.MainWindowTitle : The term '.MainWindowTitle' is not recognized as the name of a cmdlet, function, script file, or +operable program. Check the spelling of the name, or if a path was included, verify that the path is correct and try +again. +At line:1 char:30 ++ Get-Process | Where-Object { .MainWindowTitle -ne '' } | Select-Objec ... ++ ~~~~~~~~~~~~~~~~ + + CategoryInfo : ObjectNotFound: (.MainWindowTitle:String) [], CommandNotFoundException + + FullyQualifiedErrorId : CommandNotFoundException + +.MainWindowTitle : The term '.MainWindowTitle' is not recognized as the name of a cmdlet, function, script file, or +operable program. Check the spelling of the name, or if a path was included, verify that the path is correct and try +again. +At line:1 char:30 ++ Get-Process | Where-Object { .MainWindowTitle -ne '' } | Select-Objec ... ++ ~~~~~~~~~~~~~~~~ + + CategoryInfo : ObjectNotFound: (.MainWindowTitle:String) [], CommandNotFoundException + + FullyQualifiedErrorId : CommandNotFoundException + +.MainWindowTitle : The term '.MainWindowTitle' is not recognized as the name of a cmdlet, function, script file, or +operable program. Check the spelling of the name, or if a path was included, verify that the path is correct and try +again. +At line:1 char:30 ++ Get-Process | Where-Object { .MainWindowTitle -ne '' } | Select-Objec ... ++ ~~~~~~~~~~~~~~~~ + + CategoryInfo : ObjectNotFound: (.MainWindowTitle:String) [], CommandNotFoundException + + FullyQualifiedErrorId : CommandNotFoundException + +.MainWindowTitle : The term '.MainWindowTitle' is not recognized as the name of a cmdlet, function, script file, or +operable program. Check the spelling of the name, or if a path was included, verify that the path is correct and try +again. +At line:1 char:30 ++ Get-Process | Where-Object { .MainWindowTitle -ne '' } | Select-Objec ... ++ ~~~~~~~~~~~~~~~~ + + CategoryInfo : ObjectNotFound: (.MainWindowTitle:String) [], CommandNotFoundException + + FullyQualifiedErrorId : CommandNotFoundException + +.MainWindowTitle : The term '.MainWindowTitle' is not recognized as the name of a cmdlet, function, script file, or +operable program. Check the spelling of the name, or if a path was included, verify that the path is correct and try +again. +At line:1 char:30 ++ Get-Process | Where-Object { .MainWindowTitle -ne '' } | Select-Objec ... ++ ~~~~~~~~~~~~~~~~ + + CategoryInfo : ObjectNotFound: (.MainWindowTitle:String) [], CommandNotFoundException + + FullyQualifiedErrorId : CommandNotFoundException + +.MainWindowTitle : The term '.MainWindowTitle' is not recognized as the name of a cmdlet, function, script file, or +operable program. Check the spelling of the name, or if a path was included, verify that the path is correct and try +again. +At line:1 char:30 ++ Get-Process | Where-Object { .MainWindowTitle -ne '' } | Select-Objec ... ++ ~~~~~~~~~~~~~~~~ + + CategoryInfo : ObjectNotFound: (.MainWindowTitle:String) [], CommandNotFoundException + + FullyQualifiedErrorId : CommandNotFoundException + +.MainWindowTitle : The term '.MainWindowTitle' is not recognized as the name of a cmdlet, function, script file, or +operable program. Check the spelling of the name, or if a path was included, verify that the path is correct and try +again. +At line:1 char:30 ++ Get-Process | Where-Object { .MainWindowTitle -ne '' } | Select-Objec ... ++ ~~~~~~~~~~~~~~~~ + + CategoryInfo : ObjectNotFound: (.MainWindowTitle:String) [], CommandNotFoundException + + FullyQualifiedErrorId : CommandNotFoundException + +.MainWindowTitle : The term '.MainWindowTitle' is not recognized as the name of a cmdlet, function, script file, or +operable program. Check the spelling of the name, or if a path was included, verify that the path is correct and try +again. +At line:1 char:30 ++ Get-Process | Where-Object { .MainWindowTitle -ne '' } | Select-Objec ... ++ ~~~~~~~~~~~~~~~~ + + CategoryInfo : ObjectNotFound: (.MainWindowTitle:String) [], CommandNotFoundException + + FullyQualifiedErrorId : CommandNotFoundException + +.MainWindowTitle : The term '.MainWindowTitle' is not recognized as the name of a cmdlet, function, script file, or +operable program. Check the spelling of the name, or if a path was included, verify that the path is correct and try +again. +At line:1 char:30 ++ Get-Process | Where-Object { .MainWindowTitle -ne '' } | Select-Objec ... ++ ~~~~~~~~~~~~~~~~ + + CategoryInfo : ObjectNotFound: (.MainWindowTitle:String) [], CommandNotFoundException + + FullyQualifiedErrorId : CommandNotFoundException + +.MainWindowTitle : The term '.MainWindowTitle' is not recognized as the name of a cmdlet, function, script file, or +operable program. Check the spelling of the name, or if a path was included, verify that the path is correct and try +again. +At line:1 char:30 ++ Get-Process | Where-Object { .MainWindowTitle -ne '' } | Select-Objec ... ++ ~~~~~~~~~~~~~~~~ + + CategoryInfo : ObjectNotFound: (.MainWindowTitle:String) [], CommandNotFoundException + + FullyQualifiedErrorId : CommandNotFoundException + +.MainWindowTitle : The term '.MainWindowTitle' is not recognized as the name of a cmdlet, function, script file, or +operable program. Check the spelling of the name, or if a path was included, verify that the path is correct and try +again. +At line:1 char:30 ++ Get-Process | Where-Object { .MainWindowTitle -ne '' } | Select-Objec ... ++ ~~~~~~~~~~~~~~~~ + + CategoryInfo : ObjectNotFound: (.MainWindowTitle:String) [], CommandNotFoundException + + FullyQualifiedErrorId : CommandNotFoundException + +.MainWindowTitle : The term '.MainWindowTitle' is not recognized as the name of a cmdlet, function, script file, or +operable program. Check the spelling of the name, or if a path was included, verify that the path is correct and try +again. +At line:1 char:30 ++ Get-Process | Where-Object { .MainWindowTitle -ne '' } | Select-Objec ... ++ ~~~~~~~~~~~~~~~~ + + CategoryInfo : ObjectNotFound: (.MainWindowTitle:String) [], CommandNotFoundException + + FullyQualifiedErrorId : CommandNotFoundException + +.MainWindowTitle : The term '.MainWindowTitle' is not recognized as the name of a cmdlet, function, script file, or +operable program. Check the spelling of the name, or if a path was included, verify that the path is correct and try +again. +At line:1 char:30 ++ Get-Process | Where-Object { .MainWindowTitle -ne '' } | Select-Objec ... ++ ~~~~~~~~~~~~~~~~ + + CategoryInfo : ObjectNotFound: (.MainWindowTitle:String) [], CommandNotFoundException + + FullyQualifiedErrorId : CommandNotFoundException + +.MainWindowTitle : The term '.MainWindowTitle' is not recognized as the name of a cmdlet, function, script file, or +operable program. Check the spelling of the name, or if a path was included, verify that the path is correct and try +again. +At line:1 char:30 ++ Get-Process | Where-Object { .MainWindowTitle -ne '' } | Select-Objec ... ++ ~~~~~~~~~~~~~~~~ + + CategoryInfo : ObjectNotFound: (.MainWindowTitle:String) [], CommandNotFoundException + + FullyQualifiedErrorId : CommandNotFoundException + +.MainWindowTitle : The term '.MainWindowTitle' is not recognized as the name of a cmdlet, function, script file, or +operable program. Check the spelling of the name, or if a path was included, verify that the path is correct and try +again. +At line:1 char:30 ++ Get-Process | Where-Object { .MainWindowTitle -ne '' } | Select-Objec ... ++ ~~~~~~~~~~~~~~~~ + + CategoryInfo : ObjectNotFound: (.MainWindowTitle:String) [], CommandNotFoundException + + FullyQualifiedErrorId : CommandNotFoundException + +.MainWindowTitle : The term '.MainWindowTitle' is not recognized as the name of a cmdlet, function, script file, or +operable program. Check the spelling of the name, or if a path was included, verify that the path is correct and try +again. +At line:1 char:30 ++ Get-Process | Where-Object { .MainWindowTitle -ne '' } | Select-Objec ... ++ ~~~~~~~~~~~~~~~~ + + CategoryInfo : ObjectNotFound: (.MainWindowTitle:String) [], CommandNotFoundException + + FullyQualifiedErrorId : CommandNotFoundException + +.MainWindowTitle : The term '.MainWindowTitle' is not recognized as the name of a cmdlet, function, script file, or +operable program. Check the spelling of the name, or if a path was included, verify that the path is correct and try +again. +At line:1 char:30 ++ Get-Process | Where-Object { .MainWindowTitle -ne '' } | Select-Objec ... ++ ~~~~~~~~~~~~~~~~ + + CategoryInfo : ObjectNotFound: (.MainWindowTitle:String) [], CommandNotFoundException + + FullyQualifiedErrorId : CommandNotFoundException + +.MainWindowTitle : The term '.MainWindowTitle' is not recognized as the name of a cmdlet, function, script file, or +operable program. Check the spelling of the name, or if a path was included, verify that the path is correct and try +again. +At line:1 char:30 ++ Get-Process | Where-Object { .MainWindowTitle -ne '' } | Select-Objec ... ++ ~~~~~~~~~~~~~~~~ + + CategoryInfo : ObjectNotFound: (.MainWindowTitle:String) [], CommandNotFoundException + + FullyQualifiedErrorId : CommandNotFoundException + +.MainWindowTitle : The term '.MainWindowTitle' is not recognized as the name of a cmdlet, function, script file, or +operable program. Check the spelling of the name, or if a path was included, verify that the path is correct and try +again. +At line:1 char:30 ++ Get-Process | Where-Object { .MainWindowTitle -ne '' } | Select-Objec ... ++ ~~~~~~~~~~~~~~~~ + + CategoryInfo : ObjectNotFound: (.MainWindowTitle:String) [], CommandNotFoundException + + FullyQualifiedErrorId : CommandNotFoundException + +.MainWindowTitle : The term '.MainWindowTitle' is not recognized as the name of a cmdlet, function, script file, or +operable program. Check the spelling of the name, or if a path was included, verify that the path is correct and try +again. +At line:1 char:30 ++ Get-Process | Where-Object { .MainWindowTitle -ne '' } | Select-Objec ... ++ ~~~~~~~~~~~~~~~~ + + CategoryInfo : ObjectNotFound: (.MainWindowTitle:String) [], CommandNotFoundException + + FullyQualifiedErrorId : CommandNotFoundException + +.MainWindowTitle : The term '.MainWindowTitle' is not recognized as the name of a cmdlet, function, script file, or +operable program. Check the spelling of the name, or if a path was included, verify that the path is correct and try +again. +At line:1 char:30 ++ Get-Process | Where-Object { .MainWindowTitle -ne '' } | Select-Objec ... ++ ~~~~~~~~~~~~~~~~ + + CategoryInfo : ObjectNotFound: (.MainWindowTitle:String) [], CommandNotFoundException + + FullyQualifiedErrorId : CommandNotFoundException + +.MainWindowTitle : The term '.MainWindowTitle' is not recognized as the name of a cmdlet, function, script file, or +operable program. Check the spelling of the name, or if a path was included, verify that the path is correct and try +again. +At line:1 char:30 ++ Get-Process | Where-Object { .MainWindowTitle -ne '' } | Select-Objec ... ++ ~~~~~~~~~~~~~~~~ + + CategoryInfo : ObjectNotFound: (.MainWindowTitle:String) [], CommandNotFoundException + + FullyQualifiedErrorId : CommandNotFoundException + +.MainWindowTitle : The term '.MainWindowTitle' is not recognized as the name of a cmdlet, function, script file, or +operable program. Check the spelling of the name, or if a path was included, verify that the path is correct and try +again. +At line:1 char:30 ++ Get-Process | Where-Object { .MainWindowTitle -ne '' } | Select-Objec ... ++ ~~~~~~~~~~~~~~~~ + + CategoryInfo : ObjectNotFound: (.MainWindowTitle:String) [], CommandNotFoundException + + FullyQualifiedErrorId : CommandNotFoundException + +.MainWindowTitle : The term '.MainWindowTitle' is not recognized as the name of a cmdlet, function, script file, or +operable program. Check the spelling of the name, or if a path was included, verify that the path is correct and try +again. +At line:1 char:30 ++ Get-Process | Where-Object { .MainWindowTitle -ne '' } | Select-Objec ... ++ ~~~~~~~~~~~~~~~~ + + CategoryInfo : ObjectNotFound: (.MainWindowTitle:String) [], CommandNotFoundException + + FullyQualifiedErrorId : CommandNotFoundException + +.MainWindowTitle : The term '.MainWindowTitle' is not recognized as the name of a cmdlet, function, script file, or +operable program. Check the spelling of the name, or if a path was included, verify that the path is correct and try +again. +At line:1 char:30 ++ Get-Process | Where-Object { .MainWindowTitle -ne '' } | Select-Objec ... ++ ~~~~~~~~~~~~~~~~ + + CategoryInfo : ObjectNotFound: (.MainWindowTitle:String) [], CommandNotFoundException + + FullyQualifiedErrorId : CommandNotFoundException + +.MainWindowTitle : The term '.MainWindowTitle' is not recognized as the name of a cmdlet, function, script file, or +operable program. Check the spelling of the name, or if a path was included, verify that the path is correct and try +again. +At line:1 char:30 ++ Get-Process | Where-Object { .MainWindowTitle -ne '' } | Select-Objec ... ++ ~~~~~~~~~~~~~~~~ + + CategoryInfo : ObjectNotFound: (.MainWindowTitle:String) [], CommandNotFoundException + + FullyQualifiedErrorId : CommandNotFoundException + +.MainWindowTitle : The term '.MainWindowTitle' is not recognized as the name of a cmdlet, function, script file, or +operable program. Check the spelling of the name, or if a path was included, verify that the path is correct and try +again. +At line:1 char:30 ++ Get-Process | Where-Object { .MainWindowTitle -ne '' } | Select-Objec ... ++ ~~~~~~~~~~~~~~~~ + + CategoryInfo : ObjectNotFound: (.MainWindowTitle:String) [], CommandNotFoundException + + FullyQualifiedErrorId : CommandNotFoundException + +.MainWindowTitle : The term '.MainWindowTitle' is not recognized as the name of a cmdlet, function, script file, or +operable program. Check the spelling of the name, or if a path was included, verify that the path is correct and try +again. +At line:1 char:30 ++ Get-Process | Where-Object { .MainWindowTitle -ne '' } | Select-Objec ... ++ ~~~~~~~~~~~~~~~~ + + CategoryInfo : ObjectNotFound: (.MainWindowTitle:String) [], CommandNotFoundException + + FullyQualifiedErrorId : CommandNotFoundException + +.MainWindowTitle : The term '.MainWindowTitle' is not recognized as the name of a cmdlet, function, script file, or +operable program. Check the spelling of the name, or if a path was included, verify that the path is correct and try +again. +At line:1 char:30 ++ Get-Process | Where-Object { .MainWindowTitle -ne '' } | Select-Objec ... ++ ~~~~~~~~~~~~~~~~ + + CategoryInfo : ObjectNotFound: (.MainWindowTitle:String) [], CommandNotFoundException + + FullyQualifiedErrorId : CommandNotFoundException + +.MainWindowTitle : The term '.MainWindowTitle' is not recognized as the name of a cmdlet, function, script file, or +operable program. Check the spelling of the name, or if a path was included, verify that the path is correct and try +again. +At line:1 char:30 ++ Get-Process | Where-Object { .MainWindowTitle -ne '' } | Select-Objec ... ++ ~~~~~~~~~~~~~~~~ + + CategoryInfo : ObjectNotFound: (.MainWindowTitle:String) [], CommandNotFoundException + + FullyQualifiedErrorId : CommandNotFoundException + +.MainWindowTitle : The term '.MainWindowTitle' is not recognized as the name of a cmdlet, function, script file, or +operable program. Check the spelling of the name, or if a path was included, verify that the path is correct and try +again. +At line:1 char:30 ++ Get-Process | Where-Object { .MainWindowTitle -ne '' } | Select-Objec ... ++ ~~~~~~~~~~~~~~~~ + + CategoryInfo : ObjectNotFound: (.MainWindowTitle:String) [], CommandNotFoundException + + FullyQualifiedErrorId : CommandNotFoundException + +.MainWindowTitle : The term '.MainWindowTitle' is not recognized as the name of a cmdlet, function, script file, or +operable program. Check the spelling of the name, or if a path was included, verify that the path is correct and try +again. +At line:1 char:30 ++ Get-Process | Where-Object { .MainWindowTitle -ne '' } | Select-Objec ... ++ ~~~~~~~~~~~~~~~~ + + CategoryInfo : ObjectNotFound: (.MainWindowTitle:String) [], CommandNotFoundException + + FullyQualifiedErrorId : CommandNotFoundException + +.MainWindowTitle : The term '.MainWindowTitle' is not recognized as the name of a cmdlet, function, script file, or +operable program. Check the spelling of the name, or if a path was included, verify that the path is correct and try +again. +At line:1 char:30 ++ Get-Process | Where-Object { .MainWindowTitle -ne '' } | Select-Objec ... ++ ~~~~~~~~~~~~~~~~ + + CategoryInfo : ObjectNotFound: (.MainWindowTitle:String) [], CommandNotFoundException + + FullyQualifiedErrorId : CommandNotFoundException + +.MainWindowTitle : The term '.MainWindowTitle' is not recognized as the name of a cmdlet, function, script file, or +operable program. Check the spelling of the name, or if a path was included, verify that the path is correct and try +again. +At line:1 char:30 ++ Get-Process | Where-Object { .MainWindowTitle -ne '' } | Select-Objec ... ++ ~~~~~~~~~~~~~~~~ + + CategoryInfo : ObjectNotFound: (.MainWindowTitle:String) [], CommandNotFoundException + + FullyQualifiedErrorId : CommandNotFoundException + +.MainWindowTitle : The term '.MainWindowTitle' is not recognized as the name of a cmdlet, function, script file, or +operable program. Check the spelling of the name, or if a path was included, verify that the path is correct and try +again. +At line:1 char:30 ++ Get-Process | Where-Object { .MainWindowTitle -ne '' } | Select-Objec ... ++ ~~~~~~~~~~~~~~~~ + + CategoryInfo : ObjectNotFound: (.MainWindowTitle:String) [], CommandNotFoundException + + FullyQualifiedErrorId : CommandNotFoundException + +.MainWindowTitle : The term '.MainWindowTitle' is not recognized as the name of a cmdlet, function, script file, or +operable program. Check the spelling of the name, or if a path was included, verify that the path is correct and try +again. +At line:1 char:30 ++ Get-Process | Where-Object { .MainWindowTitle -ne '' } | Select-Objec ... ++ ~~~~~~~~~~~~~~~~ + + CategoryInfo : ObjectNotFound: (.MainWindowTitle:String) [], CommandNotFoundException + + FullyQualifiedErrorId : CommandNotFoundException + +.MainWindowTitle : The term '.MainWindowTitle' is not recognized as the name of a cmdlet, function, script file, or +operable program. Check the spelling of the name, or if a path was included, verify that the path is correct and try +again. +At line:1 char:30 ++ Get-Process | Where-Object { .MainWindowTitle -ne '' } | Select-Objec ... ++ ~~~~~~~~~~~~~~~~ + + CategoryInfo : ObjectNotFound: (.MainWindowTitle:String) [], CommandNotFoundException + + FullyQualifiedErrorId : CommandNotFoundException + +.MainWindowTitle : The term '.MainWindowTitle' is not recognized as the name of a cmdlet, function, script file, or +operable program. Check the spelling of the name, or if a path was included, verify that the path is correct and try +again. +At line:1 char:30 ++ Get-Process | Where-Object { .MainWindowTitle -ne '' } | Select-Objec ... ++ ~~~~~~~~~~~~~~~~ + + CategoryInfo : ObjectNotFound: (.MainWindowTitle:String) [], CommandNotFoundException + + FullyQualifiedErrorId : CommandNotFoundException + +.MainWindowTitle : The term '.MainWindowTitle' is not recognized as the name of a cmdlet, function, script file, or +operable program. Check the spelling of the name, or if a path was included, verify that the path is correct and try +again. +At line:1 char:30 ++ Get-Process | Where-Object { .MainWindowTitle -ne '' } | Select-Objec ... ++ ~~~~~~~~~~~~~~~~ + + CategoryInfo : ObjectNotFound: (.MainWindowTitle:String) [], CommandNotFoundException + + FullyQualifiedErrorId : CommandNotFoundException + +.MainWindowTitle : The term '.MainWindowTitle' is not recognized as the name of a cmdlet, function, script file, or +operable program. Check the spelling of the name, or if a path was included, verify that the path is correct and try +again. +At line:1 char:30 ++ Get-Process | Where-Object { .MainWindowTitle -ne '' } | Select-Objec ... ++ ~~~~~~~~~~~~~~~~ + + CategoryInfo : ObjectNotFound: (.MainWindowTitle:String) [], CommandNotFoundException + + FullyQualifiedErrorId : CommandNotFoundException + +.MainWindowTitle : The term '.MainWindowTitle' is not recognized as the name of a cmdlet, function, script file, or +operable program. Check the spelling of the name, or if a path was included, verify that the path is correct and try +again. +At line:1 char:30 ++ Get-Process | Where-Object { .MainWindowTitle -ne '' } | Select-Objec ... ++ ~~~~~~~~~~~~~~~~ + + CategoryInfo : ObjectNotFound: (.MainWindowTitle:String) [], CommandNotFoundException + + FullyQualifiedErrorId : CommandNotFoundException + +.MainWindowTitle : The term '.MainWindowTitle' is not recognized as the name of a cmdlet, function, script file, or +operable program. Check the spelling of the name, or if a path was included, verify that the path is correct and try +again. +At line:1 char:30 ++ Get-Process | Where-Object { .MainWindowTitle -ne '' } | Select-Objec ... ++ ~~~~~~~~~~~~~~~~ + + CategoryInfo : ObjectNotFound: (.MainWindowTitle:String) [], CommandNotFoundException + + FullyQualifiedErrorId : CommandNotFoundException + +.MainWindowTitle : The term '.MainWindowTitle' is not recognized as the name of a cmdlet, function, script file, or +operable program. Check the spelling of the name, or if a path was included, verify that the path is correct and try +again. +At line:1 char:30 ++ Get-Process | Where-Object { .MainWindowTitle -ne '' } | Select-Objec ... ++ ~~~~~~~~~~~~~~~~ + + CategoryInfo : ObjectNotFound: (.MainWindowTitle:String) [], CommandNotFoundException + + FullyQualifiedErrorId : CommandNotFoundException + +.MainWindowTitle : The term '.MainWindowTitle' is not recognized as the name of a cmdlet, function, script file, or +operable program. Check the spelling of the name, or if a path was included, verify that the path is correct and try +again. +At line:1 char:30 ++ Get-Process | Where-Object { .MainWindowTitle -ne '' } | Select-Objec ... ++ ~~~~~~~~~~~~~~~~ + + CategoryInfo : ObjectNotFound: (.MainWindowTitle:String) [], CommandNotFoundException + + FullyQualifiedErrorId : CommandNotFoundException + +.MainWindowTitle : The term '.MainWindowTitle' is not recognized as the name of a cmdlet, function, script file, or +operable program. Check the spelling of the name, or if a path was included, verify that the path is correct and try +again. +At line:1 char:30 ++ Get-Process | Where-Object { .MainWindowTitle -ne '' } | Select-Objec ... ++ ~~~~~~~~~~~~~~~~ + + CategoryInfo : ObjectNotFound: (.MainWindowTitle:String) [], CommandNotFoundException + + FullyQualifiedErrorId : CommandNotFoundException + +.MainWindowTitle : The term '.MainWindowTitle' is not recognized as the name of a cmdlet, function, script file, or +operable program. Check the spelling of the name, or if a path was included, verify that the path is correct and try +again. +At line:1 char:30 ++ Get-Process | Where-Object { .MainWindowTitle -ne '' } | Select-Objec ... ++ ~~~~~~~~~~~~~~~~ + + CategoryInfo : ObjectNotFound: (.MainWindowTitle:String) [], CommandNotFoundException + + FullyQualifiedErrorId : CommandNotFoundException + +.MainWindowTitle : The term '.MainWindowTitle' is not recognized as the name of a cmdlet, function, script file, or +operable program. Check the spelling of the name, or if a path was included, verify that the path is correct and try +again. +At line:1 char:30 ++ Get-Process | Where-Object { .MainWindowTitle -ne '' } | Select-Objec ... ++ ~~~~~~~~~~~~~~~~ + + CategoryInfo : ObjectNotFound: (.MainWindowTitle:String) [], CommandNotFoundException + + FullyQualifiedErrorId : CommandNotFoundException + + +``` +
+
+ +--- + + +Common apps that intercept Alt+R globally: +- Screen recording: OBS, NVIDIA ShadowPlay/GeForce Experience, Windows Game Bar (Win+G) +- Gaming overlays: Steam, Discord, Xbox Game Bar +- Remote desktop: TeamViewer, AnyDesk, Chrome Remote Desktop +- Accessibility tools: Windows Narrator, third-party screen readers + +Checking for common processes: + + +--- + + +
Tool use: **run_terminal_command_v2** • Run command: powershell -Command "Get-Process | Where-Object {$_.ProcessName -match 'obs|nvidia|shadowplay|geforce|steam|discord|teamviewer|anydesk|chrome|gamebar|gaming|overlay'} | Select-Object ProcessName, Id | Format-Table -AutoSize" + +```bash +powershell -Command "Get-Process | Where-Object {$_.ProcessName -match 'obs|nvidia|shadowplay|geforce|steam|discord|teamviewer|anydesk|chrome|gamebar|gaming|overlay'} | Select-Object ProcessName, Id | Format-Table -AutoSize" +``` + +``` +.ProcessName : The term '.ProcessName' is not recognized as the name of a cmdlet, function, script file, or operable +program. Check the spelling of the name, or if a path was included, verify that the path is correct and try again. +At line:1 char:29 ++ Get-Process | Where-Object {.ProcessName -match 'obs|nvidia|shadowpla ... ++ ~~~~~~~~~~~~ + + CategoryInfo : ObjectNotFound: (.ProcessName:String) [], CommandNotFoundException + + FullyQualifiedErrorId : CommandNotFoundException + +.ProcessName : The term '.ProcessName' is not recognized as the name of a cmdlet, function, script file, or operable +program. Check the spelling of the name, or if a path was included, verify that the path is correct and try again. +At line:1 char:29 ++ Get-Process | Where-Object {.ProcessName -match 'obs|nvidia|shadowpla ... ++ ~~~~~~~~~~~~ + + CategoryInfo : ObjectNotFound: (.ProcessName:String) [], CommandNotFoundException + + FullyQualifiedErrorId : CommandNotFoundException + +.ProcessName : The term '.ProcessName' is not recognized as the name of a cmdlet, function, script file, or operable +program. Check the spelling of the name, or if a path was included, verify that the path is correct and try again. +At line:1 char:29 ++ Get-Process | Where-Object {.ProcessName -match 'obs|nvidia|shadowpla ... ++ ~~~~~~~~~~~~ + + CategoryInfo : ObjectNotFound: (.ProcessName:String) [], CommandNotFoundException + + FullyQualifiedErrorId : CommandNotFoundException + +.ProcessName : The term '.ProcessName' is not recognized as the name of a cmdlet, function, script file, or operable +program. Check the spelling of the name, or if a path was included, verify that the path is correct and try again. +At line:1 char:29 ++ Get-Process | Where-Object {.ProcessName -match 'obs|nvidia|shadowpla ... ++ ~~~~~~~~~~~~ + + CategoryInfo : ObjectNotFound: (.ProcessName:String) [], CommandNotFoundException + + FullyQualifiedErrorId : CommandNotFoundException + +.ProcessName : The term '.ProcessName' is not recognized as the name of a cmdlet, function, script file, or operable +program. Check the spelling of the name, or if a path was included, verify that the path is correct and try again. +At line:1 char:29 ++ Get-Process | Where-Object {.ProcessName -match 'obs|nvidia|shadowpla ... ++ ~~~~~~~~~~~~ + + CategoryInfo : ObjectNotFound: (.ProcessName:String) [], CommandNotFoundException + + FullyQualifiedErrorId : CommandNotFoundException + +.ProcessName : The term '.ProcessName' is not recognized as the name of a cmdlet, function, script file, or operable +program. Check the spelling of the name, or if a path was included, verify that the path is correct and try again. +At line:1 char:29 ++ Get-Process | Where-Object {.ProcessName -match 'obs|nvidia|shadowpla ... ++ ~~~~~~~~~~~~ + + CategoryInfo : ObjectNotFound: (.ProcessName:String) [], CommandNotFoundException + + FullyQualifiedErrorId : CommandNotFoundException + +.ProcessName : The term '.ProcessName' is not recognized as the name of a cmdlet, function, script file, or operable +program. Check the spelling of the name, or if a path was included, verify that the path is correct and try again. +At line:1 char:29 ++ Get-Process | Where-Object {.ProcessName -match 'obs|nvidia|shadowpla ... ++ ~~~~~~~~~~~~ + + CategoryInfo : ObjectNotFound: (.ProcessName:String) [], CommandNotFoundException + + FullyQualifiedErrorId : CommandNotFoundException + +.ProcessName : The term '.ProcessName' is not recognized as the name of a cmdlet, function, script file, or operable +program. Check the spelling of the name, or if a path was included, verify that the path is correct and try again. +At line:1 char:29 ++ Get-Process | Where-Object {.ProcessName -match 'obs|nvidia|shadowpla ... ++ ~~~~~~~~~~~~ + + CategoryInfo : ObjectNotFound: (.ProcessName:String) [], CommandNotFoundException + + FullyQualifiedErrorId : CommandNotFoundException + +.ProcessName : The term '.ProcessName' is not recognized as the name of a cmdlet, function, script file, or operable +program. Check the spelling of the name, or if a path was included, verify that the path is correct and try again. +At line:1 char:29 ++ Get-Process | Where-Object {.ProcessName -match 'obs|nvidia|shadowpla ... ++ ~~~~~~~~~~~~ + + CategoryInfo : ObjectNotFound: (.ProcessName:String) [], CommandNotFoundException + + FullyQualifiedErrorId : CommandNotFoundException + +.ProcessName : The term '.ProcessName' is not recognized as the name of a cmdlet, function, script file, or operable +program. Check the spelling of the name, or if a path was included, verify that the path is correct and try again. +At line:1 char:29 ++ Get-Process | Where-Object {.ProcessName -match 'obs|nvidia|shadowpla ... ++ ~~~~~~~~~~~~ + + CategoryInfo : ObjectNotFound: (.ProcessName:String) [], CommandNotFoundException + + FullyQualifiedErrorId : CommandNotFoundException + +.ProcessName : The term '.ProcessName' is not recognized as the name of a cmdlet, function, script file, or operable +program. Check the spelling of the name, or if a path was included, verify that the path is correct and try again. +At line:1 char:29 ++ Get-Process | Where-Object {.ProcessName -match 'obs|nvidia|shadowpla ... ++ ~~~~~~~~~~~~ + + CategoryInfo : ObjectNotFound: (.ProcessName:String) [], CommandNotFoundException + + FullyQualifiedErrorId : CommandNotFoundException + +.ProcessName : The term '.ProcessName' is not recognized as the name of a cmdlet, function, script file, or operable +program. Check the spelling of the name, or if a path was included, verify that the path is correct and try again. +At line:1 char:29 ++ Get-Process | Where-Object {.ProcessName -match 'obs|nvidia|shadowpla ... ++ ~~~~~~~~~~~~ + + CategoryInfo : ObjectNotFound: (.ProcessName:String) [], CommandNotFoundException + + FullyQualifiedErrorId : CommandNotFoundException + +.ProcessName : The term '.ProcessName' is not recognized as the name of a cmdlet, function, script file, or operable +program. Check the spelling of the name, or if a path was included, verify that the path is correct and try again. +At line:1 char:29 ++ Get-Process | Where-Object {.ProcessName -match 'obs|nvidia|shadowpla ... ++ ~~~~~~~~~~~~ + + CategoryInfo : ObjectNotFound: (.ProcessName:String) [], CommandNotFoundException + + FullyQualifiedErrorId : CommandNotFoundException + +.ProcessName : The term '.ProcessName' is not recognized as the name of a cmdlet, function, script file, or operable +program. Check the spelling of the name, or if a path was included, verify that the path is correct and try again. +At line:1 char:29 ++ Get-Process | Where-Object {.ProcessName -match 'obs|nvidia|shadowpla ... ++ ~~~~~~~~~~~~ + + CategoryInfo : ObjectNotFound: (.ProcessName:String) [], CommandNotFoundException + + FullyQualifiedErrorId : CommandNotFoundException + +.ProcessName : The term '.ProcessName' is not recognized as the name of a cmdlet, function, script file, or operable +program. Check the spelling of the name, or if a path was included, verify that the path is correct and try again. +At line:1 char:29 ++ Get-Process | Where-Object {.ProcessName -match 'obs|nvidia|shadowpla ... ++ ~~~~~~~~~~~~ + + CategoryInfo : ObjectNotFound: (.ProcessName:String) [], CommandNotFoundException + + FullyQualifiedErrorId : CommandNotFoundException + +.ProcessName : The term '.ProcessName' is not recognized as the name of a cmdlet, function, script file, or operable +program. Check the spelling of the name, or if a path was included, verify that the path is correct and try again. +At line:1 char:29 ++ Get-Process | Where-Object {.ProcessName -match 'obs|nvidia|shadowpla ... ++ ~~~~~~~~~~~~ + + CategoryInfo : ObjectNotFound: (.ProcessName:String) [], CommandNotFoundException + + FullyQualifiedErrorId : CommandNotFoundException + +.ProcessName : The term '.ProcessName' is not recognized as the name of a cmdlet, function, script file, or operable +program. Check the spelling of the name, or if a path was included, verify that the path is correct and try again. +At line:1 char:29 ++ Get-Process | Where-Object {.ProcessName -match 'obs|nvidia|shadowpla ... ++ ~~~~~~~~~~~~ + + CategoryInfo : ObjectNotFound: (.ProcessName:String) [], CommandNotFoundException + + FullyQualifiedErrorId : CommandNotFoundException + +.ProcessName : The term '.ProcessName' is not recognized as the name of a cmdlet, function, script file, or operable +program. Check the spelling of the name, or if a path was included, verify that the path is correct and try again. +At line:1 char:29 ++ Get-Process | Where-Object {.ProcessName -match 'obs|nvidia|shadowpla ... ++ ~~~~~~~~~~~~ + + CategoryInfo : ObjectNotFound: (.ProcessName:String) [], CommandNotFoundException + + FullyQualifiedErrorId : CommandNotFoundException + +.ProcessName : The term '.ProcessName' is not recognized as the name of a cmdlet, function, script file, or operable +program. Check the spelling of the name, or if a path was included, verify that the path is correct and try again. +At line:1 char:29 ++ Get-Process | Where-Object {.ProcessName -match 'obs|nvidia|shadowpla ... ++ ~~~~~~~~~~~~ + + CategoryInfo : ObjectNotFound: (.ProcessName:String) [], CommandNotFoundException + + FullyQualifiedErrorId : CommandNotFoundException + +.ProcessName : The term '.ProcessName' is not recognized as the name of a cmdlet, function, script file, or operable +program. Check the spelling of the name, or if a path was included, verify that the path is correct and try again. +At line:1 char:29 ++ Get-Process | Where-Object {.ProcessName -match 'obs|nvidia|shadowpla ... ++ ~~~~~~~~~~~~ + + CategoryInfo : ObjectNotFound: (.ProcessName:String) [], CommandNotFoundException + + FullyQualifiedErrorId : CommandNotFoundException + +.ProcessName : The term '.ProcessName' is not recognized as the name of a cmdlet, function, script file, or operable +program. Check the spelling of the name, or if a path was included, verify that the path is correct and try again. +At line:1 char:29 ++ Get-Process | Where-Object {.ProcessName -match 'obs|nvidia|shadowpla ... ++ ~~~~~~~~~~~~ + + CategoryInfo : ObjectNotFound: (.ProcessName:String) [], CommandNotFoundException + + FullyQualifiedErrorId : CommandNotFoundException + +.ProcessName : The term '.ProcessName' is not recognized as the name of a cmdlet, function, script file, or operable +program. Check the spelling of the name, or if a path was included, verify that the path is correct and try again. +At line:1 char:29 ++ Get-Process | Where-Object {.ProcessName -match 'obs|nvidia|shadowpla ... ++ ~~~~~~~~~~~~ + + CategoryInfo : ObjectNotFound: (.ProcessName:String) [], CommandNotFoundException + + FullyQualifiedErrorId : CommandNotFoundException + +.ProcessName : The term '.ProcessName' is not recognized as the name of a cmdlet, function, script file, or operable +program. Check the spelling of the name, or if a path was included, verify that the path is correct and try again. +At line:1 char:29 ++ Get-Process | Where-Object {.ProcessName -match 'obs|nvidia|shadowpla ... ++ ~~~~~~~~~~~~ + + CategoryInfo : ObjectNotFound: (.ProcessName:String) [], CommandNotFoundException + + FullyQualifiedErrorId : CommandNotFoundException + +.ProcessName : The term '.ProcessName' is not recognized as the name of a cmdlet, function, script file, or operable +program. Check the spelling of the name, or if a path was included, verify that the path is correct and try again. +At line:1 char:29 ++ Get-Process | Where-Object {.ProcessName -match 'obs|nvidia|shadowpla ... ++ ~~~~~~~~~~~~ + + CategoryInfo : ObjectNotFound: (.ProcessName:String) [], CommandNotFoundException + + FullyQualifiedErrorId : CommandNotFoundException + +.ProcessName : The term '.ProcessName' is not recognized as the name of a cmdlet, function, script file, or operable +program. Check the spelling of the name, or if a path was included, verify that the path is correct and try again. +At line:1 char:29 ++ Get-Process | Where-Object {.ProcessName -match 'obs|nvidia|shadowpla ... ++ ~~~~~~~~~~~~ + + CategoryInfo : ObjectNotFound: (.ProcessName:String) [], CommandNotFoundException + + FullyQualifiedErrorId : CommandNotFoundException + +.ProcessName : The term '.ProcessName' is not recognized as the name of a cmdlet, function, script file, or operable +program. Check the spelling of the name, or if a path was included, verify that the path is correct and try again. +At line:1 char:29 ++ Get-Process | Where-Object {.ProcessName -match 'obs|nvidia|shadowpla ... ++ ~~~~~~~~~~~~ + + CategoryInfo : ObjectNotFound: (.ProcessName:String) [], CommandNotFoundException + + FullyQualifiedErrorId : CommandNotFoundException + +.ProcessName : The term '.ProcessName' is not recognized as the name of a cmdlet, function, script file, or operable +program. Check the spelling of the name, or if a path was included, verify that the path is correct and try again. +At line:1 char:29 ++ Get-Process | Where-Object {.ProcessName -match 'obs|nvidia|shadowpla ... ++ ~~~~~~~~~~~~ + + CategoryInfo : ObjectNotFound: (.ProcessName:String) [], CommandNotFoundException + + FullyQualifiedErrorId : CommandNotFoundException + +.ProcessName : The term '.ProcessName' is not recognized as the name of a cmdlet, function, script file, or operable +program. Check the spelling of the name, or if a path was included, verify that the path is correct and try again. +At line:1 char:29 ++ Get-Process | Where-Object {.ProcessName -match 'obs|nvidia|shadowpla ... ++ ~~~~~~~~~~~~ + + CategoryInfo : ObjectNotFound: (.ProcessName:String) [], CommandNotFoundException + + FullyQualifiedErrorId : CommandNotFoundException + +.ProcessName : The term '.ProcessName' is not recognized as the name of a cmdlet, function, script file, or operable +program. Check the spelling of the name, or if a path was included, verify that the path is correct and try again. +At line:1 char:29 ++ Get-Process | Where-Object {.ProcessName -match 'obs|nvidia|shadowpla ... ++ ~~~~~~~~~~~~ + + CategoryInfo : ObjectNotFound: (.ProcessName:String) [], CommandNotFoundException + + FullyQualifiedErrorId : CommandNotFoundException + +.ProcessName : The term '.ProcessName' is not recognized as the name of a cmdlet, function, script file, or operable +program. Check the spelling of the name, or if a path was included, verify that the path is correct and try again. +At line:1 char:29 ++ Get-Process | Where-Object {.ProcessName -match 'obs|nvidia|shadowpla ... ++ ~~~~~~~~~~~~ + + CategoryInfo : ObjectNotFound: (.ProcessName:String) [], CommandNotFoundException + + FullyQualifiedErrorId : CommandNotFoundException + +.ProcessName : The term '.ProcessName' is not recognized as the name of a cmdlet, function, script file, or operable +program. Check the spelling of the name, or if a path was included, verify that the path is correct and try again. +At line:1 char:29 ++ Get-Process | Where-Object {.ProcessName -match 'obs|nvidia|shadowpla ... ++ ~~~~~~~~~~~~ + + CategoryInfo : ObjectNotFound: (.ProcessName:String) [], CommandNotFoundException + + FullyQualifiedErrorId : CommandNotFoundException + +.ProcessName : The term '.ProcessName' is not recognized as the name of a cmdlet, function, script file, or operable +program. Check the spelling of the name, or if a path was included, verify that the path is correct and try again. +At line:1 char:29 ++ Get-Process | Where-Object {.ProcessName -match 'obs|nvidia|shadowpla ... ++ ~~~~~~~~~~~~ + + CategoryInfo : ObjectNotFound: (.ProcessName:String) [], CommandNotFoundException + + FullyQualifiedErrorId : CommandNotFoundException + +.ProcessName : The term '.ProcessName' is not recognized as the name of a cmdlet, function, script file, or operable +program. Check the spelling of the name, or if a path was included, verify that the path is correct and try again. +At line:1 char:29 ++ Get-Process | Where-Object {.ProcessName -match 'obs|nvidia|shadowpla ... ++ ~~~~~~~~~~~~ + + CategoryInfo : ObjectNotFound: (.ProcessName:String) [], CommandNotFoundException + + FullyQualifiedErrorId : CommandNotFoundException + +.ProcessName : The term '.ProcessName' is not recognized as the name of a cmdlet, function, script file, or operable +program. Check the spelling of the name, or if a path was included, verify that the path is correct and try again. +At line:1 char:29 ++ Get-Process | Where-Object {.ProcessName -match 'obs|nvidia|shadowpla ... ++ ~~~~~~~~~~~~ + + CategoryInfo : ObjectNotFound: (.ProcessName:String) [], CommandNotFoundException + + FullyQualifiedErrorId : CommandNotFoundException + +.ProcessName : The term '.ProcessName' is not recognized as the name of a cmdlet, function, script file, or operable +program. Check the spelling of the name, or if a path was included, verify that the path is correct and try again. +At line:1 char:29 ++ Get-Process | Where-Object {.ProcessName -match 'obs|nvidia|shadowpla ... ++ ~~~~~~~~~~~~ + + CategoryInfo : ObjectNotFound: (.ProcessName:String) [], CommandNotFoundException + + FullyQualifiedErrorId : CommandNotFoundException + +.ProcessName : The term '.ProcessName' is not recognized as the name of a cmdlet, function, script file, or operable +program. Check the spelling of the name, or if a path was included, verify that the path is correct and try again. +At line:1 char:29 ++ Get-Process | Where-Object {.ProcessName -match 'obs|nvidia|shadowpla ... ++ ~~~~~~~~~~~~ + + CategoryInfo : ObjectNotFound: (.ProcessName:String) [], CommandNotFoundException + + FullyQualifiedErrorId : CommandNotFoundException + +.ProcessName : The term '.ProcessName' is not recognized as the name of a cmdlet, function, script file, or operable +program. Check the spelling of the name, or if a path was included, verify that the path is correct and try again. +At line:1 char:29 ++ Get-Process | Where-Object {.ProcessName -match 'obs|nvidia|shadowpla ... ++ ~~~~~~~~~~~~ + + CategoryInfo : ObjectNotFound: (.ProcessName:String) [], CommandNotFoundException + + FullyQualifiedErrorId : CommandNotFoundException + +.ProcessName : The term '.ProcessName' is not recognized as the name of a cmdlet, function, script file, or operable +program. Check the spelling of the name, or if a path was included, verify that the path is correct and try again. +At line:1 char:29 ++ Get-Process | Where-Object {.ProcessName -match 'obs|nvidia|shadowpla ... ++ ~~~~~~~~~~~~ + + CategoryInfo : ObjectNotFound: (.ProcessName:String) [], CommandNotFoundException + + FullyQualifiedErrorId : CommandNotFoundException + +.ProcessName : The term '.ProcessName' is not recognized as the name of a cmdlet, function, script file, or operable +program. Check the spelling of the name, or if a path was included, verify that the path is correct and try again. +At line:1 char:29 ++ Get-Process | Where-Object {.ProcessName -match 'obs|nvidia|shadowpla ... ++ ~~~~~~~~~~~~ + + CategoryInfo : ObjectNotFound: (.ProcessName:String) [], CommandNotFoundException + + FullyQualifiedErrorId : CommandNotFoundException + +.ProcessName : The term '.ProcessName' is not recognized as the name of a cmdlet, function, script file, or operable +program. Check the spelling of the name, or if a path was included, verify that the path is correct and try again. +At line:1 char:29 ++ Get-Process | Where-Object {.ProcessName -match 'obs|nvidia|shadowpla ... ++ ~~~~~~~~~~~~ + + CategoryInfo : ObjectNotFound: (.ProcessName:String) [], CommandNotFoundException + + FullyQualifiedErrorId : CommandNotFoundException + +.ProcessName : The term '.ProcessName' is not recognized as the name of a cmdlet, function, script file, or operable +program. Check the spelling of the name, or if a path was included, verify that the path is correct and try again. +At line:1 char:29 ++ Get-Process | Where-Object {.ProcessName -match 'obs|nvidia|shadowpla ... ++ ~~~~~~~~~~~~ + + CategoryInfo : ObjectNotFound: (.ProcessName:String) [], CommandNotFoundException + + FullyQualifiedErrorId : CommandNotFoundException + +.ProcessName : The term '.ProcessName' is not recognized as the name of a cmdlet, function, script file, or operable +program. Check the spelling of the name, or if a path was included, verify that the path is correct and try again. +At line:1 char:29 ++ Get-Process | Where-Object {.ProcessName -match 'obs|nvidia|shadowpla ... ++ ~~~~~~~~~~~~ + + CategoryInfo : ObjectNotFound: (.ProcessName:String) [], CommandNotFoundException + + FullyQualifiedErrorId : CommandNotFoundException + +.ProcessName : The term '.ProcessName' is not recognized as the name of a cmdlet, function, script file, or operable +program. Check the spelling of the name, or if a path was included, verify that the path is correct and try again. +At line:1 char:29 ++ Get-Process | Where-Object {.ProcessName -match 'obs|nvidia|shadowpla ... ++ ~~~~~~~~~~~~ + + CategoryInfo : ObjectNotFound: (.ProcessName:String) [], CommandNotFoundException + + FullyQualifiedErrorId : CommandNotFoundException + +.ProcessName : The term '.ProcessName' is not recognized as the name of a cmdlet, function, script file, or operable +program. Check the spelling of the name, or if a path was included, verify that the path is correct and try again. +At line:1 char:29 ++ Get-Process | Where-Object {.ProcessName -match 'obs|nvidia|shadowpla ... ++ ~~~~~~~~~~~~ + + CategoryInfo : ObjectNotFound: (.ProcessName:String) [], CommandNotFoundException + + FullyQualifiedErrorId : CommandNotFoundException + +.ProcessName : The term '.ProcessName' is not recognized as the name of a cmdlet, function, script file, or operable +program. Check the spelling of the name, or if a path was included, verify that the path is correct and try again. +At line:1 char:29 ++ Get-Process | Where-Object {.ProcessName -match 'obs|nvidia|shadowpla ... ++ ~~~~~~~~~~~~ + + CategoryInfo : ObjectNotFound: (.ProcessName:String) [], CommandNotFoundException + + FullyQualifiedErrorId : CommandNotFoundException + +.ProcessName : The term '.ProcessName' is not recognized as the name of a cmdlet, function, script file, or operable +program. Check the spelling of the name, or if a path was included, verify that the path is correct and try again. +At line:1 char:29 ++ Get-Process | Where-Object {.ProcessName -match 'obs|nvidia|shadowpla ... ++ ~~~~~~~~~~~~ + + CategoryInfo : ObjectNotFound: (.ProcessName:String) [], CommandNotFoundException + + FullyQualifiedErrorId : CommandNotFoundException + +.ProcessName : The term '.ProcessName' is not recognized as the name of a cmdlet, function, script file, or operable +program. Check the spelling of the name, or if a path was included, verify that the path is correct and try again. +At line:1 char:29 ++ Get-Process | Where-Object {.ProcessName -match 'obs|nvidia|shadowpla ... ++ ~~~~~~~~~~~~ + + CategoryInfo : ObjectNotFound: (.ProcessName:String) [], CommandNotFoundException + + FullyQualifiedErrorId : CommandNotFoundException + +.ProcessName : The term '.ProcessName' is not recognized as the name of a cmdlet, function, script file, or operable +program. Check the spelling of the name, or if a path was included, verify that the path is correct and try again. +At line:1 char:29 ++ Get-Process | Where-Object {.ProcessName -match 'obs|nvidia|shadowpla ... ++ ~~~~~~~~~~~~ + + CategoryInfo : ObjectNotFound: (.ProcessName:String) [], CommandNotFoundException + + FullyQualifiedErrorId : CommandNotFoundException + +.ProcessName : The term '.ProcessName' is not recognized as the name of a cmdlet, function, script file, or operable +program. Check the spelling of the name, or if a path was included, verify that the path is correct and try again. +At line:1 char:29 ++ Get-Process | Where-Object {.ProcessName -match 'obs|nvidia|shadowpla ... ++ ~~~~~~~~~~~~ + + CategoryInfo : ObjectNotFound: (.ProcessName:String) [], CommandNotFoundException + + FullyQualifiedErrorId : CommandNotFoundException + +.ProcessName : The term '.ProcessName' is not recognized as the name of a cmdlet, function, script file, or operable +program. Check the spelling of the name, or if a path was included, verify that the path is correct and try again. +At line:1 char:29 ++ Get-Process | Where-Object {.ProcessName -match 'obs|nvidia|shadowpla ... ++ ~~~~~~~~~~~~ + + CategoryInfo : ObjectNotFound: (.ProcessName:String) [], CommandNotFoundException + + FullyQualifiedErrorId : CommandNotFoundException + +.ProcessName : The term '.ProcessName' is not recognized as the name of a cmdlet, function, script file, or operable +program. Check the spelling of the name, or if a path was included, verify that the path is correct and try again. +At line:1 char:29 ++ Get-Process | Where-Object {.ProcessName -match 'obs|nvidia|shadowpla ... ++ ~~~~~~~~~~~~ + + CategoryInfo : ObjectNotFound: (.ProcessName:String) [], CommandNotFoundException + + FullyQualifiedErrorId : CommandNotFoundException + +.ProcessName : The term '.ProcessName' is not recognized as the name of a cmdlet, function, script file, or operable +program. Check the spelling of the name, or if a path was included, verify that the path is correct and try again. +At line:1 char:29 ++ Get-Process | Where-Object {.ProcessName -match 'obs|nvidia|shadowpla ... ++ ~~~~~~~~~~~~ + + CategoryInfo : ObjectNotFound: (.ProcessName:String) [], CommandNotFoundException + + FullyQualifiedErrorId : CommandNotFoundException + +.ProcessName : The term '.ProcessName' is not recognized as the name of a cmdlet, function, script file, or operable +program. Check the spelling of the name, or if a path was included, verify that the path is correct and try again. +At line:1 char:29 ++ Get-Process | Where-Object {.ProcessName -match 'obs|nvidia|shadowpla ... ++ ~~~~~~~~~~~~ + + CategoryInfo : ObjectNotFound: (.ProcessName:String) [], CommandNotFoundException + + FullyQualifiedErrorId : CommandNotFoundException + +.ProcessName : The term '.ProcessName' is not recognized as the name of a cmdlet, function, script file, or operable +program. Check the spelling of the name, or if a path was included, verify that the path is correct and try again. +At line:1 char:29 ++ Get-Process | Where-Object {.ProcessName -match 'obs|nvidia|shadowpla ... ++ ~~~~~~~~~~~~ + + CategoryInfo : ObjectNotFound: (.ProcessName:String) [], CommandNotFoundException + + FullyQualifiedErrorId : CommandNotFoundException + +.ProcessName : The term '.ProcessName' is not recognized as the name of a cmdlet, function, script file, or operable +program. Check the spelling of the name, or if a path was included, verify that the path is correct and try again. +At line:1 char:29 ++ Get-Process | Where-Object {.ProcessName -match 'obs|nvidia|shadowpla ... ++ ~~~~~~~~~~~~ + + CategoryInfo : ObjectNotFound: (.ProcessName:String) [], CommandNotFoundException + + FullyQualifiedErrorId : CommandNotFoundException + +.ProcessName : The term '.ProcessName' is not recognized as the name of a cmdlet, function, script file, or operable +program. Check the spelling of the name, or if a path was included, verify that the path is correct and try again. +At line:1 char:29 ++ Get-Process | Where-Object {.ProcessName -match 'obs|nvidia|shadowpla ... ++ ~~~~~~~~~~~~ + + CategoryInfo : ObjectNotFound: (.ProcessName:String) [], CommandNotFoundException + + FullyQualifiedErrorId : CommandNotFoundException + +.ProcessName : The term '.ProcessName' is not recognized as the name of a cmdlet, function, script file, or operable +program. Check the spelling of the name, or if a path was included, verify that the path is correct and try again. +At line:1 char:29 ++ Get-Process | Where-Object {.ProcessName -match 'obs|nvidia|shadowpla ... ++ ~~~~~~~~~~~~ + + CategoryInfo : ObjectNotFound: (.ProcessName:String) [], CommandNotFoundException + + FullyQualifiedErrorId : CommandNotFoundException + +.ProcessName : The term '.ProcessName' is not recognized as the name of a cmdlet, function, script file, or operable +program. Check the spelling of the name, or if a path was included, verify that the path is correct and try again. +At line:1 char:29 ++ Get-Process | Where-Object {.ProcessName -match 'obs|nvidia|shadowpla ... ++ ~~~~~~~~~~~~ + + CategoryInfo : ObjectNotFound: (.ProcessName:String) [], CommandNotFoundException + + FullyQualifiedErrorId : CommandNotFoundException + +.ProcessName : The term '.ProcessName' is not recognized as the name of a cmdlet, function, script file, or operable +program. Check the spelling of the name, or if a path was included, verify that the path is correct and try again. +At line:1 char:29 ++ Get-Process | Where-Object {.ProcessName -match 'obs|nvidia|shadowpla ... ++ ~~~~~~~~~~~~ + + CategoryInfo : ObjectNotFound: (.ProcessName:String) [], CommandNotFoundException + + FullyQualifiedErrorId : CommandNotFoundException + +.ProcessName : The term '.ProcessName' is not recognized as the name of a cmdlet, function, script file, or operable +program. Check the spelling of the name, or if a path was included, verify that the path is correct and try again. +At line:1 char:29 ++ Get-Process | Where-Object {.ProcessName -match 'obs|nvidia|shadowpla ... ++ ~~~~~~~~~~~~ + + CategoryInfo : ObjectNotFound: (.ProcessName:String) [], CommandNotFoundException + + FullyQualifiedErrorId : CommandNotFoundException + +.ProcessName : The term '.ProcessName' is not recognized as the name of a cmdlet, function, script file, or operable +program. Check the spelling of the name, or if a path was included, verify that the path is correct and try again. +At line:1 char:29 ++ Get-Process | Where-Object {.ProcessName -match 'obs|nvidia|shadowpla ... ++ ~~~~~~~~~~~~ + + CategoryInfo : ObjectNotFound: (.ProcessName:String) [], CommandNotFoundException + + FullyQualifiedErrorId : CommandNotFoundException + +.ProcessName : The term '.ProcessName' is not recognized as the name of a cmdlet, function, script file, or operable +program. Check the spelling of the name, or if a path was included, verify that the path is correct and try again. +At line:1 char:29 ++ Get-Process | Where-Object {.ProcessName -match 'obs|nvidia|shadowpla ... ++ ~~~~~~~~~~~~ + + CategoryInfo : ObjectNotFound: (.ProcessName:String) [], CommandNotFoundException + + FullyQualifiedErrorId : CommandNotFoundException + +.ProcessName : The term '.ProcessName' is not recognized as the name of a cmdlet, function, script file, or operable +program. Check the spelling of the name, or if a path was included, verify that the path is correct and try again. +At line:1 char:29 ++ Get-Process | Where-Object {.ProcessName -match 'obs|nvidia|shadowpla ... ++ ~~~~~~~~~~~~ + + CategoryInfo : ObjectNotFound: (.ProcessName:String) [], CommandNotFoundException + + FullyQualifiedErrorId : CommandNotFoundException + +.ProcessName : The term '.ProcessName' is not recognized as the name of a cmdlet, function, script file, or operable +program. Check the spelling of the name, or if a path was included, verify that the path is correct and try again. +At line:1 char:29 ++ Get-Process | Where-Object {.ProcessName -match 'obs|nvidia|shadowpla ... ++ ~~~~~~~~~~~~ + + CategoryInfo : ObjectNotFound: (.ProcessName:String) [], CommandNotFoundException + + FullyQualifiedErrorId : CommandNotFoundException + +.ProcessName : The term '.ProcessName' is not recognized as the name of a cmdlet, function, script file, or operable +program. Check the spelling of the name, or if a path was included, verify that the path is correct and try again. +At line:1 char:29 ++ Get-Process | Where-Object {.ProcessName -match 'obs|nvidia|shadowpla ... ++ ~~~~~~~~~~~~ + + CategoryInfo : ObjectNotFound: (.ProcessName:String) [], CommandNotFoundException + + FullyQualifiedErrorId : CommandNotFoundException + +.ProcessName : The term '.ProcessName' is not recognized as the name of a cmdlet, function, script file, or operable +program. Check the spelling of the name, or if a path was included, verify that the path is correct and try again. +At line:1 char:29 ++ Get-Process | Where-Object {.ProcessName -match 'obs|nvidia|shadowpla ... ++ ~~~~~~~~~~~~ + + CategoryInfo : ObjectNotFound: (.ProcessName:String) [], CommandNotFoundException + + FullyQualifiedErrorId : CommandNotFoundException + +.ProcessName : The term '.ProcessName' is not recognized as the name of a cmdlet, function, script file, or operable +program. Check the spelling of the name, or if a path was included, verify that the path is correct and try again. +At line:1 char:29 ++ Get-Process | Where-Object {.ProcessName -match 'obs|nvidia|shadowpla ... ++ ~~~~~~~~~~~~ + + CategoryInfo : ObjectNotFound: (.ProcessName:String) [], CommandNotFoundException + + FullyQualifiedErrorId : CommandNotFoundException + +.ProcessName : The term '.ProcessName' is not recognized as the name of a cmdlet, function, script file, or operable +program. Check the spelling of the name, or if a path was included, verify that the path is correct and try again. +At line:1 char:29 ++ Get-Process | Where-Object {.ProcessName -match 'obs|nvidia|shadowpla ... ++ ~~~~~~~~~~~~ + + CategoryInfo : ObjectNotFound: (.ProcessName:String) [], CommandNotFoundException + + FullyQualifiedErrorId : CommandNotFoundException + +.ProcessName : The term '.ProcessName' is not recognized as the name of a cmdlet, function, script file, or operable +program. Check the spelling of the name, or if a path was included, verify that the path is correct and try again. +At line:1 char:29 ++ Get-Process | Where-Object {.ProcessName -match 'obs|nvidia|shadowpla ... ++ ~~~~~~~~~~~~ + + CategoryInfo : ObjectNotFound: (.ProcessName:String) [], CommandNotFoundException + + FullyQualifiedErrorId : CommandNotFoundException + +.ProcessName : The term '.ProcessName' is not recognized as the name of a cmdlet, function, script file, or operable +program. Check the spelling of the name, or if a path was included, verify that the path is correct and try again. +At line:1 char:29 ++ Get-Process | Where-Object {.ProcessName -match 'obs|nvidia|shadowpla ... ++ ~~~~~~~~~~~~ + + CategoryInfo : ObjectNotFound: (.ProcessName:String) [], CommandNotFoundException + + FullyQualifiedErrorId : CommandNotFoundException + +.ProcessName : The term '.ProcessName' is not recognized as the name of a cmdlet, function, script file, or operable +program. Check the spelling of the name, or if a path was included, verify that the path is correct and try again. +At line:1 char:29 ++ Get-Process | Where-Object {.ProcessName -match 'obs|nvidia|shadowpla ... ++ ~~~~~~~~~~~~ + + CategoryInfo : ObjectNotFound: (.ProcessName:String) [], CommandNotFoundException + + FullyQualifiedErrorId : CommandNotFoundException + +.ProcessName : The term '.ProcessName' is not recognized as the name of a cmdlet, function, script file, or operable +program. Check the spelling of the name, or if a path was included, verify that the path is correct and try again. +At line:1 char:29 ++ Get-Process | Where-Object {.ProcessName -match 'obs|nvidia|shadowpla ... ++ ~~~~~~~~~~~~ + + CategoryInfo : ObjectNotFound: (.ProcessName:String) [], CommandNotFoundException + + FullyQualifiedErrorId : CommandNotFoundException + +.ProcessName : The term '.ProcessName' is not recognized as the name of a cmdlet, function, script file, or operable +program. Check the spelling of the name, or if a path was included, verify that the path is correct and try again. +At line:1 char:29 ++ Get-Process | Where-Object {.ProcessName -match 'obs|nvidia|shadowpla ... ++ ~~~~~~~~~~~~ + + CategoryInfo : ObjectNotFound: (.ProcessName:String) [], CommandNotFoundException + + FullyQualifiedErrorId : CommandNotFoundException + +.ProcessName : The term '.ProcessName' is not recognized as the name of a cmdlet, function, script file, or operable +program. Check the spelling of the name, or if a path was included, verify that the path is correct and try again. +At line:1 char:29 ++ Get-Process | Where-Object {.ProcessName -match 'obs|nvidia|shadowpla ... ++ ~~~~~~~~~~~~ + + CategoryInfo : ObjectNotFound: (.ProcessName:String) [], CommandNotFoundException + + FullyQualifiedErrorId : CommandNotFoundException + +.ProcessName : The term '.ProcessName' is not recognized as the name of a cmdlet, function, script file, or operable +program. Check the spelling of the name, or if a path was included, verify that the path is correct and try again. +At line:1 char:29 ++ Get-Process | Where-Object {.ProcessName -match 'obs|nvidia|shadowpla ... ++ ~~~~~~~~~~~~ + + CategoryInfo : ObjectNotFound: (.ProcessName:String) [], CommandNotFoundException + + FullyQualifiedErrorId : CommandNotFoundException + +.ProcessName : The term '.ProcessName' is not recognized as the name of a cmdlet, function, script file, or operable +program. Check the spelling of the name, or if a path was included, verify that the path is correct and try again. +At line:1 char:29 ++ Get-Process | Where-Object {.ProcessName -match 'obs|nvidia|shadowpla ... ++ ~~~~~~~~~~~~ + + CategoryInfo : ObjectNotFound: (.ProcessName:String) [], CommandNotFoundException + + FullyQualifiedErrorId : CommandNotFoundException + +.ProcessName : The term '.ProcessName' is not recognized as the name of a cmdlet, function, script file, or operable +program. Check the spelling of the name, or if a path was included, verify that the path is correct and try again. +At line:1 char:29 ++ Get-Process | Where-Object {.ProcessName -match 'obs|nvidia|shadowpla ... ++ ~~~~~~~~~~~~ + + CategoryInfo : ObjectNotFound: (.ProcessName:String) [], CommandNotFoundException + + FullyQualifiedErrorId : CommandNotFoundException + +.ProcessName : The term '.ProcessName' is not recognized as the name of a cmdlet, function, script file, or operable +program. Check the spelling of the name, or if a path was included, verify that the path is correct and try again. +At line:1 char:29 ++ Get-Process | Where-Object {.ProcessName -match 'obs|nvidia|shadowpla ... ++ ~~~~~~~~~~~~ + + CategoryInfo : ObjectNotFound: (.ProcessName:String) [], CommandNotFoundException + + FullyQualifiedErrorId : CommandNotFoundException + +.ProcessName : The term '.ProcessName' is not recognized as the name of a cmdlet, function, script file, or operable +program. Check the spelling of the name, or if a path was included, verify that the path is correct and try again. +At line:1 char:29 ++ Get-Process | Where-Object {.ProcessName -match 'obs|nvidia|shadowpla ... ++ ~~~~~~~~~~~~ + + CategoryInfo : ObjectNotFound: (.ProcessName:String) [], CommandNotFoundException + + FullyQualifiedErrorId : CommandNotFoundException + +.ProcessName : The term '.ProcessName' is not recognized as the name of a cmdlet, function, script file, or operable +program. Check the spelling of the name, or if a path was included, verify that the path is correct and try again. +At line:1 char:29 ++ Get-Process | Where-Object {.ProcessName -match 'obs|nvidia|shadowpla ... ++ ~~~~~~~~~~~~ + + CategoryInfo : ObjectNotFound: (.ProcessName:String) [], CommandNotFoundException + + FullyQualifiedErrorId : CommandNotFoundException + +.ProcessName : The term '.ProcessName' is not recognized as the name of a cmdlet, function, script file, or operable +program. Check the spelling of the name, or if a path was included, verify that the path is correct and try again. +At line:1 char:29 ++ Get-Process | Where-Object {.ProcessName -match 'obs|nvidia|shadowpla ... ++ ~~~~~~~~~~~~ + + CategoryInfo : ObjectNotFound: (.ProcessName:String) [], CommandNotFoundException + + FullyQualifiedErrorId : CommandNotFoundException + +.ProcessName : The term '.ProcessName' is not recognized as the name of a cmdlet, function, script file, or operable +program. Check the spelling of the name, or if a path was included, verify that the path is correct and try again. +At line:1 char:29 ++ Get-Process | Where-Object {.ProcessName -match 'obs|nvidia|shadowpla ... ++ ~~~~~~~~~~~~ + + CategoryInfo : ObjectNotFound: (.ProcessName:String) [], CommandNotFoundException + + FullyQualifiedErrorId : CommandNotFoundException + +.ProcessName : The term '.ProcessName' is not recognized as the name of a cmdlet, function, script file, or operable +program. Check the spelling of the name, or if a path was included, verify that the path is correct and try again. +At line:1 char:29 ++ Get-Process | Where-Object {.ProcessName -match 'obs|nvidia|shadowpla ... ++ ~~~~~~~~~~~~ + + CategoryInfo : ObjectNotFound: (.ProcessName:String) [], CommandNotFoundException + + FullyQualifiedErrorId : CommandNotFoundException + +.ProcessName : The term '.ProcessName' is not recognized as the name of a cmdlet, function, script file, or operable +program. Check the spelling of the name, or if a path was included, verify that the path is correct and try again. +At line:1 char:29 ++ Get-Process | Where-Object {.ProcessName -match 'obs|nvidia|shadowpla ... ++ ~~~~~~~~~~~~ + + CategoryInfo : ObjectNotFound: (.ProcessName:String) [], CommandNotFoundException + + FullyQualifiedErrorId : CommandNotFoundException + +.ProcessName : The term '.ProcessName' is not recognized as the name of a cmdlet, function, script file, or operable +program. Check the spelling of the name, or if a path was included, verify that the path is correct and try again. +At line:1 char:29 ++ Get-Process | Where-Object {.ProcessName -match 'obs|nvidia|shadowpla ... ++ ~~~~~~~~~~~~ + + CategoryInfo : ObjectNotFound: (.ProcessName:String) [], CommandNotFoundException + + FullyQualifiedErrorId : CommandNotFoundException + +.ProcessName : The term '.ProcessName' is not recognized as the name of a cmdlet, function, script file, or operable +program. Check the spelling of the name, or if a path was included, verify that the path is correct and try again. +At line:1 char:29 ++ Get-Process | Where-Object {.ProcessName -match 'obs|nvidia|shadowpla ... ++ ~~~~~~~~~~~~ + + CategoryInfo : ObjectNotFound: (.ProcessName:String) [], CommandNotFoundException + + FullyQualifiedErrorId : CommandNotFoundException + +.ProcessName : The term '.ProcessName' is not recognized as the name of a cmdlet, function, script file, or operable +program. Check the spelling of the name, or if a path was included, verify that the path is correct and try again. +At line:1 char:29 ++ Get-Process | Where-Object {.ProcessName -match 'obs|nvidia|shadowpla ... ++ ~~~~~~~~~~~~ + + CategoryInfo : ObjectNotFound: (.ProcessName:String) [], CommandNotFoundException + + FullyQualifiedErrorId : CommandNotFoundException + +.ProcessName : The term '.ProcessName' is not recognized as the name of a cmdlet, function, script file, or operable +program. Check the spelling of the name, or if a path was included, verify that the path is correct and try again. +At line:1 char:29 ++ Get-Process | Where-Object {.ProcessName -match 'obs|nvidia|shadowpla ... ++ ~~~~~~~~~~~~ + + CategoryInfo : ObjectNotFound: (.ProcessName:String) [], CommandNotFoundException + + FullyQualifiedErrorId : CommandNotFoundException + +.ProcessName : The term '.ProcessName' is not recognized as the name of a cmdlet, function, script file, or operable +program. Check the spelling of the name, or if a path was included, verify that the path is correct and try again. +At line:1 char:29 ++ Get-Process | Where-Object {.ProcessName -match 'obs|nvidia|shadowpla ... ++ ~~~~~~~~~~~~ + + CategoryInfo : ObjectNotFound: (.ProcessName:String) [], CommandNotFoundException + + FullyQualifiedErrorId : CommandNotFoundException + +.ProcessName : The term '.ProcessName' is not recognized as the name of a cmdlet, function, script file, or operable +program. Check the spelling of the name, or if a path was included, verify that the path is correct and try again. +At line:1 char:29 ++ Get-Process | Where-Object {.ProcessName -match 'obs|nvidia|shadowpla ... ++ ~~~~~~~~~~~~ + + CategoryInfo : ObjectNotFound: (.ProcessName:String) [], CommandNotFoundException + + FullyQualifiedErrorId : CommandNotFoundException + +.ProcessName : The term '.ProcessName' is not recognized as the name of a cmdlet, function, script file, or operable +program. Check the spelling of the name, or if a path was included, verify that the path is correct and try again. +At line:1 char:29 ++ Get-Process | Where-Object {.ProcessName -match 'obs|nvidia|shadowpla ... ++ ~~~~~~~~~~~~ + + CategoryInfo : ObjectNotFound: (.ProcessName:String) [], CommandNotFoundException + + FullyQualifiedErrorId : CommandNotFoundException + +.ProcessName : The term '.ProcessName' is not recognized as the name of a cmdlet, function, script file, or operable +program. Check the spelling of the name, or if a path was included, verify that the path is correct and try again. +At line:1 char:29 ++ Get-Process | Where-Object {.ProcessName -match 'obs|nvidia|shadowpla ... ++ ~~~~~~~~~~~~ + + CategoryInfo : ObjectNotFound: (.ProcessName:String) [], CommandNotFoundException + + FullyQualifiedErrorId : CommandNotFoundException + +.ProcessName : The term '.ProcessName' is not recognized as the name of a cmdlet, function, script file, or operable +program. Check the spelling of the name, or if a path was included, verify that the path is correct and try again. +At line:1 char:29 ++ Get-Process | Where-Object {.ProcessName -match 'obs|nvidia|shadowpla ... ++ ~~~~~~~~~~~~ + + CategoryInfo : ObjectNotFound: (.ProcessName:String) [], CommandNotFoundException + + FullyQualifiedErrorId : CommandNotFoundException + +.ProcessName : The term '.ProcessName' is not recognized as the name of a cmdlet, function, script file, or operable +program. Check the spelling of the name, or if a path was included, verify that the path is correct and try again. +At line:1 char:29 ++ Get-Process | Where-Object {.ProcessName -match 'obs|nvidia|shadowpla ... ++ ~~~~~~~~~~~~ + + CategoryInfo : ObjectNotFound: (.ProcessName:String) [], CommandNotFoundException + + FullyQualifiedErrorId : CommandNotFoundException + +.ProcessName : The term '.ProcessName' is not recognized as the name of a cmdlet, function, script file, or operable +program. Check the spelling of the name, or if a path was included, verify that the path is correct and try again. +At line:1 char:29 ++ Get-Process | Where-Object {.ProcessName -match 'obs|nvidia|shadowpla ... ++ ~~~~~~~~~~~~ + + CategoryInfo : ObjectNotFound: (.ProcessName:String) [], CommandNotFoundException + + FullyQualifiedErrorId : CommandNotFoundException + +.ProcessName : The term '.ProcessName' is not recognized as the name of a cmdlet, function, script file, or operable +program. Check the spelling of the name, or if a path was included, verify that the path is correct and try again. +At line:1 char:29 ++ Get-Process | Where-Object {.ProcessName -match 'obs|nvidia|shadowpla ... ++ ~~~~~~~~~~~~ + + CategoryInfo : ObjectNotFound: (.ProcessName:String) [], CommandNotFoundException + + FullyQualifiedErrorId : CommandNotFoundException + +.ProcessName : The term '.ProcessName' is not recognized as the name of a cmdlet, function, script file, or operable +program. Check the spelling of the name, or if a path was included, verify that the path is correct and try again. +At line:1 char:29 ++ Get-Process | Where-Object {.ProcessName -match 'obs|nvidia|shadowpla ... ++ ~~~~~~~~~~~~ + + CategoryInfo : ObjectNotFound: (.ProcessName:String) [], CommandNotFoundException + + FullyQualifiedErrorId : CommandNotFoundException + +.ProcessName : The term '.ProcessName' is not recognized as the name of a cmdlet, function, script file, or operable +program. Check the spelling of the name, or if a path was included, verify that the path is correct and try again. +At line:1 char:29 ++ Get-Process | Where-Object {.ProcessName -match 'obs|nvidia|shadowpla ... ++ ~~~~~~~~~~~~ + + CategoryInfo : ObjectNotFound: (.ProcessName:String) [], CommandNotFoundException + + FullyQualifiedErrorId : CommandNotFoundException + +.ProcessName : The term '.ProcessName' is not recognized as the name of a cmdlet, function, script file, or operable +program. Check the spelling of the name, or if a path was included, verify that the path is correct and try again. +At line:1 char:29 ++ Get-Process | Where-Object {.ProcessName -match 'obs|nvidia|shadowpla ... ++ ~~~~~~~~~~~~ + + CategoryInfo : ObjectNotFound: (.ProcessName:String) [], CommandNotFoundException + + FullyQualifiedErrorId : CommandNotFoundException + +.ProcessName : The term '.ProcessName' is not recognized as the name of a cmdlet, function, script file, or operable +program. Check the spelling of the name, or if a path was included, verify that the path is correct and try again. +At line:1 char:29 ++ Get-Process | Where-Object {.ProcessName -match 'obs|nvidia|shadowpla ... ++ ~~~~~~~~~~~~ + + CategoryInfo : ObjectNotFound: (.ProcessName:String) [], CommandNotFoundException + + FullyQualifiedErrorId : CommandNotFoundException + +.ProcessName : The term '.ProcessName' is not recognized as the name of a cmdlet, function, script file, or operable +program. Check the spelling of the name, or if a path was included, verify that the path is correct and try again. +At line:1 char:29 ++ Get-Process | Where-Object {.ProcessName -match 'obs|nvidia|shadowpla ... ++ ~~~~~~~~~~~~ + + CategoryInfo : ObjectNotFound: (.ProcessName:String) [], CommandNotFoundException + + FullyQualifiedErrorId : CommandNotFoundException + +.ProcessName : The term '.ProcessName' is not recognized as the name of a cmdlet, function, script file, or operable +program. Check the spelling of the name, or if a path was included, verify that the path is correct and try again. +At line:1 char:29 ++ Get-Process | Where-Object {.ProcessName -match 'obs|nvidia|shadowpla ... ++ ~~~~~~~~~~~~ + + CategoryInfo : ObjectNotFound: (.ProcessName:String) [], CommandNotFoundException + + FullyQualifiedErrorId : CommandNotFoundException + +.ProcessName : The term '.ProcessName' is not recognized as the name of a cmdlet, function, script file, or operable +program. Check the spelling of the name, or if a path was included, verify that the path is correct and try again. +At line:1 char:29 ++ Get-Process | Where-Object {.ProcessName -match 'obs|nvidia|shadowpla ... ++ ~~~~~~~~~~~~ + + CategoryInfo : ObjectNotFound: (.ProcessName:String) [], CommandNotFoundException + + FullyQualifiedErrorId : CommandNotFoundException + +.ProcessName : The term '.ProcessName' is not recognized as the name of a cmdlet, function, script file, or operable +program. Check the spelling of the name, or if a path was included, verify that the path is correct and try again. +At line:1 char:29 ++ Get-Process | Where-Object {.ProcessName -match 'obs|nvidia|shadowpla ... ++ ~~~~~~~~~~~~ + + CategoryInfo : ObjectNotFound: (.ProcessName:String) [], CommandNotFoundException + + FullyQualifiedErrorId : CommandNotFoundException + +.ProcessName : The term '.ProcessName' is not recognized as the name of a cmdlet, function, script file, or operable +program. Check the spelling of the name, or if a path was included, verify that the path is correct and try again. +At line:1 char:29 ++ Get-Process | Where-Object {.ProcessName -match 'obs|nvidia|shadowpla ... ++ ~~~~~~~~~~~~ + + CategoryInfo : ObjectNotFound: (.ProcessName:String) [], CommandNotFoundException + + FullyQualifiedErrorId : CommandNotFoundException + +.ProcessName : The term '.ProcessName' is not recognized as the name of a cmdlet, function, script file, or operable +program. Check the spelling of the name, or if a path was included, verify that the path is correct and try again. +At line:1 char:29 ++ Get-Process | Where-Object {.ProcessName -match 'obs|nvidia|shadowpla ... ++ ~~~~~~~~~~~~ + + CategoryInfo : ObjectNotFound: (.ProcessName:String) [], CommandNotFoundException + + FullyQualifiedErrorId : CommandNotFoundException + +.ProcessName : The term '.ProcessName' is not recognized as the name of a cmdlet, function, script file, or operable +program. Check the spelling of the name, or if a path was included, verify that the path is correct and try again. +At line:1 char:29 ++ Get-Process | Where-Object {.ProcessName -match 'obs|nvidia|shadowpla ... ++ ~~~~~~~~~~~~ + + CategoryInfo : ObjectNotFound: (.ProcessName:String) [], CommandNotFoundException + + FullyQualifiedErrorId : CommandNotFoundException + +.ProcessName : The term '.ProcessName' is not recognized as the name of a cmdlet, function, script file, or operable +program. Check the spelling of the name, or if a path was included, verify that the path is correct and try again. +At line:1 char:29 ++ Get-Process | Where-Object {.ProcessName -match 'obs|nvidia|shadowpla ... ++ ~~~~~~~~~~~~ + + CategoryInfo : ObjectNotFound: (.ProcessName:String) [], CommandNotFoundException + + FullyQualifiedErrorId : CommandNotFoundException + +.ProcessName : The term '.ProcessName' is not recognized as the name of a cmdlet, function, script file, or operable +program. Check the spelling of the name, or if a path was included, verify that the path is correct and try again. +At line:1 char:29 ++ Get-Process | Where-Object {.ProcessName -match 'obs|nvidia|shadowpla ... ++ ~~~~~~~~~~~~ + + CategoryInfo : ObjectNotFound: (.ProcessName:String) [], CommandNotFoundException + + FullyQualifiedErrorId : CommandNotFoundException + +.ProcessName : The term '.ProcessName' is not recognized as the name of a cmdlet, function, script file, or operable +program. Check the spelling of the name, or if a path was included, verify that the path is correct and try again. +At line:1 char:29 ++ Get-Process | Where-Object {.ProcessName -match 'obs|nvidia|shadowpla ... ++ ~~~~~~~~~~~~ + + CategoryInfo : ObjectNotFound: (.ProcessName:String) [], CommandNotFoundException + + FullyQualifiedErrorId : CommandNotFoundException + +.ProcessName : The term '.ProcessName' is not recognized as the name of a cmdlet, function, script file, or operable +program. Check the spelling of the name, or if a path was included, verify that the path is correct and try again. +At line:1 char:29 ++ Get-Process | Where-Object {.ProcessName -match 'obs|nvidia|shadowpla ... ++ ~~~~~~~~~~~~ + + CategoryInfo : ObjectNotFound: (.ProcessName:String) [], CommandNotFoundException + + FullyQualifiedErrorId : CommandNotFoundException + +.ProcessName : The term '.ProcessName' is not recognized as the name of a cmdlet, function, script file, or operable +program. Check the spelling of the name, or if a path was included, verify that the path is correct and try again. +At line:1 char:29 ++ Get-Process | Where-Object {.ProcessName -match 'obs|nvidia|shadowpla ... ++ ~~~~~~~~~~~~ + + CategoryInfo : ObjectNotFound: (.ProcessName:String) [], CommandNotFoundException + + FullyQualifiedErrorId : CommandNotFoundException + +.ProcessName : The term '.ProcessName' is not recognized as the name of a cmdlet, function, script file, or operable +program. Check the spelling of the name, or if a path was included, verify that the path is correct and try again. +At line:1 char:29 ++ Get-Process | Where-Object {.ProcessName -match 'obs|nvidia|shadowpla ... ++ ~~~~~~~~~~~~ + + CategoryInfo : ObjectNotFound: (.ProcessName:String) [], CommandNotFoundException + + FullyQualifiedErrorId : CommandNotFoundException + +.ProcessName : The term '.ProcessName' is not recognized as the name of a cmdlet, function, script file, or operable +program. Check the spelling of the name, or if a path was included, verify that the path is correct and try again. +At line:1 char:29 ++ Get-Process | Where-Object {.ProcessName -match 'obs|nvidia|shadowpla ... ++ ~~~~~~~~~~~~ + + CategoryInfo : ObjectNotFound: (.ProcessName:String) [], CommandNotFoundException + + FullyQualifiedErrorId : CommandNotFoundException + +.ProcessName : The term '.ProcessName' is not recognized as the name of a cmdlet, function, script file, or operable +program. Check the spelling of the name, or if a path was included, verify that the path is correct and try again. +At line:1 char:29 ++ Get-Process | Where-Object {.ProcessName -match 'obs|nvidia|shadowpla ... ++ ~~~~~~~~~~~~ + + CategoryInfo : ObjectNotFound: (.ProcessName:String) [], CommandNotFoundException + + FullyQualifiedErrorId : CommandNotFoundException + +.ProcessName : The term '.ProcessName' is not recognized as the name of a cmdlet, function, script file, or operable +program. Check the spelling of the name, or if a path was included, verify that the path is correct and try again. +At line:1 char:29 ++ Get-Process | Where-Object {.ProcessName -match 'obs|nvidia|shadowpla ... ++ ~~~~~~~~~~~~ + + CategoryInfo : ObjectNotFound: (.ProcessName:String) [], CommandNotFoundException + + FullyQualifiedErrorId : CommandNotFoundException + +.ProcessName : The term '.ProcessName' is not recognized as the name of a cmdlet, function, script file, or operable +program. Check the spelling of the name, or if a path was included, verify that the path is correct and try again. +At line:1 char:29 ++ Get-Process | Where-Object {.ProcessName -match 'obs|nvidia|shadowpla ... ++ ~~~~~~~~~~~~ + + CategoryInfo : ObjectNotFound: (.ProcessName:String) [], CommandNotFoundException + + FullyQualifiedErrorId : CommandNotFoundException + +.ProcessName : The term '.ProcessName' is not recognized as the name of a cmdlet, function, script file, or operable +program. Check the spelling of the name, or if a path was included, verify that the path is correct and try again. +At line:1 char:29 ++ Get-Process | Where-Object {.ProcessName -match 'obs|nvidia|shadowpla ... ++ ~~~~~~~~~~~~ + + CategoryInfo : ObjectNotFound: (.ProcessName:String) [], CommandNotFoundException + + FullyQualifiedErrorId : CommandNotFoundException + +.ProcessName : The term '.ProcessName' is not recognized as the name of a cmdlet, function, script file, or operable +program. Check the spelling of the name, or if a path was included, verify that the path is correct and try again. +At line:1 char:29 ++ Get-Process | Where-Object {.ProcessName -match 'obs|nvidia|shadowpla ... ++ ~~~~~~~~~~~~ + + CategoryInfo : ObjectNotFound: (.ProcessName:String) [], CommandNotFoundException + + FullyQualifiedErrorId : CommandNotFoundException + +.ProcessName : The term '.ProcessName' is not recognized as the name of a cmdlet, function, script file, or operable +program. Check the spelling of the name, or if a path was included, verify that the path is correct and try again. +At line:1 char:29 ++ Get-Process | Where-Object {.ProcessName -match 'obs|nvidia|shadowpla ... ++ ~~~~~~~~~~~~ + + CategoryInfo : ObjectNotFound: (.ProcessName:String) [], CommandNotFoundException + + FullyQualifiedErrorId : CommandNotFoundException + +.ProcessName : The term '.ProcessName' is not recognized as the name of a cmdlet, function, script file, or operable +program. Check the spelling of the name, or if a path was included, verify that the path is correct and try again. +At line:1 char:29 ++ Get-Process | Where-Object {.ProcessName -match 'obs|nvidia|shadowpla ... ++ ~~~~~~~~~~~~ + + CategoryInfo : ObjectNotFound: (.ProcessName:String) [], CommandNotFoundException + + FullyQualifiedErrorId : CommandNotFoundException + +.ProcessName : The term '.ProcessName' is not recognized as the name of a cmdlet, function, script file, or operable +program. Check the spelling of the name, or if a path was included, verify that the path is correct and try again. +At line:1 char:29 ++ Get-Process | Where-Object {.ProcessName -match 'obs|nvidia|shadowpla ... ++ ~~~~~~~~~~~~ + + CategoryInfo : ObjectNotFound: (.ProcessName:String) [], CommandNotFoundException + + FullyQualifiedErrorId : CommandNotFoundException + +.ProcessName : The term '.ProcessName' is not recognized as the name of a cmdlet, function, script file, or operable +program. Check the spelling of the name, or if a path was included, verify that the path is correct and try again. +At line:1 char:29 ++ Get-Process | Where-Object {.ProcessName -match 'obs|nvidia|shadowpla ... ++ ~~~~~~~~~~~~ + + CategoryInfo : ObjectNotFound: (.ProcessName:String) [], CommandNotFoundException + + FullyQualifiedErrorId : CommandNotFoundException + +.ProcessName : The term '.ProcessName' is not recognized as the name of a cmdlet, function, script file, or operable +program. Check the spelling of the name, or if a path was included, verify that the path is correct and try again. +At line:1 char:29 ++ Get-Process | Where-Object {.ProcessName -match 'obs|nvidia|shadowpla ... ++ ~~~~~~~~~~~~ + + CategoryInfo : ObjectNotFound: (.ProcessName:String) [], CommandNotFoundException + + FullyQualifiedErrorId : CommandNotFoundException + +.ProcessName : The term '.ProcessName' is not recognized as the name of a cmdlet, function, script file, or operable +program. Check the spelling of the name, or if a path was included, verify that the path is correct and try again. +At line:1 char:29 ++ Get-Process | Where-Object {.ProcessName -match 'obs|nvidia|shadowpla ... ++ ~~~~~~~~~~~~ + + CategoryInfo : ObjectNotFound: (.ProcessName:String) [], CommandNotFoundException + + FullyQualifiedErrorId : CommandNotFoundException + +.ProcessName : The term '.ProcessName' is not recognized as the name of a cmdlet, function, script file, or operable +program. Check the spelling of the name, or if a path was included, verify that the path is correct and try again. +At line:1 char:29 ++ Get-Process | Where-Object {.ProcessName -match 'obs|nvidia|shadowpla ... ++ ~~~~~~~~~~~~ + + CategoryInfo : ObjectNotFound: (.ProcessName:String) [], CommandNotFoundException + + FullyQualifiedErrorId : CommandNotFoundException + +.ProcessName : The term '.ProcessName' is not recognized as the name of a cmdlet, function, script file, or operable +program. Check the spelling of the name, or if a path was included, verify that the path is correct and try again. +At line:1 char:29 ++ Get-Process | Where-Object {.ProcessName -match 'obs|nvidia|shadowpla ... ++ ~~~~~~~~~~~~ + + CategoryInfo : ObjectNotFound: (.ProcessName:String) [], CommandNotFoundException + + FullyQualifiedErrorId : CommandNotFoundException + +.ProcessName : The term '.ProcessName' is not recognized as the name of a cmdlet, function, script file, or operable +program. Check the spelling of the name, or if a path was included, verify that the path is correct and try again. +At line:1 char:29 ++ Get-Process | Where-Object {.ProcessName -match 'obs|nvidia|shadowpla ... ++ ~~~~~~~~~~~~ + + CategoryInfo : ObjectNotFound: (.ProcessName:String) [], CommandNotFoundException + + FullyQualifiedErrorId : CommandNotFoundException + +.ProcessName : The term '.ProcessName' is not recognized as the name of a cmdlet, function, script file, or operable +program. Check the spelling of the name, or if a path was included, verify that the path is correct and try again. +At line:1 char:29 ++ Get-Process | Where-Object {.ProcessName -match 'obs|nvidia|shadowpla ... ++ ~~~~~~~~~~~~ + + CategoryInfo : ObjectNotFound: (.ProcessName:String) [], CommandNotFoundException + + FullyQualifiedErrorId : CommandNotFoundException + +.ProcessName : The term '.ProcessName' is not recognized as the name of a cmdlet, function, script file, or operable +program. Check the spelling of the name, or if a path was included, verify that the path is correct and try again. +At line:1 char:29 ++ Get-Process | Where-Object {.ProcessName -match 'obs|nvidia|shadowpla ... ++ ~~~~~~~~~~~~ + + CategoryInfo : ObjectNotFound: (.ProcessName:String) [], CommandNotFoundException + + FullyQualifiedErrorId : CommandNotFoundException + +.ProcessName : The term '.ProcessName' is not recognized as the name of a cmdlet, function, script file, or operable +program. Check the spelling of the name, or if a path was included, verify that the path is correct and try again. +At line:1 char:29 ++ Get-Process | Where-Object {.ProcessName -match 'obs|nvidia|shadowpla ... ++ ~~~~~~~~~~~~ + + CategoryInfo : ObjectNotFound: (.ProcessName:String) [], CommandNotFoundException + + FullyQualifiedErrorId : CommandNotFoundException + +.ProcessName : The term '.ProcessName' is not recognized as the name of a cmdlet, function, script file, or operable +program. Check the spelling of the name, or if a path was included, verify that the path is correct and try again. +At line:1 char:29 ++ Get-Process | Where-Object {.ProcessName -match 'obs|nvidia|shadowpla ... ++ ~~~~~~~~~~~~ + + CategoryInfo : ObjectNotFound: (.ProcessName:String) [], CommandNotFoundException + + FullyQualifiedErrorId : CommandNotFoundException + +.ProcessName : The term '.ProcessName' is not recognized as the name of a cmdlet, function, script file, or operable +program. Check the spelling of the name, or if a path was included, verify that the path is correct and try again. +At line:1 char:29 ++ Get-Process | Where-Object {.ProcessName -match 'obs|nvidia|shadowpla ... ++ ~~~~~~~~~~~~ + + CategoryInfo : ObjectNotFound: (.ProcessName:String) [], CommandNotFoundException + + FullyQualifiedErrorId : CommandNotFoundException + +.ProcessName : The term '.ProcessName' is not recognized as the name of a cmdlet, function, script file, or operable +program. Check the spelling of the name, or if a path was included, verify that the path is correct and try again. +At line:1 char:29 ++ Get-Process | Where-Object {.ProcessName -match 'obs|nvidia|shadowpla ... ++ ~~~~~~~~~~~~ + + CategoryInfo : ObjectNotFound: (.ProcessName:String) [], CommandNotFoundException + + FullyQualifiedErrorId : CommandNotFoundException + +.ProcessName : The term '.ProcessName' is not recognized as the name of a cmdlet, function, script file, or operable +program. Check the spelling of the name, or if a path was included, verify that the path is correct and try again. +At line:1 char:29 ++ Get-Process | Where-Object {.ProcessName -match 'obs|nvidia|shadowpla ... ++ ~~~~~~~~~~~~ + + CategoryInfo : ObjectNotFound: (.ProcessName:String) [], CommandNotFoundException + + FullyQualifiedErrorId : CommandNotFoundException + +.ProcessName : The term '.ProcessName' is not recognized as the name of a cmdlet, function, script file, or operable +program. Check the spelling of the name, or if a path was included, verify that the path is correct and try again. +At line:1 char:29 ++ Get-Process | Where-Object {.ProcessName -match 'obs|nvidia|shadowpla ... ++ ~~~~~~~~~~~~ + + CategoryInfo : ObjectNotFound: (.ProcessName:String) [], CommandNotFoundException + + FullyQualifiedErrorId : CommandNotFoundException + +.ProcessName : The term '.ProcessName' is not recognized as the name of a cmdlet, function, script file, or operable +program. Check the spelling of the name, or if a path was included, verify that the path is correct and try again. +At line:1 char:29 ++ Get-Process | Where-Object {.ProcessName -match 'obs|nvidia|shadowpla ... ++ ~~~~~~~~~~~~ + + CategoryInfo : ObjectNotFound: (.ProcessName:String) [], CommandNotFoundException + + FullyQualifiedErrorId : CommandNotFoundException + +.ProcessName : The term '.ProcessName' is not recognized as the name of a cmdlet, function, script file, or operable +program. Check the spelling of the name, or if a path was included, verify that the path is correct and try again. +At line:1 char:29 ++ Get-Process | Where-Object {.ProcessName -match 'obs|nvidia|shadowpla ... ++ ~~~~~~~~~~~~ + + CategoryInfo : ObjectNotFound: (.ProcessName:String) [], CommandNotFoundException + + FullyQualifiedErrorId : CommandNotFoundException + +.ProcessName : The term '.ProcessName' is not recognized as the name of a cmdlet, function, script file, or operable +program. Check the spelling of the name, or if a path was included, verify that the path is correct and try again. +At line:1 char:29 ++ Get-Process | Where-Object {.ProcessName -match 'obs|nvidia|shadowpla ... ++ ~~~~~~~~~~~~ + + CategoryInfo : ObjectNotFound: (.ProcessName:String) [], CommandNotFoundException + + FullyQualifiedErrorId : CommandNotFoundException + +.ProcessName : The term '.ProcessName' is not recognized as the name of a cmdlet, function, script file, or operable +program. Check the spelling of the name, or if a path was included, verify that the path is correct and try again. +At line:1 char:29 ++ Get-Process | Where-Object {.ProcessName -match 'obs|nvidia|shadowpla ... ++ ~~~~~~~~~~~~ + + CategoryInfo : ObjectNotFound: (.ProcessName:String) [], CommandNotFoundException + + FullyQualifiedErrorId : CommandNotFoundException + +.ProcessName : The term '.ProcessName' is not recognized as the name of a cmdlet, function, script file, or operable +program. Check the spelling of the name, or if a path was included, verify that the path is correct and try again. +At line:1 char:29 ++ Get-Process | Where-Object {.ProcessName -match 'obs|nvidia|shadowpla ... ++ ~~~~~~~~~~~~ + + CategoryInfo : ObjectNotFound: (.ProcessName:String) [], CommandNotFoundException + + FullyQualifiedErrorId : CommandNotFoundException + +.ProcessName : The term '.ProcessName' is not recognized as the name of a cmdlet, function, script file, or operable +program. Check the spelling of the name, or if a path was included, verify that the path is correct and try again. +At line:1 char:29 ++ Get-Process | Where-Object {.ProcessName -match 'obs|nvidia|shadowpla ... ++ ~~~~~~~~~~~~ + + CategoryInfo : ObjectNotFound: (.ProcessName:String) [], CommandNotFoundException + + FullyQualifiedErrorId : CommandNotFoundException + +.ProcessName : The term '.ProcessName' is not recognized as the name of a cmdlet, function, script file, or operable +program. Check the spelling of the name, or if a path was included, verify that the path is correct and try again. +At line:1 char:29 ++ Get-Process | Where-Object {.ProcessName -match 'obs|nvidia|shadowpla ... ++ ~~~~~~~~~~~~ + + CategoryInfo : ObjectNotFound: (.ProcessName:String) [], CommandNotFoundException + + FullyQualifiedErrorId : CommandNotFoundException + +.ProcessName : The term '.ProcessName' is not recognized as the name of a cmdlet, function, script file, or operable +program. Check the spelling of the name, or if a path was included, verify that the path is correct and try again. +At line:1 char:29 ++ Get-Process | Where-Object {.ProcessName -match 'obs|nvidia|shadowpla ... ++ ~~~~~~~~~~~~ + + CategoryInfo : ObjectNotFound: (.ProcessName:String) [], CommandNotFoundException + + FullyQualifiedErrorId : CommandNotFoundException + +.ProcessName : The term '.ProcessName' is not recognized as the name of a cmdlet, function, script file, or operable +program. Check the spelling of the name, or if a path was included, verify that the path is correct and try again. +At line:1 char:29 ++ Get-Process | Where-Object {.ProcessName -match 'obs|nvidia|shadowpla ... ++ ~~~~~~~~~~~~ + + CategoryInfo : ObjectNotFound: (.ProcessName:String) [], CommandNotFoundException + + FullyQualifiedErrorId : CommandNotFoundException + +.ProcessName : The term '.ProcessName' is not recognized as the name of a cmdlet, function, script file, or operable +program. Check the spelling of the name, or if a path was included, verify that the path is correct and try again. +At line:1 char:29 ++ Get-Process | Where-Object {.ProcessName -match 'obs|nvidia|shadowpla ... ++ ~~~~~~~~~~~~ + + CategoryInfo : ObjectNotFound: (.ProcessName:String) [], CommandNotFoundException + + FullyQualifiedErrorId : CommandNotFoundException + +.ProcessName : The term '.ProcessName' is not recognized as the name of a cmdlet, function, script file, or operable +program. Check the spelling of the name, or if a path was included, verify that the path is correct and try again. +At line:1 char:29 ++ Get-Process | Where-Object {.ProcessName -match 'obs|nvidia|shadowpla ... ++ ~~~~~~~~~~~~ + + CategoryInfo : ObjectNotFound: (.ProcessName:String) [], CommandNotFoundException + + FullyQualifiedErrorId : CommandNotFoundException + +.ProcessName : The term '.ProcessName' is not recognized as the name of a cmdlet, function, script file, or operable +program. Check the spelling of the name, or if a path was included, verify that the path is correct and try again. +At line:1 char:29 ++ Get-Process | Where-Object {.ProcessName -match 'obs|nvidia|shadowpla ... ++ ~~~~~~~~~~~~ + + CategoryInfo : ObjectNotFound: (.ProcessName:String) [], CommandNotFoundException + + FullyQualifiedErrorId : CommandNotFoundException + +.ProcessName : The term '.ProcessName' is not recognized as the name of a cmdlet, function, script file, or operable +program. Check the spelling of the name, or if a path was included, verify that the path is correct and try again. +At line:1 char:29 ++ Get-Process | Where-Object {.ProcessName -match 'obs|nvidia|shadowpla ... ++ ~~~~~~~~~~~~ + + CategoryInfo : ObjectNotFound: (.ProcessName:String) [], CommandNotFoundException + + FullyQualifiedErrorId : CommandNotFoundException + +.ProcessName : The term '.ProcessName' is not recognized as the name of a cmdlet, function, script file, or operable +program. Check the spelling of the name, or if a path was included, verify that the path is correct and try again. +At line:1 char:29 ++ Get-Process | Where-Object {.ProcessName -match 'obs|nvidia|shadowpla ... ++ ~~~~~~~~~~~~ + + CategoryInfo : ObjectNotFound: (.ProcessName:String) [], CommandNotFoundException + + FullyQualifiedErrorId : CommandNotFoundException + +.ProcessName : The term '.ProcessName' is not recognized as the name of a cmdlet, function, script file, or operable +program. Check the spelling of the name, or if a path was included, verify that the path is correct and try again. +At line:1 char:29 ++ Get-Process | Where-Object {.ProcessName -match 'obs|nvidia|shadowpla ... ++ ~~~~~~~~~~~~ + + CategoryInfo : ObjectNotFound: (.ProcessName:String) [], CommandNotFoundException + + FullyQualifiedErrorId : CommandNotFoundException + +.ProcessName : The term '.ProcessName' is not recognized as the name of a cmdlet, function, script file, or operable +program. Check the spelling of the name, or if a path was included, verify that the path is correct and try again. +At line:1 char:29 ++ Get-Process | Where-Object {.ProcessName -match 'obs|nvidia|shadowpla ... ++ ~~~~~~~~~~~~ + + CategoryInfo : ObjectNotFound: (.ProcessName:String) [], CommandNotFoundException + + FullyQualifiedErrorId : CommandNotFoundException + +.ProcessName : The term '.ProcessName' is not recognized as the name of a cmdlet, function, script file, or operable +program. Check the spelling of the name, or if a path was included, verify that the path is correct and try again. +At line:1 char:29 ++ Get-Process | Where-Object {.ProcessName -match 'obs|nvidia|shadowpla ... ++ ~~~~~~~~~~~~ + + CategoryInfo : ObjectNotFound: (.ProcessName:String) [], CommandNotFoundException + + FullyQualifiedErrorId : CommandNotFoundException + +.ProcessName : The term '.ProcessName' is not recognized as the name of a cmdlet, function, script file, or operable +program. Check the spelling of the name, or if a path was included, verify that the path is correct and try again. +At line:1 char:29 ++ Get-Process | Where-Object {.ProcessName -match 'obs|nvidia|shadowpla ... ++ ~~~~~~~~~~~~ + + CategoryInfo : ObjectNotFound: (.ProcessName:String) [], CommandNotFoundException + + FullyQualifiedErrorId : CommandNotFoundException + +.ProcessName : The term '.ProcessName' is not recognized as the name of a cmdlet, function, script file, or operable +program. Check the spelling of the name, or if a path was included, verify that the path is correct and try again. +At line:1 char:29 ++ Get-Process | Where-Object {.ProcessName -match 'obs|nvidia|shadowpla ... ++ ~~~~~~~~~~~~ + + CategoryInfo : ObjectNotFound: (.ProcessName:String) [], CommandNotFoundException + + FullyQualifiedErrorId : CommandNotFoundException + +.ProcessName : The term '.ProcessName' is not recognized as the name of a cmdlet, function, script file, or operable +program. Check the spelling of the name, or if a path was included, verify that the path is correct and try again. +At line:1 char:29 ++ Get-Process | Where-Object {.ProcessName -match 'obs|nvidia|shadowpla ... ++ ~~~~~~~~~~~~ + + CategoryInfo : ObjectNotFound: (.ProcessName:String) [], CommandNotFoundException + + FullyQualifiedErrorId : CommandNotFoundException + +.ProcessName : The term '.ProcessName' is not recognized as the name of a cmdlet, function, script file, or operable +program. Check the spelling of the name, or if a path was included, verify that the path is correct and try again. +At line:1 char:29 ++ Get-Process | Where-Object {.ProcessName -match 'obs|nvidia|shadowpla ... ++ ~~~~~~~~~~~~ + + CategoryInfo : ObjectNotFound: (.ProcessName:String) [], CommandNotFoundException + + FullyQualifiedErrorId : CommandNotFoundException + +.ProcessName : The term '.ProcessName' is not recognized as the name of a cmdlet, function, script file, or operable +program. Check the spelling of the name, or if a path was included, verify that the path is correct and try again. +At line:1 char:29 ++ Get-Process | Where-Object {.ProcessName -match 'obs|nvidia|shadowpla ... ++ ~~~~~~~~~~~~ + + CategoryInfo : ObjectNotFound: (.ProcessName:String) [], CommandNotFoundException + + FullyQualifiedErrorId : CommandNotFoundException + +.ProcessName : The term '.ProcessName' is not recognized as the name of a cmdlet, function, script file, or operable +program. Check the spelling of the name, or if a path was included, verify that the path is correct and try again. +At line:1 char:29 ++ Get-Process | Where-Object {.ProcessName -match 'obs|nvidia|shadowpla ... ++ ~~~~~~~~~~~~ + + CategoryInfo : ObjectNotFound: (.ProcessName:String) [], CommandNotFoundException + + FullyQualifiedErrorId : CommandNotFoundException + +.ProcessName : The term '.ProcessName' is not recognized as the name of a cmdlet, function, script file, or operable +program. Check the spelling of the name, or if a path was included, verify that the path is correct and try again. +At line:1 char:29 ++ Get-Process | Where-Object {.ProcessName -match 'obs|nvidia|shadowpla ... ++ ~~~~~~~~~~~~ + + CategoryInfo : ObjectNotFound: (.ProcessName:String) [], CommandNotFoundException + + FullyQualifiedErrorId : CommandNotFoundException + +.ProcessName : The term '.ProcessName' is not recognized as the name of a cmdlet, function, script file, or operable +program. Check the spelling of the name, or if a path was included, verify that the path is correct and try again. +At line:1 char:29 ++ Get-Process | Where-Object {.ProcessName -match 'obs|nvidia|shadowpla ... ++ ~~~~~~~~~~~~ + + CategoryInfo : ObjectNotFound: (.ProcessName:String) [], CommandNotFoundException + + FullyQualifiedErrorId : CommandNotFoundException + +.ProcessName : The term '.ProcessName' is not recognized as the name of a cmdlet, function, script file, or operable +program. Check the spelling of the name, or if a path was included, verify that the path is correct and try again. +At line:1 char:29 ++ Get-Process | Where-Object {.ProcessName -match 'obs|nvidia|shadowpla ... ++ ~~~~~~~~~~~~ + + CategoryInfo : ObjectNotFound: (.ProcessName:String) [], CommandNotFoundException + + FullyQualifiedErrorId : CommandNotFoundException + +.ProcessName : The term '.ProcessName' is not recognized as the name of a cmdlet, function, script file, or operable +program. Check the spelling of the name, or if a path was included, verify that the path is correct and try again. +At line:1 char:29 ++ Get-Process | Where-Object {.ProcessName -match 'obs|nvidia|shadowpla ... ++ ~~~~~~~~~~~~ + + CategoryInfo : ObjectNotFound: (.ProcessName:String) [], CommandNotFoundException + + FullyQualifiedErrorId : CommandNotFoundException + +.ProcessName : The term '.ProcessName' is not recognized as the name of a cmdlet, function, script file, or operable +program. Check the spelling of the name, or if a path was included, verify that the path is correct and try again. +At line:1 char:29 ++ Get-Process | Where-Object {.ProcessName -match 'obs|nvidia|shadowpla ... ++ ~~~~~~~~~~~~ + + CategoryInfo : ObjectNotFound: (.ProcessName:String) [], CommandNotFoundException + + FullyQualifiedErrorId : CommandNotFoundException + +.ProcessName : The term '.ProcessName' is not recognized as the name of a cmdlet, function, script file, or operable +program. Check the spelling of the name, or if a path was included, verify that the path is correct and try again. +At line:1 char:29 ++ Get-Process | Where-Object {.ProcessName -match 'obs|nvidia|shadowpla ... ++ ~~~~~~~~~~~~ + + CategoryInfo : ObjectNotFound: (.ProcessName:String) [], CommandNotFoundException + + FullyQualifiedErrorId : CommandNotFoundException + +.ProcessName : The term '.ProcessName' is not recognized as the name of a cmdlet, function, script file, or operable +program. Check the spelling of the name, or if a path was included, verify that the path is correct and try again. +At line:1 char:29 ++ Get-Process | Where-Object {.ProcessName -match 'obs|nvidia|shadowpla ... ++ ~~~~~~~~~~~~ + + CategoryInfo : ObjectNotFound: (.ProcessName:String) [], CommandNotFoundException + + FullyQualifiedErrorId : CommandNotFoundException + +.ProcessName : The term '.ProcessName' is not recognized as the name of a cmdlet, function, script file, or operable +program. Check the spelling of the name, or if a path was included, verify that the path is correct and try again. +At line:1 char:29 ++ Get-Process | Where-Object {.ProcessName -match 'obs|nvidia|shadowpla ... ++ ~~~~~~~~~~~~ + + CategoryInfo : ObjectNotFound: (.ProcessName:String) [], CommandNotFoundException + + FullyQualifiedErrorId : CommandNotFoundException + +.ProcessName : The term '.ProcessName' is not recognized as the name of a cmdlet, function, script file, or operable +program. Check the spelling of the name, or if a path was included, verify that the path is correct and try again. +At line:1 char:29 ++ Get-Process | Where-Object {.ProcessName -match 'obs|nvidia|shadowpla ... ++ ~~~~~~~~~~~~ + + CategoryInfo : ObjectNotFound: (.ProcessName:String) [], CommandNotFoundException + + FullyQualifiedErrorId : CommandNotFoundException + +.ProcessName : The term '.ProcessName' is not recognized as the name of a cmdlet, function, script file, or operable +program. Check the spelling of the name, or if a path was included, verify that the path is correct and try again. +At line:1 char:29 ++ Get-Process | Where-Object {.ProcessName -match 'obs|nvidia|shadowpla ... ++ ~~~~~~~~~~~~ + + CategoryInfo : ObjectNotFound: (.ProcessName:String) [], CommandNotFoundException + + FullyQualifiedErrorId : CommandNotFoundException + +.ProcessName : The term '.ProcessName' is not recognized as the name of a cmdlet, function, script file, or operable +program. Check the spelling of the name, or if a path was included, verify that the path is correct and try again. +At line:1 char:29 ++ Get-Process | Where-Object {.ProcessName -match 'obs|nvidia|shadowpla ... ++ ~~~~~~~~~~~~ + + CategoryInfo : ObjectNotFound: (.ProcessName:String) [], CommandNotFoundException + + FullyQualifiedErrorId : CommandNotFoundException + +.ProcessName : The term '.ProcessName' is not recognized as the name of a cmdlet, function, script file, or operable +program. Check the spelling of the name, or if a path was included, verify that the path is correct and try again. +At line:1 char:29 ++ Get-Process | Where-Object {.ProcessName -match 'obs|nvidia|shadowpla ... ++ ~~~~~~~~~~~~ + + CategoryInfo : ObjectNotFound: (.ProcessName:String) [], CommandNotFoundException + + FullyQualifiedErrorId : CommandNotFoundException + +.ProcessName : The term '.ProcessName' is not recognized as the name of a cmdlet, function, script file, or operable +program. Check the spelling of the name, or if a path was included, verify that the path is correct and try again. +At line:1 char:29 ++ Get-Process | Where-Object {.ProcessName -match 'obs|nvidia|shadowpla ... ++ ~~~~~~~~~~~~ + + CategoryInfo : ObjectNotFound: (.ProcessName:String) [], CommandNotFoundException + + FullyQualifiedErrorId : CommandNotFoundException + +.ProcessName : The term '.ProcessName' is not recognized as the name of a cmdlet, function, script file, or operable +program. Check the spelling of the name, or if a path was included, verify that the path is correct and try again. +At line:1 char:29 ++ Get-Process | Where-Object {.ProcessName -match 'obs|nvidia|shadowpla ... ++ ~~~~~~~~~~~~ + + CategoryInfo : ObjectNotFound: (.ProcessName:String) [], CommandNotFoundException + + FullyQualifiedErrorId : CommandNotFoundException + +.ProcessName : The term '.ProcessName' is not recognized as the name of a cmdlet, function, script file, or operable +program. Check the spelling of the name, or if a path was included, verify that the path is correct and try again. +At line:1 char:29 ++ Get-Process | Where-Object {.ProcessName -match 'obs|nvidia|shadowpla ... ++ ~~~~~~~~~~~~ + + CategoryInfo : ObjectNotFound: (.ProcessName:String) [], CommandNotFoundException + + FullyQualifiedErrorId : CommandNotFoundException + +.ProcessName : The term '.ProcessName' is not recognized as the name of a cmdlet, function, script file, or operable +program. Check the spelling of the name, or if a path was included, verify that the path is correct and try again. +At line:1 char:29 ++ Get-Process | Where-Object {.ProcessName -match 'obs|nvidia|shadowpla ... ++ ~~~~~~~~~~~~ + + CategoryInfo : ObjectNotFound: (.ProcessName:String) [], CommandNotFoundException + + FullyQualifiedErrorId : CommandNotFoundException + +.ProcessName : The term '.ProcessName' is not recognized as the name of a cmdlet, function, script file, or operable +program. Check the spelling of the name, or if a path was included, verify that the path is correct and try again. +At line:1 char:29 ++ Get-Process | Where-Object {.ProcessName -match 'obs|nvidia|shadowpla ... ++ ~~~~~~~~~~~~ + + CategoryInfo : ObjectNotFound: (.ProcessName:String) [], CommandNotFoundException + + FullyQualifiedErrorId : CommandNotFoundException + +.ProcessName : The term '.ProcessName' is not recognized as the name of a cmdlet, function, script file, or operable +program. Check the spelling of the name, or if a path was included, verify that the path is correct and try again. +At line:1 char:29 ++ Get-Process | Where-Object {.ProcessName -match 'obs|nvidia|shadowpla ... ++ ~~~~~~~~~~~~ + + CategoryInfo : ObjectNotFound: (.ProcessName:String) [], CommandNotFoundException + + FullyQualifiedErrorId : CommandNotFoundException + +.ProcessName : The term '.ProcessName' is not recognized as the name of a cmdlet, function, script file, or operable +program. Check the spelling of the name, or if a path was included, verify that the path is correct and try again. +At line:1 char:29 ++ Get-Process | Where-Object {.ProcessName -match 'obs|nvidia|shadowpla ... ++ ~~~~~~~~~~~~ + + CategoryInfo : ObjectNotFound: (.ProcessName:String) [], CommandNotFoundException + + FullyQualifiedErrorId : CommandNotFoundException + +.ProcessName : The term '.ProcessName' is not recognized as the name of a cmdlet, function, script file, or operable +program. Check the spelling of the name, or if a path was included, verify that the path is correct and try again. +At line:1 char:29 ++ Get-Process | Where-Object {.ProcessName -match 'obs|nvidia|shadowpla ... ++ ~~~~~~~~~~~~ + + CategoryInfo : ObjectNotFound: (.ProcessName:String) [], CommandNotFoundException + + FullyQualifiedErrorId : CommandNotFoundException + +.ProcessName : The term '.ProcessName' is not recognized as the name of a cmdlet, function, script file, or operable +program. Check the spelling of the name, or if a path was included, verify that the path is correct and try again. +At line:1 char:29 ++ Get-Process | Where-Object {.ProcessName -match 'obs|nvidia|shadowpla ... ++ ~~~~~~~~~~~~ + + CategoryInfo : ObjectNotFound: (.ProcessName:String) [], CommandNotFoundException + + FullyQualifiedErrorId : CommandNotFoundException + +.ProcessName : The term '.ProcessName' is not recognized as the name of a cmdlet, function, script file, or operable +program. Check the spelling of the name, or if a path was included, verify that the path is correct and try again. +At line:1 char:29 ++ Get-Process | Where-Object {.ProcessName -match 'obs|nvidia|shadowpla ... ++ ~~~~~~~~~~~~ + + CategoryInfo : ObjectNotFound: (.ProcessName:String) [], CommandNotFoundException + + FullyQualifiedErrorId : CommandNotFoundException + +.ProcessName : The term '.ProcessName' is not recognized as the name of a cmdlet, function, script file, or operable +program. Check the spelling of the name, or if a path was included, verify that the path is correct and try again. +At line:1 char:29 ++ Get-Process | Where-Object {.ProcessName -match 'obs|nvidia|shadowpla ... ++ ~~~~~~~~~~~~ + + CategoryInfo : ObjectNotFound: (.ProcessName:String) [], CommandNotFoundException + + FullyQualifiedErrorId : CommandNotFoundException + +.ProcessName : The term '.ProcessName' is not recognized as the name of a cmdlet, function, script file, or operable +program. Check the spelling of the name, or if a path was included, verify that the path is correct and try again. +At line:1 char:29 ++ Get-Process | Where-Object {.ProcessName -match 'obs|nvidia|shadowpla ... ++ ~~~~~~~~~~~~ + + CategoryInfo : ObjectNotFound: (.ProcessName:String) [], CommandNotFoundException + + FullyQualifiedErrorId : CommandNotFoundException + +.ProcessName : The term '.ProcessName' is not recognized as the name of a cmdlet, function, script file, or operable +program. Check the spelling of the name, or if a path was included, verify that the path is correct and try again. +At line:1 char:29 ++ Get-Process | Where-Object {.ProcessName -match 'obs|nvidia|shadowpla ... ++ ~~~~~~~~~~~~ + + CategoryInfo : ObjectNotFound: (.ProcessName:String) [], CommandNotFoundException + + FullyQualifiedErrorId : CommandNotFoundException + +.ProcessName : The term '.ProcessName' is not recognized as the name of a cmdlet, function, script file, or operable +program. Check the spelling of the name, or if a path was included, verify that the path is correct and try again. +At line:1 char:29 ++ Get-Process | Where-Object {.ProcessName -match 'obs|nvidia|shadowpla ... ++ ~~~~~~~~~~~~ + + CategoryInfo : ObjectNotFound: (.ProcessName:String) [], CommandNotFoundException + + FullyQualifiedErrorId : CommandNotFoundException + +.ProcessName : The term '.ProcessName' is not recognized as the name of a cmdlet, function, script file, or operable +program. Check the spelling of the name, or if a path was included, verify that the path is correct and try again. +At line:1 char:29 ++ Get-Process | Where-Object {.ProcessName -match 'obs|nvidia|shadowpla ... ++ ~~~~~~~~~~~~ + + CategoryInfo : ObjectNotFound: (.ProcessName:String) [], CommandNotFoundException + + FullyQualifiedErrorId : CommandNotFoundException + +.ProcessName : The term '.ProcessName' is not recognized as the name of a cmdlet, function, script file, or operable +program. Check the spelling of the name, or if a path was included, verify that the path is correct and try again. +At line:1 char:29 ++ Get-Process | Where-Object {.ProcessName -match 'obs|nvidia|shadowpla ... ++ ~~~~~~~~~~~~ + + CategoryInfo : ObjectNotFound: (.ProcessName:String) [], CommandNotFoundException + + FullyQualifiedErrorId : CommandNotFoundException + +.ProcessName : The term '.ProcessName' is not recognized as the name of a cmdlet, function, script file, or operable +program. Check the spelling of the name, or if a path was included, verify that the path is correct and try again. +At line:1 char:29 ++ Get-Process | Where-Object {.ProcessName -match 'obs|nvidia|shadowpla ... ++ ~~~~~~~~~~~~ + + CategoryInfo : ObjectNotFound: (.ProcessName:String) [], CommandNotFoundException + + FullyQualifiedErrorId : CommandNotFoundException + +.ProcessName : The term '.ProcessName' is not recognized as the name of a cmdlet, function, script file, or operable +program. Check the spelling of the name, or if a path was included, verify that the path is correct and try again. +At line:1 char:29 ++ Get-Process | Where-Object {.ProcessName -match 'obs|nvidia|shadowpla ... ++ ~~~~~~~~~~~~ + + CategoryInfo : ObjectNotFound: (.ProcessName:String) [], CommandNotFoundException + + FullyQualifiedErrorId : CommandNotFoundException + +.ProcessName : The term '.ProcessName' is not recognized as the name of a cmdlet, function, script file, or operable +program. Check the spelling of the name, or if a path was included, verify that the path is correct and try again. +At line:1 char:29 ++ Get-Process | Where-Object {.ProcessName -match 'obs|nvidia|shadowpla ... ++ ~~~~~~~~~~~~ + + CategoryInfo : ObjectNotFound: (.ProcessName:String) [], CommandNotFoundException + + FullyQualifiedErrorId : CommandNotFoundException + +.ProcessName : The term '.ProcessName' is not recognized as the name of a cmdlet, function, script file, or operable +program. Check the spelling of the name, or if a path was included, verify that the path is correct and try again. +At line:1 char:29 ++ Get-Process | Where-Object {.ProcessName -match 'obs|nvidia|shadowpla ... ++ ~~~~~~~~~~~~ + + CategoryInfo : ObjectNotFound: (.ProcessName:String) [], CommandNotFoundException + + FullyQualifiedErrorId : CommandNotFoundException + +.ProcessName : The term '.ProcessName' is not recognized as the name of a cmdlet, function, script file, or operable +program. Check the spelling of the name, or if a path was included, verify that the path is correct and try again. +At line:1 char:29 ++ Get-Process | Where-Object {.ProcessName -match 'obs|nvidia|shadowpla ... ++ ~~~~~~~~~~~~ + + CategoryInfo : ObjectNotFound: (.ProcessName:String) [], CommandNotFoundException + + FullyQualifiedErrorId : CommandNotFoundException + +.ProcessName : The term '.ProcessName' is not recognized as the name of a cmdlet, function, script file, or operable +program. Check the spelling of the name, or if a path was included, verify that the path is correct and try again. +At line:1 char:29 ++ Get-Process | Where-Object {.ProcessName -match 'obs|nvidia|shadowpla ... ++ ~~~~~~~~~~~~ + + CategoryInfo : ObjectNotFound: (.ProcessName:String) [], CommandNotFoundException + + FullyQualifiedErrorId : CommandNotFoundException + +.ProcessName : The term '.ProcessName' is not recognized as the name of a cmdlet, function, script file, or operable +program. Check the spelling of the name, or if a path was included, verify that the path is correct and try again. +At line:1 char:29 ++ Get-Process | Where-Object {.ProcessName -match 'obs|nvidia|shadowpla ... ++ ~~~~~~~~~~~~ + + CategoryInfo : ObjectNotFound: (.ProcessName:String) [], CommandNotFoundException + + FullyQualifiedErrorId : CommandNotFoundException + +.ProcessName : The term '.ProcessName' is not recognized as the name of a cmdlet, function, script file, or operable +program. Check the spelling of the name, or if a path was included, verify that the path is correct and try again. +At line:1 char:29 ++ Get-Process | Where-Object {.ProcessName -match 'obs|nvidia|shadowpla ... ++ ~~~~~~~~~~~~ + + CategoryInfo : ObjectNotFound: (.ProcessName:String) [], CommandNotFoundException + + FullyQualifiedErrorId : CommandNotFoundException + +.ProcessName : The term '.ProcessName' is not recognized as the name of a cmdlet, function, script file, or operable +program. Check the spelling of the name, or if a path was included, verify that the path is correct and try again. +At line:1 char:29 ++ Get-Process | Where-Object {.ProcessName -match 'obs|nvidia|shadowpla ... ++ ~~~~~~~~~~~~ + + CategoryInfo : ObjectNotFound: (.ProcessName:String) [], CommandNotFoundException + + FullyQualifiedErrorId : CommandNotFoundException + +.ProcessName : The term '.ProcessName' is not recognized as the name of a cmdlet, function, script file, or operable +program. Check the spelling of the name, or if a path was included, verify that the path is correct and try again. +At line:1 char:29 ++ Get-Process | Where-Object {.ProcessName -match 'obs|nvidia|shadowpla ... ++ ~~~~~~~~~~~~ + + CategoryInfo : ObjectNotFound: (.ProcessName:String) [], CommandNotFoundException + + FullyQualifiedErrorId : CommandNotFoundException + +.ProcessName : The term '.ProcessName' is not recognized as the name of a cmdlet, function, script file, or operable +program. Check the spelling of the name, or if a path was included, verify that the path is correct and try again. +At line:1 char:29 ++ Get-Process | Where-Object {.ProcessName -match 'obs|nvidia|shadowpla ... ++ ~~~~~~~~~~~~ + + CategoryInfo : ObjectNotFound: (.ProcessName:String) [], CommandNotFoundException + + FullyQualifiedErrorId : CommandNotFoundException + +.ProcessName : The term '.ProcessName' is not recognized as the name of a cmdlet, function, script file, or operable +program. Check the spelling of the name, or if a path was included, verify that the path is correct and try again. +At line:1 char:29 ++ Get-Process | Where-Object {.ProcessName -match 'obs|nvidia|shadowpla ... ++ ~~~~~~~~~~~~ + + CategoryInfo : ObjectNotFound: (.ProcessName:String) [], CommandNotFoundException + + FullyQualifiedErrorId : CommandNotFoundException + +.ProcessName : The term '.ProcessName' is not recognized as the name of a cmdlet, function, script file, or operable +program. Check the spelling of the name, or if a path was included, verify that the path is correct and try again. +At line:1 char:29 ++ Get-Process | Where-Object {.ProcessName -match 'obs|nvidia|shadowpla ... ++ ~~~~~~~~~~~~ + + CategoryInfo : ObjectNotFound: (.ProcessName:String) [], CommandNotFoundException + + FullyQualifiedErrorId : CommandNotFoundException + +.ProcessName : The term '.ProcessName' is not recognized as the name of a cmdlet, function, script file, or operable +program. Check the spelling of the name, or if a path was included, verify that the path is correct and try again. +At line:1 char:29 ++ Get-Process | Where-Object {.ProcessName -match 'obs|nvidia|shadowpla ... ++ ~~~~~~~~~~~~ + + CategoryInfo : ObjectNotFound: (.ProcessName:String) [], CommandNotFoundException + + FullyQualifiedErrorId : CommandNotFoundException + +.ProcessName : The term '.ProcessName' is not recognized as the name of a cmdlet, function, script file, or operable +program. Check the spelling of the name, or if a path was included, verify that the path is correct and try again. +At line:1 char:29 ++ Get-Process | Where-Object {.ProcessName -match 'obs|nvidia|shadowpla ... ++ ~~~~~~~~~~~~ + + CategoryInfo : ObjectNotFound: (.ProcessName:String) [], CommandNotFoundException + + FullyQualifiedErrorId : CommandNotFoundException + +.ProcessName : The term '.ProcessName' is not recognized as the name of a cmdlet, function, script file, or operable +program. Check the spelling of the name, or if a path was included, verify that the path is correct and try again. +At line:1 char:29 ++ Get-Process | Where-Object {.ProcessName -match 'obs|nvidia|shadowpla ... ++ ~~~~~~~~~~~~ + + CategoryInfo : ObjectNotFound: (.ProcessName:String) [], CommandNotFoundException + + FullyQualifiedErrorId : CommandNotFoundException + +.ProcessName : The term '.ProcessName' is not recognized as the name of a cmdlet, function, script file, or operable +program. Check the spelling of the name, or if a path was included, verify that the path is correct and try again. +At line:1 char:29 ++ Get-Process | Where-Object {.ProcessName -match 'obs|nvidia|shadowpla ... ++ ~~~~~~~~~~~~ + + CategoryInfo : ObjectNotFound: (.ProcessName:String) [], CommandNotFoundException + + FullyQualifiedErrorId : CommandNotFoundException + +.ProcessName : The term '.ProcessName' is not recognized as the name of a cmdlet, function, script file, or operable +program. Check the spelling of the name, or if a path was included, verify that the path is correct and try again. +At line:1 char:29 ++ Get-Process | Where-Object {.ProcessName -match 'obs|nvidia|shadowpla ... ++ ~~~~~~~~~~~~ + + CategoryInfo : ObjectNotFound: (.ProcessName:String) [], CommandNotFoundException + + FullyQualifiedErrorId : CommandNotFoundException + +.ProcessName : The term '.ProcessName' is not recognized as the name of a cmdlet, function, script file, or operable +program. Check the spelling of the name, or if a path was included, verify that the path is correct and try again. +At line:1 char:29 ++ Get-Process | Where-Object {.ProcessName -match 'obs|nvidia|shadowpla ... ++ ~~~~~~~~~~~~ + + CategoryInfo : ObjectNotFound: (.ProcessName:String) [], CommandNotFoundException + + FullyQualifiedErrorId : CommandNotFoundException + +.ProcessName : The term '.ProcessName' is not recognized as the name of a cmdlet, function, script file, or operable +program. Check the spelling of the name, or if a path was included, verify that the path is correct and try again. +At line:1 char:29 ++ Get-Process | Where-Object {.ProcessName -match 'obs|nvidia|shadowpla ... ++ ~~~~~~~~~~~~ + + CategoryInfo : ObjectNotFound: (.ProcessName:String) [], CommandNotFoundException + + FullyQualifiedErrorId : CommandNotFoundException + +.ProcessName : The term '.ProcessName' is not recognized as the name of a cmdlet, function, script file, or operable +program. Check the spelling of the name, or if a path was included, verify that the path is correct and try again. +At line:1 char:29 ++ Get-Process | Where-Object {.ProcessName -match 'obs|nvidia|shadowpla ... ++ ~~~~~~~~~~~~ + + CategoryInfo : ObjectNotFound: (.ProcessName:String) [], CommandNotFoundException + + FullyQualifiedErrorId : CommandNotFoundException + +.ProcessName : The term '.ProcessName' is not recognized as the name of a cmdlet, function, script file, or operable +program. Check the spelling of the name, or if a path was included, verify that the path is correct and try again. +At line:1 char:29 ++ Get-Process | Where-Object {.ProcessName -match 'obs|nvidia|shadowpla ... ++ ~~~~~~~~~~~~ + + CategoryInfo : ObjectNotFound: (.ProcessName:String) [], CommandNotFoundException + + FullyQualifiedErrorId : CommandNotFoundException + +.ProcessName : The term '.ProcessName' is not recognized as the name of a cmdlet, function, script file, or operable +program. Check the spelling of the name, or if a path was included, verify that the path is correct and try again. +At line:1 char:29 ++ Get-Process | Where-Object {.ProcessName -match 'obs|nvidia|shadowpla ... ++ ~~~~~~~~~~~~ + + CategoryInfo : ObjectNotFound: (.ProcessName:String) [], CommandNotFoundException + + FullyQualifiedErrorId : CommandNotFoundException + +.ProcessName : The term '.ProcessName' is not recognized as the name of a cmdlet, function, script file, or operable +program. Check the spelling of the name, or if a path was included, verify that the path is correct and try again. +At line:1 char:29 ++ Get-Process | Where-Object {.ProcessName -match 'obs|nvidia|shadowpla ... ++ ~~~~~~~~~~~~ + + CategoryInfo : ObjectNotFound: (.ProcessName:String) [], CommandNotFoundException + + FullyQualifiedErrorId : CommandNotFoundException + +.ProcessName : The term '.ProcessName' is not recognized as the name of a cmdlet, function, script file, or operable +program. Check the spelling of the name, or if a path was included, verify that the path is correct and try again. +At line:1 char:29 ++ Get-Process | Where-Object {.ProcessName -match 'obs|nvidia|shadowpla ... ++ ~~~~~~~~~~~~ + + CategoryInfo : ObjectNotFound: (.ProcessName:String) [], CommandNotFoundException + + FullyQualifiedErrorId : CommandNotFoundException + +.ProcessName : The term '.ProcessName' is not recognized as the name of a cmdlet, function, script file, or operable +program. Check the spelling of the name, or if a path was included, verify that the path is correct and try again. +At line:1 char:29 ++ Get-Process | Where-Object {.ProcessName -match 'obs|nvidia|shadowpla ... ++ ~~~~~~~~~~~~ + + CategoryInfo : ObjectNotFound: (.ProcessName:String) [], CommandNotFoundException + + FullyQualifiedErrorId : CommandNotFoundException + +.ProcessName : The term '.ProcessName' is not recognized as the name of a cmdlet, function, script file, or operable +program. Check the spelling of the name, or if a path was included, verify that the path is correct and try again. +At line:1 char:29 ++ Get-Process | Where-Object {.ProcessName -match 'obs|nvidia|shadowpla ... ++ ~~~~~~~~~~~~ + + CategoryInfo : ObjectNotFound: (.ProcessName:String) [], CommandNotFoundException + + FullyQualifiedErrorId : CommandNotFoundException + +.ProcessName : The term '.ProcessName' is not recognized as the name of a cmdlet, function, script file, or operable +program. Check the spelling of the name, or if a path was included, verify that the path is correct and try again. +At line:1 char:29 ++ Get-Process | Where-Object {.ProcessName -match 'obs|nvidia|shadowpla ... ++ ~~~~~~~~~~~~ + + CategoryInfo : ObjectNotFound: (.ProcessName:String) [], CommandNotFoundException + + FullyQualifiedErrorId : CommandNotFoundException + +.ProcessName : The term '.ProcessName' is not recognized as the name of a cmdlet, function, script file, or operable +program. Check the spelling of the name, or if a path was included, verify that the path is correct and try again. +At line:1 char:29 ++ Get-Process | Where-Object {.ProcessName -match 'obs|nvidia|shadowpla ... ++ ~~~~~~~~~~~~ + + CategoryInfo : ObjectNotFound: (.ProcessName:String) [], CommandNotFoundException + + FullyQualifiedErrorId : CommandNotFoundException + +.ProcessName : The term '.ProcessName' is not recognized as the name of a cmdlet, function, script file, or operable +program. Check the spelling of the name, or if a path was included, verify that the path is correct and try again. +At line:1 char:29 ++ Get-Process | Where-Object {.ProcessName -match 'obs|nvidia|shadowpla ... ++ ~~~~~~~~~~~~ + + CategoryInfo : ObjectNotFound: (.ProcessName:String) [], CommandNotFoundException + + FullyQualifiedErrorId : CommandNotFoundException + +.ProcessName : The term '.ProcessName' is not recognized as the name of a cmdlet, function, script file, or operable +program. Check the spelling of the name, or if a path was included, verify that the path is correct and try again. +At line:1 char:29 ++ Get-Process | Where-Object {.ProcessName -match 'obs|nvidia|shadowpla ... ++ ~~~~~~~~~~~~ + + CategoryInfo : ObjectNotFound: (.ProcessName:String) [], CommandNotFoundException + + FullyQualifiedErrorId : CommandNotFoundException + +.ProcessName : The term '.ProcessName' is not recognized as the name of a cmdlet, function, script file, or operable +program. Check the spelling of the name, or if a path was included, verify that the path is correct and try again. +At line:1 char:29 ++ Get-Process | Where-Object {.ProcessName -match 'obs|nvidia|shadowpla ... ++ ~~~~~~~~~~~~ + + CategoryInfo : ObjectNotFound: (.ProcessName:String) [], CommandNotFoundException + + FullyQualifiedErrorId : CommandNotFoundException + +.ProcessName : The term '.ProcessName' is not recognized as the name of a cmdlet, function, script file, or operable +program. Check the spelling of the name, or if a path was included, verify that the path is correct and try again. +At line:1 char:29 ++ Get-Process | Where-Object {.ProcessName -match 'obs|nvidia|shadowpla ... ++ ~~~~~~~~~~~~ + + CategoryInfo : ObjectNotFound: (.ProcessName:String) [], CommandNotFoundException + + FullyQualifiedErrorId : CommandNotFoundException + +.ProcessName : The term '.ProcessName' is not recognized as the name of a cmdlet, function, script file, or operable +program. Check the spelling of the name, or if a path was included, verify that the path is correct and try again. +At line:1 char:29 ++ Get-Process | Where-Object {.ProcessName -match 'obs|nvidia|shadowpla ... ++ ~~~~~~~~~~~~ + + CategoryInfo : ObjectNotFound: (.ProcessName:String) [], CommandNotFoundException + + FullyQualifiedErrorId : CommandNotFoundException + +.ProcessName : The term '.ProcessName' is not recognized as the name of a cmdlet, function, script file, or operable +program. Check the spelling of the name, or if a path was included, verify that the path is correct and try again. +At line:1 char:29 ++ Get-Process | Where-Object {.ProcessName -match 'obs|nvidia|shadowpla ... ++ ~~~~~~~~~~~~ + + CategoryInfo : ObjectNotFound: (.ProcessName:String) [], CommandNotFoundException + + FullyQualifiedErrorId : CommandNotFoundException + +.ProcessName : The term '.ProcessName' is not recognized as the name of a cmdlet, function, script file, or operable +program. Check the spelling of the name, or if a path was included, verify that the path is correct and try again. +At line:1 char:29 ++ Get-Process | Where-Object {.ProcessName -match 'obs|nvidia|shadowpla ... ++ ~~~~~~~~~~~~ + + CategoryInfo : ObjectNotFound: (.ProcessName:String) [], CommandNotFoundException + + FullyQualifiedErrorId : CommandNotFoundException + +.ProcessName : The term '.ProcessName' is not recognized as the name of a cmdlet, function, script file, or operable +program. Check the spelling of the name, or if a path was included, verify that the path is correct and try again. +At line:1 char:29 ++ Get-Process | Where-Object {.ProcessName -match 'obs|nvidia|shadowpla ... ++ ~~~~~~~~~~~~ + + CategoryInfo : ObjectNotFound: (.ProcessName:String) [], CommandNotFoundException + + FullyQualifiedErrorId : CommandNotFoundException + +.ProcessName : The term '.ProcessName' is not recognized as the name of a cmdlet, function, script file, or operable +program. Check the spelling of the name, or if a path was included, verify that the path is correct and try again. +At line:1 char:29 ++ Get-Process | Where-Object {.ProcessName -match 'obs|nvidia|shadowpla ... ++ ~~~~~~~~~~~~ + + CategoryInfo : ObjectNotFound: (.ProcessName:String) [], CommandNotFoundException + + FullyQualifiedErrorId : CommandNotFoundException + +.ProcessName : The term '.ProcessName' is not recognized as the name of a cmdlet, function, script file, or operable +program. Check the spelling of the name, or if a path was included, verify that the path is correct and try again. +At line:1 char:29 ++ Get-Process | Where-Object {.ProcessName -match 'obs|nvidia|shadowpla ... ++ ~~~~~~~~~~~~ + + CategoryInfo : ObjectNotFound: (.ProcessName:String) [], CommandNotFoundException + + FullyQualifiedErrorId : CommandNotFoundException + +.ProcessName : The term '.ProcessName' is not recognized as the name of a cmdlet, function, script file, or operable +program. Check the spelling of the name, or if a path was included, verify that the path is correct and try again. +At line:1 char:29 ++ Get-Process | Where-Object {.ProcessName -match 'obs|nvidia|shadowpla ... ++ ~~~~~~~~~~~~ + + CategoryInfo : ObjectNotFound: (.ProcessName:String) [], CommandNotFoundException + + FullyQualifiedErrorId : CommandNotFoundException + +.ProcessName : The term '.ProcessName' is not recognized as the name of a cmdlet, function, script file, or operable +program. Check the spelling of the name, or if a path was included, verify that the path is correct and try again. +At line:1 char:29 ++ Get-Process | Where-Object {.ProcessName -match 'obs|nvidia|shadowpla ... ++ ~~~~~~~~~~~~ + + CategoryInfo : ObjectNotFound: (.ProcessName:String) [], CommandNotFoundException + + FullyQualifiedErrorId : CommandNotFoundException + +.ProcessName : The term '.ProcessName' is not recognized as the name of a cmdlet, function, script file, or operable +program. Check the spelling of the name, or if a path was included, verify that the path is correct and try again. +At line:1 char:29 ++ Get-Process | Where-Object {.ProcessName -match 'obs|nvidia|shadowpla ... ++ ~~~~~~~~~~~~ + + CategoryInfo : ObjectNotFound: (.ProcessName:String) [], CommandNotFoundException + + FullyQualifiedErrorId : CommandNotFoundException + +.ProcessName : The term '.ProcessName' is not recognized as the name of a cmdlet, function, script file, or operable +program. Check the spelling of the name, or if a path was included, verify that the path is correct and try again. +At line:1 char:29 ++ Get-Process | Where-Object {.ProcessName -match 'obs|nvidia|shadowpla ... ++ ~~~~~~~~~~~~ + + CategoryInfo : ObjectNotFound: (.ProcessName:String) [], CommandNotFoundException + + FullyQualifiedErrorId : CommandNotFoundException + +.ProcessName : The term '.ProcessName' is not recognized as the name of a cmdlet, function, script file, or operable +program. Check the spelling of the name, or if a path was included, verify that the path is correct and try again. +At line:1 char:29 ++ Get-Process | Where-Object {.ProcessName -match 'obs|nvidia|shadowpla ... ++ ~~~~~~~~~~~~ + + CategoryInfo : ObjectNotFound: (.ProcessName:String) [], CommandNotFoundException + + FullyQualifiedErrorId : CommandNotFoundException + +.ProcessName : The term '.ProcessName' is not recognized as the name of a cmdlet, function, script file, or operable +program. Check the spelling of the name, or if a path was included, verify that the path is correct and try again. +At line:1 char:29 ++ Get-Process | Where-Object {.ProcessName -match 'obs|nvidia|shadowpla ... ++ ~~~~~~~~~~~~ + + CategoryInfo : ObjectNotFound: (.ProcessName:String) [], CommandNotFoundException + + FullyQualifiedErrorId : CommandNotFoundException + +.ProcessName : The term '.ProcessName' is not recognized as the name of a cmdlet, function, script file, or operable +program. Check the spelling of the name, or if a path was included, verify that the path is correct and try again. +At line:1 char:29 ++ Get-Process | Where-Object {.ProcessName -match 'obs|nvidia|shadowpla ... ++ ~~~~~~~~~~~~ + + CategoryInfo : ObjectNotFound: (.ProcessName:String) [], CommandNotFoundException + + FullyQualifiedErrorId : CommandNotFoundException + +.ProcessName : The term '.ProcessName' is not recognized as the name of a cmdlet, function, script file, or operable +program. Check the spelling of the name, or if a path was included, verify that the path is correct and try again. +At line:1 char:29 ++ Get-Process | Where-Object {.ProcessName -match 'obs|nvidia|shadowpla ... ++ ~~~~~~~~~~~~ + + CategoryInfo : ObjectNotFound: (.ProcessName:String) [], CommandNotFoundException + + FullyQualifiedErrorId : CommandNotFoundException + +.ProcessName : The term '.ProcessName' is not recognized as the name of a cmdlet, function, script file, or operable +program. Check the spelling of the name, or if a path was included, verify that the path is correct and try again. +At line:1 char:29 ++ Get-Process | Where-Object {.ProcessName -match 'obs|nvidia|shadowpla ... ++ ~~~~~~~~~~~~ + + CategoryInfo : ObjectNotFound: (.ProcessName:String) [], CommandNotFoundException + + FullyQualifiedErrorId : CommandNotFoundException + +.ProcessName : The term '.ProcessName' is not recognized as the name of a cmdlet, function, script file, or operable +program. Check the spelling of the name, or if a path was included, verify that the path is correct and try again. +At line:1 char:29 ++ Get-Process | Where-Object {.ProcessName -match 'obs|nvidia|shadowpla ... ++ ~~~~~~~~~~~~ + + CategoryInfo : ObjectNotFound: (.ProcessName:String) [], CommandNotFoundException + + FullyQualifiedErrorId : CommandNotFoundException + +.ProcessName : The term '.ProcessName' is not recognized as the name of a cmdlet, function, script file, or operable +program. Check the spelling of the name, or if a path was included, verify that the path is correct and try again. +At line:1 char:29 ++ Get-Process | Where-Object {.ProcessName -match 'obs|nvidia|shadowpla ... ++ ~~~~~~~~~~~~ + + CategoryInfo : ObjectNotFound: (.ProcessName:String) [], CommandNotFoundException + + FullyQualifiedErrorId : CommandNotFoundException + +.ProcessName : The term '.ProcessName' is not recognized as the name of a cmdlet, function, script file, or operable +program. Check the spelling of the name, or if a path was included, verify that the path is correct and try again. +At line:1 char:29 ++ Get-Process | Where-Object {.ProcessName -match 'obs|nvidia|shadowpla ... ++ ~~~~~~~~~~~~ + + CategoryInfo : ObjectNotFound: (.ProcessName:String) [], CommandNotFoundException + + FullyQualifiedErrorId : CommandNotFoundException + +.ProcessName : The term '.ProcessName' is not recognized as the name of a cmdlet, function, script file, or operable +program. Check the spelling of the name, or if a path was included, verify that the path is correct and try again. +At line:1 char:29 ++ Get-Process | Where-Object {.ProcessName -match 'obs|nvidia|shadowpla ... ++ ~~~~~~~~~~~~ + + CategoryInfo : ObjectNotFound: (.ProcessName:String) [], CommandNotFoundException + + FullyQualifiedErrorId : CommandNotFoundException + +.ProcessName : The term '.ProcessName' is not recognized as the name of a cmdlet, function, script file, or operable +program. Check the spelling of the name, or if a path was included, verify that the path is correct and try again. +At line:1 char:29 ++ Get-Process | Where-Object {.ProcessName -match 'obs|nvidia|shadowpla ... ++ ~~~~~~~~~~~~ + + CategoryInfo : ObjectNotFound: (.ProcessName:String) [], CommandNotFoundException + + FullyQualifiedErrorId : CommandNotFoundException + +.ProcessName : The term '.ProcessName' is not recognized as the name of a cmdlet, function, script file, or operable +program. Check the spelling of the name, or if a path was included, verify that the path is correct and try again. +At line:1 char:29 ++ Get-Process | Where-Object {.ProcessName -match 'obs|nvidia|shadowpla ... ++ ~~~~~~~~~~~~ + + CategoryInfo : ObjectNotFound: (.ProcessName:String) [], CommandNotFoundException + + FullyQualifiedErrorId : CommandNotFoundException + +.ProcessName : The term '.ProcessName' is not recognized as the name of a cmdlet, function, script file, or operable +program. Check the spelling of the name, or if a path was included, verify that the path is correct and try again. +At line:1 char:29 ++ Get-Process | Where-Object {.ProcessName -match 'obs|nvidia|shadowpla ... ++ ~~~~~~~~~~~~ + + CategoryInfo : ObjectNotFound: (.ProcessName:String) [], CommandNotFoundException + + FullyQualifiedErrorId : CommandNotFoundException + +.ProcessName : The term '.ProcessName' is not recognized as the name of a cmdlet, function, script file, or operable +program. Check the spelling of the name, or if a path was included, verify that the path is correct and try again. +At line:1 char:29 ++ Get-Process | Where-Object {.ProcessName -match 'obs|nvidia|shadowpla ... ++ ~~~~~~~~~~~~ + + CategoryInfo : ObjectNotFound: (.ProcessName:String) [], CommandNotFoundException + + FullyQualifiedErrorId : CommandNotFoundException + +.ProcessName : The term '.ProcessName' is not recognized as the name of a cmdlet, function, script file, or operable +program. Check the spelling of the name, or if a path was included, verify that the path is correct and try again. +At line:1 char:29 ++ Get-Process | Where-Object {.ProcessName -match 'obs|nvidia|shadowpla ... ++ ~~~~~~~~~~~~ + + CategoryInfo : ObjectNotFound: (.ProcessName:String) [], CommandNotFoundException + + FullyQualifiedErrorId : CommandNotFoundException + +.ProcessName : The term '.ProcessName' is not recognized as the name of a cmdlet, function, script file, or operable +program. Check the spelling of the name, or if a path was included, verify that the path is correct and try again. +At line:1 char:29 ++ Get-Process | Where-Object {.ProcessName -match 'obs|nvidia|shadowpla ... ++ ~~~~~~~~~~~~ + + CategoryInfo : ObjectNotFound: (.ProcessName:String) [], CommandNotFoundException + + FullyQualifiedErrorId : CommandNotFoundException + +.ProcessName : The term '.ProcessName' is not recognized as the name of a cmdlet, function, script file, or operable +program. Check the spelling of the name, or if a path was included, verify that the path is correct and try again. +At line:1 char:29 ++ Get-Process | Where-Object {.ProcessName -match 'obs|nvidia|shadowpla ... ++ ~~~~~~~~~~~~ + + CategoryInfo : ObjectNotFound: (.ProcessName:String) [], CommandNotFoundException + + FullyQualifiedErrorId : CommandNotFoundException + +.ProcessName : The term '.ProcessName' is not recognized as the name of a cmdlet, function, script file, or operable +program. Check the spelling of the name, or if a path was included, verify that the path is correct and try again. +At line:1 char:29 ++ Get-Process | Where-Object {.ProcessName -match 'obs|nvidia|shadowpla ... ++ ~~~~~~~~~~~~ + + CategoryInfo : ObjectNotFound: (.ProcessName:String) [], CommandNotFoundException + + FullyQualifiedErrorId : CommandNotFoundException + +.ProcessName : The term '.ProcessName' is not recognized as the name of a cmdlet, function, script file, or operable +program. Check the spelling of the name, or if a path was included, verify that the path is correct and try again. +At line:1 char:29 ++ Get-Process | Where-Object {.ProcessName -match 'obs|nvidia|shadowpla ... ++ ~~~~~~~~~~~~ + + CategoryInfo : ObjectNotFound: (.ProcessName:String) [], CommandNotFoundException + + FullyQualifiedErrorId : CommandNotFoundException + +.ProcessName : The term '.ProcessName' is not recognized as the name of a cmdlet, function, script file, or operable +program. Check the spelling of the name, or if a path was included, verify that the path is correct and try again. +At line:1 char:29 ++ Get-Process | Where-Object {.ProcessName -match 'obs|nvidia|shadowpla ... ++ ~~~~~~~~~~~~ + + CategoryInfo : ObjectNotFound: (.ProcessName:String) [], CommandNotFoundException + + FullyQualifiedErrorId : CommandNotFoundException + +.ProcessName : The term '.ProcessName' is not recognized as the name of a cmdlet, function, script file, or operable +program. Check the spelling of the name, or if a path was included, verify that the path is correct and try again. +At line:1 char:29 ++ Get-Process | Where-Object {.ProcessName -match 'obs|nvidia|shadowpla ... ++ ~~~~~~~~~~~~ + + CategoryInfo : ObjectNotFound: (.ProcessName:String) [], CommandNotFoundException + + FullyQualifiedErrorId : CommandNotFoundException + +.ProcessName : The term '.ProcessName' is not recognized as the name of a cmdlet, function, script file, or operable +program. Check the spelling of the name, or if a path was included, verify that the path is correct and try again. +At line:1 char:29 ++ Get-Process | Where-Object {.ProcessName -match 'obs|nvidia|shadowpla ... ++ ~~~~~~~~~~~~ + + CategoryInfo : ObjectNotFound: (.ProcessName:String) [], CommandNotFoundException + + FullyQualifiedErrorId : CommandNotFoundException + +.ProcessName : The term '.ProcessName' is not recognized as the name of a cmdlet, function, script file, or operable +program. Check the spelling of the name, or if a path was included, verify that the path is correct and try again. +At line:1 char:29 ++ Get-Process | Where-Object {.ProcessName -match 'obs|nvidia|shadowpla ... ++ ~~~~~~~~~~~~ + + CategoryInfo : ObjectNotFound: (.ProcessName:String) [], CommandNotFoundException + + FullyQualifiedErrorId : CommandNotFoundException + +.ProcessName : The term '.ProcessName' is not recognized as the name of a cmdlet, function, script file, or operable +program. Check the spelling of the name, or if a path was included, verify that the path is correct and try again. +At line:1 char:29 ++ Get-Process | Where-Object {.ProcessName -match 'obs|nvidia|shadowpla ... ++ ~~~~~~~~~~~~ + + CategoryInfo : ObjectNotFound: (.ProcessName:String) [], CommandNotFoundException + + FullyQualifiedErrorId : CommandNotFoundException + +.ProcessName : The term '.ProcessName' is not recognized as the name of a cmdlet, function, script file, or operable +program. Check the spelling of the name, or if a path was included, verify that the path is correct and try again. +At line:1 char:29 ++ Get-Process | Where-Object {.ProcessName -match 'obs|nvidia|shadowpla ... ++ ~~~~~~~~~~~~ + + CategoryInfo : ObjectNotFound: (.ProcessName:String) [], CommandNotFoundException + + FullyQualifiedErrorId : CommandNotFoundException + +.ProcessName : The term '.ProcessName' is not recognized as the name of a cmdlet, function, script file, or operable +program. Check the spelling of the name, or if a path was included, verify that the path is correct and try again. +At line:1 char:29 ++ Get-Process | Where-Object {.ProcessName -match 'obs|nvidia|shadowpla ... ++ ~~~~~~~~~~~~ + + CategoryInfo : ObjectNotFound: (.ProcessName:String) [], CommandNotFoundException + + FullyQualifiedErrorId : CommandNotFoundException + +.ProcessName : The term '.ProcessName' is not recognized as the name of a cmdlet, function, script file, or operable +program. Check the spelling of the name, or if a path was included, verify that the path is correct and try again. +At line:1 char:29 ++ Get-Process | Where-Object {.ProcessName -match 'obs|nvidia|shadowpla ... ++ ~~~~~~~~~~~~ + + CategoryInfo : ObjectNotFound: (.ProcessName:String) [], CommandNotFoundException + + FullyQualifiedErrorId : CommandNotFoundException + +.ProcessName : The term '.ProcessName' is not recognized as the name of a cmdlet, function, script file, or operable +program. Check the spelling of the name, or if a path was included, verify that the path is correct and try again. +At line:1 char:29 ++ Get-Process | Where-Object {.ProcessName -match 'obs|nvidia|shadowpla ... ++ ~~~~~~~~~~~~ + + CategoryInfo : ObjectNotFound: (.ProcessName:String) [], CommandNotFoundException + + FullyQualifiedErrorId : CommandNotFoundException + +.ProcessName : The term '.ProcessName' is not recognized as the name of a cmdlet, function, script file, or operable +program. Check the spelling of the name, or if a path was included, verify that the path is correct and try again. +At line:1 char:29 ++ Get-Process | Where-Object {.ProcessName -match 'obs|nvidia|shadowpla ... ++ ~~~~~~~~~~~~ + + CategoryInfo : ObjectNotFound: (.ProcessName:String) [], CommandNotFoundException + + FullyQualifiedErrorId : CommandNotFoundException + +.ProcessName : The term '.ProcessName' is not recognized as the name of a cmdlet, function, script file, or operable +program. Check the spelling of the name, or if a path was included, verify that the path is correct and try again. +At line:1 char:29 ++ Get-Process | Where-Object {.ProcessName -match 'obs|nvidia|shadowpla ... ++ ~~~~~~~~~~~~ + + CategoryInfo : ObjectNotFound: (.ProcessName:String) [], CommandNotFoundException + + FullyQualifiedErrorId : CommandNotFoundException + +.ProcessName : The term '.ProcessName' is not recognized as the name of a cmdlet, function, script file, or operable +program. Check the spelling of the name, or if a path was included, verify that the path is correct and try again. +At line:1 char:29 ++ Get-Process | Where-Object {.ProcessName -match 'obs|nvidia|shadowpla ... ++ ~~~~~~~~~~~~ + + CategoryInfo : ObjectNotFound: (.ProcessName:String) [], CommandNotFoundException + + FullyQualifiedErrorId : CommandNotFoundException + +.ProcessName : The term '.ProcessName' is not recognized as the name of a cmdlet, function, script file, or operable +program. Check the spelling of the name, or if a path was included, verify that the path is correct and try again. +At line:1 char:29 ++ Get-Process | Where-Object {.ProcessName -match 'obs|nvidia|shadowpla ... ++ ~~~~~~~~~~~~ + + CategoryInfo : ObjectNotFound: (.ProcessName:String) [], CommandNotFoundException + + FullyQualifiedErrorId : CommandNotFoundException + +.ProcessName : The term '.ProcessName' is not recognized as the name of a cmdlet, function, script file, or operable +program. Check the spelling of the name, or if a path was included, verify that the path is correct and try again. +At line:1 char:29 ++ Get-Process | Where-Object {.ProcessName -match 'obs|nvidia|shadowpla ... ++ ~~~~~~~~~~~~ + + CategoryInfo : ObjectNotFound: (.ProcessName:String) [], CommandNotFoundException + + FullyQualifiedErrorId : CommandNotFoundException + +.ProcessName : The term '.ProcessName' is not recognized as the name of a cmdlet, function, script file, or operable +program. Check the spelling of the name, or if a path was included, verify that the path is correct and try again. +At line:1 char:29 ++ Get-Process | Where-Object {.ProcessName -match 'obs|nvidia|shadowpla ... ++ ~~~~~~~~~~~~ + + CategoryInfo : ObjectNotFound: (.ProcessName:String) [], CommandNotFoundException + + FullyQualifiedErrorId : CommandNotFoundException + +.ProcessName : The term '.ProcessName' is not recognized as the name of a cmdlet, function, script file, or operable +program. Check the spelling of the name, or if a path was included, verify that the path is correct and try again. +At line:1 char:29 ++ Get-Process | Where-Object {.ProcessName -match 'obs|nvidia|shadowpla ... ++ ~~~~~~~~~~~~ + + CategoryInfo : ObjectNotFound: (.ProcessName:String) [], CommandNotFoundException + + FullyQualifiedErrorId : CommandNotFoundException + +.ProcessName : The term '.ProcessName' is not recognized as the name of a cmdlet, function, script file, or operable +program. Check the spelling of the name, or if a path was included, verify that the path is correct and try again. +At line:1 char:29 ++ Get-Process | Where-Object {.ProcessName -match 'obs|nvidia|shadowpla ... ++ ~~~~~~~~~~~~ + + CategoryInfo : ObjectNotFound: (.ProcessName:String) [], CommandNotFoundException + + FullyQualifiedErrorId : CommandNotFoundException + +.ProcessName : The term '.ProcessName' is not recognized as the name of a cmdlet, function, script file, or operable +program. Check the spelling of the name, or if a path was included, verify that the path is correct and try again. +At line:1 char:29 ++ Get-Process | Where-Object {.ProcessName -match 'obs|nvidia|shadowpla ... ++ ~~~~~~~~~~~~ + + CategoryInfo : ObjectNotFound: (.ProcessName:String) [], CommandNotFoundException + + FullyQualifiedErrorId : CommandNotFoundException + +.ProcessName : The term '.ProcessName' is not recognized as the name of a cmdlet, function, script file, or operable +program. Check the spelling of the name, or if a path was included, verify that the path is correct and try again. +At line:1 char:29 ++ Get-Process | Where-Object {.ProcessName -match 'obs|nvidia|shadowpla ... ++ ~~~~~~~~~~~~ + + CategoryInfo : ObjectNotFound: (.ProcessName:String) [], CommandNotFoundException + + FullyQualifiedErrorId : CommandNotFoundException + +.ProcessName : The term '.ProcessName' is not recognized as the name of a cmdlet, function, script file, or operable +program. Check the spelling of the name, or if a path was included, verify that the path is correct and try again. +At line:1 char:29 ++ Get-Process | Where-Object {.ProcessName -match 'obs|nvidia|shadowpla ... ++ ~~~~~~~~~~~~ + + CategoryInfo : ObjectNotFound: (.ProcessName:String) [], CommandNotFoundException + + FullyQualifiedErrorId : CommandNotFoundException + +.ProcessName : The term '.ProcessName' is not recognized as the name of a cmdlet, function, script file, or operable +program. Check the spelling of the name, or if a path was included, verify that the path is correct and try again. +At line:1 char:29 ++ Get-Process | Where-Object {.ProcessName -match 'obs|nvidia|shadowpla ... ++ ~~~~~~~~~~~~ + + CategoryInfo : ObjectNotFound: (.ProcessName:String) [], CommandNotFoundException + + FullyQualifiedErrorId : CommandNotFoundException + +.ProcessName : The term '.ProcessName' is not recognized as the name of a cmdlet, function, script file, or operable +program. Check the spelling of the name, or if a path was included, verify that the path is correct and try again. +At line:1 char:29 ++ Get-Process | Where-Object {.ProcessName -match 'obs|nvidia|shadowpla ... ++ ~~~~~~~~~~~~ + + CategoryInfo : ObjectNotFound: (.ProcessName:String) [], CommandNotFoundException + + FullyQualifiedErrorId : CommandNotFoundException + +.ProcessName : The term '.ProcessName' is not recognized as the name of a cmdlet, function, script file, or operable +program. Check the spelling of the name, or if a path was included, verify that the path is correct and try again. +At line:1 char:29 ++ Get-Process | Where-Object {.ProcessName -match 'obs|nvidia|shadowpla ... ++ ~~~~~~~~~~~~ + + CategoryInfo : ObjectNotFound: (.ProcessName:String) [], CommandNotFoundException + + FullyQualifiedErrorId : CommandNotFoundException + +.ProcessName : The term '.ProcessName' is not recognized as the name of a cmdlet, function, script file, or operable +program. Check the spelling of the name, or if a path was included, verify that the path is correct and try again. +At line:1 char:29 ++ Get-Process | Where-Object {.ProcessName -match 'obs|nvidia|shadowpla ... ++ ~~~~~~~~~~~~ + + CategoryInfo : ObjectNotFound: (.ProcessName:String) [], CommandNotFoundException + + FullyQualifiedErrorId : CommandNotFoundException + +.ProcessName : The term '.ProcessName' is not recognized as the name of a cmdlet, function, script file, or operable +program. Check the spelling of the name, or if a path was included, verify that the path is correct and try again. +At line:1 char:29 ++ Get-Process | Where-Object {.ProcessName -match 'obs|nvidia|shadowpla ... ++ ~~~~~~~~~~~~ + + CategoryInfo : ObjectNotFound: (.ProcessName:String) [], CommandNotFoundException + + FullyQualifiedErrorId : CommandNotFoundException + +.ProcessName : The term '.ProcessName' is not recognized as the name of a cmdlet, function, script file, or operable +program. Check the spelling of the name, or if a path was included, verify that the path is correct and try again. +At line:1 char:29 ++ Get-Process | Where-Object {.ProcessName -match 'obs|nvidia|shadowpla ... ++ ~~~~~~~~~~~~ + + CategoryInfo : ObjectNotFound: (.ProcessName:String) [], CommandNotFoundException + + FullyQualifiedErrorId : CommandNotFoundException + +.ProcessName : The term '.ProcessName' is not recognized as the name of a cmdlet, function, script file, or operable +program. Check the spelling of the name, or if a path was included, verify that the path is correct and try again. +At line:1 char:29 ++ Get-Process | Where-Object {.ProcessName -match 'obs|nvidia|shadowpla ... ++ ~~~~~~~~~~~~ + + CategoryInfo : ObjectNotFound: (.ProcessName:String) [], CommandNotFoundException + + FullyQualifiedErrorId : CommandNotFoundException + +.ProcessName : The term '.ProcessName' is not recognized as the name of a cmdlet, function, script file, or operable +program. Check the spelling of the name, or if a path was included, verify that the path is correct and try again. +At line:1 char:29 ++ Get-Process | Where-Object {.ProcessName -match 'obs|nvidia|shadowpla ... ++ ~~~~~~~~~~~~ + + CategoryInfo : ObjectNotFound: (.ProcessName:String) [], CommandNotFoundException + + FullyQualifiedErrorId : CommandNotFoundException + +.ProcessName : The term '.ProcessName' is not recognized as the name of a cmdlet, function, script file, or operable +program. Check the spelling of the name, or if a path was included, verify that the path is correct and try again. +At line:1 char:29 ++ Get-Process | Where-Object {.ProcessName -match 'obs|nvidia|shadowpla ... ++ ~~~~~~~~~~~~ + + CategoryInfo : ObjectNotFound: (.ProcessName:String) [], CommandNotFoundException + + FullyQualifiedErrorId : CommandNotFoundException + +.ProcessName : The term '.ProcessName' is not recognized as the name of a cmdlet, function, script file, or operable +program. Check the spelling of the name, or if a path was included, verify that the path is correct and try again. +At line:1 char:29 ++ Get-Process | Where-Object {.ProcessName -match 'obs|nvidia|shadowpla ... ++ ~~~~~~~~~~~~ + + CategoryInfo : ObjectNotFound: (.ProcessName:String) [], CommandNotFoundException + + FullyQualifiedErrorId : CommandNotFoundException + +.ProcessName : The term '.ProcessName' is not recognized as the name of a cmdlet, function, script file, or operable +program. Check the spelling of the name, or if a path was included, verify that the path is correct and try again. +At line:1 char:29 ++ Get-Process | Where-Object {.ProcessName -match 'obs|nvidia|shadowpla ... ++ ~~~~~~~~~~~~ + + CategoryInfo : ObjectNotFound: (.ProcessName:String) [], CommandNotFoundException + + FullyQualifiedErrorId : CommandNotFoundException + +.ProcessName : The term '.ProcessName' is not recognized as the name of a cmdlet, function, script file, or operable +program. Check the spelling of the name, or if a path was included, verify that the path is correct and try again. +At line:1 char:29 ++ Get-Process | Where-Object {.ProcessName -match 'obs|nvidia|shadowpla ... ++ ~~~~~~~~~~~~ + + CategoryInfo : ObjectNotFound: (.ProcessName:String) [], CommandNotFoundException + + FullyQualifiedErrorId : CommandNotFoundException + +.ProcessName : The term '.ProcessName' is not recognized as the name of a cmdlet, function, script file, or operable +program. Check the spelling of the name, or if a path was included, verify that the path is correct and try again. +At line:1 char:29 ++ Get-Process | Where-Object {.ProcessName -match 'obs|nvidia|shadowpla ... ++ ~~~~~~~~~~~~ + + CategoryInfo : ObjectNotFound: (.ProcessName:String) [], CommandNotFoundException + + FullyQualifiedErrorId : CommandNotFoundException + +.ProcessName : The term '.ProcessName' is not recognized as the name of a cmdlet, function, script file, or operable +program. Check the spelling of the name, or if a path was included, verify that the path is correct and try again. +At line:1 char:29 ++ Get-Process | Where-Object {.ProcessName -match 'obs|nvidia|shadowpla ... ++ ~~~~~~~~~~~~ + + CategoryInfo : ObjectNotFound: (.ProcessName:String) [], CommandNotFoundException + + FullyQualifiedErrorId : CommandNotFoundException + +.ProcessName : The term '.ProcessName' is not recognized as the name of a cmdlet, function, script file, or operable +program. Check the spelling of the name, or if a path was included, verify that the path is correct and try again. +At line:1 char:29 ++ Get-Process | Where-Object {.ProcessName -match 'obs|nvidia|shadowpla ... ++ ~~~~~~~~~~~~ + + CategoryInfo : ObjectNotFound: (.ProcessName:String) [], CommandNotFoundException + + FullyQualifiedErrorId : CommandNotFoundException + +.ProcessName : The term '.ProcessName' is not recognized as the name of a cmdlet, function, script file, or operable +program. Check the spelling of the name, or if a path was included, verify that the path is correct and try again. +At line:1 char:29 ++ Get-Process | Where-Object {.ProcessName -match 'obs|nvidia|shadowpla ... ++ ~~~~~~~~~~~~ + + CategoryInfo : ObjectNotFound: (.ProcessName:String) [], CommandNotFoundException + + FullyQualifiedErrorId : CommandNotFoundException + +.ProcessName : The term '.ProcessName' is not recognized as the name of a cmdlet, function, script file, or operable +program. Check the spelling of the name, or if a path was included, verify that the path is correct and try again. +At line:1 char:29 ++ Get-Process | Where-Object {.ProcessName -match 'obs|nvidia|shadowpla ... ++ ~~~~~~~~~~~~ + + CategoryInfo : ObjectNotFound: (.ProcessName:String) [], CommandNotFoundException + + FullyQualifiedErrorId : CommandNotFoundException + +.ProcessName : The term '.ProcessName' is not recognized as the name of a cmdlet, function, script file, or operable +program. Check the spelling of the name, or if a path was included, verify that the path is correct and try again. +At line:1 char:29 ++ Get-Process | Where-Object {.ProcessName -match 'obs|nvidia|shadowpla ... ++ ~~~~~~~~~~~~ + + CategoryInfo : ObjectNotFound: (.ProcessName:String) [], CommandNotFoundException + + FullyQualifiedErrorId : CommandNotFoundException + +.ProcessName : The term '.ProcessName' is not recognized as the name of a cmdlet, function, script file, or operable +program. Check the spelling of the name, or if a path was included, verify that the path is correct and try again. +At line:1 char:29 ++ Get-Process | Where-Object {.ProcessName -match 'obs|nvidia|shadowpla ... ++ ~~~~~~~~~~~~ + + CategoryInfo : ObjectNotFound: (.ProcessName:String) [], CommandNotFoundException + + FullyQualifiedErrorId : CommandNotFoundException + +.ProcessName : The term '.ProcessName' is not recognized as the name of a cmdlet, function, script file, or operable +program. Check the spelling of the name, or if a path was included, verify that the path is correct and try again. +At line:1 char:29 ++ Get-Process | Where-Object {.ProcessName -match 'obs|nvidia|shadowpla ... ++ ~~~~~~~~~~~~ + + CategoryInfo : ObjectNotFound: (.ProcessName:String) [], CommandNotFoundException + + FullyQualifiedErrorId : CommandNotFoundException + +.ProcessName : The term '.ProcessName' is not recognized as the name of a cmdlet, function, script file, or operable +program. Check the spelling of the name, or if a path was included, verify that the path is correct and try again. +At line:1 char:29 ++ Get-Process | Where-Object {.ProcessName -match 'obs|nvidia|shadowpla ... ++ ~~~~~~~~~~~~ + + CategoryInfo : ObjectNotFound: (.ProcessName:String) [], CommandNotFoundException + + FullyQualifiedErrorId : CommandNotFoundException + +.ProcessName : The term '.ProcessName' is not recognized as the name of a cmdlet, function, script file, or operable +program. Check the spelling of the name, or if a path was included, verify that the path is correct and try again. +At line:1 char:29 ++ Get-Process | Where-Object {.ProcessName -match 'obs|nvidia|shadowpla ... ++ ~~~~~~~~~~~~ + + CategoryInfo : ObjectNotFound: (.ProcessName:String) [], CommandNotFoundException + + FullyQualifiedErrorId : CommandNotFoundException + +.ProcessName : The term '.ProcessName' is not recognized as the name of a cmdlet, function, script file, or operable +program. Check the spelling of the name, or if a path was included, verify that the path is correct and try again. +At line:1 char:29 ++ Get-Process | Where-Object {.ProcessName -match 'obs|nvidia|shadowpla ... ++ ~~~~~~~~~~~~ + + CategoryInfo : ObjectNotFound: (.ProcessName:String) [], CommandNotFoundException + + FullyQualifiedErrorId : CommandNotFoundException + +.ProcessName : The term '.ProcessName' is not recognized as the name of a cmdlet, function, script file, or operable +program. Check the spelling of the name, or if a path was included, verify that the path is correct and try again. +At line:1 char:29 ++ Get-Process | Where-Object {.ProcessName -match 'obs|nvidia|shadowpla ... ++ ~~~~~~~~~~~~ + + CategoryInfo : ObjectNotFound: (.ProcessName:String) [], CommandNotFoundException + + FullyQualifiedErrorId : CommandNotFoundException + +.ProcessName : The term '.ProcessName' is not recognized as the name of a cmdlet, function, script file, or operable +program. Check the spelling of the name, or if a path was included, verify that the path is correct and try again. +At line:1 char:29 ++ Get-Process | Where-Object {.ProcessName -match 'obs|nvidia|shadowpla ... ++ ~~~~~~~~~~~~ + + CategoryInfo : ObjectNotFound: (.ProcessName:String) [], CommandNotFoundException + + FullyQualifiedErrorId : CommandNotFoundException + +.ProcessName : The term '.ProcessName' is not recognized as the name of a cmdlet, function, script file, or operable +program. Check the spelling of the name, or if a path was included, verify that the path is correct and try again. +At line:1 char:29 ++ Get-Process | Where-Object {.ProcessName -match 'obs|nvidia|shadowpla ... ++ ~~~~~~~~~~~~ + + CategoryInfo : ObjectNotFound: (.ProcessName:String) [], CommandNotFoundException + + FullyQualifiedErrorId : CommandNotFoundException + +.ProcessName : The term '.ProcessName' is not recognized as the name of a cmdlet, function, script file, or operable +program. Check the spelling of the name, or if a path was included, verify that the path is correct and try again. +At line:1 char:29 ++ Get-Process | Where-Object {.ProcessName -match 'obs|nvidia|shadowpla ... ++ ~~~~~~~~~~~~ + + CategoryInfo : ObjectNotFound: (.ProcessName:String) [], CommandNotFoundException + + FullyQualifiedErrorId : CommandNotFoundException + +.ProcessName : The term '.ProcessName' is not recognized as the name of a cmdlet, function, script file, or operable +program. Check the spelling of the name, or if a path was included, verify that the path is correct and try again. +At line:1 char:29 ++ Get-Process | Where-Object {.ProcessName -match 'obs|nvidia|shadowpla ... ++ ~~~~~~~~~~~~ + + CategoryInfo : ObjectNotFound: (.ProcessName:String) [], CommandNotFoundException + + FullyQualifiedErrorId : CommandNotFoundException + +.ProcessName : The term '.ProcessName' is not recognized as the name of a cmdlet, function, script file, or operable +program. Check the spelling of the name, or if a path was included, verify that the path is correct and try again. +At line:1 char:29 ++ Get-Process | Where-Object {.ProcessName -match 'obs|nvidia|shadowpla ... ++ ~~~~~~~~~~~~ + + CategoryInfo : ObjectNotFound: (.ProcessName:String) [], CommandNotFoundException + + FullyQualifiedErrorId : CommandNotFoundException + +.ProcessName : The term '.ProcessName' is not recognized as the name of a cmdlet, function, script file, or operable +program. Check the spelling of the name, or if a path was included, verify that the path is correct and try again. +At line:1 char:29 ++ Get-Process | Where-Object {.ProcessName -match 'obs|nvidia|shadowpla ... ++ ~~~~~~~~~~~~ + + CategoryInfo : ObjectNotFound: (.ProcessName:String) [], CommandNotFoundException + + FullyQualifiedErrorId : CommandNotFoundException + +.ProcessName : The term '.ProcessName' is not recognized as the name of a cmdlet, function, script file, or operable +program. Check the spelling of the name, or if a path was included, verify that the path is correct and try again. +At line:1 char:29 ++ Get-Process | Where-Object {.ProcessName -match 'obs|nvidia|shadowpla ... ++ ~~~~~~~~~~~~ + + CategoryInfo : ObjectNotFound: (.ProcessName:String) [], CommandNotFoundException + + FullyQualifiedErrorId : CommandNotFoundException + +.ProcessName : The term '.ProcessName' is not recognized as the name of a cmdlet, function, script file, or operable +program. Check the spelling of the name, or if a path was included, verify that the path is correct and try again. +At line:1 char:29 ++ Get-Process | Where-Object {.ProcessName -match 'obs|nvidia|shadowpla ... ++ ~~~~~~~~~~~~ + + CategoryInfo : ObjectNotFound: (.ProcessName:String) [], CommandNotFoundException + + FullyQualifiedErrorId : CommandNotFoundException + +.ProcessName : The term '.ProcessName' is not recognized as the name of a cmdlet, function, script file, or operable +program. Check the spelling of the name, or if a path was included, verify that the path is correct and try again. +At line:1 char:29 ++ Get-Process | Where-Object {.ProcessName -match 'obs|nvidia|shadowpla ... ++ ~~~~~~~~~~~~ + + CategoryInfo : ObjectNotFound: (.ProcessName:String) [], CommandNotFoundException + + FullyQualifiedErrorId : CommandNotFoundException + +.ProcessName : The term '.ProcessName' is not recognized as the name of a cmdlet, function, script file, or operable +program. Check the spelling of the name, or if a path was included, verify that the path is correct and try again. +At line:1 char:29 ++ Get-Process | Where-Object {.ProcessName -match 'obs|nvidia|shadowpla ... ++ ~~~~~~~~~~~~ + + CategoryInfo : ObjectNotFound: (.ProcessName:String) [], CommandNotFoundException + + FullyQualifiedErrorId : CommandNotFoundException + +.ProcessName : The term '.ProcessName' is not recognized as the name of a cmdlet, function, script file, or operable +program. Check the spelling of the name, or if a path was included, verify that the path is correct and try again. +At line:1 char:29 ++ Get-Process | Where-Object {.ProcessName -match 'obs|nvidia|shadowpla ... ++ ~~~~~~~~~~~~ + + CategoryInfo : ObjectNotFound: (.ProcessName:String) [], CommandNotFoundException + + FullyQualifiedErrorId : CommandNotFoundException + +.ProcessName : The term '.ProcessName' is not recognized as the name of a cmdlet, function, script file, or operable +program. Check the spelling of the name, or if a path was included, verify that the path is correct and try again. +At line:1 char:29 ++ Get-Process | Where-Object {.ProcessName -match 'obs|nvidia|shadowpla ... ++ ~~~~~~~~~~~~ + + CategoryInfo : ObjectNotFound: (.ProcessName:String) [], CommandNotFoundException + + FullyQualifiedErrorId : CommandNotFoundException + +.ProcessName : The term '.ProcessName' is not recognized as the name of a cmdlet, function, script file, or operable +program. Check the spelling of the name, or if a path was included, verify that the path is correct and try again. +At line:1 char:29 ++ Get-Process | Where-Object {.ProcessName -match 'obs|nvidia|shadowpla ... ++ ~~~~~~~~~~~~ + + CategoryInfo : ObjectNotFound: (.ProcessName:String) [], CommandNotFoundException + + FullyQualifiedErrorId : CommandNotFoundException + +.ProcessName : The term '.ProcessName' is not recognized as the name of a cmdlet, function, script file, or operable +program. Check the spelling of the name, or if a path was included, verify that the path is correct and try again. +At line:1 char:29 ++ Get-Process | Where-Object {.ProcessName -match 'obs|nvidia|shadowpla ... ++ ~~~~~~~~~~~~ + + CategoryInfo : ObjectNotFound: (.ProcessName:String) [], CommandNotFoundException + + FullyQualifiedErrorId : CommandNotFoundException + +.ProcessName : The term '.ProcessName' is not recognized as the name of a cmdlet, function, script file, or operable +program. Check the spelling of the name, or if a path was included, verify that the path is correct and try again. +At line:1 char:29 ++ Get-Process | Where-Object {.ProcessName -match 'obs|nvidia|shadowpla ... ++ ~~~~~~~~~~~~ + + CategoryInfo : ObjectNotFound: (.ProcessName:String) [], CommandNotFoundException + + FullyQualifiedErrorId : CommandNotFoundException + +.ProcessName : The term '.ProcessName' is not recognized as the name of a cmdlet, function, script file, or operable +program. Check the spelling of the name, or if a path was included, verify that the path is correct and try again. +At line:1 char:29 ++ Get-Process | Where-Object {.ProcessName -match 'obs|nvidia|shadowpla ... ++ ~~~~~~~~~~~~ + + CategoryInfo : ObjectNotFound: (.ProcessName:String) [], CommandNotFoundException + + FullyQualifiedErrorId : CommandNotFoundException + +.ProcessName : The term '.ProcessName' is not recognized as the name of a cmdlet, function, script file, or operable +program. Check the spelling of the name, or if a path was included, verify that the path is correct and try again. +At line:1 char:29 ++ Get-Process | Where-Object {.ProcessName -match 'obs|nvidia|shadowpla ... ++ ~~~~~~~~~~~~ + + CategoryInfo : ObjectNotFound: (.ProcessName:String) [], CommandNotFoundException + + FullyQualifiedErrorId : CommandNotFoundException + +.ProcessName : The term '.ProcessName' is not recognized as the name of a cmdlet, function, script file, or operable +program. Check the spelling of the name, or if a path was included, verify that the path is correct and try again. +At line:1 char:29 ++ Get-Process | Where-Object {.ProcessName -match 'obs|nvidia|shadowpla ... ++ ~~~~~~~~~~~~ + + CategoryInfo : ObjectNotFound: (.ProcessName:String) [], CommandNotFoundException + + FullyQualifiedErrorId : CommandNotFoundException + +.ProcessName : The term '.ProcessName' is not recognized as the name of a cmdlet, function, script file, or operable +program. Check the spelling of the name, or if a path was included, verify that the path is correct and try again. +At line:1 char:29 ++ Get-Process | Where-Object {.ProcessName -match 'obs|nvidia|shadowpla ... ++ ~~~~~~~~~~~~ + + CategoryInfo : ObjectNotFound: (.ProcessName:String) [], CommandNotFoundException + + FullyQualifiedErrorId : CommandNotFoundException + +.ProcessName : The term '.ProcessName' is not recognized as the name of a cmdlet, function, script file, or operable +program. Check the spelling of the name, or if a path was included, verify that the path is correct and try again. +At line:1 char:29 ++ Get-Process | Where-Object {.ProcessName -match 'obs|nvidia|shadowpla ... ++ ~~~~~~~~~~~~ + + CategoryInfo : ObjectNotFound: (.ProcessName:String) [], CommandNotFoundException + + FullyQualifiedErrorId : CommandNotFoundException + + +``` +
+
+ +--- + + +Trying a simpler command: + + +--- + + +
Tool use: **run_terminal_command_v2** • Run command: tasklist | findstr /i "obs nvidia geforce steam discord teamviewer anydesk gamebar" + +```bash +tasklist | findstr /i "obs nvidia geforce steam discord teamviewer anydesk gamebar" +``` + +``` +steam.exe 18980 Console 1 76,688 K +steamwebhelper.exe 19120 Console 1 451,340 K +steamservice.exe 19160 Services 0 8,624 K +steamwebhelper.exe 19204 Console 1 3,600 K +steamwebhelper.exe 17868 Console 1 20,960 K +steamwebhelper.exe 18028 Console 1 5,704 K +steamwebhelper.exe 18448 Console 1 273,260 K +Discord.exe 19616 Console 1 125,812 K +Discord.exe 19744 Console 1 3,164 K +Discord.exe 19900 Console 1 23,024 K +Discord.exe 20760 Console 1 936,508 K +Discord.exe 16388 Console 1 10,108 K +steamwebhelper.exe 17068 Console 1 22,872 K +Discord.exe 7460 Console 1 312,484 K +steamwebhelper.exe 4612 Console 1 131,880 K +steamwebhelper.exe 39516 Console 1 128,484 K + +``` +
+
+ +--- + + +Steam and Discord are running. Both can use global hotkeys, and Steam often uses Alt+R. Check their settings: + +## **Steam** (most likely culprit) +1. Open Steam +2. Go to **Steam → Settings → In-Game** +3. Look for "Steam Overlay" hotkeys +4. Check if Alt+R is bound to anything +5. Either disable the overlay or change the hotkey + +## **Discord** +1. Open Discord +2. Go to **User Settings → Keybinds** (or **Settings → Keybinds**) +3. Check for any Alt+R bindings +4. Remove or change them + +## **Windows Game Bar** +1. Press `Win + G` to open Game Bar +2. Go to **Settings → Shortcuts** +3. Check if Alt+R is assigned + +## **Quick test method** +Temporarily close Steam and Discord, then test Alt+R in Blender: +- If it works, one of them is the culprit +- If it still doesn't work, check other apps or Windows accessibility settings + +Should I create a script to help identify which process is intercepting the hotkey, or do you want to check these settings first? + +--- + +_**User**_ + +It's not steam, it's not discord. I temp closed them both and it still didn't let me do it. + +All of the game bar shortcuts use the windows key. There's Win + Alt + R, but if I'm just hitting alt R, it shouldn't do anything right? + +--- + +_**Agent (model default, mode Agent)**_ + + +Win+Alt+R is different from Alt+R, so Game Bar shouldn't be intercepting it. Checking other possibilities: + + +--- + + +
Tool use: **run_terminal_command_v2** • Run command: tasklist /v | findstr /i "narrator screen reader accessibility" + +```bash +tasklist /v | findstr /i "narrator screen reader accessibility" +``` + +``` +smartscreen.exe 30588 Console 1 24,908 K Unknown PYRO\Nathan 0:00:00 N/A + +``` +
+
+ +--- + + +
Tool use: **run_terminal_command_v2** • Run command: powershell -Command "Get-Process | Where-Object {$_.ProcessName -notmatch '^(dwm|csrss|winlogon|services|lsass|svchost|explorer|System|Idle)$'} | Select-Object ProcessName | Sort-Object ProcessName -Unique | Format-Table -AutoSize" + +```bash +powershell -Command "Get-Process | Where-Object {$_.ProcessName -notmatch '^(dwm|csrss|winlogon|services|lsass|svchost|explorer|System|Idle)$'} | Select-Object ProcessName | Sort-Object ProcessName -Unique | Format-Table -AutoSize" +``` + +``` +.ProcessName : The term '.ProcessName' is not recognized as the name of a cmdlet, function, script file, or operable +program. Check the spelling of the name, or if a path was included, verify that the path is correct and try again. +At line:1 char:29 ++ Get-Process | Where-Object {.ProcessName -notmatch '^(dwm|csrss|winlo ... ++ ~~~~~~~~~~~~ + + CategoryInfo : ObjectNotFound: (.ProcessName:String) [], CommandNotFoundException + + FullyQualifiedErrorId : CommandNotFoundException + +.ProcessName : The term '.ProcessName' is not recognized as the name of a cmdlet, function, script file, or operable +program. Check the spelling of the name, or if a path was included, verify that the path is correct and try again. +At line:1 char:29 ++ Get-Process | Where-Object {.ProcessName -notmatch '^(dwm|csrss|winlo ... ++ ~~~~~~~~~~~~ + + CategoryInfo : ObjectNotFound: (.ProcessName:String) [], CommandNotFoundException + + FullyQualifiedErrorId : CommandNotFoundException + +.ProcessName : The term '.ProcessName' is not recognized as the name of a cmdlet, function, script file, or operable +program. Check the spelling of the name, or if a path was included, verify that the path is correct and try again. +At line:1 char:29 ++ Get-Process | Where-Object {.ProcessName -notmatch '^(dwm|csrss|winlo ... ++ ~~~~~~~~~~~~ + + CategoryInfo : ObjectNotFound: (.ProcessName:String) [], CommandNotFoundException + + FullyQualifiedErrorId : CommandNotFoundException + +.ProcessName : The term '.ProcessName' is not recognized as the name of a cmdlet, function, script file, or operable +program. Check the spelling of the name, or if a path was included, verify that the path is correct and try again. +At line:1 char:29 ++ Get-Process | Where-Object {.ProcessName -notmatch '^(dwm|csrss|winlo ... ++ ~~~~~~~~~~~~ + + CategoryInfo : ObjectNotFound: (.ProcessName:String) [], CommandNotFoundException + + FullyQualifiedErrorId : CommandNotFoundException + +.ProcessName : The term '.ProcessName' is not recognized as the name of a cmdlet, function, script file, or operable +program. Check the spelling of the name, or if a path was included, verify that the path is correct and try again. +At line:1 char:29 ++ Get-Process | Where-Object {.ProcessName -notmatch '^(dwm|csrss|winlo ... ++ ~~~~~~~~~~~~ + + CategoryInfo : ObjectNotFound: (.ProcessName:String) [], CommandNotFoundException + + FullyQualifiedErrorId : CommandNotFoundException + +.ProcessName : The term '.ProcessName' is not recognized as the name of a cmdlet, function, script file, or operable +program. Check the spelling of the name, or if a path was included, verify that the path is correct and try again. +At line:1 char:29 ++ Get-Process | Where-Object {.ProcessName -notmatch '^(dwm|csrss|winlo ... ++ ~~~~~~~~~~~~ + + CategoryInfo : ObjectNotFound: (.ProcessName:String) [], CommandNotFoundException + + FullyQualifiedErrorId : CommandNotFoundException + +.ProcessName : The term '.ProcessName' is not recognized as the name of a cmdlet, function, script file, or operable +program. Check the spelling of the name, or if a path was included, verify that the path is correct and try again. +At line:1 char:29 ++ Get-Process | Where-Object {.ProcessName -notmatch '^(dwm|csrss|winlo ... ++ ~~~~~~~~~~~~ + + CategoryInfo : ObjectNotFound: (.ProcessName:String) [], CommandNotFoundException + + FullyQualifiedErrorId : CommandNotFoundException + +.ProcessName : The term '.ProcessName' is not recognized as the name of a cmdlet, function, script file, or operable +program. Check the spelling of the name, or if a path was included, verify that the path is correct and try again. +At line:1 char:29 ++ Get-Process | Where-Object {.ProcessName -notmatch '^(dwm|csrss|winlo ... ++ ~~~~~~~~~~~~ + + CategoryInfo : ObjectNotFound: (.ProcessName:String) [], CommandNotFoundException + + FullyQualifiedErrorId : CommandNotFoundException + +.ProcessName : The term '.ProcessName' is not recognized as the name of a cmdlet, function, script file, or operable +program. Check the spelling of the name, or if a path was included, verify that the path is correct and try again. +At line:1 char:29 ++ Get-Process | Where-Object {.ProcessName -notmatch '^(dwm|csrss|winlo ... ++ ~~~~~~~~~~~~ + + CategoryInfo : ObjectNotFound: (.ProcessName:String) [], CommandNotFoundException + + FullyQualifiedErrorId : CommandNotFoundException + +.ProcessName : The term '.ProcessName' is not recognized as the name of a cmdlet, function, script file, or operable +program. Check the spelling of the name, or if a path was included, verify that the path is correct and try again. +At line:1 char:29 ++ Get-Process | Where-Object {.ProcessName -notmatch '^(dwm|csrss|winlo ... ++ ~~~~~~~~~~~~ + + CategoryInfo : ObjectNotFound: (.ProcessName:String) [], CommandNotFoundException + + FullyQualifiedErrorId : CommandNotFoundException + +.ProcessName : The term '.ProcessName' is not recognized as the name of a cmdlet, function, script file, or operable +program. Check the spelling of the name, or if a path was included, verify that the path is correct and try again. +At line:1 char:29 ++ Get-Process | Where-Object {.ProcessName -notmatch '^(dwm|csrss|winlo ... ++ ~~~~~~~~~~~~ + + CategoryInfo : ObjectNotFound: (.ProcessName:String) [], CommandNotFoundException + + FullyQualifiedErrorId : CommandNotFoundException + +.ProcessName : The term '.ProcessName' is not recognized as the name of a cmdlet, function, script file, or operable +program. Check the spelling of the name, or if a path was included, verify that the path is correct and try again. +At line:1 char:29 ++ Get-Process | Where-Object {.ProcessName -notmatch '^(dwm|csrss|winlo ... ++ ~~~~~~~~~~~~ + + CategoryInfo : ObjectNotFound: (.ProcessName:String) [], CommandNotFoundException + + FullyQualifiedErrorId : CommandNotFoundException + +.ProcessName : The term '.ProcessName' is not recognized as the name of a cmdlet, function, script file, or operable +program. Check the spelling of the name, or if a path was included, verify that the path is correct and try again. +At line:1 char:29 ++ Get-Process | Where-Object {.ProcessName -notmatch '^(dwm|csrss|winlo ... ++ ~~~~~~~~~~~~ + + CategoryInfo : ObjectNotFound: (.ProcessName:String) [], CommandNotFoundException + + FullyQualifiedErrorId : CommandNotFoundException + +.ProcessName : The term '.ProcessName' is not recognized as the name of a cmdlet, function, script file, or operable +program. Check the spelling of the name, or if a path was included, verify that the path is correct and try again. +At line:1 char:29 ++ Get-Process | Where-Object {.ProcessName -notmatch '^(dwm|csrss|winlo ... ++ ~~~~~~~~~~~~ + + CategoryInfo : ObjectNotFound: (.ProcessName:String) [], CommandNotFoundException + + FullyQualifiedErrorId : CommandNotFoundException + +.ProcessName : The term '.ProcessName' is not recognized as the name of a cmdlet, function, script file, or operable +program. Check the spelling of the name, or if a path was included, verify that the path is correct and try again. +At line:1 char:29 ++ Get-Process | Where-Object {.ProcessName -notmatch '^(dwm|csrss|winlo ... ++ ~~~~~~~~~~~~ + + CategoryInfo : ObjectNotFound: (.ProcessName:String) [], CommandNotFoundException + + FullyQualifiedErrorId : CommandNotFoundException + +.ProcessName : The term '.ProcessName' is not recognized as the name of a cmdlet, function, script file, or operable +program. Check the spelling of the name, or if a path was included, verify that the path is correct and try again. +At line:1 char:29 ++ Get-Process | Where-Object {.ProcessName -notmatch '^(dwm|csrss|winlo ... ++ ~~~~~~~~~~~~ + + CategoryInfo : ObjectNotFound: (.ProcessName:String) [], CommandNotFoundException + + FullyQualifiedErrorId : CommandNotFoundException + +.ProcessName : The term '.ProcessName' is not recognized as the name of a cmdlet, function, script file, or operable +program. Check the spelling of the name, or if a path was included, verify that the path is correct and try again. +At line:1 char:29 ++ Get-Process | Where-Object {.ProcessName -notmatch '^(dwm|csrss|winlo ... ++ ~~~~~~~~~~~~ + + CategoryInfo : ObjectNotFound: (.ProcessName:String) [], CommandNotFoundException + + FullyQualifiedErrorId : CommandNotFoundException + +.ProcessName : The term '.ProcessName' is not recognized as the name of a cmdlet, function, script file, or operable +program. Check the spelling of the name, or if a path was included, verify that the path is correct and try again. +At line:1 char:29 ++ Get-Process | Where-Object {.ProcessName -notmatch '^(dwm|csrss|winlo ... ++ ~~~~~~~~~~~~ + + CategoryInfo : ObjectNotFound: (.ProcessName:String) [], CommandNotFoundException + + FullyQualifiedErrorId : CommandNotFoundException + +.ProcessName : The term '.ProcessName' is not recognized as the name of a cmdlet, function, script file, or operable +program. Check the spelling of the name, or if a path was included, verify that the path is correct and try again. +At line:1 char:29 ++ Get-Process | Where-Object {.ProcessName -notmatch '^(dwm|csrss|winlo ... ++ ~~~~~~~~~~~~ + + CategoryInfo : ObjectNotFound: (.ProcessName:String) [], CommandNotFoundException + + FullyQualifiedErrorId : CommandNotFoundException + +.ProcessName : The term '.ProcessName' is not recognized as the name of a cmdlet, function, script file, or operable +program. Check the spelling of the name, or if a path was included, verify that the path is correct and try again. +At line:1 char:29 ++ Get-Process | Where-Object {.ProcessName -notmatch '^(dwm|csrss|winlo ... ++ ~~~~~~~~~~~~ + + CategoryInfo : ObjectNotFound: (.ProcessName:String) [], CommandNotFoundException + + FullyQualifiedErrorId : CommandNotFoundException + +.ProcessName : The term '.ProcessName' is not recognized as the name of a cmdlet, function, script file, or operable +program. Check the spelling of the name, or if a path was included, verify that the path is correct and try again. +At line:1 char:29 ++ Get-Process | Where-Object {.ProcessName -notmatch '^(dwm|csrss|winlo ... ++ ~~~~~~~~~~~~ + + CategoryInfo : ObjectNotFound: (.ProcessName:String) [], CommandNotFoundException + + FullyQualifiedErrorId : CommandNotFoundException + +.ProcessName : The term '.ProcessName' is not recognized as the name of a cmdlet, function, script file, or operable +program. Check the spelling of the name, or if a path was included, verify that the path is correct and try again. +At line:1 char:29 ++ Get-Process | Where-Object {.ProcessName -notmatch '^(dwm|csrss|winlo ... ++ ~~~~~~~~~~~~ + + CategoryInfo : ObjectNotFound: (.ProcessName:String) [], CommandNotFoundException + + FullyQualifiedErrorId : CommandNotFoundException + +.ProcessName : The term '.ProcessName' is not recognized as the name of a cmdlet, function, script file, or operable +program. Check the spelling of the name, or if a path was included, verify that the path is correct and try again. +At line:1 char:29 ++ Get-Process | Where-Object {.ProcessName -notmatch '^(dwm|csrss|winlo ... ++ ~~~~~~~~~~~~ + + CategoryInfo : ObjectNotFound: (.ProcessName:String) [], CommandNotFoundException + + FullyQualifiedErrorId : CommandNotFoundException + +.ProcessName : The term '.ProcessName' is not recognized as the name of a cmdlet, function, script file, or operable +program. Check the spelling of the name, or if a path was included, verify that the path is correct and try again. +At line:1 char:29 ++ Get-Process | Where-Object {.ProcessName -notmatch '^(dwm|csrss|winlo ... ++ ~~~~~~~~~~~~ + + CategoryInfo : ObjectNotFound: (.ProcessName:String) [], CommandNotFoundException + + FullyQualifiedErrorId : CommandNotFoundException + +.ProcessName : The term '.ProcessName' is not recognized as the name of a cmdlet, function, script file, or operable +program. Check the spelling of the name, or if a path was included, verify that the path is correct and try again. +At line:1 char:29 ++ Get-Process | Where-Object {.ProcessName -notmatch '^(dwm|csrss|winlo ... ++ ~~~~~~~~~~~~ + + CategoryInfo : ObjectNotFound: (.ProcessName:String) [], CommandNotFoundException + + FullyQualifiedErrorId : CommandNotFoundException + +.ProcessName : The term '.ProcessName' is not recognized as the name of a cmdlet, function, script file, or operable +program. Check the spelling of the name, or if a path was included, verify that the path is correct and try again. +At line:1 char:29 ++ Get-Process | Where-Object {.ProcessName -notmatch '^(dwm|csrss|winlo ... ++ ~~~~~~~~~~~~ + + CategoryInfo : ObjectNotFound: (.ProcessName:String) [], CommandNotFoundException + + FullyQualifiedErrorId : CommandNotFoundException + +.ProcessName : The term '.ProcessName' is not recognized as the name of a cmdlet, function, script file, or operable +program. Check the spelling of the name, or if a path was included, verify that the path is correct and try again. +At line:1 char:29 ++ Get-Process | Where-Object {.ProcessName -notmatch '^(dwm|csrss|winlo ... ++ ~~~~~~~~~~~~ + + CategoryInfo : ObjectNotFound: (.ProcessName:String) [], CommandNotFoundException + + FullyQualifiedErrorId : CommandNotFoundException + +.ProcessName : The term '.ProcessName' is not recognized as the name of a cmdlet, function, script file, or operable +program. Check the spelling of the name, or if a path was included, verify that the path is correct and try again. +At line:1 char:29 ++ Get-Process | Where-Object {.ProcessName -notmatch '^(dwm|csrss|winlo ... ++ ~~~~~~~~~~~~ + + CategoryInfo : ObjectNotFound: (.ProcessName:String) [], CommandNotFoundException + + FullyQualifiedErrorId : CommandNotFoundException + +.ProcessName : The term '.ProcessName' is not recognized as the name of a cmdlet, function, script file, or operable +program. Check the spelling of the name, or if a path was included, verify that the path is correct and try again. +At line:1 char:29 ++ Get-Process | Where-Object {.ProcessName -notmatch '^(dwm|csrss|winlo ... ++ ~~~~~~~~~~~~ + + CategoryInfo : ObjectNotFound: (.ProcessName:String) [], CommandNotFoundException + + FullyQualifiedErrorId : CommandNotFoundException + +.ProcessName : The term '.ProcessName' is not recognized as the name of a cmdlet, function, script file, or operable +program. Check the spelling of the name, or if a path was included, verify that the path is correct and try again. +At line:1 char:29 ++ Get-Process | Where-Object {.ProcessName -notmatch '^(dwm|csrss|winlo ... ++ ~~~~~~~~~~~~ + + CategoryInfo : ObjectNotFound: (.ProcessName:String) [], CommandNotFoundException + + FullyQualifiedErrorId : CommandNotFoundException + +.ProcessName : The term '.ProcessName' is not recognized as the name of a cmdlet, function, script file, or operable +program. Check the spelling of the name, or if a path was included, verify that the path is correct and try again. +At line:1 char:29 ++ Get-Process | Where-Object {.ProcessName -notmatch '^(dwm|csrss|winlo ... ++ ~~~~~~~~~~~~ + + CategoryInfo : ObjectNotFound: (.ProcessName:String) [], CommandNotFoundException + + FullyQualifiedErrorId : CommandNotFoundException + +.ProcessName : The term '.ProcessName' is not recognized as the name of a cmdlet, function, script file, or operable +program. Check the spelling of the name, or if a path was included, verify that the path is correct and try again. +At line:1 char:29 ++ Get-Process | Where-Object {.ProcessName -notmatch '^(dwm|csrss|winlo ... ++ ~~~~~~~~~~~~ + + CategoryInfo : ObjectNotFound: (.ProcessName:String) [], CommandNotFoundException + + FullyQualifiedErrorId : CommandNotFoundException + +.ProcessName : The term '.ProcessName' is not recognized as the name of a cmdlet, function, script file, or operable +program. Check the spelling of the name, or if a path was included, verify that the path is correct and try again. +At line:1 char:29 ++ Get-Process | Where-Object {.ProcessName -notmatch '^(dwm|csrss|winlo ... ++ ~~~~~~~~~~~~ + + CategoryInfo : ObjectNotFound: (.ProcessName:String) [], CommandNotFoundException + + FullyQualifiedErrorId : CommandNotFoundException + +.ProcessName : The term '.ProcessName' is not recognized as the name of a cmdlet, function, script file, or operable +program. Check the spelling of the name, or if a path was included, verify that the path is correct and try again. +At line:1 char:29 ++ Get-Process | Where-Object {.ProcessName -notmatch '^(dwm|csrss|winlo ... ++ ~~~~~~~~~~~~ + + CategoryInfo : ObjectNotFound: (.ProcessName:String) [], CommandNotFoundException + + FullyQualifiedErrorId : CommandNotFoundException + +.ProcessName : The term '.ProcessName' is not recognized as the name of a cmdlet, function, script file, or operable +program. Check the spelling of the name, or if a path was included, verify that the path is correct and try again. +At line:1 char:29 ++ Get-Process | Where-Object {.ProcessName -notmatch '^(dwm|csrss|winlo ... ++ ~~~~~~~~~~~~ + + CategoryInfo : ObjectNotFound: (.ProcessName:String) [], CommandNotFoundException + + FullyQualifiedErrorId : CommandNotFoundException + +.ProcessName : The term '.ProcessName' is not recognized as the name of a cmdlet, function, script file, or operable +program. Check the spelling of the name, or if a path was included, verify that the path is correct and try again. +At line:1 char:29 ++ Get-Process | Where-Object {.ProcessName -notmatch '^(dwm|csrss|winlo ... ++ ~~~~~~~~~~~~ + + CategoryInfo : ObjectNotFound: (.ProcessName:String) [], CommandNotFoundException + + FullyQualifiedErrorId : CommandNotFoundException + +.ProcessName : The term '.ProcessName' is not recognized as the name of a cmdlet, function, script file, or operable +program. Check the spelling of the name, or if a path was included, verify that the path is correct and try again. +At line:1 char:29 ++ Get-Process | Where-Object {.ProcessName -notmatch '^(dwm|csrss|winlo ... ++ ~~~~~~~~~~~~ + + CategoryInfo : ObjectNotFound: (.ProcessName:String) [], CommandNotFoundException + + FullyQualifiedErrorId : CommandNotFoundException + +.ProcessName : The term '.ProcessName' is not recognized as the name of a cmdlet, function, script file, or operable +program. Check the spelling of the name, or if a path was included, verify that the path is correct and try again. +At line:1 char:29 ++ Get-Process | Where-Object {.ProcessName -notmatch '^(dwm|csrss|winlo ... ++ ~~~~~~~~~~~~ + + CategoryInfo : ObjectNotFound: (.ProcessName:String) [], CommandNotFoundException + + FullyQualifiedErrorId : CommandNotFoundException + +.ProcessName : The term '.ProcessName' is not recognized as the name of a cmdlet, function, script file, or operable +program. Check the spelling of the name, or if a path was included, verify that the path is correct and try again. +At line:1 char:29 ++ Get-Process | Where-Object {.ProcessName -notmatch '^(dwm|csrss|winlo ... ++ ~~~~~~~~~~~~ + + CategoryInfo : ObjectNotFound: (.ProcessName:String) [], CommandNotFoundException + + FullyQualifiedErrorId : CommandNotFoundException + +.ProcessName : The term '.ProcessName' is not recognized as the name of a cmdlet, function, script file, or operable +program. Check the spelling of the name, or if a path was included, verify that the path is correct and try again. +At line:1 char:29 ++ Get-Process | Where-Object {.ProcessName -notmatch '^(dwm|csrss|winlo ... ++ ~~~~~~~~~~~~ + + CategoryInfo : ObjectNotFound: (.ProcessName:String) [], CommandNotFoundException + + FullyQualifiedErrorId : CommandNotFoundException + +.ProcessName : The term '.ProcessName' is not recognized as the name of a cmdlet, function, script file, or operable +program. Check the spelling of the name, or if a path was included, verify that the path is correct and try again. +At line:1 char:29 ++ Get-Process | Where-Object {.ProcessName -notmatch '^(dwm|csrss|winlo ... ++ ~~~~~~~~~~~~ + + CategoryInfo : ObjectNotFound: (.ProcessName:String) [], CommandNotFoundException + + FullyQualifiedErrorId : CommandNotFoundException + +.ProcessName : The term '.ProcessName' is not recognized as the name of a cmdlet, function, script file, or operable +program. Check the spelling of the name, or if a path was included, verify that the path is correct and try again. +At line:1 char:29 ++ Get-Process | Where-Object {.ProcessName -notmatch '^(dwm|csrss|winlo ... ++ ~~~~~~~~~~~~ + + CategoryInfo : ObjectNotFound: (.ProcessName:String) [], CommandNotFoundException + + FullyQualifiedErrorId : CommandNotFoundException + +.ProcessName : The term '.ProcessName' is not recognized as the name of a cmdlet, function, script file, or operable +program. Check the spelling of the name, or if a path was included, verify that the path is correct and try again. +At line:1 char:29 ++ Get-Process | Where-Object {.ProcessName -notmatch '^(dwm|csrss|winlo ... ++ ~~~~~~~~~~~~ + + CategoryInfo : ObjectNotFound: (.ProcessName:String) [], CommandNotFoundException + + FullyQualifiedErrorId : CommandNotFoundException + +.ProcessName : The term '.ProcessName' is not recognized as the name of a cmdlet, function, script file, or operable +program. Check the spelling of the name, or if a path was included, verify that the path is correct and try again. +At line:1 char:29 ++ Get-Process | Where-Object {.ProcessName -notmatch '^(dwm|csrss|winlo ... ++ ~~~~~~~~~~~~ + + CategoryInfo : ObjectNotFound: (.ProcessName:String) [], CommandNotFoundException + + FullyQualifiedErrorId : CommandNotFoundException + +.ProcessName : The term '.ProcessName' is not recognized as the name of a cmdlet, function, script file, or operable +program. Check the spelling of the name, or if a path was included, verify that the path is correct and try again. +At line:1 char:29 ++ Get-Process | Where-Object {.ProcessName -notmatch '^(dwm|csrss|winlo ... ++ ~~~~~~~~~~~~ + + CategoryInfo : ObjectNotFound: (.ProcessName:String) [], CommandNotFoundException + + FullyQualifiedErrorId : CommandNotFoundException + +.ProcessName : The term '.ProcessName' is not recognized as the name of a cmdlet, function, script file, or operable +program. Check the spelling of the name, or if a path was included, verify that the path is correct and try again. +At line:1 char:29 ++ Get-Process | Where-Object {.ProcessName -notmatch '^(dwm|csrss|winlo ... ++ ~~~~~~~~~~~~ + + CategoryInfo : ObjectNotFound: (.ProcessName:String) [], CommandNotFoundException + + FullyQualifiedErrorId : CommandNotFoundException + +.ProcessName : The term '.ProcessName' is not recognized as the name of a cmdlet, function, script file, or operable +program. Check the spelling of the name, or if a path was included, verify that the path is correct and try again. +At line:1 char:29 ++ Get-Process | Where-Object {.ProcessName -notmatch '^(dwm|csrss|winlo ... ++ ~~~~~~~~~~~~ + + CategoryInfo : ObjectNotFound: (.ProcessName:String) [], CommandNotFoundException + + FullyQualifiedErrorId : CommandNotFoundException + +.ProcessName : The term '.ProcessName' is not recognized as the name of a cmdlet, function, script file, or operable +program. Check the spelling of the name, or if a path was included, verify that the path is correct and try again. +At line:1 char:29 ++ Get-Process | Where-Object {.ProcessName -notmatch '^(dwm|csrss|winlo ... ++ ~~~~~~~~~~~~ + + CategoryInfo : ObjectNotFound: (.ProcessName:String) [], CommandNotFoundException + + FullyQualifiedErrorId : CommandNotFoundException + +.ProcessName : The term '.ProcessName' is not recognized as the name of a cmdlet, function, script file, or operable +program. Check the spelling of the name, or if a path was included, verify that the path is correct and try again. +At line:1 char:29 ++ Get-Process | Where-Object {.ProcessName -notmatch '^(dwm|csrss|winlo ... ++ ~~~~~~~~~~~~ + + CategoryInfo : ObjectNotFound: (.ProcessName:String) [], CommandNotFoundException + + FullyQualifiedErrorId : CommandNotFoundException + +.ProcessName : The term '.ProcessName' is not recognized as the name of a cmdlet, function, script file, or operable +program. Check the spelling of the name, or if a path was included, verify that the path is correct and try again. +At line:1 char:29 ++ Get-Process | Where-Object {.ProcessName -notmatch '^(dwm|csrss|winlo ... ++ ~~~~~~~~~~~~ + + CategoryInfo : ObjectNotFound: (.ProcessName:String) [], CommandNotFoundException + + FullyQualifiedErrorId : CommandNotFoundException + +.ProcessName : The term '.ProcessName' is not recognized as the name of a cmdlet, function, script file, or operable +program. Check the spelling of the name, or if a path was included, verify that the path is correct and try again. +At line:1 char:29 ++ Get-Process | Where-Object {.ProcessName -notmatch '^(dwm|csrss|winlo ... ++ ~~~~~~~~~~~~ + + CategoryInfo : ObjectNotFound: (.ProcessName:String) [], CommandNotFoundException + + FullyQualifiedErrorId : CommandNotFoundException + +.ProcessName : The term '.ProcessName' is not recognized as the name of a cmdlet, function, script file, or operable +program. Check the spelling of the name, or if a path was included, verify that the path is correct and try again. +At line:1 char:29 ++ Get-Process | Where-Object {.ProcessName -notmatch '^(dwm|csrss|winlo ... ++ ~~~~~~~~~~~~ + + CategoryInfo : ObjectNotFound: (.ProcessName:String) [], CommandNotFoundException + + FullyQualifiedErrorId : CommandNotFoundException + +.ProcessName : The term '.ProcessName' is not recognized as the name of a cmdlet, function, script file, or operable +program. Check the spelling of the name, or if a path was included, verify that the path is correct and try again. +At line:1 char:29 ++ Get-Process | Where-Object {.ProcessName -notmatch '^(dwm|csrss|winlo ... ++ ~~~~~~~~~~~~ + + CategoryInfo : ObjectNotFound: (.ProcessName:String) [], CommandNotFoundException + + FullyQualifiedErrorId : CommandNotFoundException + +.ProcessName : The term '.ProcessName' is not recognized as the name of a cmdlet, function, script file, or operable +program. Check the spelling of the name, or if a path was included, verify that the path is correct and try again. +At line:1 char:29 ++ Get-Process | Where-Object {.ProcessName -notmatch '^(dwm|csrss|winlo ... ++ ~~~~~~~~~~~~ + + CategoryInfo : ObjectNotFound: (.ProcessName:String) [], CommandNotFoundException + + FullyQualifiedErrorId : CommandNotFoundException + +.ProcessName : The term '.ProcessName' is not recognized as the name of a cmdlet, function, script file, or operable +program. Check the spelling of the name, or if a path was included, verify that the path is correct and try again. +At line:1 char:29 ++ Get-Process | Where-Object {.ProcessName -notmatch '^(dwm|csrss|winlo ... ++ ~~~~~~~~~~~~ + + CategoryInfo : ObjectNotFound: (.ProcessName:String) [], CommandNotFoundException + + FullyQualifiedErrorId : CommandNotFoundException + +.ProcessName : The term '.ProcessName' is not recognized as the name of a cmdlet, function, script file, or operable +program. Check the spelling of the name, or if a path was included, verify that the path is correct and try again. +At line:1 char:29 ++ Get-Process | Where-Object {.ProcessName -notmatch '^(dwm|csrss|winlo ... ++ ~~~~~~~~~~~~ + + CategoryInfo : ObjectNotFound: (.ProcessName:String) [], CommandNotFoundException + + FullyQualifiedErrorId : CommandNotFoundException + +.ProcessName : The term '.ProcessName' is not recognized as the name of a cmdlet, function, script file, or operable +program. Check the spelling of the name, or if a path was included, verify that the path is correct and try again. +At line:1 char:29 ++ Get-Process | Where-Object {.ProcessName -notmatch '^(dwm|csrss|winlo ... ++ ~~~~~~~~~~~~ + + CategoryInfo : ObjectNotFound: (.ProcessName:String) [], CommandNotFoundException + + FullyQualifiedErrorId : CommandNotFoundException + +.ProcessName : The term '.ProcessName' is not recognized as the name of a cmdlet, function, script file, or operable +program. Check the spelling of the name, or if a path was included, verify that the path is correct and try again. +At line:1 char:29 ++ Get-Process | Where-Object {.ProcessName -notmatch '^(dwm|csrss|winlo ... ++ ~~~~~~~~~~~~ + + CategoryInfo : ObjectNotFound: (.ProcessName:String) [], CommandNotFoundException + + FullyQualifiedErrorId : CommandNotFoundException + +.ProcessName : The term '.ProcessName' is not recognized as the name of a cmdlet, function, script file, or operable +program. Check the spelling of the name, or if a path was included, verify that the path is correct and try again. +At line:1 char:29 ++ Get-Process | Where-Object {.ProcessName -notmatch '^(dwm|csrss|winlo ... ++ ~~~~~~~~~~~~ + + CategoryInfo : ObjectNotFound: (.ProcessName:String) [], CommandNotFoundException + + FullyQualifiedErrorId : CommandNotFoundException + +.ProcessName : The term '.ProcessName' is not recognized as the name of a cmdlet, function, script file, or operable +program. Check the spelling of the name, or if a path was included, verify that the path is correct and try again. +At line:1 char:29 ++ Get-Process | Where-Object {.ProcessName -notmatch '^(dwm|csrss|winlo ... ++ ~~~~~~~~~~~~ + + CategoryInfo : ObjectNotFound: (.ProcessName:String) [], CommandNotFoundException + + FullyQualifiedErrorId : CommandNotFoundException + +.ProcessName : The term '.ProcessName' is not recognized as the name of a cmdlet, function, script file, or operable +program. Check the spelling of the name, or if a path was included, verify that the path is correct and try again. +At line:1 char:29 ++ Get-Process | Where-Object {.ProcessName -notmatch '^(dwm|csrss|winlo ... ++ ~~~~~~~~~~~~ + + CategoryInfo : ObjectNotFound: (.ProcessName:String) [], CommandNotFoundException + + FullyQualifiedErrorId : CommandNotFoundException + +.ProcessName : The term '.ProcessName' is not recognized as the name of a cmdlet, function, script file, or operable +program. Check the spelling of the name, or if a path was included, verify that the path is correct and try again. +At line:1 char:29 ++ Get-Process | Where-Object {.ProcessName -notmatch '^(dwm|csrss|winlo ... ++ ~~~~~~~~~~~~ + + CategoryInfo : ObjectNotFound: (.ProcessName:String) [], CommandNotFoundException + + FullyQualifiedErrorId : CommandNotFoundException + +.ProcessName : The term '.ProcessName' is not recognized as the name of a cmdlet, function, script file, or operable +program. Check the spelling of the name, or if a path was included, verify that the path is correct and try again. +At line:1 char:29 ++ Get-Process | Where-Object {.ProcessName -notmatch '^(dwm|csrss|winlo ... ++ ~~~~~~~~~~~~ + + CategoryInfo : ObjectNotFound: (.ProcessName:String) [], CommandNotFoundException + + FullyQualifiedErrorId : CommandNotFoundException + +.ProcessName : The term '.ProcessName' is not recognized as the name of a cmdlet, function, script file, or operable +program. Check the spelling of the name, or if a path was included, verify that the path is correct and try again. +At line:1 char:29 ++ Get-Process | Where-Object {.ProcessName -notmatch '^(dwm|csrss|winlo ... ++ ~~~~~~~~~~~~ + + CategoryInfo : ObjectNotFound: (.ProcessName:String) [], CommandNotFoundException + + FullyQualifiedErrorId : CommandNotFoundException + +.ProcessName : The term '.ProcessName' is not recognized as the name of a cmdlet, function, script file, or operable +program. Check the spelling of the name, or if a path was included, verify that the path is correct and try again. +At line:1 char:29 ++ Get-Process | Where-Object {.ProcessName -notmatch '^(dwm|csrss|winlo ... ++ ~~~~~~~~~~~~ + + CategoryInfo : ObjectNotFound: (.ProcessName:String) [], CommandNotFoundException + + FullyQualifiedErrorId : CommandNotFoundException + +.ProcessName : The term '.ProcessName' is not recognized as the name of a cmdlet, function, script file, or operable +program. Check the spelling of the name, or if a path was included, verify that the path is correct and try again. +At line:1 char:29 ++ Get-Process | Where-Object {.ProcessName -notmatch '^(dwm|csrss|winlo ... ++ ~~~~~~~~~~~~ + + CategoryInfo : ObjectNotFound: (.ProcessName:String) [], CommandNotFoundException + + FullyQualifiedErrorId : CommandNotFoundException + +.ProcessName : The term '.ProcessName' is not recognized as the name of a cmdlet, function, script file, or operable +program. Check the spelling of the name, or if a path was included, verify that the path is correct and try again. +At line:1 char:29 ++ Get-Process | Where-Object {.ProcessName -notmatch '^(dwm|csrss|winlo ... ++ ~~~~~~~~~~~~ + + CategoryInfo : ObjectNotFound: (.ProcessName:String) [], CommandNotFoundException + + FullyQualifiedErrorId : CommandNotFoundException + +.ProcessName : The term '.ProcessName' is not recognized as the name of a cmdlet, function, script file, or operable +program. Check the spelling of the name, or if a path was included, verify that the path is correct and try again. +At line:1 char:29 ++ Get-Process | Where-Object {.ProcessName -notmatch '^(dwm|csrss|winlo ... ++ ~~~~~~~~~~~~ + + CategoryInfo : ObjectNotFound: (.ProcessName:String) [], CommandNotFoundException + + FullyQualifiedErrorId : CommandNotFoundException + +.ProcessName : The term '.ProcessName' is not recognized as the name of a cmdlet, function, script file, or operable +program. Check the spelling of the name, or if a path was included, verify that the path is correct and try again. +At line:1 char:29 ++ Get-Process | Where-Object {.ProcessName -notmatch '^(dwm|csrss|winlo ... ++ ~~~~~~~~~~~~ + + CategoryInfo : ObjectNotFound: (.ProcessName:String) [], CommandNotFoundException + + FullyQualifiedErrorId : CommandNotFoundException + +.ProcessName : The term '.ProcessName' is not recognized as the name of a cmdlet, function, script file, or operable +program. Check the spelling of the name, or if a path was included, verify that the path is correct and try again. +At line:1 char:29 ++ Get-Process | Where-Object {.ProcessName -notmatch '^(dwm|csrss|winlo ... ++ ~~~~~~~~~~~~ + + CategoryInfo : ObjectNotFound: (.ProcessName:String) [], CommandNotFoundException + + FullyQualifiedErrorId : CommandNotFoundException + +.ProcessName : The term '.ProcessName' is not recognized as the name of a cmdlet, function, script file, or operable +program. Check the spelling of the name, or if a path was included, verify that the path is correct and try again. +At line:1 char:29 ++ Get-Process | Where-Object {.ProcessName -notmatch '^(dwm|csrss|winlo ... ++ ~~~~~~~~~~~~ + + CategoryInfo : ObjectNotFound: (.ProcessName:String) [], CommandNotFoundException + + FullyQualifiedErrorId : CommandNotFoundException + +.ProcessName : The term '.ProcessName' is not recognized as the name of a cmdlet, function, script file, or operable +program. Check the spelling of the name, or if a path was included, verify that the path is correct and try again. +At line:1 char:29 ++ Get-Process | Where-Object {.ProcessName -notmatch '^(dwm|csrss|winlo ... ++ ~~~~~~~~~~~~ + + CategoryInfo : ObjectNotFound: (.ProcessName:String) [], CommandNotFoundException + + FullyQualifiedErrorId : CommandNotFoundException + +.ProcessName : The term '.ProcessName' is not recognized as the name of a cmdlet, function, script file, or operable +program. Check the spelling of the name, or if a path was included, verify that the path is correct and try again. +At line:1 char:29 ++ Get-Process | Where-Object {.ProcessName -notmatch '^(dwm|csrss|winlo ... ++ ~~~~~~~~~~~~ + + CategoryInfo : ObjectNotFound: (.ProcessName:String) [], CommandNotFoundException + + FullyQualifiedErrorId : CommandNotFoundException + +.ProcessName : The term '.ProcessName' is not recognized as the name of a cmdlet, function, script file, or operable +program. Check the spelling of the name, or if a path was included, verify that the path is correct and try again. +At line:1 char:29 ++ Get-Process | Where-Object {.ProcessName -notmatch '^(dwm|csrss|winlo ... ++ ~~~~~~~~~~~~ + + CategoryInfo : ObjectNotFound: (.ProcessName:String) [], CommandNotFoundException + + FullyQualifiedErrorId : CommandNotFoundException + +.ProcessName : The term '.ProcessName' is not recognized as the name of a cmdlet, function, script file, or operable +program. Check the spelling of the name, or if a path was included, verify that the path is correct and try again. +At line:1 char:29 ++ Get-Process | Where-Object {.ProcessName -notmatch '^(dwm|csrss|winlo ... ++ ~~~~~~~~~~~~ + + CategoryInfo : ObjectNotFound: (.ProcessName:String) [], CommandNotFoundException + + FullyQualifiedErrorId : CommandNotFoundException + +.ProcessName : The term '.ProcessName' is not recognized as the name of a cmdlet, function, script file, or operable +program. Check the spelling of the name, or if a path was included, verify that the path is correct and try again. +At line:1 char:29 ++ Get-Process | Where-Object {.ProcessName -notmatch '^(dwm|csrss|winlo ... ++ ~~~~~~~~~~~~ + + CategoryInfo : ObjectNotFound: (.ProcessName:String) [], CommandNotFoundException + + FullyQualifiedErrorId : CommandNotFoundException + +.ProcessName : The term '.ProcessName' is not recognized as the name of a cmdlet, function, script file, or operable +program. Check the spelling of the name, or if a path was included, verify that the path is correct and try again. +At line:1 char:29 ++ Get-Process | Where-Object {.ProcessName -notmatch '^(dwm|csrss|winlo ... ++ ~~~~~~~~~~~~ + + CategoryInfo : ObjectNotFound: (.ProcessName:String) [], CommandNotFoundException + + FullyQualifiedErrorId : CommandNotFoundException + +.ProcessName : The term '.ProcessName' is not recognized as the name of a cmdlet, function, script file, or operable +program. Check the spelling of the name, or if a path was included, verify that the path is correct and try again. +At line:1 char:29 ++ Get-Process | Where-Object {.ProcessName -notmatch '^(dwm|csrss|winlo ... ++ ~~~~~~~~~~~~ + + CategoryInfo : ObjectNotFound: (.ProcessName:String) [], CommandNotFoundException + + FullyQualifiedErrorId : CommandNotFoundException + +.ProcessName : The term '.ProcessName' is not recognized as the name of a cmdlet, function, script file, or operable +program. Check the spelling of the name, or if a path was included, verify that the path is correct and try again. +At line:1 char:29 ++ Get-Process | Where-Object {.ProcessName -notmatch '^(dwm|csrss|winlo ... ++ ~~~~~~~~~~~~ + + CategoryInfo : ObjectNotFound: (.ProcessName:String) [], CommandNotFoundException + + FullyQualifiedErrorId : CommandNotFoundException + +.ProcessName : The term '.ProcessName' is not recognized as the name of a cmdlet, function, script file, or operable +program. Check the spelling of the name, or if a path was included, verify that the path is correct and try again. +At line:1 char:29 ++ Get-Process | Where-Object {.ProcessName -notmatch '^(dwm|csrss|winlo ... ++ ~~~~~~~~~~~~ + + CategoryInfo : ObjectNotFound: (.ProcessName:String) [], CommandNotFoundException + + FullyQualifiedErrorId : CommandNotFoundException + +.ProcessName : The term '.ProcessName' is not recognized as the name of a cmdlet, function, script file, or operable +program. Check the spelling of the name, or if a path was included, verify that the path is correct and try again. +At line:1 char:29 ++ Get-Process | Where-Object {.ProcessName -notmatch '^(dwm|csrss|winlo ... ++ ~~~~~~~~~~~~ + + CategoryInfo : ObjectNotFound: (.ProcessName:String) [], CommandNotFoundException + + FullyQualifiedErrorId : CommandNotFoundException + +.ProcessName : The term '.ProcessName' is not recognized as the name of a cmdlet, function, script file, or operable +program. Check the spelling of the name, or if a path was included, verify that the path is correct and try again. +At line:1 char:29 ++ Get-Process | Where-Object {.ProcessName -notmatch '^(dwm|csrss|winlo ... ++ ~~~~~~~~~~~~ + + CategoryInfo : ObjectNotFound: (.ProcessName:String) [], CommandNotFoundException + + FullyQualifiedErrorId : CommandNotFoundException + +.ProcessName : The term '.ProcessName' is not recognized as the name of a cmdlet, function, script file, or operable +program. Check the spelling of the name, or if a path was included, verify that the path is correct and try again. +At line:1 char:29 ++ Get-Process | Where-Object {.ProcessName -notmatch '^(dwm|csrss|winlo ... ++ ~~~~~~~~~~~~ + + CategoryInfo : ObjectNotFound: (.ProcessName:String) [], CommandNotFoundException + + FullyQualifiedErrorId : CommandNotFoundException + +.ProcessName : The term '.ProcessName' is not recognized as the name of a cmdlet, function, script file, or operable +program. Check the spelling of the name, or if a path was included, verify that the path is correct and try again. +At line:1 char:29 ++ Get-Process | Where-Object {.ProcessName -notmatch '^(dwm|csrss|winlo ... ++ ~~~~~~~~~~~~ + + CategoryInfo : ObjectNotFound: (.ProcessName:String) [], CommandNotFoundException + + FullyQualifiedErrorId : CommandNotFoundException + +.ProcessName : The term '.ProcessName' is not recognized as the name of a cmdlet, function, script file, or operable +program. Check the spelling of the name, or if a path was included, verify that the path is correct and try again. +At line:1 char:29 ++ Get-Process | Where-Object {.ProcessName -notmatch '^(dwm|csrss|winlo ... ++ ~~~~~~~~~~~~ + + CategoryInfo : ObjectNotFound: (.ProcessName:String) [], CommandNotFoundException + + FullyQualifiedErrorId : CommandNotFoundException + +.ProcessName : The term '.ProcessName' is not recognized as the name of a cmdlet, function, script file, or operable +program. Check the spelling of the name, or if a path was included, verify that the path is correct and try again. +At line:1 char:29 ++ Get-Process | Where-Object {.ProcessName -notmatch '^(dwm|csrss|winlo ... ++ ~~~~~~~~~~~~ + + CategoryInfo : ObjectNotFound: (.ProcessName:String) [], CommandNotFoundException + + FullyQualifiedErrorId : CommandNotFoundException + +.ProcessName : The term '.ProcessName' is not recognized as the name of a cmdlet, function, script file, or operable +program. Check the spelling of the name, or if a path was included, verify that the path is correct and try again. +At line:1 char:29 ++ Get-Process | Where-Object {.ProcessName -notmatch '^(dwm|csrss|winlo ... ++ ~~~~~~~~~~~~ + + CategoryInfo : ObjectNotFound: (.ProcessName:String) [], CommandNotFoundException + + FullyQualifiedErrorId : CommandNotFoundException + +.ProcessName : The term '.ProcessName' is not recognized as the name of a cmdlet, function, script file, or operable +program. Check the spelling of the name, or if a path was included, verify that the path is correct and try again. +At line:1 char:29 ++ Get-Process | Where-Object {.ProcessName -notmatch '^(dwm|csrss|winlo ... ++ ~~~~~~~~~~~~ + + CategoryInfo : ObjectNotFound: (.ProcessName:String) [], CommandNotFoundException + + FullyQualifiedErrorId : CommandNotFoundException + +.ProcessName : The term '.ProcessName' is not recognized as the name of a cmdlet, function, script file, or operable +program. Check the spelling of the name, or if a path was included, verify that the path is correct and try again. +At line:1 char:29 ++ Get-Process | Where-Object {.ProcessName -notmatch '^(dwm|csrss|winlo ... ++ ~~~~~~~~~~~~ + + CategoryInfo : ObjectNotFound: (.ProcessName:String) [], CommandNotFoundException + + FullyQualifiedErrorId : CommandNotFoundException + +.ProcessName : The term '.ProcessName' is not recognized as the name of a cmdlet, function, script file, or operable +program. Check the spelling of the name, or if a path was included, verify that the path is correct and try again. +At line:1 char:29 ++ Get-Process | Where-Object {.ProcessName -notmatch '^(dwm|csrss|winlo ... ++ ~~~~~~~~~~~~ + + CategoryInfo : ObjectNotFound: (.ProcessName:String) [], CommandNotFoundException + + FullyQualifiedErrorId : CommandNotFoundException + +.ProcessName : The term '.ProcessName' is not recognized as the name of a cmdlet, function, script file, or operable +program. Check the spelling of the name, or if a path was included, verify that the path is correct and try again. +At line:1 char:29 ++ Get-Process | Where-Object {.ProcessName -notmatch '^(dwm|csrss|winlo ... ++ ~~~~~~~~~~~~ + + CategoryInfo : ObjectNotFound: (.ProcessName:String) [], CommandNotFoundException + + FullyQualifiedErrorId : CommandNotFoundException + +.ProcessName : The term '.ProcessName' is not recognized as the name of a cmdlet, function, script file, or operable +program. Check the spelling of the name, or if a path was included, verify that the path is correct and try again. +At line:1 char:29 ++ Get-Process | Where-Object {.ProcessName -notmatch '^(dwm|csrss|winlo ... ++ ~~~~~~~~~~~~ + + CategoryInfo : ObjectNotFound: (.ProcessName:String) [], CommandNotFoundException + + FullyQualifiedErrorId : CommandNotFoundException + +.ProcessName : The term '.ProcessName' is not recognized as the name of a cmdlet, function, script file, or operable +program. Check the spelling of the name, or if a path was included, verify that the path is correct and try again. +At line:1 char:29 ++ Get-Process | Where-Object {.ProcessName -notmatch '^(dwm|csrss|winlo ... ++ ~~~~~~~~~~~~ + + CategoryInfo : ObjectNotFound: (.ProcessName:String) [], CommandNotFoundException + + FullyQualifiedErrorId : CommandNotFoundException + +.ProcessName : The term '.ProcessName' is not recognized as the name of a cmdlet, function, script file, or operable +program. Check the spelling of the name, or if a path was included, verify that the path is correct and try again. +At line:1 char:29 ++ Get-Process | Where-Object {.ProcessName -notmatch '^(dwm|csrss|winlo ... ++ ~~~~~~~~~~~~ + + CategoryInfo : ObjectNotFound: (.ProcessName:String) [], CommandNotFoundException + + FullyQualifiedErrorId : CommandNotFoundException + +.ProcessName : The term '.ProcessName' is not recognized as the name of a cmdlet, function, script file, or operable +program. Check the spelling of the name, or if a path was included, verify that the path is correct and try again. +At line:1 char:29 ++ Get-Process | Where-Object {.ProcessName -notmatch '^(dwm|csrss|winlo ... ++ ~~~~~~~~~~~~ + + CategoryInfo : ObjectNotFound: (.ProcessName:String) [], CommandNotFoundException + + FullyQualifiedErrorId : CommandNotFoundException + +.ProcessName : The term '.ProcessName' is not recognized as the name of a cmdlet, function, script file, or operable +program. Check the spelling of the name, or if a path was included, verify that the path is correct and try again. +At line:1 char:29 ++ Get-Process | Where-Object {.ProcessName -notmatch '^(dwm|csrss|winlo ... ++ ~~~~~~~~~~~~ + + CategoryInfo : ObjectNotFound: (.ProcessName:String) [], CommandNotFoundException + + FullyQualifiedErrorId : CommandNotFoundException + +.ProcessName : The term '.ProcessName' is not recognized as the name of a cmdlet, function, script file, or operable +program. Check the spelling of the name, or if a path was included, verify that the path is correct and try again. +At line:1 char:29 ++ Get-Process | Where-Object {.ProcessName -notmatch '^(dwm|csrss|winlo ... ++ ~~~~~~~~~~~~ + + CategoryInfo : ObjectNotFound: (.ProcessName:String) [], CommandNotFoundException + + FullyQualifiedErrorId : CommandNotFoundException + +.ProcessName : The term '.ProcessName' is not recognized as the name of a cmdlet, function, script file, or operable +program. Check the spelling of the name, or if a path was included, verify that the path is correct and try again. +At line:1 char:29 ++ Get-Process | Where-Object {.ProcessName -notmatch '^(dwm|csrss|winlo ... ++ ~~~~~~~~~~~~ + + CategoryInfo : ObjectNotFound: (.ProcessName:String) [], CommandNotFoundException + + FullyQualifiedErrorId : CommandNotFoundException + +.ProcessName : The term '.ProcessName' is not recognized as the name of a cmdlet, function, script file, or operable +program. Check the spelling of the name, or if a path was included, verify that the path is correct and try again. +At line:1 char:29 ++ Get-Process | Where-Object {.ProcessName -notmatch '^(dwm|csrss|winlo ... ++ ~~~~~~~~~~~~ + + CategoryInfo : ObjectNotFound: (.ProcessName:String) [], CommandNotFoundException + + FullyQualifiedErrorId : CommandNotFoundException + +.ProcessName : The term '.ProcessName' is not recognized as the name of a cmdlet, function, script file, or operable +program. Check the spelling of the name, or if a path was included, verify that the path is correct and try again. +At line:1 char:29 ++ Get-Process | Where-Object {.ProcessName -notmatch '^(dwm|csrss|winlo ... ++ ~~~~~~~~~~~~ + + CategoryInfo : ObjectNotFound: (.ProcessName:String) [], CommandNotFoundException + + FullyQualifiedErrorId : CommandNotFoundException + +.ProcessName : The term '.ProcessName' is not recognized as the name of a cmdlet, function, script file, or operable +program. Check the spelling of the name, or if a path was included, verify that the path is correct and try again. +At line:1 char:29 ++ Get-Process | Where-Object {.ProcessName -notmatch '^(dwm|csrss|winlo ... ++ ~~~~~~~~~~~~ + + CategoryInfo : ObjectNotFound: (.ProcessName:String) [], CommandNotFoundException + + FullyQualifiedErrorId : CommandNotFoundException + +.ProcessName : The term '.ProcessName' is not recognized as the name of a cmdlet, function, script file, or operable +program. Check the spelling of the name, or if a path was included, verify that the path is correct and try again. +At line:1 char:29 ++ Get-Process | Where-Object {.ProcessName -notmatch '^(dwm|csrss|winlo ... ++ ~~~~~~~~~~~~ + + CategoryInfo : ObjectNotFound: (.ProcessName:String) [], CommandNotFoundException + + FullyQualifiedErrorId : CommandNotFoundException + +.ProcessName : The term '.ProcessName' is not recognized as the name of a cmdlet, function, script file, or operable +program. Check the spelling of the name, or if a path was included, verify that the path is correct and try again. +At line:1 char:29 ++ Get-Process | Where-Object {.ProcessName -notmatch '^(dwm|csrss|winlo ... ++ ~~~~~~~~~~~~ + + CategoryInfo : ObjectNotFound: (.ProcessName:String) [], CommandNotFoundException + + FullyQualifiedErrorId : CommandNotFoundException + +.ProcessName : The term '.ProcessName' is not recognized as the name of a cmdlet, function, script file, or operable +program. Check the spelling of the name, or if a path was included, verify that the path is correct and try again. +At line:1 char:29 ++ Get-Process | Where-Object {.ProcessName -notmatch '^(dwm|csrss|winlo ... ++ ~~~~~~~~~~~~ + + CategoryInfo : ObjectNotFound: (.ProcessName:String) [], CommandNotFoundException + + FullyQualifiedErrorId : CommandNotFoundException + +.ProcessName : The term '.ProcessName' is not recognized as the name of a cmdlet, function, script file, or operable +program. Check the spelling of the name, or if a path was included, verify that the path is correct and try again. +At line:1 char:29 ++ Get-Process | Where-Object {.ProcessName -notmatch '^(dwm|csrss|winlo ... ++ ~~~~~~~~~~~~ + + CategoryInfo : ObjectNotFound: (.ProcessName:String) [], CommandNotFoundException + + FullyQualifiedErrorId : CommandNotFoundException + +.ProcessName : The term '.ProcessName' is not recognized as the name of a cmdlet, function, script file, or operable +program. Check the spelling of the name, or if a path was included, verify that the path is correct and try again. +At line:1 char:29 ++ Get-Process | Where-Object {.ProcessName -notmatch '^(dwm|csrss|winlo ... ++ ~~~~~~~~~~~~ + + CategoryInfo : ObjectNotFound: (.ProcessName:String) [], CommandNotFoundException + + FullyQualifiedErrorId : CommandNotFoundException + +.ProcessName : The term '.ProcessName' is not recognized as the name of a cmdlet, function, script file, or operable +program. Check the spelling of the name, or if a path was included, verify that the path is correct and try again. +At line:1 char:29 ++ Get-Process | Where-Object {.ProcessName -notmatch '^(dwm|csrss|winlo ... ++ ~~~~~~~~~~~~ + + CategoryInfo : ObjectNotFound: (.ProcessName:String) [], CommandNotFoundException + + FullyQualifiedErrorId : CommandNotFoundException + +.ProcessName : The term '.ProcessName' is not recognized as the name of a cmdlet, function, script file, or operable +program. Check the spelling of the name, or if a path was included, verify that the path is correct and try again. +At line:1 char:29 ++ Get-Process | Where-Object {.ProcessName -notmatch '^(dwm|csrss|winlo ... ++ ~~~~~~~~~~~~ + + CategoryInfo : ObjectNotFound: (.ProcessName:String) [], CommandNotFoundException + + FullyQualifiedErrorId : CommandNotFoundException + +.ProcessName : The term '.ProcessName' is not recognized as the name of a cmdlet, function, script file, or operable +program. Check the spelling of the name, or if a path was included, verify that the path is correct and try again. +At line:1 char:29 ++ Get-Process | Where-Object {.ProcessName -notmatch '^(dwm|csrss|winlo ... ++ ~~~~~~~~~~~~ + + CategoryInfo : ObjectNotFound: (.ProcessName:String) [], CommandNotFoundException + + FullyQualifiedErrorId : CommandNotFoundException + +.ProcessName : The term '.ProcessName' is not recognized as the name of a cmdlet, function, script file, or operable +program. Check the spelling of the name, or if a path was included, verify that the path is correct and try again. +At line:1 char:29 ++ Get-Process | Where-Object {.ProcessName -notmatch '^(dwm|csrss|winlo ... ++ ~~~~~~~~~~~~ + + CategoryInfo : ObjectNotFound: (.ProcessName:String) [], CommandNotFoundException + + FullyQualifiedErrorId : CommandNotFoundException + +.ProcessName : The term '.ProcessName' is not recognized as the name of a cmdlet, function, script file, or operable +program. Check the spelling of the name, or if a path was included, verify that the path is correct and try again. +At line:1 char:29 ++ Get-Process | Where-Object {.ProcessName -notmatch '^(dwm|csrss|winlo ... ++ ~~~~~~~~~~~~ + + CategoryInfo : ObjectNotFound: (.ProcessName:String) [], CommandNotFoundException + + FullyQualifiedErrorId : CommandNotFoundException + +.ProcessName : The term '.ProcessName' is not recognized as the name of a cmdlet, function, script file, or operable +program. Check the spelling of the name, or if a path was included, verify that the path is correct and try again. +At line:1 char:29 ++ Get-Process | Where-Object {.ProcessName -notmatch '^(dwm|csrss|winlo ... ++ ~~~~~~~~~~~~ + + CategoryInfo : ObjectNotFound: (.ProcessName:String) [], CommandNotFoundException + + FullyQualifiedErrorId : CommandNotFoundException + +.ProcessName : The term '.ProcessName' is not recognized as the name of a cmdlet, function, script file, or operable +program. Check the spelling of the name, or if a path was included, verify that the path is correct and try again. +At line:1 char:29 ++ Get-Process | Where-Object {.ProcessName -notmatch '^(dwm|csrss|winlo ... ++ ~~~~~~~~~~~~ + + CategoryInfo : ObjectNotFound: (.ProcessName:String) [], CommandNotFoundException + + FullyQualifiedErrorId : CommandNotFoundException + +.ProcessName : The term '.ProcessName' is not recognized as the name of a cmdlet, function, script file, or operable +program. Check the spelling of the name, or if a path was included, verify that the path is correct and try again. +At line:1 char:29 ++ Get-Process | Where-Object {.ProcessName -notmatch '^(dwm|csrss|winlo ... ++ ~~~~~~~~~~~~ + + CategoryInfo : ObjectNotFound: (.ProcessName:String) [], CommandNotFoundException + + FullyQualifiedErrorId : CommandNotFoundException + +.ProcessName : The term '.ProcessName' is not recognized as the name of a cmdlet, function, script file, or operable +program. Check the spelling of the name, or if a path was included, verify that the path is correct and try again. +At line:1 char:29 ++ Get-Process | Where-Object {.ProcessName -notmatch '^(dwm|csrss|winlo ... ++ ~~~~~~~~~~~~ + + CategoryInfo : ObjectNotFound: (.ProcessName:String) [], CommandNotFoundException + + FullyQualifiedErrorId : CommandNotFoundException + +.ProcessName : The term '.ProcessName' is not recognized as the name of a cmdlet, function, script file, or operable +program. Check the spelling of the name, or if a path was included, verify that the path is correct and try again. +At line:1 char:29 ++ Get-Process | Where-Object {.ProcessName -notmatch '^(dwm|csrss|winlo ... ++ ~~~~~~~~~~~~ + + CategoryInfo : ObjectNotFound: (.ProcessName:String) [], CommandNotFoundException + + FullyQualifiedErrorId : CommandNotFoundException + +.ProcessName : The term '.ProcessName' is not recognized as the name of a cmdlet, function, script file, or operable +program. Check the spelling of the name, or if a path was included, verify that the path is correct and try again. +At line:1 char:29 ++ Get-Process | Where-Object {.ProcessName -notmatch '^(dwm|csrss|winlo ... ++ ~~~~~~~~~~~~ + + CategoryInfo : ObjectNotFound: (.ProcessName:String) [], CommandNotFoundException + + FullyQualifiedErrorId : CommandNotFoundException + +.ProcessName : The term '.ProcessName' is not recognized as the name of a cmdlet, function, script file, or operable +program. Check the spelling of the name, or if a path was included, verify that the path is correct and try again. +At line:1 char:29 ++ Get-Process | Where-Object {.ProcessName -notmatch '^(dwm|csrss|winlo ... ++ ~~~~~~~~~~~~ + + CategoryInfo : ObjectNotFound: (.ProcessName:String) [], CommandNotFoundException + + FullyQualifiedErrorId : CommandNotFoundException + +.ProcessName : The term '.ProcessName' is not recognized as the name of a cmdlet, function, script file, or operable +program. Check the spelling of the name, or if a path was included, verify that the path is correct and try again. +At line:1 char:29 ++ Get-Process | Where-Object {.ProcessName -notmatch '^(dwm|csrss|winlo ... ++ ~~~~~~~~~~~~ + + CategoryInfo : ObjectNotFound: (.ProcessName:String) [], CommandNotFoundException + + FullyQualifiedErrorId : CommandNotFoundException + +.ProcessName : The term '.ProcessName' is not recognized as the name of a cmdlet, function, script file, or operable +program. Check the spelling of the name, or if a path was included, verify that the path is correct and try again. +At line:1 char:29 ++ Get-Process | Where-Object {.ProcessName -notmatch '^(dwm|csrss|winlo ... ++ ~~~~~~~~~~~~ + + CategoryInfo : ObjectNotFound: (.ProcessName:String) [], CommandNotFoundException + + FullyQualifiedErrorId : CommandNotFoundException + +.ProcessName : The term '.ProcessName' is not recognized as the name of a cmdlet, function, script file, or operable +program. Check the spelling of the name, or if a path was included, verify that the path is correct and try again. +At line:1 char:29 ++ Get-Process | Where-Object {.ProcessName -notmatch '^(dwm|csrss|winlo ... ++ ~~~~~~~~~~~~ + + CategoryInfo : ObjectNotFound: (.ProcessName:String) [], CommandNotFoundException + + FullyQualifiedErrorId : CommandNotFoundException + +.ProcessName : The term '.ProcessName' is not recognized as the name of a cmdlet, function, script file, or operable +program. Check the spelling of the name, or if a path was included, verify that the path is correct and try again. +At line:1 char:29 ++ Get-Process | Where-Object {.ProcessName -notmatch '^(dwm|csrss|winlo ... ++ ~~~~~~~~~~~~ + + CategoryInfo : ObjectNotFound: (.ProcessName:String) [], CommandNotFoundException + + FullyQualifiedErrorId : CommandNotFoundException + +.ProcessName : The term '.ProcessName' is not recognized as the name of a cmdlet, function, script file, or operable +program. Check the spelling of the name, or if a path was included, verify that the path is correct and try again. +At line:1 char:29 ++ Get-Process | Where-Object {.ProcessName -notmatch '^(dwm|csrss|winlo ... ++ ~~~~~~~~~~~~ + + CategoryInfo : ObjectNotFound: (.ProcessName:String) [], CommandNotFoundException + + FullyQualifiedErrorId : CommandNotFoundException + +.ProcessName : The term '.ProcessName' is not recognized as the name of a cmdlet, function, script file, or operable +program. Check the spelling of the name, or if a path was included, verify that the path is correct and try again. +At line:1 char:29 ++ Get-Process | Where-Object {.ProcessName -notmatch '^(dwm|csrss|winlo ... ++ ~~~~~~~~~~~~ + + CategoryInfo : ObjectNotFound: (.ProcessName:String) [], CommandNotFoundException + + FullyQualifiedErrorId : CommandNotFoundException + +.ProcessName : The term '.ProcessName' is not recognized as the name of a cmdlet, function, script file, or operable +program. Check the spelling of the name, or if a path was included, verify that the path is correct and try again. +At line:1 char:29 ++ Get-Process | Where-Object {.ProcessName -notmatch '^(dwm|csrss|winlo ... ++ ~~~~~~~~~~~~ + + CategoryInfo : ObjectNotFound: (.ProcessName:String) [], CommandNotFoundException + + FullyQualifiedErrorId : CommandNotFoundException + +.ProcessName : The term '.ProcessName' is not recognized as the name of a cmdlet, function, script file, or operable +program. Check the spelling of the name, or if a path was included, verify that the path is correct and try again. +At line:1 char:29 ++ Get-Process | Where-Object {.ProcessName -notmatch '^(dwm|csrss|winlo ... ++ ~~~~~~~~~~~~ + + CategoryInfo : ObjectNotFound: (.ProcessName:String) [], CommandNotFoundException + + FullyQualifiedErrorId : CommandNotFoundException + +.ProcessName : The term '.ProcessName' is not recognized as the name of a cmdlet, function, script file, or operable +program. Check the spelling of the name, or if a path was included, verify that the path is correct and try again. +At line:1 char:29 ++ Get-Process | Where-Object {.ProcessName -notmatch '^(dwm|csrss|winlo ... ++ ~~~~~~~~~~~~ + + CategoryInfo : ObjectNotFound: (.ProcessName:String) [], CommandNotFoundException + + FullyQualifiedErrorId : CommandNotFoundException + +.ProcessName : The term '.ProcessName' is not recognized as the name of a cmdlet, function, script file, or operable +program. Check the spelling of the name, or if a path was included, verify that the path is correct and try again. +At line:1 char:29 ++ Get-Process | Where-Object {.ProcessName -notmatch '^(dwm|csrss|winlo ... ++ ~~~~~~~~~~~~ + + CategoryInfo : ObjectNotFound: (.ProcessName:String) [], CommandNotFoundException + + FullyQualifiedErrorId : CommandNotFoundException + +.ProcessName : The term '.ProcessName' is not recognized as the name of a cmdlet, function, script file, or operable +program. Check the spelling of the name, or if a path was included, verify that the path is correct and try again. +At line:1 char:29 ++ Get-Process | Where-Object {.ProcessName -notmatch '^(dwm|csrss|winlo ... ++ ~~~~~~~~~~~~ + + CategoryInfo : ObjectNotFound: (.ProcessName:String) [], CommandNotFoundException + + FullyQualifiedErrorId : CommandNotFoundException + +.ProcessName : The term '.ProcessName' is not recognized as the name of a cmdlet, function, script file, or operable +program. Check the spelling of the name, or if a path was included, verify that the path is correct and try again. +At line:1 char:29 ++ Get-Process | Where-Object {.ProcessName -notmatch '^(dwm|csrss|winlo ... ++ ~~~~~~~~~~~~ + + CategoryInfo : ObjectNotFound: (.ProcessName:String) [], CommandNotFoundException + + FullyQualifiedErrorId : CommandNotFoundException + +.ProcessName : The term '.ProcessName' is not recognized as the name of a cmdlet, function, script file, or operable +program. Check the spelling of the name, or if a path was included, verify that the path is correct and try again. +At line:1 char:29 ++ Get-Process | Where-Object {.ProcessName -notmatch '^(dwm|csrss|winlo ... ++ ~~~~~~~~~~~~ + + CategoryInfo : ObjectNotFound: (.ProcessName:String) [], CommandNotFoundException + + FullyQualifiedErrorId : CommandNotFoundException + +.ProcessName : The term '.ProcessName' is not recognized as the name of a cmdlet, function, script file, or operable +program. Check the spelling of the name, or if a path was included, verify that the path is correct and try again. +At line:1 char:29 ++ Get-Process | Where-Object {.ProcessName -notmatch '^(dwm|csrss|winlo ... ++ ~~~~~~~~~~~~ + + CategoryInfo : ObjectNotFound: (.ProcessName:String) [], CommandNotFoundException + + FullyQualifiedErrorId : CommandNotFoundException + +.ProcessName : The term '.ProcessName' is not recognized as the name of a cmdlet, function, script file, or operable +program. Check the spelling of the name, or if a path was included, verify that the path is correct and try again. +At line:1 char:29 ++ Get-Process | Where-Object {.ProcessName -notmatch '^(dwm|csrss|winlo ... ++ ~~~~~~~~~~~~ + + CategoryInfo : ObjectNotFound: (.ProcessName:String) [], CommandNotFoundException + + FullyQualifiedErrorId : CommandNotFoundException + +.ProcessName : The term '.ProcessName' is not recognized as the name of a cmdlet, function, script file, or operable +program. Check the spelling of the name, or if a path was included, verify that the path is correct and try again. +At line:1 char:29 ++ Get-Process | Where-Object {.ProcessName -notmatch '^(dwm|csrss|winlo ... ++ ~~~~~~~~~~~~ + + CategoryInfo : ObjectNotFound: (.ProcessName:String) [], CommandNotFoundException + + FullyQualifiedErrorId : CommandNotFoundException + +.ProcessName : The term '.ProcessName' is not recognized as the name of a cmdlet, function, script file, or operable +program. Check the spelling of the name, or if a path was included, verify that the path is correct and try again. +At line:1 char:29 ++ Get-Process | Where-Object {.ProcessName -notmatch '^(dwm|csrss|winlo ... ++ ~~~~~~~~~~~~ + + CategoryInfo : ObjectNotFound: (.ProcessName:String) [], CommandNotFoundException + + FullyQualifiedErrorId : CommandNotFoundException + +.ProcessName : The term '.ProcessName' is not recognized as the name of a cmdlet, function, script file, or operable +program. Check the spelling of the name, or if a path was included, verify that the path is correct and try again. +At line:1 char:29 ++ Get-Process | Where-Object {.ProcessName -notmatch '^(dwm|csrss|winlo ... ++ ~~~~~~~~~~~~ + + CategoryInfo : ObjectNotFound: (.ProcessName:String) [], CommandNotFoundException + + FullyQualifiedErrorId : CommandNotFoundException + +.ProcessName : The term '.ProcessName' is not recognized as the name of a cmdlet, function, script file, or operable +program. Check the spelling of the name, or if a path was included, verify that the path is correct and try again. +At line:1 char:29 ++ Get-Process | Where-Object {.ProcessName -notmatch '^(dwm|csrss|winlo ... ++ ~~~~~~~~~~~~ + + CategoryInfo : ObjectNotFound: (.ProcessName:String) [], CommandNotFoundException + + FullyQualifiedErrorId : CommandNotFoundException + +.ProcessName : The term '.ProcessName' is not recognized as the name of a cmdlet, function, script file, or operable +program. Check the spelling of the name, or if a path was included, verify that the path is correct and try again. +At line:1 char:29 ++ Get-Process | Where-Object {.ProcessName -notmatch '^(dwm|csrss|winlo ... ++ ~~~~~~~~~~~~ + + CategoryInfo : ObjectNotFound: (.ProcessName:String) [], CommandNotFoundException + + FullyQualifiedErrorId : CommandNotFoundException + +.ProcessName : The term '.ProcessName' is not recognized as the name of a cmdlet, function, script file, or operable +program. Check the spelling of the name, or if a path was included, verify that the path is correct and try again. +At line:1 char:29 ++ Get-Process | Where-Object {.ProcessName -notmatch '^(dwm|csrss|winlo ... ++ ~~~~~~~~~~~~ + + CategoryInfo : ObjectNotFound: (.ProcessName:String) [], CommandNotFoundException + + FullyQualifiedErrorId : CommandNotFoundException + +.ProcessName : The term '.ProcessName' is not recognized as the name of a cmdlet, function, script file, or operable +program. Check the spelling of the name, or if a path was included, verify that the path is correct and try again. +At line:1 char:29 ++ Get-Process | Where-Object {.ProcessName -notmatch '^(dwm|csrss|winlo ... ++ ~~~~~~~~~~~~ + + CategoryInfo : ObjectNotFound: (.ProcessName:String) [], CommandNotFoundException + + FullyQualifiedErrorId : CommandNotFoundException + +.ProcessName : The term '.ProcessName' is not recognized as the name of a cmdlet, function, script file, or operable +program. Check the spelling of the name, or if a path was included, verify that the path is correct and try again. +At line:1 char:29 ++ Get-Process | Where-Object {.ProcessName -notmatch '^(dwm|csrss|winlo ... ++ ~~~~~~~~~~~~ + + CategoryInfo : ObjectNotFound: (.ProcessName:String) [], CommandNotFoundException + + FullyQualifiedErrorId : CommandNotFoundException + +.ProcessName : The term '.ProcessName' is not recognized as the name of a cmdlet, function, script file, or operable +program. Check the spelling of the name, or if a path was included, verify that the path is correct and try again. +At line:1 char:29 ++ Get-Process | Where-Object {.ProcessName -notmatch '^(dwm|csrss|winlo ... ++ ~~~~~~~~~~~~ + + CategoryInfo : ObjectNotFound: (.ProcessName:String) [], CommandNotFoundException + + FullyQualifiedErrorId : CommandNotFoundException + +.ProcessName : The term '.ProcessName' is not recognized as the name of a cmdlet, function, script file, or operable +program. Check the spelling of the name, or if a path was included, verify that the path is correct and try again. +At line:1 char:29 ++ Get-Process | Where-Object {.ProcessName -notmatch '^(dwm|csrss|winlo ... ++ ~~~~~~~~~~~~ + + CategoryInfo : ObjectNotFound: (.ProcessName:String) [], CommandNotFoundException + + FullyQualifiedErrorId : CommandNotFoundException + +.ProcessName : The term '.ProcessName' is not recognized as the name of a cmdlet, function, script file, or operable +program. Check the spelling of the name, or if a path was included, verify that the path is correct and try again. +At line:1 char:29 ++ Get-Process | Where-Object {.ProcessName -notmatch '^(dwm|csrss|winlo ... ++ ~~~~~~~~~~~~ + + CategoryInfo : ObjectNotFound: (.ProcessName:String) [], CommandNotFoundException + + FullyQualifiedErrorId : CommandNotFoundException + +.ProcessName : The term '.ProcessName' is not recognized as the name of a cmdlet, function, script file, or operable +program. Check the spelling of the name, or if a path was included, verify that the path is correct and try again. +At line:1 char:29 ++ Get-Process | Where-Object {.ProcessName -notmatch '^(dwm|csrss|winlo ... ++ ~~~~~~~~~~~~ + + CategoryInfo : ObjectNotFound: (.ProcessName:String) [], CommandNotFoundException + + FullyQualifiedErrorId : CommandNotFoundException + +.ProcessName : The term '.ProcessName' is not recognized as the name of a cmdlet, function, script file, or operable +program. Check the spelling of the name, or if a path was included, verify that the path is correct and try again. +At line:1 char:29 ++ Get-Process | Where-Object {.ProcessName -notmatch '^(dwm|csrss|winlo ... ++ ~~~~~~~~~~~~ + + CategoryInfo : ObjectNotFound: (.ProcessName:String) [], CommandNotFoundException + + FullyQualifiedErrorId : CommandNotFoundException + +.ProcessName : The term '.ProcessName' is not recognized as the name of a cmdlet, function, script file, or operable +program. Check the spelling of the name, or if a path was included, verify that the path is correct and try again. +At line:1 char:29 ++ Get-Process | Where-Object {.ProcessName -notmatch '^(dwm|csrss|winlo ... ++ ~~~~~~~~~~~~ + + CategoryInfo : ObjectNotFound: (.ProcessName:String) [], CommandNotFoundException + + FullyQualifiedErrorId : CommandNotFoundException + +.ProcessName : The term '.ProcessName' is not recognized as the name of a cmdlet, function, script file, or operable +program. Check the spelling of the name, or if a path was included, verify that the path is correct and try again. +At line:1 char:29 ++ Get-Process | Where-Object {.ProcessName -notmatch '^(dwm|csrss|winlo ... ++ ~~~~~~~~~~~~ + + CategoryInfo : ObjectNotFound: (.ProcessName:String) [], CommandNotFoundException + + FullyQualifiedErrorId : CommandNotFoundException + +.ProcessName : The term '.ProcessName' is not recognized as the name of a cmdlet, function, script file, or operable +program. Check the spelling of the name, or if a path was included, verify that the path is correct and try again. +At line:1 char:29 ++ Get-Process | Where-Object {.ProcessName -notmatch '^(dwm|csrss|winlo ... ++ ~~~~~~~~~~~~ + + CategoryInfo : ObjectNotFound: (.ProcessName:String) [], CommandNotFoundException + + FullyQualifiedErrorId : CommandNotFoundException + +.ProcessName : The term '.ProcessName' is not recognized as the name of a cmdlet, function, script file, or operable +program. Check the spelling of the name, or if a path was included, verify that the path is correct and try again. +At line:1 char:29 ++ Get-Process | Where-Object {.ProcessName -notmatch '^(dwm|csrss|winlo ... ++ ~~~~~~~~~~~~ + + CategoryInfo : ObjectNotFound: (.ProcessName:String) [], CommandNotFoundException + + FullyQualifiedErrorId : CommandNotFoundException + +.ProcessName : The term '.ProcessName' is not recognized as the name of a cmdlet, function, script file, or operable +program. Check the spelling of the name, or if a path was included, verify that the path is correct and try again. +At line:1 char:29 ++ Get-Process | Where-Object {.ProcessName -notmatch '^(dwm|csrss|winlo ... ++ ~~~~~~~~~~~~ + + CategoryInfo : ObjectNotFound: (.ProcessName:String) [], CommandNotFoundException + + FullyQualifiedErrorId : CommandNotFoundException + +.ProcessName : The term '.ProcessName' is not recognized as the name of a cmdlet, function, script file, or operable +program. Check the spelling of the name, or if a path was included, verify that the path is correct and try again. +At line:1 char:29 ++ Get-Process | Where-Object {.ProcessName -notmatch '^(dwm|csrss|winlo ... ++ ~~~~~~~~~~~~ + + CategoryInfo : ObjectNotFound: (.ProcessName:String) [], CommandNotFoundException + + FullyQualifiedErrorId : CommandNotFoundException + +.ProcessName : The term '.ProcessName' is not recognized as the name of a cmdlet, function, script file, or operable +program. Check the spelling of the name, or if a path was included, verify that the path is correct and try again. +At line:1 char:29 ++ Get-Process | Where-Object {.ProcessName -notmatch '^(dwm|csrss|winlo ... ++ ~~~~~~~~~~~~ + + CategoryInfo : ObjectNotFound: (.ProcessName:String) [], CommandNotFoundException + + FullyQualifiedErrorId : CommandNotFoundException + +.ProcessName : The term '.ProcessName' is not recognized as the name of a cmdlet, function, script file, or operable +program. Check the spelling of the name, or if a path was included, verify that the path is correct and try again. +At line:1 char:29 ++ Get-Process | Where-Object {.ProcessName -notmatch '^(dwm|csrss|winlo ... ++ ~~~~~~~~~~~~ + + CategoryInfo : ObjectNotFound: (.ProcessName:String) [], CommandNotFoundException + + FullyQualifiedErrorId : CommandNotFoundException + +.ProcessName : The term '.ProcessName' is not recognized as the name of a cmdlet, function, script file, or operable +program. Check the spelling of the name, or if a path was included, verify that the path is correct and try again. +At line:1 char:29 ++ Get-Process | Where-Object {.ProcessName -notmatch '^(dwm|csrss|winlo ... ++ ~~~~~~~~~~~~ + + CategoryInfo : ObjectNotFound: (.ProcessName:String) [], CommandNotFoundException + + FullyQualifiedErrorId : CommandNotFoundException + +.ProcessName : The term '.ProcessName' is not recognized as the name of a cmdlet, function, script file, or operable +program. Check the spelling of the name, or if a path was included, verify that the path is correct and try again. +At line:1 char:29 ++ Get-Process | Where-Object {.ProcessName -notmatch '^(dwm|csrss|winlo ... ++ ~~~~~~~~~~~~ + + CategoryInfo : ObjectNotFound: (.ProcessName:String) [], CommandNotFoundException + + FullyQualifiedErrorId : CommandNotFoundException + +.ProcessName : The term '.ProcessName' is not recognized as the name of a cmdlet, function, script file, or operable +program. Check the spelling of the name, or if a path was included, verify that the path is correct and try again. +At line:1 char:29 ++ Get-Process | Where-Object {.ProcessName -notmatch '^(dwm|csrss|winlo ... ++ ~~~~~~~~~~~~ + + CategoryInfo : ObjectNotFound: (.ProcessName:String) [], CommandNotFoundException + + FullyQualifiedErrorId : CommandNotFoundException + +.ProcessName : The term '.ProcessName' is not recognized as the name of a cmdlet, function, script file, or operable +program. Check the spelling of the name, or if a path was included, verify that the path is correct and try again. +At line:1 char:29 ++ Get-Process | Where-Object {.ProcessName -notmatch '^(dwm|csrss|winlo ... ++ ~~~~~~~~~~~~ + + CategoryInfo : ObjectNotFound: (.ProcessName:String) [], CommandNotFoundException + + FullyQualifiedErrorId : CommandNotFoundException + +.ProcessName : The term '.ProcessName' is not recognized as the name of a cmdlet, function, script file, or operable +program. Check the spelling of the name, or if a path was included, verify that the path is correct and try again. +At line:1 char:29 ++ Get-Process | Where-Object {.ProcessName -notmatch '^(dwm|csrss|winlo ... ++ ~~~~~~~~~~~~ + + CategoryInfo : ObjectNotFound: (.ProcessName:String) [], CommandNotFoundException + + FullyQualifiedErrorId : CommandNotFoundException + +.ProcessName : The term '.ProcessName' is not recognized as the name of a cmdlet, function, script file, or operable +program. Check the spelling of the name, or if a path was included, verify that the path is correct and try again. +At line:1 char:29 ++ Get-Process | Where-Object {.ProcessName -notmatch '^(dwm|csrss|winlo ... ++ ~~~~~~~~~~~~ + + CategoryInfo : ObjectNotFound: (.ProcessName:String) [], CommandNotFoundException + + FullyQualifiedErrorId : CommandNotFoundException + +.ProcessName : The term '.ProcessName' is not recognized as the name of a cmdlet, function, script file, or operable +program. Check the spelling of the name, or if a path was included, verify that the path is correct and try again. +At line:1 char:29 ++ Get-Process | Where-Object {.ProcessName -notmatch '^(dwm|csrss|winlo ... ++ ~~~~~~~~~~~~ + + CategoryInfo : ObjectNotFound: (.ProcessName:String) [], CommandNotFoundException + + FullyQualifiedErrorId : CommandNotFoundException + +.ProcessName : The term '.ProcessName' is not recognized as the name of a cmdlet, function, script file, or operable +program. Check the spelling of the name, or if a path was included, verify that the path is correct and try again. +At line:1 char:29 ++ Get-Process | Where-Object {.ProcessName -notmatch '^(dwm|csrss|winlo ... ++ ~~~~~~~~~~~~ + + CategoryInfo : ObjectNotFound: (.ProcessName:String) [], CommandNotFoundException + + FullyQualifiedErrorId : CommandNotFoundException + +.ProcessName : The term '.ProcessName' is not recognized as the name of a cmdlet, function, script file, or operable +program. Check the spelling of the name, or if a path was included, verify that the path is correct and try again. +At line:1 char:29 ++ Get-Process | Where-Object {.ProcessName -notmatch '^(dwm|csrss|winlo ... ++ ~~~~~~~~~~~~ + + CategoryInfo : ObjectNotFound: (.ProcessName:String) [], CommandNotFoundException + + FullyQualifiedErrorId : CommandNotFoundException + +.ProcessName : The term '.ProcessName' is not recognized as the name of a cmdlet, function, script file, or operable +program. Check the spelling of the name, or if a path was included, verify that the path is correct and try again. +At line:1 char:29 ++ Get-Process | Where-Object {.ProcessName -notmatch '^(dwm|csrss|winlo ... ++ ~~~~~~~~~~~~ + + CategoryInfo : ObjectNotFound: (.ProcessName:String) [], CommandNotFoundException + + FullyQualifiedErrorId : CommandNotFoundException + +.ProcessName : The term '.ProcessName' is not recognized as the name of a cmdlet, function, script file, or operable +program. Check the spelling of the name, or if a path was included, verify that the path is correct and try again. +At line:1 char:29 ++ Get-Process | Where-Object {.ProcessName -notmatch '^(dwm|csrss|winlo ... ++ ~~~~~~~~~~~~ + + CategoryInfo : ObjectNotFound: (.ProcessName:String) [], CommandNotFoundException + + FullyQualifiedErrorId : CommandNotFoundException + +.ProcessName : The term '.ProcessName' is not recognized as the name of a cmdlet, function, script file, or operable +program. Check the spelling of the name, or if a path was included, verify that the path is correct and try again. +At line:1 char:29 ++ Get-Process | Where-Object {.ProcessName -notmatch '^(dwm|csrss|winlo ... ++ ~~~~~~~~~~~~ + + CategoryInfo : ObjectNotFound: (.ProcessName:String) [], CommandNotFoundException + + FullyQualifiedErrorId : CommandNotFoundException + +.ProcessName : The term '.ProcessName' is not recognized as the name of a cmdlet, function, script file, or operable +program. Check the spelling of the name, or if a path was included, verify that the path is correct and try again. +At line:1 char:29 ++ Get-Process | Where-Object {.ProcessName -notmatch '^(dwm|csrss|winlo ... ++ ~~~~~~~~~~~~ + + CategoryInfo : ObjectNotFound: (.ProcessName:String) [], CommandNotFoundException + + FullyQualifiedErrorId : CommandNotFoundException + +.ProcessName : The term '.ProcessName' is not recognized as the name of a cmdlet, function, script file, or operable +program. Check the spelling of the name, or if a path was included, verify that the path is correct and try again. +At line:1 char:29 ++ Get-Process | Where-Object {.ProcessName -notmatch '^(dwm|csrss|winlo ... ++ ~~~~~~~~~~~~ + + CategoryInfo : ObjectNotFound: (.ProcessName:String) [], CommandNotFoundException + + FullyQualifiedErrorId : CommandNotFoundException + +.ProcessName : The term '.ProcessName' is not recognized as the name of a cmdlet, function, script file, or operable +program. Check the spelling of the name, or if a path was included, verify that the path is correct and try again. +At line:1 char:29 ++ Get-Process | Where-Object {.ProcessName -notmatch '^(dwm|csrss|winlo ... ++ ~~~~~~~~~~~~ + + CategoryInfo : ObjectNotFound: (.ProcessName:String) [], CommandNotFoundException + + FullyQualifiedErrorId : CommandNotFoundException + +.ProcessName : The term '.ProcessName' is not recognized as the name of a cmdlet, function, script file, or operable +program. Check the spelling of the name, or if a path was included, verify that the path is correct and try again. +At line:1 char:29 ++ Get-Process | Where-Object {.ProcessName -notmatch '^(dwm|csrss|winlo ... ++ ~~~~~~~~~~~~ + + CategoryInfo : ObjectNotFound: (.ProcessName:String) [], CommandNotFoundException + + FullyQualifiedErrorId : CommandNotFoundException + +.ProcessName : The term '.ProcessName' is not recognized as the name of a cmdlet, function, script file, or operable +program. Check the spelling of the name, or if a path was included, verify that the path is correct and try again. +At line:1 char:29 ++ Get-Process | Where-Object {.ProcessName -notmatch '^(dwm|csrss|winlo ... ++ ~~~~~~~~~~~~ + + CategoryInfo : ObjectNotFound: (.ProcessName:String) [], CommandNotFoundException + + FullyQualifiedErrorId : CommandNotFoundException + +.ProcessName : The term '.ProcessName' is not recognized as the name of a cmdlet, function, script file, or operable +program. Check the spelling of the name, or if a path was included, verify that the path is correct and try again. +At line:1 char:29 ++ Get-Process | Where-Object {.ProcessName -notmatch '^(dwm|csrss|winlo ... ++ ~~~~~~~~~~~~ + + CategoryInfo : ObjectNotFound: (.ProcessName:String) [], CommandNotFoundException + + FullyQualifiedErrorId : CommandNotFoundException + +.ProcessName : The term '.ProcessName' is not recognized as the name of a cmdlet, function, script file, or operable +program. Check the spelling of the name, or if a path was included, verify that the path is correct and try again. +At line:1 char:29 ++ Get-Process | Where-Object {.ProcessName -notmatch '^(dwm|csrss|winlo ... ++ ~~~~~~~~~~~~ + + CategoryInfo : ObjectNotFound: (.ProcessName:String) [], CommandNotFoundException + + FullyQualifiedErrorId : CommandNotFoundException + +.ProcessName : The term '.ProcessName' is not recognized as the name of a cmdlet, function, script file, or operable +program. Check the spelling of the name, or if a path was included, verify that the path is correct and try again. +At line:1 char:29 ++ Get-Process | Where-Object {.ProcessName -notmatch '^(dwm|csrss|winlo ... ++ ~~~~~~~~~~~~ + + CategoryInfo : ObjectNotFound: (.ProcessName:String) [], CommandNotFoundException + + FullyQualifiedErrorId : CommandNotFoundException + +.ProcessName : The term '.ProcessName' is not recognized as the name of a cmdlet, function, script file, or operable +program. Check the spelling of the name, or if a path was included, verify that the path is correct and try again. +At line:1 char:29 ++ Get-Process | Where-Object {.ProcessName -notmatch '^(dwm|csrss|winlo ... ++ ~~~~~~~~~~~~ + + CategoryInfo : ObjectNotFound: (.ProcessName:String) [], CommandNotFoundException + + FullyQualifiedErrorId : CommandNotFoundException + +.ProcessName : The term '.ProcessName' is not recognized as the name of a cmdlet, function, script file, or operable +program. Check the spelling of the name, or if a path was included, verify that the path is correct and try again. +At line:1 char:29 ++ Get-Process | Where-Object {.ProcessName -notmatch '^(dwm|csrss|winlo ... ++ ~~~~~~~~~~~~ + + CategoryInfo : ObjectNotFound: (.ProcessName:String) [], CommandNotFoundException + + FullyQualifiedErrorId : CommandNotFoundException + +.ProcessName : The term '.ProcessName' is not recognized as the name of a cmdlet, function, script file, or operable +program. Check the spelling of the name, or if a path was included, verify that the path is correct and try again. +At line:1 char:29 ++ Get-Process | Where-Object {.ProcessName -notmatch '^(dwm|csrss|winlo ... ++ ~~~~~~~~~~~~ + + CategoryInfo : ObjectNotFound: (.ProcessName:String) [], CommandNotFoundException + + FullyQualifiedErrorId : CommandNotFoundException + +.ProcessName : The term '.ProcessName' is not recognized as the name of a cmdlet, function, script file, or operable +program. Check the spelling of the name, or if a path was included, verify that the path is correct and try again. +At line:1 char:29 ++ Get-Process | Where-Object {.ProcessName -notmatch '^(dwm|csrss|winlo ... ++ ~~~~~~~~~~~~ + + CategoryInfo : ObjectNotFound: (.ProcessName:String) [], CommandNotFoundException + + FullyQualifiedErrorId : CommandNotFoundException + +.ProcessName : The term '.ProcessName' is not recognized as the name of a cmdlet, function, script file, or operable +program. Check the spelling of the name, or if a path was included, verify that the path is correct and try again. +At line:1 char:29 ++ Get-Process | Where-Object {.ProcessName -notmatch '^(dwm|csrss|winlo ... ++ ~~~~~~~~~~~~ + + CategoryInfo : ObjectNotFound: (.ProcessName:String) [], CommandNotFoundException + + FullyQualifiedErrorId : CommandNotFoundException + +.ProcessName : The term '.ProcessName' is not recognized as the name of a cmdlet, function, script file, or operable +program. Check the spelling of the name, or if a path was included, verify that the path is correct and try again. +At line:1 char:29 ++ Get-Process | Where-Object {.ProcessName -notmatch '^(dwm|csrss|winlo ... ++ ~~~~~~~~~~~~ + + CategoryInfo : ObjectNotFound: (.ProcessName:String) [], CommandNotFoundException + + FullyQualifiedErrorId : CommandNotFoundException + +.ProcessName : The term '.ProcessName' is not recognized as the name of a cmdlet, function, script file, or operable +program. Check the spelling of the name, or if a path was included, verify that the path is correct and try again. +At line:1 char:29 ++ Get-Process | Where-Object {.ProcessName -notmatch '^(dwm|csrss|winlo ... ++ ~~~~~~~~~~~~ + + CategoryInfo : ObjectNotFound: (.ProcessName:String) [], CommandNotFoundException + + FullyQualifiedErrorId : CommandNotFoundException + +.ProcessName : The term '.ProcessName' is not recognized as the name of a cmdlet, function, script file, or operable +program. Check the spelling of the name, or if a path was included, verify that the path is correct and try again. +At line:1 char:29 ++ Get-Process | Where-Object {.ProcessName -notmatch '^(dwm|csrss|winlo ... ++ ~~~~~~~~~~~~ + + CategoryInfo : ObjectNotFound: (.ProcessName:String) [], CommandNotFoundException + + FullyQualifiedErrorId : CommandNotFoundException + +.ProcessName : The term '.ProcessName' is not recognized as the name of a cmdlet, function, script file, or operable +program. Check the spelling of the name, or if a path was included, verify that the path is correct and try again. +At line:1 char:29 ++ Get-Process | Where-Object {.ProcessName -notmatch '^(dwm|csrss|winlo ... ++ ~~~~~~~~~~~~ + + CategoryInfo : ObjectNotFound: (.ProcessName:String) [], CommandNotFoundException + + FullyQualifiedErrorId : CommandNotFoundException + +.ProcessName : The term '.ProcessName' is not recognized as the name of a cmdlet, function, script file, or operable +program. Check the spelling of the name, or if a path was included, verify that the path is correct and try again. +At line:1 char:29 ++ Get-Process | Where-Object {.ProcessName -notmatch '^(dwm|csrss|winlo ... ++ ~~~~~~~~~~~~ + + CategoryInfo : ObjectNotFound: (.ProcessName:String) [], CommandNotFoundException + + FullyQualifiedErrorId : CommandNotFoundException + +.ProcessName : The term '.ProcessName' is not recognized as the name of a cmdlet, function, script file, or operable +program. Check the spelling of the name, or if a path was included, verify that the path is correct and try again. +At line:1 char:29 ++ Get-Process | Where-Object {.ProcessName -notmatch '^(dwm|csrss|winlo ... ++ ~~~~~~~~~~~~ + + CategoryInfo : ObjectNotFound: (.ProcessName:String) [], CommandNotFoundException + + FullyQualifiedErrorId : CommandNotFoundException + +.ProcessName : The term '.ProcessName' is not recognized as the name of a cmdlet, function, script file, or operable +program. Check the spelling of the name, or if a path was included, verify that the path is correct and try again. +At line:1 char:29 ++ Get-Process | Where-Object {.ProcessName -notmatch '^(dwm|csrss|winlo ... ++ ~~~~~~~~~~~~ + + CategoryInfo : ObjectNotFound: (.ProcessName:String) [], CommandNotFoundException + + FullyQualifiedErrorId : CommandNotFoundException + +.ProcessName : The term '.ProcessName' is not recognized as the name of a cmdlet, function, script file, or operable +program. Check the spelling of the name, or if a path was included, verify that the path is correct and try again. +At line:1 char:29 ++ Get-Process | Where-Object {.ProcessName -notmatch '^(dwm|csrss|winlo ... ++ ~~~~~~~~~~~~ + + CategoryInfo : ObjectNotFound: (.ProcessName:String) [], CommandNotFoundException + + FullyQualifiedErrorId : CommandNotFoundException + +.ProcessName : The term '.ProcessName' is not recognized as the name of a cmdlet, function, script file, or operable +program. Check the spelling of the name, or if a path was included, verify that the path is correct and try again. +At line:1 char:29 ++ Get-Process | Where-Object {.ProcessName -notmatch '^(dwm|csrss|winlo ... ++ ~~~~~~~~~~~~ + + CategoryInfo : ObjectNotFound: (.ProcessName:String) [], CommandNotFoundException + + FullyQualifiedErrorId : CommandNotFoundException + +.ProcessName : The term '.ProcessName' is not recognized as the name of a cmdlet, function, script file, or operable +program. Check the spelling of the name, or if a path was included, verify that the path is correct and try again. +At line:1 char:29 ++ Get-Process | Where-Object {.ProcessName -notmatch '^(dwm|csrss|winlo ... ++ ~~~~~~~~~~~~ + + CategoryInfo : ObjectNotFound: (.ProcessName:String) [], CommandNotFoundException + + FullyQualifiedErrorId : CommandNotFoundException + +.ProcessName : The term '.ProcessName' is not recognized as the name of a cmdlet, function, script file, or operable +program. Check the spelling of the name, or if a path was included, verify that the path is correct and try again. +At line:1 char:29 ++ Get-Process | Where-Object {.ProcessName -notmatch '^(dwm|csrss|winlo ... ++ ~~~~~~~~~~~~ + + CategoryInfo : ObjectNotFound: (.ProcessName:String) [], CommandNotFoundException + + FullyQualifiedErrorId : CommandNotFoundException + +.ProcessName : The term '.ProcessName' is not recognized as the name of a cmdlet, function, script file, or operable +program. Check the spelling of the name, or if a path was included, verify that the path is correct and try again. +At line:1 char:29 ++ Get-Process | Where-Object {.ProcessName -notmatch '^(dwm|csrss|winlo ... ++ ~~~~~~~~~~~~ + + CategoryInfo : ObjectNotFound: (.ProcessName:String) [], CommandNotFoundException + + FullyQualifiedErrorId : CommandNotFoundException + +.ProcessName : The term '.ProcessName' is not recognized as the name of a cmdlet, function, script file, or operable +program. Check the spelling of the name, or if a path was included, verify that the path is correct and try again. +At line:1 char:29 ++ Get-Process | Where-Object {.ProcessName -notmatch '^(dwm|csrss|winlo ... ++ ~~~~~~~~~~~~ + + CategoryInfo : ObjectNotFound: (.ProcessName:String) [], CommandNotFoundException + + FullyQualifiedErrorId : CommandNotFoundException + +.ProcessName : The term '.ProcessName' is not recognized as the name of a cmdlet, function, script file, or operable +program. Check the spelling of the name, or if a path was included, verify that the path is correct and try again. +At line:1 char:29 ++ Get-Process | Where-Object {.ProcessName -notmatch '^(dwm|csrss|winlo ... ++ ~~~~~~~~~~~~ + + CategoryInfo : ObjectNotFound: (.ProcessName:String) [], CommandNotFoundException + + FullyQualifiedErrorId : CommandNotFoundException + +.ProcessName : The term '.ProcessName' is not recognized as the name of a cmdlet, function, script file, or operable +program. Check the spelling of the name, or if a path was included, verify that the path is correct and try again. +At line:1 char:29 ++ Get-Process | Where-Object {.ProcessName -notmatch '^(dwm|csrss|winlo ... ++ ~~~~~~~~~~~~ + + CategoryInfo : ObjectNotFound: (.ProcessName:String) [], CommandNotFoundException + + FullyQualifiedErrorId : CommandNotFoundException + +.ProcessName : The term '.ProcessName' is not recognized as the name of a cmdlet, function, script file, or operable +program. Check the spelling of the name, or if a path was included, verify that the path is correct and try again. +At line:1 char:29 ++ Get-Process | Where-Object {.ProcessName -notmatch '^(dwm|csrss|winlo ... ++ ~~~~~~~~~~~~ + + CategoryInfo : ObjectNotFound: (.ProcessName:String) [], CommandNotFoundException + + FullyQualifiedErrorId : CommandNotFoundException + +.ProcessName : The term '.ProcessName' is not recognized as the name of a cmdlet, function, script file, or operable +program. Check the spelling of the name, or if a path was included, verify that the path is correct and try again. +At line:1 char:29 ++ Get-Process | Where-Object {.ProcessName -notmatch '^(dwm|csrss|winlo ... ++ ~~~~~~~~~~~~ + + CategoryInfo : ObjectNotFound: (.ProcessName:String) [], CommandNotFoundException + + FullyQualifiedErrorId : CommandNotFoundException + +.ProcessName : The term '.ProcessName' is not recognized as the name of a cmdlet, function, script file, or operable +program. Check the spelling of the name, or if a path was included, verify that the path is correct and try again. +At line:1 char:29 ++ Get-Process | Where-Object {.ProcessName -notmatch '^(dwm|csrss|winlo ... ++ ~~~~~~~~~~~~ + + CategoryInfo : ObjectNotFound: (.ProcessName:String) [], CommandNotFoundException + + FullyQualifiedErrorId : CommandNotFoundException + +.ProcessName : The term '.ProcessName' is not recognized as the name of a cmdlet, function, script file, or operable +program. Check the spelling of the name, or if a path was included, verify that the path is correct and try again. +At line:1 char:29 ++ Get-Process | Where-Object {.ProcessName -notmatch '^(dwm|csrss|winlo ... ++ ~~~~~~~~~~~~ + + CategoryInfo : ObjectNotFound: (.ProcessName:String) [], CommandNotFoundException + + FullyQualifiedErrorId : CommandNotFoundException + +.ProcessName : The term '.ProcessName' is not recognized as the name of a cmdlet, function, script file, or operable +program. Check the spelling of the name, or if a path was included, verify that the path is correct and try again. +At line:1 char:29 ++ Get-Process | Where-Object {.ProcessName -notmatch '^(dwm|csrss|winlo ... ++ ~~~~~~~~~~~~ + + CategoryInfo : ObjectNotFound: (.ProcessName:String) [], CommandNotFoundException + + FullyQualifiedErrorId : CommandNotFoundException + +.ProcessName : The term '.ProcessName' is not recognized as the name of a cmdlet, function, script file, or operable +program. Check the spelling of the name, or if a path was included, verify that the path is correct and try again. +At line:1 char:29 ++ Get-Process | Where-Object {.ProcessName -notmatch '^(dwm|csrss|winlo ... ++ ~~~~~~~~~~~~ + + CategoryInfo : ObjectNotFound: (.ProcessName:String) [], CommandNotFoundException + + FullyQualifiedErrorId : CommandNotFoundException + +.ProcessName : The term '.ProcessName' is not recognized as the name of a cmdlet, function, script file, or operable +program. Check the spelling of the name, or if a path was included, verify that the path is correct and try again. +At line:1 char:29 ++ Get-Process | Where-Object {.ProcessName -notmatch '^(dwm|csrss|winlo ... ++ ~~~~~~~~~~~~ + + CategoryInfo : ObjectNotFound: (.ProcessName:String) [], CommandNotFoundException + + FullyQualifiedErrorId : CommandNotFoundException + +.ProcessName : The term '.ProcessName' is not recognized as the name of a cmdlet, function, script file, or operable +program. Check the spelling of the name, or if a path was included, verify that the path is correct and try again. +At line:1 char:29 ++ Get-Process | Where-Object {.ProcessName -notmatch '^(dwm|csrss|winlo ... ++ ~~~~~~~~~~~~ + + CategoryInfo : ObjectNotFound: (.ProcessName:String) [], CommandNotFoundException + + FullyQualifiedErrorId : CommandNotFoundException + +.ProcessName : The term '.ProcessName' is not recognized as the name of a cmdlet, function, script file, or operable +program. Check the spelling of the name, or if a path was included, verify that the path is correct and try again. +At line:1 char:29 ++ Get-Process | Where-Object {.ProcessName -notmatch '^(dwm|csrss|winlo ... ++ ~~~~~~~~~~~~ + + CategoryInfo : ObjectNotFound: (.ProcessName:String) [], CommandNotFoundException + + FullyQualifiedErrorId : CommandNotFoundException + +.ProcessName : The term '.ProcessName' is not recognized as the name of a cmdlet, function, script file, or operable +program. Check the spelling of the name, or if a path was included, verify that the path is correct and try again. +At line:1 char:29 ++ Get-Process | Where-Object {.ProcessName -notmatch '^(dwm|csrss|winlo ... ++ ~~~~~~~~~~~~ + + CategoryInfo : ObjectNotFound: (.ProcessName:String) [], CommandNotFoundException + + FullyQualifiedErrorId : CommandNotFoundException + +.ProcessName : The term '.ProcessName' is not recognized as the name of a cmdlet, function, script file, or operable +program. Check the spelling of the name, or if a path was included, verify that the path is correct and try again. +At line:1 char:29 ++ Get-Process | Where-Object {.ProcessName -notmatch '^(dwm|csrss|winlo ... ++ ~~~~~~~~~~~~ + + CategoryInfo : ObjectNotFound: (.ProcessName:String) [], CommandNotFoundException + + FullyQualifiedErrorId : CommandNotFoundException + +.ProcessName : The term '.ProcessName' is not recognized as the name of a cmdlet, function, script file, or operable +program. Check the spelling of the name, or if a path was included, verify that the path is correct and try again. +At line:1 char:29 ++ Get-Process | Where-Object {.ProcessName -notmatch '^(dwm|csrss|winlo ... ++ ~~~~~~~~~~~~ + + CategoryInfo : ObjectNotFound: (.ProcessName:String) [], CommandNotFoundException + + FullyQualifiedErrorId : CommandNotFoundException + +.ProcessName : The term '.ProcessName' is not recognized as the name of a cmdlet, function, script file, or operable +program. Check the spelling of the name, or if a path was included, verify that the path is correct and try again. +At line:1 char:29 ++ Get-Process | Where-Object {.ProcessName -notmatch '^(dwm|csrss|winlo ... ++ ~~~~~~~~~~~~ + + CategoryInfo : ObjectNotFound: (.ProcessName:String) [], CommandNotFoundException + + FullyQualifiedErrorId : CommandNotFoundException + +.ProcessName : The term '.ProcessName' is not recognized as the name of a cmdlet, function, script file, or operable +program. Check the spelling of the name, or if a path was included, verify that the path is correct and try again. +At line:1 char:29 ++ Get-Process | Where-Object {.ProcessName -notmatch '^(dwm|csrss|winlo ... ++ ~~~~~~~~~~~~ + + CategoryInfo : ObjectNotFound: (.ProcessName:String) [], CommandNotFoundException + + FullyQualifiedErrorId : CommandNotFoundException + +.ProcessName : The term '.ProcessName' is not recognized as the name of a cmdlet, function, script file, or operable +program. Check the spelling of the name, or if a path was included, verify that the path is correct and try again. +At line:1 char:29 ++ Get-Process | Where-Object {.ProcessName -notmatch '^(dwm|csrss|winlo ... ++ ~~~~~~~~~~~~ + + CategoryInfo : ObjectNotFound: (.ProcessName:String) [], CommandNotFoundException + + FullyQualifiedErrorId : CommandNotFoundException + +.ProcessName : The term '.ProcessName' is not recognized as the name of a cmdlet, function, script file, or operable +program. Check the spelling of the name, or if a path was included, verify that the path is correct and try again. +At line:1 char:29 ++ Get-Process | Where-Object {.ProcessName -notmatch '^(dwm|csrss|winlo ... ++ ~~~~~~~~~~~~ + + CategoryInfo : ObjectNotFound: (.ProcessName:String) [], CommandNotFoundException + + FullyQualifiedErrorId : CommandNotFoundException + +.ProcessName : The term '.ProcessName' is not recognized as the name of a cmdlet, function, script file, or operable +program. Check the spelling of the name, or if a path was included, verify that the path is correct and try again. +At line:1 char:29 ++ Get-Process | Where-Object {.ProcessName -notmatch '^(dwm|csrss|winlo ... ++ ~~~~~~~~~~~~ + + CategoryInfo : ObjectNotFound: (.ProcessName:String) [], CommandNotFoundException + + FullyQualifiedErrorId : CommandNotFoundException + +.ProcessName : The term '.ProcessName' is not recognized as the name of a cmdlet, function, script file, or operable +program. Check the spelling of the name, or if a path was included, verify that the path is correct and try again. +At line:1 char:29 ++ Get-Process | Where-Object {.ProcessName -notmatch '^(dwm|csrss|winlo ... ++ ~~~~~~~~~~~~ + + CategoryInfo : ObjectNotFound: (.ProcessName:String) [], CommandNotFoundException + + FullyQualifiedErrorId : CommandNotFoundException + +.ProcessName : The term '.ProcessName' is not recognized as the name of a cmdlet, function, script file, or operable +program. Check the spelling of the name, or if a path was included, verify that the path is correct and try again. +At line:1 char:29 ++ Get-Process | Where-Object {.ProcessName -notmatch '^(dwm|csrss|winlo ... ++ ~~~~~~~~~~~~ + + CategoryInfo : ObjectNotFound: (.ProcessName:String) [], CommandNotFoundException + + FullyQualifiedErrorId : CommandNotFoundException + +.ProcessName : The term '.ProcessName' is not recognized as the name of a cmdlet, function, script file, or operable +program. Check the spelling of the name, or if a path was included, verify that the path is correct and try again. +At line:1 char:29 ++ Get-Process | Where-Object {.ProcessName -notmatch '^(dwm|csrss|winlo ... ++ ~~~~~~~~~~~~ + + CategoryInfo : ObjectNotFound: (.ProcessName:String) [], CommandNotFoundException + + FullyQualifiedErrorId : CommandNotFoundException + +.ProcessName : The term '.ProcessName' is not recognized as the name of a cmdlet, function, script file, or operable +program. Check the spelling of the name, or if a path was included, verify that the path is correct and try again. +At line:1 char:29 ++ Get-Process | Where-Object {.ProcessName -notmatch '^(dwm|csrss|winlo ... ++ ~~~~~~~~~~~~ + + CategoryInfo : ObjectNotFound: (.ProcessName:String) [], CommandNotFoundException + + FullyQualifiedErrorId : CommandNotFoundException + +.ProcessName : The term '.ProcessName' is not recognized as the name of a cmdlet, function, script file, or operable +program. Check the spelling of the name, or if a path was included, verify that the path is correct and try again. +At line:1 char:29 ++ Get-Process | Where-Object {.ProcessName -notmatch '^(dwm|csrss|winlo ... ++ ~~~~~~~~~~~~ + + CategoryInfo : ObjectNotFound: (.ProcessName:String) [], CommandNotFoundException + + FullyQualifiedErrorId : CommandNotFoundException + +.ProcessName : The term '.ProcessName' is not recognized as the name of a cmdlet, function, script file, or operable +program. Check the spelling of the name, or if a path was included, verify that the path is correct and try again. +At line:1 char:29 ++ Get-Process | Where-Object {.ProcessName -notmatch '^(dwm|csrss|winlo ... ++ ~~~~~~~~~~~~ + + CategoryInfo : ObjectNotFound: (.ProcessName:String) [], CommandNotFoundException + + FullyQualifiedErrorId : CommandNotFoundException + +.ProcessName : The term '.ProcessName' is not recognized as the name of a cmdlet, function, script file, or operable +program. Check the spelling of the name, or if a path was included, verify that the path is correct and try again. +At line:1 char:29 ++ Get-Process | Where-Object {.ProcessName -notmatch '^(dwm|csrss|winlo ... ++ ~~~~~~~~~~~~ + + CategoryInfo : ObjectNotFound: (.ProcessName:String) [], CommandNotFoundException + + FullyQualifiedErrorId : CommandNotFoundException + +.ProcessName : The term '.ProcessName' is not recognized as the name of a cmdlet, function, script file, or operable +program. Check the spelling of the name, or if a path was included, verify that the path is correct and try again. +At line:1 char:29 ++ Get-Process | Where-Object {.ProcessName -notmatch '^(dwm|csrss|winlo ... ++ ~~~~~~~~~~~~ + + CategoryInfo : ObjectNotFound: (.ProcessName:String) [], CommandNotFoundException + + FullyQualifiedErrorId : CommandNotFoundException + +.ProcessName : The term '.ProcessName' is not recognized as the name of a cmdlet, function, script file, or operable +program. Check the spelling of the name, or if a path was included, verify that the path is correct and try again. +At line:1 char:29 ++ Get-Process | Where-Object {.ProcessName -notmatch '^(dwm|csrss|winlo ... ++ ~~~~~~~~~~~~ + + CategoryInfo : ObjectNotFound: (.ProcessName:String) [], CommandNotFoundException + + FullyQualifiedErrorId : CommandNotFoundException + +.ProcessName : The term '.ProcessName' is not recognized as the name of a cmdlet, function, script file, or operable +program. Check the spelling of the name, or if a path was included, verify that the path is correct and try again. +At line:1 char:29 ++ Get-Process | Where-Object {.ProcessName -notmatch '^(dwm|csrss|winlo ... ++ ~~~~~~~~~~~~ + + CategoryInfo : ObjectNotFound: (.ProcessName:String) [], CommandNotFoundException + + FullyQualifiedErrorId : CommandNotFoundException + +.ProcessName : The term '.ProcessName' is not recognized as the name of a cmdlet, function, script file, or operable +program. Check the spelling of the name, or if a path was included, verify that the path is correct and try again. +At line:1 char:29 ++ Get-Process | Where-Object {.ProcessName -notmatch '^(dwm|csrss|winlo ... ++ ~~~~~~~~~~~~ + + CategoryInfo : ObjectNotFound: (.ProcessName:String) [], CommandNotFoundException + + FullyQualifiedErrorId : CommandNotFoundException + +.ProcessName : The term '.ProcessName' is not recognized as the name of a cmdlet, function, script file, or operable +program. Check the spelling of the name, or if a path was included, verify that the path is correct and try again. +At line:1 char:29 ++ Get-Process | Where-Object {.ProcessName -notmatch '^(dwm|csrss|winlo ... ++ ~~~~~~~~~~~~ + + CategoryInfo : ObjectNotFound: (.ProcessName:String) [], CommandNotFoundException + + FullyQualifiedErrorId : CommandNotFoundException + +.ProcessName : The term '.ProcessName' is not recognized as the name of a cmdlet, function, script file, or operable +program. Check the spelling of the name, or if a path was included, verify that the path is correct and try again. +At line:1 char:29 ++ Get-Process | Where-Object {.ProcessName -notmatch '^(dwm|csrss|winlo ... ++ ~~~~~~~~~~~~ + + CategoryInfo : ObjectNotFound: (.ProcessName:String) [], CommandNotFoundException + + FullyQualifiedErrorId : CommandNotFoundException + +.ProcessName : The term '.ProcessName' is not recognized as the name of a cmdlet, function, script file, or operable +program. Check the spelling of the name, or if a path was included, verify that the path is correct and try again. +At line:1 char:29 ++ Get-Process | Where-Object {.ProcessName -notmatch '^(dwm|csrss|winlo ... ++ ~~~~~~~~~~~~ + + CategoryInfo : ObjectNotFound: (.ProcessName:String) [], CommandNotFoundException + + FullyQualifiedErrorId : CommandNotFoundException + +.ProcessName : The term '.ProcessName' is not recognized as the name of a cmdlet, function, script file, or operable +program. Check the spelling of the name, or if a path was included, verify that the path is correct and try again. +At line:1 char:29 ++ Get-Process | Where-Object {.ProcessName -notmatch '^(dwm|csrss|winlo ... ++ ~~~~~~~~~~~~ + + CategoryInfo : ObjectNotFound: (.ProcessName:String) [], CommandNotFoundException + + FullyQualifiedErrorId : CommandNotFoundException + +.ProcessName : The term '.ProcessName' is not recognized as the name of a cmdlet, function, script file, or operable +program. Check the spelling of the name, or if a path was included, verify that the path is correct and try again. +At line:1 char:29 ++ Get-Process | Where-Object {.ProcessName -notmatch '^(dwm|csrss|winlo ... ++ ~~~~~~~~~~~~ + + CategoryInfo : ObjectNotFound: (.ProcessName:String) [], CommandNotFoundException + + FullyQualifiedErrorId : CommandNotFoundException + +.ProcessName : The term '.ProcessName' is not recognized as the name of a cmdlet, function, script file, or operable +program. Check the spelling of the name, or if a path was included, verify that the path is correct and try again. +At line:1 char:29 ++ Get-Process | Where-Object {.ProcessName -notmatch '^(dwm|csrss|winlo ... ++ ~~~~~~~~~~~~ + + CategoryInfo : ObjectNotFound: (.ProcessName:String) [], CommandNotFoundException + + FullyQualifiedErrorId : CommandNotFoundException + +.ProcessName : The term '.ProcessName' is not recognized as the name of a cmdlet, function, script file, or operable +program. Check the spelling of the name, or if a path was included, verify that the path is correct and try again. +At line:1 char:29 ++ Get-Process | Where-Object {.ProcessName -notmatch '^(dwm|csrss|winlo ... ++ ~~~~~~~~~~~~ + + CategoryInfo : ObjectNotFound: (.ProcessName:String) [], CommandNotFoundException + + FullyQualifiedErrorId : CommandNotFoundException + +.ProcessName : The term '.ProcessName' is not recognized as the name of a cmdlet, function, script file, or operable +program. Check the spelling of the name, or if a path was included, verify that the path is correct and try again. +At line:1 char:29 ++ Get-Process | Where-Object {.ProcessName -notmatch '^(dwm|csrss|winlo ... ++ ~~~~~~~~~~~~ + + CategoryInfo : ObjectNotFound: (.ProcessName:String) [], CommandNotFoundException + + FullyQualifiedErrorId : CommandNotFoundException + +.ProcessName : The term '.ProcessName' is not recognized as the name of a cmdlet, function, script file, or operable +program. Check the spelling of the name, or if a path was included, verify that the path is correct and try again. +At line:1 char:29 ++ Get-Process | Where-Object {.ProcessName -notmatch '^(dwm|csrss|winlo ... ++ ~~~~~~~~~~~~ + + CategoryInfo : ObjectNotFound: (.ProcessName:String) [], CommandNotFoundException + + FullyQualifiedErrorId : CommandNotFoundException + +.ProcessName : The term '.ProcessName' is not recognized as the name of a cmdlet, function, script file, or operable +program. Check the spelling of the name, or if a path was included, verify that the path is correct and try again. +At line:1 char:29 ++ Get-Process | Where-Object {.ProcessName -notmatch '^(dwm|csrss|winlo ... ++ ~~~~~~~~~~~~ + + CategoryInfo : ObjectNotFound: (.ProcessName:String) [], CommandNotFoundException + + FullyQualifiedErrorId : CommandNotFoundException + +.ProcessName : The term '.ProcessName' is not recognized as the name of a cmdlet, function, script file, or operable +program. Check the spelling of the name, or if a path was included, verify that the path is correct and try again. +At line:1 char:29 ++ Get-Process | Where-Object {.ProcessName -notmatch '^(dwm|csrss|winlo ... ++ ~~~~~~~~~~~~ + + CategoryInfo : ObjectNotFound: (.ProcessName:String) [], CommandNotFoundException + + FullyQualifiedErrorId : CommandNotFoundException + +.ProcessName : The term '.ProcessName' is not recognized as the name of a cmdlet, function, script file, or operable +program. Check the spelling of the name, or if a path was included, verify that the path is correct and try again. +At line:1 char:29 ++ Get-Process | Where-Object {.ProcessName -notmatch '^(dwm|csrss|winlo ... ++ ~~~~~~~~~~~~ + + CategoryInfo : ObjectNotFound: (.ProcessName:String) [], CommandNotFoundException + + FullyQualifiedErrorId : CommandNotFoundException + +.ProcessName : The term '.ProcessName' is not recognized as the name of a cmdlet, function, script file, or operable +program. Check the spelling of the name, or if a path was included, verify that the path is correct and try again. +At line:1 char:29 ++ Get-Process | Where-Object {.ProcessName -notmatch '^(dwm|csrss|winlo ... ++ ~~~~~~~~~~~~ + + CategoryInfo : ObjectNotFound: (.ProcessName:String) [], CommandNotFoundException + + FullyQualifiedErrorId : CommandNotFoundException + +.ProcessName : The term '.ProcessName' is not recognized as the name of a cmdlet, function, script file, or operable +program. Check the spelling of the name, or if a path was included, verify that the path is correct and try again. +At line:1 char:29 ++ Get-Process | Where-Object {.ProcessName -notmatch '^(dwm|csrss|winlo ... ++ ~~~~~~~~~~~~ + + CategoryInfo : ObjectNotFound: (.ProcessName:String) [], CommandNotFoundException + + FullyQualifiedErrorId : CommandNotFoundException + +.ProcessName : The term '.ProcessName' is not recognized as the name of a cmdlet, function, script file, or operable +program. Check the spelling of the name, or if a path was included, verify that the path is correct and try again. +At line:1 char:29 ++ Get-Process | Where-Object {.ProcessName -notmatch '^(dwm|csrss|winlo ... ++ ~~~~~~~~~~~~ + + CategoryInfo : ObjectNotFound: (.ProcessName:String) [], CommandNotFoundException + + FullyQualifiedErrorId : CommandNotFoundException + +.ProcessName : The term '.ProcessName' is not recognized as the name of a cmdlet, function, script file, or operable +program. Check the spelling of the name, or if a path was included, verify that the path is correct and try again. +At line:1 char:29 ++ Get-Process | Where-Object {.ProcessName -notmatch '^(dwm|csrss|winlo ... ++ ~~~~~~~~~~~~ + + CategoryInfo : ObjectNotFound: (.ProcessName:String) [], CommandNotFoundException + + FullyQualifiedErrorId : CommandNotFoundException + +.ProcessName : The term '.ProcessName' is not recognized as the name of a cmdlet, function, script file, or operable +program. Check the spelling of the name, or if a path was included, verify that the path is correct and try again. +At line:1 char:29 ++ Get-Process | Where-Object {.ProcessName -notmatch '^(dwm|csrss|winlo ... ++ ~~~~~~~~~~~~ + + CategoryInfo : ObjectNotFound: (.ProcessName:String) [], CommandNotFoundException + + FullyQualifiedErrorId : CommandNotFoundException + +.ProcessName : The term '.ProcessName' is not recognized as the name of a cmdlet, function, script file, or operable +program. Check the spelling of the name, or if a path was included, verify that the path is correct and try again. +At line:1 char:29 ++ Get-Process | Where-Object {.ProcessName -notmatch '^(dwm|csrss|winlo ... ++ ~~~~~~~~~~~~ + + CategoryInfo : ObjectNotFound: (.ProcessName:String) [], CommandNotFoundException + + FullyQualifiedErrorId : CommandNotFoundException + +.ProcessName : The term '.ProcessName' is not recognized as the name of a cmdlet, function, script file, or operable +program. Check the spelling of the name, or if a path was included, verify that the path is correct and try again. +At line:1 char:29 ++ Get-Process | Where-Object {.ProcessName -notmatch '^(dwm|csrss|winlo ... ++ ~~~~~~~~~~~~ + + CategoryInfo : ObjectNotFound: (.ProcessName:String) [], CommandNotFoundException + + FullyQualifiedErrorId : CommandNotFoundException + +.ProcessName : The term '.ProcessName' is not recognized as the name of a cmdlet, function, script file, or operable +program. Check the spelling of the name, or if a path was included, verify that the path is correct and try again. +At line:1 char:29 ++ Get-Process | Where-Object {.ProcessName -notmatch '^(dwm|csrss|winlo ... ++ ~~~~~~~~~~~~ + + CategoryInfo : ObjectNotFound: (.ProcessName:String) [], CommandNotFoundException + + FullyQualifiedErrorId : CommandNotFoundException + +.ProcessName : The term '.ProcessName' is not recognized as the name of a cmdlet, function, script file, or operable +program. Check the spelling of the name, or if a path was included, verify that the path is correct and try again. +At line:1 char:29 ++ Get-Process | Where-Object {.ProcessName -notmatch '^(dwm|csrss|winlo ... ++ ~~~~~~~~~~~~ + + CategoryInfo : ObjectNotFound: (.ProcessName:String) [], CommandNotFoundException + + FullyQualifiedErrorId : CommandNotFoundException + +.ProcessName : The term '.ProcessName' is not recognized as the name of a cmdlet, function, script file, or operable +program. Check the spelling of the name, or if a path was included, verify that the path is correct and try again. +At line:1 char:29 ++ Get-Process | Where-Object {.ProcessName -notmatch '^(dwm|csrss|winlo ... ++ ~~~~~~~~~~~~ + + CategoryInfo : ObjectNotFound: (.ProcessName:String) [], CommandNotFoundException + + FullyQualifiedErrorId : CommandNotFoundException + +.ProcessName : The term '.ProcessName' is not recognized as the name of a cmdlet, function, script file, or operable +program. Check the spelling of the name, or if a path was included, verify that the path is correct and try again. +At line:1 char:29 ++ Get-Process | Where-Object {.ProcessName -notmatch '^(dwm|csrss|winlo ... ++ ~~~~~~~~~~~~ + + CategoryInfo : ObjectNotFound: (.ProcessName:String) [], CommandNotFoundException + + FullyQualifiedErrorId : CommandNotFoundException + +.ProcessName : The term '.ProcessName' is not recognized as the name of a cmdlet, function, script file, or operable +program. Check the spelling of the name, or if a path was included, verify that the path is correct and try again. +At line:1 char:29 ++ Get-Process | Where-Object {.ProcessName -notmatch '^(dwm|csrss|winlo ... ++ ~~~~~~~~~~~~ + + CategoryInfo : ObjectNotFound: (.ProcessName:String) [], CommandNotFoundException + + FullyQualifiedErrorId : CommandNotFoundException + +.ProcessName : The term '.ProcessName' is not recognized as the name of a cmdlet, function, script file, or operable +program. Check the spelling of the name, or if a path was included, verify that the path is correct and try again. +At line:1 char:29 ++ Get-Process | Where-Object {.ProcessName -notmatch '^(dwm|csrss|winlo ... ++ ~~~~~~~~~~~~ + + CategoryInfo : ObjectNotFound: (.ProcessName:String) [], CommandNotFoundException + + FullyQualifiedErrorId : CommandNotFoundException + +.ProcessName : The term '.ProcessName' is not recognized as the name of a cmdlet, function, script file, or operable +program. Check the spelling of the name, or if a path was included, verify that the path is correct and try again. +At line:1 char:29 ++ Get-Process | Where-Object {.ProcessName -notmatch '^(dwm|csrss|winlo ... ++ ~~~~~~~~~~~~ + + CategoryInfo : ObjectNotFound: (.ProcessName:String) [], CommandNotFoundException + + FullyQualifiedErrorId : CommandNotFoundException + +.ProcessName : The term '.ProcessName' is not recognized as the name of a cmdlet, function, script file, or operable +program. Check the spelling of the name, or if a path was included, verify that the path is correct and try again. +At line:1 char:29 ++ Get-Process | Where-Object {.ProcessName -notmatch '^(dwm|csrss|winlo ... ++ ~~~~~~~~~~~~ + + CategoryInfo : ObjectNotFound: (.ProcessName:String) [], CommandNotFoundException + + FullyQualifiedErrorId : CommandNotFoundException + +.ProcessName : The term '.ProcessName' is not recognized as the name of a cmdlet, function, script file, or operable +program. Check the spelling of the name, or if a path was included, verify that the path is correct and try again. +At line:1 char:29 ++ Get-Process | Where-Object {.ProcessName -notmatch '^(dwm|csrss|winlo ... ++ ~~~~~~~~~~~~ + + CategoryInfo : ObjectNotFound: (.ProcessName:String) [], CommandNotFoundException + + FullyQualifiedErrorId : CommandNotFoundException + +.ProcessName : The term '.ProcessName' is not recognized as the name of a cmdlet, function, script file, or operable +program. Check the spelling of the name, or if a path was included, verify that the path is correct and try again. +At line:1 char:29 ++ Get-Process | Where-Object {.ProcessName -notmatch '^(dwm|csrss|winlo ... ++ ~~~~~~~~~~~~ + + CategoryInfo : ObjectNotFound: (.ProcessName:String) [], CommandNotFoundException + + FullyQualifiedErrorId : CommandNotFoundException + +.ProcessName : The term '.ProcessName' is not recognized as the name of a cmdlet, function, script file, or operable +program. Check the spelling of the name, or if a path was included, verify that the path is correct and try again. +At line:1 char:29 ++ Get-Process | Where-Object {.ProcessName -notmatch '^(dwm|csrss|winlo ... ++ ~~~~~~~~~~~~ + + CategoryInfo : ObjectNotFound: (.ProcessName:String) [], CommandNotFoundException + + FullyQualifiedErrorId : CommandNotFoundException + +.ProcessName : The term '.ProcessName' is not recognized as the name of a cmdlet, function, script file, or operable +program. Check the spelling of the name, or if a path was included, verify that the path is correct and try again. +At line:1 char:29 ++ Get-Process | Where-Object {.ProcessName -notmatch '^(dwm|csrss|winlo ... ++ ~~~~~~~~~~~~ + + CategoryInfo : ObjectNotFound: (.ProcessName:String) [], CommandNotFoundException + + FullyQualifiedErrorId : CommandNotFoundException + +.ProcessName : The term '.ProcessName' is not recognized as the name of a cmdlet, function, script file, or operable +program. Check the spelling of the name, or if a path was included, verify that the path is correct and try again. +At line:1 char:29 ++ Get-Process | Where-Object {.ProcessName -notmatch '^(dwm|csrss|winlo ... ++ ~~~~~~~~~~~~ + + CategoryInfo : ObjectNotFound: (.ProcessName:String) [], CommandNotFoundException + + FullyQualifiedErrorId : CommandNotFoundException + +.ProcessName : The term '.ProcessName' is not recognized as the name of a cmdlet, function, script file, or operable +program. Check the spelling of the name, or if a path was included, verify that the path is correct and try again. +At line:1 char:29 ++ Get-Process | Where-Object {.ProcessName -notmatch '^(dwm|csrss|winlo ... ++ ~~~~~~~~~~~~ + + CategoryInfo : ObjectNotFound: (.ProcessName:String) [], CommandNotFoundException + + FullyQualifiedErrorId : CommandNotFoundException + +.ProcessName : The term '.ProcessName' is not recognized as the name of a cmdlet, function, script file, or operable +program. Check the spelling of the name, or if a path was included, verify that the path is correct and try again. +At line:1 char:29 ++ Get-Process | Where-Object {.ProcessName -notmatch '^(dwm|csrss|winlo ... ++ ~~~~~~~~~~~~ + + CategoryInfo : ObjectNotFound: (.ProcessName:String) [], CommandNotFoundException + + FullyQualifiedErrorId : CommandNotFoundException + +.ProcessName : The term '.ProcessName' is not recognized as the name of a cmdlet, function, script file, or operable +program. Check the spelling of the name, or if a path was included, verify that the path is correct and try again. +At line:1 char:29 ++ Get-Process | Where-Object {.ProcessName -notmatch '^(dwm|csrss|winlo ... ++ ~~~~~~~~~~~~ + + CategoryInfo : ObjectNotFound: (.ProcessName:String) [], CommandNotFoundException + + FullyQualifiedErrorId : CommandNotFoundException + +.ProcessName : The term '.ProcessName' is not recognized as the name of a cmdlet, function, script file, or operable +program. Check the spelling of the name, or if a path was included, verify that the path is correct and try again. +At line:1 char:29 ++ Get-Process | Where-Object {.ProcessName -notmatch '^(dwm|csrss|winlo ... ++ ~~~~~~~~~~~~ + + CategoryInfo : ObjectNotFound: (.ProcessName:String) [], CommandNotFoundException + + FullyQualifiedErrorId : CommandNotFoundException + +.ProcessName : The term '.ProcessName' is not recognized as the name of a cmdlet, function, script file, or operable +program. Check the spelling of the name, or if a path was included, verify that the path is correct and try again. +At line:1 char:29 ++ Get-Process | Where-Object {.ProcessName -notmatch '^(dwm|csrss|winlo ... ++ ~~~~~~~~~~~~ + + CategoryInfo : ObjectNotFound: (.ProcessName:String) [], CommandNotFoundException + + FullyQualifiedErrorId : CommandNotFoundException + +.ProcessName : The term '.ProcessName' is not recognized as the name of a cmdlet, function, script file, or operable +program. Check the spelling of the name, or if a path was included, verify that the path is correct and try again. +At line:1 char:29 ++ Get-Process | Where-Object {.ProcessName -notmatch '^(dwm|csrss|winlo ... ++ ~~~~~~~~~~~~ + + CategoryInfo : ObjectNotFound: (.ProcessName:String) [], CommandNotFoundException + + FullyQualifiedErrorId : CommandNotFoundException + +.ProcessName : The term '.ProcessName' is not recognized as the name of a cmdlet, function, script file, or operable +program. Check the spelling of the name, or if a path was included, verify that the path is correct and try again. +At line:1 char:29 ++ Get-Process | Where-Object {.ProcessName -notmatch '^(dwm|csrss|winlo ... ++ ~~~~~~~~~~~~ + + CategoryInfo : ObjectNotFound: (.ProcessName:String) [], CommandNotFoundException + + FullyQualifiedErrorId : CommandNotFoundException + +.ProcessName : The term '.ProcessName' is not recognized as the name of a cmdlet, function, script file, or operable +program. Check the spelling of the name, or if a path was included, verify that the path is correct and try again. +At line:1 char:29 ++ Get-Process | Where-Object {.ProcessName -notmatch '^(dwm|csrss|winlo ... ++ ~~~~~~~~~~~~ + + CategoryInfo : ObjectNotFound: (.ProcessName:String) [], CommandNotFoundException + + FullyQualifiedErrorId : CommandNotFoundException + +.ProcessName : The term '.ProcessName' is not recognized as the name of a cmdlet, function, script file, or operable +program. Check the spelling of the name, or if a path was included, verify that the path is correct and try again. +At line:1 char:29 ++ Get-Process | Where-Object {.ProcessName -notmatch '^(dwm|csrss|winlo ... ++ ~~~~~~~~~~~~ + + CategoryInfo : ObjectNotFound: (.ProcessName:String) [], CommandNotFoundException + + FullyQualifiedErrorId : CommandNotFoundException + +.ProcessName : The term '.ProcessName' is not recognized as the name of a cmdlet, function, script file, or operable +program. Check the spelling of the name, or if a path was included, verify that the path is correct and try again. +At line:1 char:29 ++ Get-Process | Where-Object {.ProcessName -notmatch '^(dwm|csrss|winlo ... ++ ~~~~~~~~~~~~ + + CategoryInfo : ObjectNotFound: (.ProcessName:String) [], CommandNotFoundException + + FullyQualifiedErrorId : CommandNotFoundException + +.ProcessName : The term '.ProcessName' is not recognized as the name of a cmdlet, function, script file, or operable +program. Check the spelling of the name, or if a path was included, verify that the path is correct and try again. +At line:1 char:29 ++ Get-Process | Where-Object {.ProcessName -notmatch '^(dwm|csrss|winlo ... ++ ~~~~~~~~~~~~ + + CategoryInfo : ObjectNotFound: (.ProcessName:String) [], CommandNotFoundException + + FullyQualifiedErrorId : CommandNotFoundException + +.ProcessName : The term '.ProcessName' is not recognized as the name of a cmdlet, function, script file, or operable +program. Check the spelling of the name, or if a path was included, verify that the path is correct and try again. +At line:1 char:29 ++ Get-Process | Where-Object {.ProcessName -notmatch '^(dwm|csrss|winlo ... ++ ~~~~~~~~~~~~ + + CategoryInfo : ObjectNotFound: (.ProcessName:String) [], CommandNotFoundException + + FullyQualifiedErrorId : CommandNotFoundException + +.ProcessName : The term '.ProcessName' is not recognized as the name of a cmdlet, function, script file, or operable +program. Check the spelling of the name, or if a path was included, verify that the path is correct and try again. +At line:1 char:29 ++ Get-Process | Where-Object {.ProcessName -notmatch '^(dwm|csrss|winlo ... ++ ~~~~~~~~~~~~ + + CategoryInfo : ObjectNotFound: (.ProcessName:String) [], CommandNotFoundException + + FullyQualifiedErrorId : CommandNotFoundException + +.ProcessName : The term '.ProcessName' is not recognized as the name of a cmdlet, function, script file, or operable +program. Check the spelling of the name, or if a path was included, verify that the path is correct and try again. +At line:1 char:29 ++ Get-Process | Where-Object {.ProcessName -notmatch '^(dwm|csrss|winlo ... ++ ~~~~~~~~~~~~ + + CategoryInfo : ObjectNotFound: (.ProcessName:String) [], CommandNotFoundException + + FullyQualifiedErrorId : CommandNotFoundException + +.ProcessName : The term '.ProcessName' is not recognized as the name of a cmdlet, function, script file, or operable +program. Check the spelling of the name, or if a path was included, verify that the path is correct and try again. +At line:1 char:29 ++ Get-Process | Where-Object {.ProcessName -notmatch '^(dwm|csrss|winlo ... ++ ~~~~~~~~~~~~ + + CategoryInfo : ObjectNotFound: (.ProcessName:String) [], CommandNotFoundException + + FullyQualifiedErrorId : CommandNotFoundException + +.ProcessName : The term '.ProcessName' is not recognized as the name of a cmdlet, function, script file, or operable +program. Check the spelling of the name, or if a path was included, verify that the path is correct and try again. +At line:1 char:29 ++ Get-Process | Where-Object {.ProcessName -notmatch '^(dwm|csrss|winlo ... ++ ~~~~~~~~~~~~ + + CategoryInfo : ObjectNotFound: (.ProcessName:String) [], CommandNotFoundException + + FullyQualifiedErrorId : CommandNotFoundException + +.ProcessName : The term '.ProcessName' is not recognized as the name of a cmdlet, function, script file, or operable +program. Check the spelling of the name, or if a path was included, verify that the path is correct and try again. +At line:1 char:29 ++ Get-Process | Where-Object {.ProcessName -notmatch '^(dwm|csrss|winlo ... ++ ~~~~~~~~~~~~ + + CategoryInfo : ObjectNotFound: (.ProcessName:String) [], CommandNotFoundException + + FullyQualifiedErrorId : CommandNotFoundException + +.ProcessName : The term '.ProcessName' is not recognized as the name of a cmdlet, function, script file, or operable +program. Check the spelling of the name, or if a path was included, verify that the path is correct and try again. +At line:1 char:29 ++ Get-Process | Where-Object {.ProcessName -notmatch '^(dwm|csrss|winlo ... ++ ~~~~~~~~~~~~ + + CategoryInfo : ObjectNotFound: (.ProcessName:String) [], CommandNotFoundException + + FullyQualifiedErrorId : CommandNotFoundException + +.ProcessName : The term '.ProcessName' is not recognized as the name of a cmdlet, function, script file, or operable +program. Check the spelling of the name, or if a path was included, verify that the path is correct and try again. +At line:1 char:29 ++ Get-Process | Where-Object {.ProcessName -notmatch '^(dwm|csrss|winlo ... ++ ~~~~~~~~~~~~ + + CategoryInfo : ObjectNotFound: (.ProcessName:String) [], CommandNotFoundException + + FullyQualifiedErrorId : CommandNotFoundException + +.ProcessName : The term '.ProcessName' is not recognized as the name of a cmdlet, function, script file, or operable +program. Check the spelling of the name, or if a path was included, verify that the path is correct and try again. +At line:1 char:29 ++ Get-Process | Where-Object {.ProcessName -notmatch '^(dwm|csrss|winlo ... ++ ~~~~~~~~~~~~ + + CategoryInfo : ObjectNotFound: (.ProcessName:String) [], CommandNotFoundException + + FullyQualifiedErrorId : CommandNotFoundException + +.ProcessName : The term '.ProcessName' is not recognized as the name of a cmdlet, function, script file, or operable +program. Check the spelling of the name, or if a path was included, verify that the path is correct and try again. +At line:1 char:29 ++ Get-Process | Where-Object {.ProcessName -notmatch '^(dwm|csrss|winlo ... ++ ~~~~~~~~~~~~ + + CategoryInfo : ObjectNotFound: (.ProcessName:String) [], CommandNotFoundException + + FullyQualifiedErrorId : CommandNotFoundException + +.ProcessName : The term '.ProcessName' is not recognized as the name of a cmdlet, function, script file, or operable +program. Check the spelling of the name, or if a path was included, verify that the path is correct and try again. +At line:1 char:29 ++ Get-Process | Where-Object {.ProcessName -notmatch '^(dwm|csrss|winlo ... ++ ~~~~~~~~~~~~ + + CategoryInfo : ObjectNotFound: (.ProcessName:String) [], CommandNotFoundException + + FullyQualifiedErrorId : CommandNotFoundException + +.ProcessName : The term '.ProcessName' is not recognized as the name of a cmdlet, function, script file, or operable +program. Check the spelling of the name, or if a path was included, verify that the path is correct and try again. +At line:1 char:29 ++ Get-Process | Where-Object {.ProcessName -notmatch '^(dwm|csrss|winlo ... ++ ~~~~~~~~~~~~ + + CategoryInfo : ObjectNotFound: (.ProcessName:String) [], CommandNotFoundException + + FullyQualifiedErrorId : CommandNotFoundException + +.ProcessName : The term '.ProcessName' is not recognized as the name of a cmdlet, function, script file, or operable +program. Check the spelling of the name, or if a path was included, verify that the path is correct and try again. +At line:1 char:29 ++ Get-Process | Where-Object {.ProcessName -notmatch '^(dwm|csrss|winlo ... ++ ~~~~~~~~~~~~ + + CategoryInfo : ObjectNotFound: (.ProcessName:String) [], CommandNotFoundException + + FullyQualifiedErrorId : CommandNotFoundException + +.ProcessName : The term '.ProcessName' is not recognized as the name of a cmdlet, function, script file, or operable +program. Check the spelling of the name, or if a path was included, verify that the path is correct and try again. +At line:1 char:29 ++ Get-Process | Where-Object {.ProcessName -notmatch '^(dwm|csrss|winlo ... ++ ~~~~~~~~~~~~ + + CategoryInfo : ObjectNotFound: (.ProcessName:String) [], CommandNotFoundException + + FullyQualifiedErrorId : CommandNotFoundException + +.ProcessName : The term '.ProcessName' is not recognized as the name of a cmdlet, function, script file, or operable +program. Check the spelling of the name, or if a path was included, verify that the path is correct and try again. +At line:1 char:29 ++ Get-Process | Where-Object {.ProcessName -notmatch '^(dwm|csrss|winlo ... ++ ~~~~~~~~~~~~ + + CategoryInfo : ObjectNotFound: (.ProcessName:String) [], CommandNotFoundException + + FullyQualifiedErrorId : CommandNotFoundException + +.ProcessName : The term '.ProcessName' is not recognized as the name of a cmdlet, function, script file, or operable +program. Check the spelling of the name, or if a path was included, verify that the path is correct and try again. +At line:1 char:29 ++ Get-Process | Where-Object {.ProcessName -notmatch '^(dwm|csrss|winlo ... ++ ~~~~~~~~~~~~ + + CategoryInfo : ObjectNotFound: (.ProcessName:String) [], CommandNotFoundException + + FullyQualifiedErrorId : CommandNotFoundException + +.ProcessName : The term '.ProcessName' is not recognized as the name of a cmdlet, function, script file, or operable +program. Check the spelling of the name, or if a path was included, verify that the path is correct and try again. +At line:1 char:29 ++ Get-Process | Where-Object {.ProcessName -notmatch '^(dwm|csrss|winlo ... ++ ~~~~~~~~~~~~ + + CategoryInfo : ObjectNotFound: (.ProcessName:String) [], CommandNotFoundException + + FullyQualifiedErrorId : CommandNotFoundException + +.ProcessName : The term '.ProcessName' is not recognized as the name of a cmdlet, function, script file, or operable +program. Check the spelling of the name, or if a path was included, verify that the path is correct and try again. +At line:1 char:29 ++ Get-Process | Where-Object {.ProcessName -notmatch '^(dwm|csrss|winlo ... ++ ~~~~~~~~~~~~ + + CategoryInfo : ObjectNotFound: (.ProcessName:String) [], CommandNotFoundException + + FullyQualifiedErrorId : CommandNotFoundException + +.ProcessName : The term '.ProcessName' is not recognized as the name of a cmdlet, function, script file, or operable +program. Check the spelling of the name, or if a path was included, verify that the path is correct and try again. +At line:1 char:29 ++ Get-Process | Where-Object {.ProcessName -notmatch '^(dwm|csrss|winlo ... ++ ~~~~~~~~~~~~ + + CategoryInfo : ObjectNotFound: (.ProcessName:String) [], CommandNotFoundException + + FullyQualifiedErrorId : CommandNotFoundException + +.ProcessName : The term '.ProcessName' is not recognized as the name of a cmdlet, function, script file, or operable +program. Check the spelling of the name, or if a path was included, verify that the path is correct and try again. +At line:1 char:29 ++ Get-Process | Where-Object {.ProcessName -notmatch '^(dwm|csrss|winlo ... ++ ~~~~~~~~~~~~ + + CategoryInfo : ObjectNotFound: (.ProcessName:String) [], CommandNotFoundException + + FullyQualifiedErrorId : CommandNotFoundException + +.ProcessName : The term '.ProcessName' is not recognized as the name of a cmdlet, function, script file, or operable +program. Check the spelling of the name, or if a path was included, verify that the path is correct and try again. +At line:1 char:29 ++ Get-Process | Where-Object {.ProcessName -notmatch '^(dwm|csrss|winlo ... ++ ~~~~~~~~~~~~ + + CategoryInfo : ObjectNotFound: (.ProcessName:String) [], CommandNotFoundException + + FullyQualifiedErrorId : CommandNotFoundException + +.ProcessName : The term '.ProcessName' is not recognized as the name of a cmdlet, function, script file, or operable +program. Check the spelling of the name, or if a path was included, verify that the path is correct and try again. +At line:1 char:29 ++ Get-Process | Where-Object {.ProcessName -notmatch '^(dwm|csrss|winlo ... ++ ~~~~~~~~~~~~ + + CategoryInfo : ObjectNotFound: (.ProcessName:String) [], CommandNotFoundException + + FullyQualifiedErrorId : CommandNotFoundException + +.ProcessName : The term '.ProcessName' is not recognized as the name of a cmdlet, function, script file, or operable +program. Check the spelling of the name, or if a path was included, verify that the path is correct and try again. +At line:1 char:29 ++ Get-Process | Where-Object {.ProcessName -notmatch '^(dwm|csrss|winlo ... ++ ~~~~~~~~~~~~ + + CategoryInfo : ObjectNotFound: (.ProcessName:String) [], CommandNotFoundException + + FullyQualifiedErrorId : CommandNotFoundException + +.ProcessName : The term '.ProcessName' is not recognized as the name of a cmdlet, function, script file, or operable +program. Check the spelling of the name, or if a path was included, verify that the path is correct and try again. +At line:1 char:29 ++ Get-Process | Where-Object {.ProcessName -notmatch '^(dwm|csrss|winlo ... ++ ~~~~~~~~~~~~ + + CategoryInfo : ObjectNotFound: (.ProcessName:String) [], CommandNotFoundException + + FullyQualifiedErrorId : CommandNotFoundException + +.ProcessName : The term '.ProcessName' is not recognized as the name of a cmdlet, function, script file, or operable +program. Check the spelling of the name, or if a path was included, verify that the path is correct and try again. +At line:1 char:29 ++ Get-Process | Where-Object {.ProcessName -notmatch '^(dwm|csrss|winlo ... ++ ~~~~~~~~~~~~ + + CategoryInfo : ObjectNotFound: (.ProcessName:String) [], CommandNotFoundException + + FullyQualifiedErrorId : CommandNotFoundException + +.ProcessName : The term '.ProcessName' is not recognized as the name of a cmdlet, function, script file, or operable +program. Check the spelling of the name, or if a path was included, verify that the path is correct and try again. +At line:1 char:29 ++ Get-Process | Where-Object {.ProcessName -notmatch '^(dwm|csrss|winlo ... ++ ~~~~~~~~~~~~ + + CategoryInfo : ObjectNotFound: (.ProcessName:String) [], CommandNotFoundException + + FullyQualifiedErrorId : CommandNotFoundException + +.ProcessName : The term '.ProcessName' is not recognized as the name of a cmdlet, function, script file, or operable +program. Check the spelling of the name, or if a path was included, verify that the path is correct and try again. +At line:1 char:29 ++ Get-Process | Where-Object {.ProcessName -notmatch '^(dwm|csrss|winlo ... ++ ~~~~~~~~~~~~ + + CategoryInfo : ObjectNotFound: (.ProcessName:String) [], CommandNotFoundException + + FullyQualifiedErrorId : CommandNotFoundException + +.ProcessName : The term '.ProcessName' is not recognized as the name of a cmdlet, function, script file, or operable +program. Check the spelling of the name, or if a path was included, verify that the path is correct and try again. +At line:1 char:29 ++ Get-Process | Where-Object {.ProcessName -notmatch '^(dwm|csrss|winlo ... ++ ~~~~~~~~~~~~ + + CategoryInfo : ObjectNotFound: (.ProcessName:String) [], CommandNotFoundException + + FullyQualifiedErrorId : CommandNotFoundException + +.ProcessName : The term '.ProcessName' is not recognized as the name of a cmdlet, function, script file, or operable +program. Check the spelling of the name, or if a path was included, verify that the path is correct and try again. +At line:1 char:29 ++ Get-Process | Where-Object {.ProcessName -notmatch '^(dwm|csrss|winlo ... ++ ~~~~~~~~~~~~ + + CategoryInfo : ObjectNotFound: (.ProcessName:String) [], CommandNotFoundException + + FullyQualifiedErrorId : CommandNotFoundException + +.ProcessName : The term '.ProcessName' is not recognized as the name of a cmdlet, function, script file, or operable +program. Check the spelling of the name, or if a path was included, verify that the path is correct and try again. +At line:1 char:29 ++ Get-Process | Where-Object {.ProcessName -notmatch '^(dwm|csrss|winlo ... ++ ~~~~~~~~~~~~ + + CategoryInfo : ObjectNotFound: (.ProcessName:String) [], CommandNotFoundException + + FullyQualifiedErrorId : CommandNotFoundException + +.ProcessName : The term '.ProcessName' is not recognized as the name of a cmdlet, function, script file, or operable +program. Check the spelling of the name, or if a path was included, verify that the path is correct and try again. +At line:1 char:29 ++ Get-Process | Where-Object {.ProcessName -notmatch '^(dwm|csrss|winlo ... ++ ~~~~~~~~~~~~ + + CategoryInfo : ObjectNotFound: (.ProcessName:String) [], CommandNotFoundException + + FullyQualifiedErrorId : CommandNotFoundException + +.ProcessName : The term '.ProcessName' is not recognized as the name of a cmdlet, function, script file, or operable +program. Check the spelling of the name, or if a path was included, verify that the path is correct and try again. +At line:1 char:29 ++ Get-Process | Where-Object {.ProcessName -notmatch '^(dwm|csrss|winlo ... ++ ~~~~~~~~~~~~ + + CategoryInfo : ObjectNotFound: (.ProcessName:String) [], CommandNotFoundException + + FullyQualifiedErrorId : CommandNotFoundException + +.ProcessName : The term '.ProcessName' is not recognized as the name of a cmdlet, function, script file, or operable +program. Check the spelling of the name, or if a path was included, verify that the path is correct and try again. +At line:1 char:29 ++ Get-Process | Where-Object {.ProcessName -notmatch '^(dwm|csrss|winlo ... ++ ~~~~~~~~~~~~ + + CategoryInfo : ObjectNotFound: (.ProcessName:String) [], CommandNotFoundException + + FullyQualifiedErrorId : CommandNotFoundException + +.ProcessName : The term '.ProcessName' is not recognized as the name of a cmdlet, function, script file, or operable +program. Check the spelling of the name, or if a path was included, verify that the path is correct and try again. +At line:1 char:29 ++ Get-Process | Where-Object {.ProcessName -notmatch '^(dwm|csrss|winlo ... ++ ~~~~~~~~~~~~ + + CategoryInfo : ObjectNotFound: (.ProcessName:String) [], CommandNotFoundException + + FullyQualifiedErrorId : CommandNotFoundException + +.ProcessName : The term '.ProcessName' is not recognized as the name of a cmdlet, function, script file, or operable +program. Check the spelling of the name, or if a path was included, verify that the path is correct and try again. +At line:1 char:29 ++ Get-Process | Where-Object {.ProcessName -notmatch '^(dwm|csrss|winlo ... ++ ~~~~~~~~~~~~ + + CategoryInfo : ObjectNotFound: (.ProcessName:String) [], CommandNotFoundException + + FullyQualifiedErrorId : CommandNotFoundException + +.ProcessName : The term '.ProcessName' is not recognized as the name of a cmdlet, function, script file, or operable +program. Check the spelling of the name, or if a path was included, verify that the path is correct and try again. +At line:1 char:29 ++ Get-Process | Where-Object {.ProcessName -notmatch '^(dwm|csrss|winlo ... ++ ~~~~~~~~~~~~ + + CategoryInfo : ObjectNotFound: (.ProcessName:String) [], CommandNotFoundException + + FullyQualifiedErrorId : CommandNotFoundException + +.ProcessName : The term '.ProcessName' is not recognized as the name of a cmdlet, function, script file, or operable +program. Check the spelling of the name, or if a path was included, verify that the path is correct and try again. +At line:1 char:29 ++ Get-Process | Where-Object {.ProcessName -notmatch '^(dwm|csrss|winlo ... ++ ~~~~~~~~~~~~ + + CategoryInfo : ObjectNotFound: (.ProcessName:String) [], CommandNotFoundException + + FullyQualifiedErrorId : CommandNotFoundException + +.ProcessName : The term '.ProcessName' is not recognized as the name of a cmdlet, function, script file, or operable +program. Check the spelling of the name, or if a path was included, verify that the path is correct and try again. +At line:1 char:29 ++ Get-Process | Where-Object {.ProcessName -notmatch '^(dwm|csrss|winlo ... ++ ~~~~~~~~~~~~ + + CategoryInfo : ObjectNotFound: (.ProcessName:String) [], CommandNotFoundException + + FullyQualifiedErrorId : CommandNotFoundException + +.ProcessName : The term '.ProcessName' is not recognized as the name of a cmdlet, function, script file, or operable +program. Check the spelling of the name, or if a path was included, verify that the path is correct and try again. +At line:1 char:29 ++ Get-Process | Where-Object {.ProcessName -notmatch '^(dwm|csrss|winlo ... ++ ~~~~~~~~~~~~ + + CategoryInfo : ObjectNotFound: (.ProcessName:String) [], CommandNotFoundException + + FullyQualifiedErrorId : CommandNotFoundException + +.ProcessName : The term '.ProcessName' is not recognized as the name of a cmdlet, function, script file, or operable +program. Check the spelling of the name, or if a path was included, verify that the path is correct and try again. +At line:1 char:29 ++ Get-Process | Where-Object {.ProcessName -notmatch '^(dwm|csrss|winlo ... ++ ~~~~~~~~~~~~ + + CategoryInfo : ObjectNotFound: (.ProcessName:String) [], CommandNotFoundException + + FullyQualifiedErrorId : CommandNotFoundException + +.ProcessName : The term '.ProcessName' is not recognized as the name of a cmdlet, function, script file, or operable +program. Check the spelling of the name, or if a path was included, verify that the path is correct and try again. +At line:1 char:29 ++ Get-Process | Where-Object {.ProcessName -notmatch '^(dwm|csrss|winlo ... ++ ~~~~~~~~~~~~ + + CategoryInfo : ObjectNotFound: (.ProcessName:String) [], CommandNotFoundException + + FullyQualifiedErrorId : CommandNotFoundException + +.ProcessName : The term '.ProcessName' is not recognized as the name of a cmdlet, function, script file, or operable +program. Check the spelling of the name, or if a path was included, verify that the path is correct and try again. +At line:1 char:29 ++ Get-Process | Where-Object {.ProcessName -notmatch '^(dwm|csrss|winlo ... ++ ~~~~~~~~~~~~ + + CategoryInfo : ObjectNotFound: (.ProcessName:String) [], CommandNotFoundException + + FullyQualifiedErrorId : CommandNotFoundException + +.ProcessName : The term '.ProcessName' is not recognized as the name of a cmdlet, function, script file, or operable +program. Check the spelling of the name, or if a path was included, verify that the path is correct and try again. +At line:1 char:29 ++ Get-Process | Where-Object {.ProcessName -notmatch '^(dwm|csrss|winlo ... ++ ~~~~~~~~~~~~ + + CategoryInfo : ObjectNotFound: (.ProcessName:String) [], CommandNotFoundException + + FullyQualifiedErrorId : CommandNotFoundException + +.ProcessName : The term '.ProcessName' is not recognized as the name of a cmdlet, function, script file, or operable +program. Check the spelling of the name, or if a path was included, verify that the path is correct and try again. +At line:1 char:29 ++ Get-Process | Where-Object {.ProcessName -notmatch '^(dwm|csrss|winlo ... ++ ~~~~~~~~~~~~ + + CategoryInfo : ObjectNotFound: (.ProcessName:String) [], CommandNotFoundException + + FullyQualifiedErrorId : CommandNotFoundException + +.ProcessName : The term '.ProcessName' is not recognized as the name of a cmdlet, function, script file, or operable +program. Check the spelling of the name, or if a path was included, verify that the path is correct and try again. +At line:1 char:29 ++ Get-Process | Where-Object {.ProcessName -notmatch '^(dwm|csrss|winlo ... ++ ~~~~~~~~~~~~ + + CategoryInfo : ObjectNotFound: (.ProcessName:String) [], CommandNotFoundException + + FullyQualifiedErrorId : CommandNotFoundException + +.ProcessName : The term '.ProcessName' is not recognized as the name of a cmdlet, function, script file, or operable +program. Check the spelling of the name, or if a path was included, verify that the path is correct and try again. +At line:1 char:29 ++ Get-Process | Where-Object {.ProcessName -notmatch '^(dwm|csrss|winlo ... ++ ~~~~~~~~~~~~ + + CategoryInfo : ObjectNotFound: (.ProcessName:String) [], CommandNotFoundException + + FullyQualifiedErrorId : CommandNotFoundException + +.ProcessName : The term '.ProcessName' is not recognized as the name of a cmdlet, function, script file, or operable +program. Check the spelling of the name, or if a path was included, verify that the path is correct and try again. +At line:1 char:29 ++ Get-Process | Where-Object {.ProcessName -notmatch '^(dwm|csrss|winlo ... ++ ~~~~~~~~~~~~ + + CategoryInfo : ObjectNotFound: (.ProcessName:String) [], CommandNotFoundException + + FullyQualifiedErrorId : CommandNotFoundException + +.ProcessName : The term '.ProcessName' is not recognized as the name of a cmdlet, function, script file, or operable +program. Check the spelling of the name, or if a path was included, verify that the path is correct and try again. +At line:1 char:29 ++ Get-Process | Where-Object {.ProcessName -notmatch '^(dwm|csrss|winlo ... ++ ~~~~~~~~~~~~ + + CategoryInfo : ObjectNotFound: (.ProcessName:String) [], CommandNotFoundException + + FullyQualifiedErrorId : CommandNotFoundException + +.ProcessName : The term '.ProcessName' is not recognized as the name of a cmdlet, function, script file, or operable +program. Check the spelling of the name, or if a path was included, verify that the path is correct and try again. +At line:1 char:29 ++ Get-Process | Where-Object {.ProcessName -notmatch '^(dwm|csrss|winlo ... ++ ~~~~~~~~~~~~ + + CategoryInfo : ObjectNotFound: (.ProcessName:String) [], CommandNotFoundException + + FullyQualifiedErrorId : CommandNotFoundException + +.ProcessName : The term '.ProcessName' is not recognized as the name of a cmdlet, function, script file, or operable +program. Check the spelling of the name, or if a path was included, verify that the path is correct and try again. +At line:1 char:29 ++ Get-Process | Where-Object {.ProcessName -notmatch '^(dwm|csrss|winlo ... ++ ~~~~~~~~~~~~ + + CategoryInfo : ObjectNotFound: (.ProcessName:String) [], CommandNotFoundException + + FullyQualifiedErrorId : CommandNotFoundException + +.ProcessName : The term '.ProcessName' is not recognized as the name of a cmdlet, function, script file, or operable +program. Check the spelling of the name, or if a path was included, verify that the path is correct and try again. +At line:1 char:29 ++ Get-Process | Where-Object {.ProcessName -notmatch '^(dwm|csrss|winlo ... ++ ~~~~~~~~~~~~ + + CategoryInfo : ObjectNotFound: (.ProcessName:String) [], CommandNotFoundException + + FullyQualifiedErrorId : CommandNotFoundException + + +``` +
+
+ +--- + + +Trying a simpler approach to list processes: + + +--- + + +
Tool use: **run_terminal_command_v2** • Run command: tasklist /fo table | findstr /v "Image Name =============" | findstr /v "System Idle smss csrss wininit winlogon services lsass svchost dwm explorer" + +```bash +tasklist /fo table | findstr /v "Image Name =============" | findstr /v "System Idle smss csrss wininit winlogon services lsass svchost dwm explorer" +``` + +``` + +Registry 272 Services 0 65,668 K +fontdrvhost.exe 1516 Services 0 216 K +fontdrvhost.exe 1524 Console 1 6,120 K +WUDFHost.exe 1540 Services 0 2,168 K +atiesrxx.exe 2228 Services 0 6,288 K +amdfendrsr.exe 2508 Services 0 1,936 K +atieclxx.exe 3268 Console 1 10,496 K +Memory Compression 3416 Services 0 786,948 K +audiodg.exe 4212 Services 0 28,124 K +spoolsv.exe 4248 Services 0 17,560 K +mDNSResponder.exe 4964 Services 0 4,156 K +AmdPpkgSvc.exe 4972 Services 0 1,432 K +remoting_host.exe 4980 Services 0 3,092 K +AppleMobileDeviceService. 5020 Services 0 3,104 K +cdarbsvc_v1.2.0_x64.exe 5028 Services 0 1,160 K +ControlServer.exe 5112 Services 0 2,072 K +OfficeClickToRun.exe 5132 Services 0 28,024 K +PnkBstrB.exe 5184 Services 0 2,012 K +NLSvc.exe 5192 Services 0 30,560 K +PnkBstrA.exe 5216 Services 0 1,924 K +sshd.exe 5244 Services 0 1,696 K +MpDefenderCoreService.exe 5252 Services 0 16,104 K +SignalRgbService.exe 5300 Services 0 15,156 K +wallpaperservice32.exe 5340 Services 0 3,200 K +MacriumService.exe 5348 Services 0 16,344 K +MsMpEng.exe 5376 Services 0 423,476 K +vss-service-x64.exe 5472 Services 0 9,748 K +CptService.exe 5488 Services 0 1,616 K +dasHost.exe 6260 Services 0 8,792 K +tailscaled.exe 6424 Services 0 15,340 K +remoting_host.exe 6808 Services 0 12,452 K +dasHost.exe 7980 Services 0 1,104 K +WmiPrvSE.exe 8188 Services 0 43,444 K +tailscaled.exe 8384 Services 0 47,360 K +wlanext.exe 8344 Services 0 2,204 K +AggregatorHost.exe 1912 Services 0 10,864 K +sihost.exe 9616 Console 1 29,260 K +MSIAfterburner.exe 10148 Console 1 12,056 K +AUEPMaster.exe 10216 Services 0 7,360 K +taskhostw.exe 10512 Console 1 15,812 K +NisSrv.exe 10764 Services 0 7,936 K +CrossDeviceResume.exe 12888 Console 1 24,792 K +SearchHost.exe 14028 Console 1 119,232 K +StartMenuExperienceHost.e 14036 Console 1 99,920 K +Widgets.exe 14216 Console 1 43,196 K +RuntimeBroker.exe 14248 Console 1 54,184 K +SearchIndexer.exe 14528 Services 0 53,956 K +WidgetService.exe 14580 Console 1 13,136 K +ReflectUI.exe 14800 Console 1 14,696 K +msedgewebview2.exe 15032 Console 1 70,464 K +msedgewebview2.exe 15140 Console 1 3,060 K +msedgewebview2.exe 15960 Console 1 22,808 K +msedgewebview2.exe 16156 Console 1 7,612 K +ctfmon.exe 16220 Console 1 23,012 K +msedgewebview2.exe 15576 Console 1 104,572 K +TextInputHost.exe 11400 Console 1 102,524 K +CPUMetricsServer.exe 21140 Console 1 5,304 K +ReflectMonitor.exe 21536 Console 1 21,440 K +ApplicationFrameHost.exe 21740 Console 1 40,572 K +FileSyncHelper.exe 9600 Services 0 14,488 K +SignalRgbLauncher.exe 21960 Console 1 5,260 K +tailscale-ipn.exe 10812 Console 1 24,132 K +AUEPDU.exe 19060 Services 0 6,904 K +SecurityHealthService.exe 20672 Services 0 11,036 K +chrome.exe 5812 Console 1 596,992 K +chrome.exe 7772 Console 1 3,752 K +chrome.exe 8300 Console 1 64,896 K +chrome.exe 4176 Console 1 11,160 K +chrome.exe 8360 Console 1 12,336 K +chrome.exe 7892 Console 1 20,172 K +FileCoAuth.exe 23296 Console 1 10,276 K +chrome.exe 14452 Console 1 64,864 K +chrome.exe 2656 Console 1 145,156 K +chrome.exe 3568 Console 1 127,112 K +chrome.exe 18308 Console 1 98,324 K +SoundCapture.exe 25256 Console 1 99,064 K +AppActions.exe 15164 Console 1 8,492 K +SDXHelper.exe 24344 Console 1 11,700 K +WUDFHost.exe 26108 Services 0 1,712 K +XboxPcAppFT.exe 25916 Console 1 45,384 K +ShellExperienceHost.exe 24032 Console 1 68,492 K +RuntimeBroker.exe 8392 Console 1 20,592 K +dllhost.exe 23044 Console 1 13,872 K +dllhost.exe 23200 Console 1 13,712 K +sheepit.exe 22948 Console 1 1,624 K +javaw.exe 5072 Console 1 339,984 K +taskhostw.exe 25832 Console 1 30,636 K +dllhost.exe 27156 Console 1 18,216 K +dllhost.exe 15120 Console 1 20,048 K +dllhost.exe 24020 Console 1 17,732 K +GameInputRedistService.ex 31184 Services 0 10,396 K +dllhost.exe 33124 Console 1 8,732 K +ShellHost.exe 31008 Console 1 54,108 K +chrome.exe 28756 Console 1 331,172 K +chrome.exe 30844 Console 1 280,592 K +DataExchangeHost.exe 27628 Console 1 45,724 K +chrome.exe 27476 Console 1 672,780 K +chrome.exe 3992 Console 1 427,448 K +RadeonSoftware.exe 22016 Console 1 50,324 K +cncmd.exe 26972 Console 1 8,468 K +cmd.exe 6068 Console 1 18,532 K +conhost.exe 7948 Console 1 6,540 K +AMDRSServ.exe 10064 Console 1 26,068 K +AMDRSSrcExt.exe 26168 Console 1 58,248 K +amdow.exe 26084 Console 1 2,656 K +msedgewebview2.exe 27876 Console 1 66,612 K +chrome.exe 30884 Console 1 368,724 K +chrome.exe 2088 Console 1 232,956 K +chrome.exe 30108 Console 1 326,852 K +conhost.exe 28940 Console 1 6,760 K +keyboxd.exe 38268 Console 1 9,596 K +WmiPrvSE.exe 14456 Services 0 14,148 K +nvcontainer.exe 33748 Services 0 44,036 K +nvcontainer.exe 30992 Console 1 44,368 K +nvcontainer.exe 14112 Console 1 98,728 K +SignalRgb.exe 1500 Console 1 702,368 K +crashpad_handler.exe 35724 Console 1 8,524 K +Cursor.exe 16736 Console 1 172,772 K +Cursor.exe 13348 Console 1 40,148 K +Cursor.exe 25780 Console 1 139,436 K +Cursor.exe 35908 Console 1 58,372 K +Cursor.exe 3816 Console 1 1,063,004 K +Cursor.exe 16436 Console 1 141,588 K +Cursor.exe 9908 Console 1 122,752 K +Cursor.exe 12212 Console 1 128,320 K +Cursor.exe 17080 Console 1 785,476 K +Cursor.exe 15988 Console 1 238,096 K +Cursor.exe 17332 Console 1 195,220 K +conhost.exe 38204 Console 1 8,408 K +pwsh.exe 10436 Console 1 107,400 K +Cursor.exe 37400 Console 1 102,040 K +uvx.exe 36748 Console 1 3,840 K +conhost.exe 28568 Console 1 7,316 K +uv.exe 24652 Console 1 79,268 K +blender-mcp.exe 38980 Console 1 5,140 K +python.exe 32044 Console 1 4,148 K +python.exe 22296 Console 1 99,528 K +Cursor.exe 30848 Console 1 112,056 K +synergy-daemon.exe 31616 Services 0 13,644 K +synergy-service.exe 36508 Console 1 83,520 K +synergy-service.exe 29888 Console 1 97,888 K +synergy-tray.exe 13664 Console 1 12,864 K +chrome.exe 30188 Console 1 146,820 K +chrome.exe 36188 Console 1 450,980 K +chrome.exe 8128 Console 1 32,396 K +RuntimeBroker.exe 4052 Console 1 21,644 K +synergy-core.exe 18720 Console 1 15,636 K +conhost.exe 34344 Console 1 7,360 K +backgroundTaskHost.exe 17344 Console 1 42,148 K +Discord.exe 39844 Console 1 187,948 K +Discord.exe 11940 Console 1 36,484 K +Discord.exe 11688 Console 1 320,800 K +Discord.exe 36668 Console 1 59,476 K +Discord.exe 23452 Console 1 597,104 K +Discord.exe 36540 Console 1 90,504 K +blender.exe 33860 Console 1 794,180 K +conhost.exe 18068 Console 1 10,144 K +PresentMon-x64.exe 31412 Console 1 13,292 K +conhost.exe 35116 Console 1 7,292 K +SearchFilterHost.exe 33992 Services 0 11,512 K +GameBar.exe 7040 Console 1 162,168 K +GameBarFTServer.exe 37932 Console 1 56,532 K +RuntimeBroker.exe 32564 Console 1 50,604 K +XboxGameBarWidgets.exe 21840 Console 1 158,068 K +RuntimeBroker.exe 2588 Console 1 18,828 K +steam.exe 35296 Console 1 105,376 K +steamwebhelper.exe 19800 Console 1 173,908 K +steamservice.exe 19648 Services 0 17,564 K +steamwebhelper.exe 34916 Console 1 14,692 K +steamwebhelper.exe 19224 Console 1 143,824 K +steamwebhelper.exe 25624 Console 1 31,496 K +steamwebhelper.exe 20172 Console 1 24,048 K +steamwebhelper.exe 39824 Console 1 428,632 K +steamwebhelper.exe 33780 Console 1 49,636 K +SearchProtocolHost.exe 20752 Services 0 23,304 K +msedge.exe 13356 Console 1 226,472 K +msedge.exe 21428 Console 1 10,224 K +msedge.exe 19212 Console 1 70,340 K +msedge.exe 12876 Console 1 41,484 K +msedge.exe 20996 Console 1 19,092 K +msedge.exe 28772 Console 1 59,528 K +msedge.exe 164 Console 1 163,464 K +msedge.exe 21192 Console 1 22,864 K +msedge.exe 36436 Console 1 79,500 K +msedge.exe 12928 Console 1 32,776 K +msedge.exe 39092 Console 1 46,992 K +msedge.exe 37592 Console 1 46,280 K +XboxPartyChatHost.exe 39216 Console 1 43,628 K +rend.exe 17672 Console 1 2,020,076 K +conhost.exe 33692 Console 1 7,376 K +msedge.exe 18448 Console 1 58,836 K +msedge.exe 26444 Console 1 89,028 K +chrome.exe 18360 Console 1 46,080 K +chrome.exe 34680 Console 1 54,828 K +msedge.exe 26612 Console 1 43,244 K +pwsh.exe 11516 Console 1 92,244 K +conhost.exe 19688 Console 1 7,404 K +tasklist.exe 14008 Console 1 11,732 K +findstr.exe 24112 Console 1 5,476 K +findstr.exe 5276 Console 1 5,588 K + +``` +
+
+ +--- + +An error occurred while searching the web + +--- + + +I see Synergy running (`synergy-daemon.exe`, `synergy-service.exe`, `synergy-tray.exe`). Synergy intercepts keyboard input to share it across computers, so it may be capturing Alt+R. + +Other processes that might use global hotkeys: +- SignalRgb.exe (RGB lighting) +- MSIAfterburner.exe (GPU overclocking) +- RadeonSoftware.exe (AMD graphics) +- SoundCapture.exe (audio capture) + +Checking Synergy settings first: + + +--- + + +
Tool use: **run_terminal_command_v2** • Run command: powershell -Command "Get-Process | Where-Object {$_.ProcessName -like '*synergy*'} | Select-Object ProcessName, Id, Path" + +```bash +powershell -Command "Get-Process | Where-Object {$_.ProcessName -like '*synergy*'} | Select-Object ProcessName, Id, Path" +``` + +``` +.ProcessName : The term '.ProcessName' is not recognized as the name of a cmdlet, function, script file, or operable +program. Check the spelling of the name, or if a path was included, verify that the path is correct and try again. +At line:1 char:29 ++ Get-Process | Where-Object {.ProcessName -like '*synergy*'} | Select- ... ++ ~~~~~~~~~~~~ + + CategoryInfo : ObjectNotFound: (.ProcessName:String) [], CommandNotFoundException + + FullyQualifiedErrorId : CommandNotFoundException + +.ProcessName : The term '.ProcessName' is not recognized as the name of a cmdlet, function, script file, or operable +program. Check the spelling of the name, or if a path was included, verify that the path is correct and try again. +At line:1 char:29 ++ Get-Process | Where-Object {.ProcessName -like '*synergy*'} | Select- ... ++ ~~~~~~~~~~~~ + + CategoryInfo : ObjectNotFound: (.ProcessName:String) [], CommandNotFoundException + + FullyQualifiedErrorId : CommandNotFoundException + +.ProcessName : The term '.ProcessName' is not recognized as the name of a cmdlet, function, script file, or operable +program. Check the spelling of the name, or if a path was included, verify that the path is correct and try again. +At line:1 char:29 ++ Get-Process | Where-Object {.ProcessName -like '*synergy*'} | Select- ... ++ ~~~~~~~~~~~~ + + CategoryInfo : ObjectNotFound: (.ProcessName:String) [], CommandNotFoundException + + FullyQualifiedErrorId : CommandNotFoundException + +.ProcessName : The term '.ProcessName' is not recognized as the name of a cmdlet, function, script file, or operable +program. Check the spelling of the name, or if a path was included, verify that the path is correct and try again. +At line:1 char:29 ++ Get-Process | Where-Object {.ProcessName -like '*synergy*'} | Select- ... ++ ~~~~~~~~~~~~ + + CategoryInfo : ObjectNotFound: (.ProcessName:String) [], CommandNotFoundException + + FullyQualifiedErrorId : CommandNotFoundException + +.ProcessName : The term '.ProcessName' is not recognized as the name of a cmdlet, function, script file, or operable +program. Check the spelling of the name, or if a path was included, verify that the path is correct and try again. +At line:1 char:29 ++ Get-Process | Where-Object {.ProcessName -like '*synergy*'} | Select- ... ++ ~~~~~~~~~~~~ + + CategoryInfo : ObjectNotFound: (.ProcessName:String) [], CommandNotFoundException + + FullyQualifiedErrorId : CommandNotFoundException + +.ProcessName : The term '.ProcessName' is not recognized as the name of a cmdlet, function, script file, or operable +program. Check the spelling of the name, or if a path was included, verify that the path is correct and try again. +At line:1 char:29 ++ Get-Process | Where-Object {.ProcessName -like '*synergy*'} | Select- ... ++ ~~~~~~~~~~~~ + + CategoryInfo : ObjectNotFound: (.ProcessName:String) [], CommandNotFoundException + + FullyQualifiedErrorId : CommandNotFoundException + +.ProcessName : The term '.ProcessName' is not recognized as the name of a cmdlet, function, script file, or operable +program. Check the spelling of the name, or if a path was included, verify that the path is correct and try again. +At line:1 char:29 ++ Get-Process | Where-Object {.ProcessName -like '*synergy*'} | Select- ... ++ ~~~~~~~~~~~~ + + CategoryInfo : ObjectNotFound: (.ProcessName:String) [], CommandNotFoundException + + FullyQualifiedErrorId : CommandNotFoundException + +.ProcessName : The term '.ProcessName' is not recognized as the name of a cmdlet, function, script file, or operable +program. Check the spelling of the name, or if a path was included, verify that the path is correct and try again. +At line:1 char:29 ++ Get-Process | Where-Object {.ProcessName -like '*synergy*'} | Select- ... ++ ~~~~~~~~~~~~ + + CategoryInfo : ObjectNotFound: (.ProcessName:String) [], CommandNotFoundException + + FullyQualifiedErrorId : CommandNotFoundException + +.ProcessName : The term '.ProcessName' is not recognized as the name of a cmdlet, function, script file, or operable +program. Check the spelling of the name, or if a path was included, verify that the path is correct and try again. +At line:1 char:29 ++ Get-Process | Where-Object {.ProcessName -like '*synergy*'} | Select- ... ++ ~~~~~~~~~~~~ + + CategoryInfo : ObjectNotFound: (.ProcessName:String) [], CommandNotFoundException + + FullyQualifiedErrorId : CommandNotFoundException + +.ProcessName : The term '.ProcessName' is not recognized as the name of a cmdlet, function, script file, or operable +program. Check the spelling of the name, or if a path was included, verify that the path is correct and try again. +At line:1 char:29 ++ Get-Process | Where-Object {.ProcessName -like '*synergy*'} | Select- ... ++ ~~~~~~~~~~~~ + + CategoryInfo : ObjectNotFound: (.ProcessName:String) [], CommandNotFoundException + + FullyQualifiedErrorId : CommandNotFoundException + +.ProcessName : The term '.ProcessName' is not recognized as the name of a cmdlet, function, script file, or operable +program. Check the spelling of the name, or if a path was included, verify that the path is correct and try again. +At line:1 char:29 ++ Get-Process | Where-Object {.ProcessName -like '*synergy*'} | Select- ... ++ ~~~~~~~~~~~~ + + CategoryInfo : ObjectNotFound: (.ProcessName:String) [], CommandNotFoundException + + FullyQualifiedErrorId : CommandNotFoundException + +.ProcessName : The term '.ProcessName' is not recognized as the name of a cmdlet, function, script file, or operable +program. Check the spelling of the name, or if a path was included, verify that the path is correct and try again. +At line:1 char:29 ++ Get-Process | Where-Object {.ProcessName -like '*synergy*'} | Select- ... ++ ~~~~~~~~~~~~ + + CategoryInfo : ObjectNotFound: (.ProcessName:String) [], CommandNotFoundException + + FullyQualifiedErrorId : CommandNotFoundException + +.ProcessName : The term '.ProcessName' is not recognized as the name of a cmdlet, function, script file, or operable +program. Check the spelling of the name, or if a path was included, verify that the path is correct and try again. +At line:1 char:29 ++ Get-Process | Where-Object {.ProcessName -like '*synergy*'} | Select- ... ++ ~~~~~~~~~~~~ + + CategoryInfo : ObjectNotFound: (.ProcessName:String) [], CommandNotFoundException + + FullyQualifiedErrorId : CommandNotFoundException + +.ProcessName : The term '.ProcessName' is not recognized as the name of a cmdlet, function, script file, or operable +program. Check the spelling of the name, or if a path was included, verify that the path is correct and try again. +At line:1 char:29 ++ Get-Process | Where-Object {.ProcessName -like '*synergy*'} | Select- ... ++ ~~~~~~~~~~~~ + + CategoryInfo : ObjectNotFound: (.ProcessName:String) [], CommandNotFoundException + + FullyQualifiedErrorId : CommandNotFoundException + +.ProcessName : The term '.ProcessName' is not recognized as the name of a cmdlet, function, script file, or operable +program. Check the spelling of the name, or if a path was included, verify that the path is correct and try again. +At line:1 char:29 ++ Get-Process | Where-Object {.ProcessName -like '*synergy*'} | Select- ... ++ ~~~~~~~~~~~~ + + CategoryInfo : ObjectNotFound: (.ProcessName:String) [], CommandNotFoundException + + FullyQualifiedErrorId : CommandNotFoundException + +.ProcessName : The term '.ProcessName' is not recognized as the name of a cmdlet, function, script file, or operable +program. Check the spelling of the name, or if a path was included, verify that the path is correct and try again. +At line:1 char:29 ++ Get-Process | Where-Object {.ProcessName -like '*synergy*'} | Select- ... ++ ~~~~~~~~~~~~ + + CategoryInfo : ObjectNotFound: (.ProcessName:String) [], CommandNotFoundException + + FullyQualifiedErrorId : CommandNotFoundException + +.ProcessName : The term '.ProcessName' is not recognized as the name of a cmdlet, function, script file, or operable +program. Check the spelling of the name, or if a path was included, verify that the path is correct and try again. +At line:1 char:29 ++ Get-Process | Where-Object {.ProcessName -like '*synergy*'} | Select- ... ++ ~~~~~~~~~~~~ + + CategoryInfo : ObjectNotFound: (.ProcessName:String) [], CommandNotFoundException + + FullyQualifiedErrorId : CommandNotFoundException + +.ProcessName : The term '.ProcessName' is not recognized as the name of a cmdlet, function, script file, or operable +program. Check the spelling of the name, or if a path was included, verify that the path is correct and try again. +At line:1 char:29 ++ Get-Process | Where-Object {.ProcessName -like '*synergy*'} | Select- ... ++ ~~~~~~~~~~~~ + + CategoryInfo : ObjectNotFound: (.ProcessName:String) [], CommandNotFoundException + + FullyQualifiedErrorId : CommandNotFoundException + +.ProcessName : The term '.ProcessName' is not recognized as the name of a cmdlet, function, script file, or operable +program. Check the spelling of the name, or if a path was included, verify that the path is correct and try again. +At line:1 char:29 ++ Get-Process | Where-Object {.ProcessName -like '*synergy*'} | Select- ... ++ ~~~~~~~~~~~~ + + CategoryInfo : ObjectNotFound: (.ProcessName:String) [], CommandNotFoundException + + FullyQualifiedErrorId : CommandNotFoundException + +.ProcessName : The term '.ProcessName' is not recognized as the name of a cmdlet, function, script file, or operable +program. Check the spelling of the name, or if a path was included, verify that the path is correct and try again. +At line:1 char:29 ++ Get-Process | Where-Object {.ProcessName -like '*synergy*'} | Select- ... ++ ~~~~~~~~~~~~ + + CategoryInfo : ObjectNotFound: (.ProcessName:String) [], CommandNotFoundException + + FullyQualifiedErrorId : CommandNotFoundException + +.ProcessName : The term '.ProcessName' is not recognized as the name of a cmdlet, function, script file, or operable +program. Check the spelling of the name, or if a path was included, verify that the path is correct and try again. +At line:1 char:29 ++ Get-Process | Where-Object {.ProcessName -like '*synergy*'} | Select- ... ++ ~~~~~~~~~~~~ + + CategoryInfo : ObjectNotFound: (.ProcessName:String) [], CommandNotFoundException + + FullyQualifiedErrorId : CommandNotFoundException + +.ProcessName : The term '.ProcessName' is not recognized as the name of a cmdlet, function, script file, or operable +program. Check the spelling of the name, or if a path was included, verify that the path is correct and try again. +At line:1 char:29 ++ Get-Process | Where-Object {.ProcessName -like '*synergy*'} | Select- ... ++ ~~~~~~~~~~~~ + + CategoryInfo : ObjectNotFound: (.ProcessName:String) [], CommandNotFoundException + + FullyQualifiedErrorId : CommandNotFoundException + +.ProcessName : The term '.ProcessName' is not recognized as the name of a cmdlet, function, script file, or operable +program. Check the spelling of the name, or if a path was included, verify that the path is correct and try again. +At line:1 char:29 ++ Get-Process | Where-Object {.ProcessName -like '*synergy*'} | Select- ... ++ ~~~~~~~~~~~~ + + CategoryInfo : ObjectNotFound: (.ProcessName:String) [], CommandNotFoundException + + FullyQualifiedErrorId : CommandNotFoundException + +.ProcessName : The term '.ProcessName' is not recognized as the name of a cmdlet, function, script file, or operable +program. Check the spelling of the name, or if a path was included, verify that the path is correct and try again. +At line:1 char:29 ++ Get-Process | Where-Object {.ProcessName -like '*synergy*'} | Select- ... ++ ~~~~~~~~~~~~ + + CategoryInfo : ObjectNotFound: (.ProcessName:String) [], CommandNotFoundException + + FullyQualifiedErrorId : CommandNotFoundException + +.ProcessName : The term '.ProcessName' is not recognized as the name of a cmdlet, function, script file, or operable +program. Check the spelling of the name, or if a path was included, verify that the path is correct and try again. +At line:1 char:29 ++ Get-Process | Where-Object {.ProcessName -like '*synergy*'} | Select- ... ++ ~~~~~~~~~~~~ + + CategoryInfo : ObjectNotFound: (.ProcessName:String) [], CommandNotFoundException + + FullyQualifiedErrorId : CommandNotFoundException + +.ProcessName : The term '.ProcessName' is not recognized as the name of a cmdlet, function, script file, or operable +program. Check the spelling of the name, or if a path was included, verify that the path is correct and try again. +At line:1 char:29 ++ Get-Process | Where-Object {.ProcessName -like '*synergy*'} | Select- ... ++ ~~~~~~~~~~~~ + + CategoryInfo : ObjectNotFound: (.ProcessName:String) [], CommandNotFoundException + + FullyQualifiedErrorId : CommandNotFoundException + +.ProcessName : The term '.ProcessName' is not recognized as the name of a cmdlet, function, script file, or operable +program. Check the spelling of the name, or if a path was included, verify that the path is correct and try again. +At line:1 char:29 ++ Get-Process | Where-Object {.ProcessName -like '*synergy*'} | Select- ... ++ ~~~~~~~~~~~~ + + CategoryInfo : ObjectNotFound: (.ProcessName:String) [], CommandNotFoundException + + FullyQualifiedErrorId : CommandNotFoundException + +.ProcessName : The term '.ProcessName' is not recognized as the name of a cmdlet, function, script file, or operable +program. Check the spelling of the name, or if a path was included, verify that the path is correct and try again. +At line:1 char:29 ++ Get-Process | Where-Object {.ProcessName -like '*synergy*'} | Select- ... ++ ~~~~~~~~~~~~ + + CategoryInfo : ObjectNotFound: (.ProcessName:String) [], CommandNotFoundException + + FullyQualifiedErrorId : CommandNotFoundException + +.ProcessName : The term '.ProcessName' is not recognized as the name of a cmdlet, function, script file, or operable +program. Check the spelling of the name, or if a path was included, verify that the path is correct and try again. +At line:1 char:29 ++ Get-Process | Where-Object {.ProcessName -like '*synergy*'} | Select- ... ++ ~~~~~~~~~~~~ + + CategoryInfo : ObjectNotFound: (.ProcessName:String) [], CommandNotFoundException + + FullyQualifiedErrorId : CommandNotFoundException + +.ProcessName : The term '.ProcessName' is not recognized as the name of a cmdlet, function, script file, or operable +program. Check the spelling of the name, or if a path was included, verify that the path is correct and try again. +At line:1 char:29 ++ Get-Process | Where-Object {.ProcessName -like '*synergy*'} | Select- ... ++ ~~~~~~~~~~~~ + + CategoryInfo : ObjectNotFound: (.ProcessName:String) [], CommandNotFoundException + + FullyQualifiedErrorId : CommandNotFoundException + +.ProcessName : The term '.ProcessName' is not recognized as the name of a cmdlet, function, script file, or operable +program. Check the spelling of the name, or if a path was included, verify that the path is correct and try again. +At line:1 char:29 ++ Get-Process | Where-Object {.ProcessName -like '*synergy*'} | Select- ... ++ ~~~~~~~~~~~~ + + CategoryInfo : ObjectNotFound: (.ProcessName:String) [], CommandNotFoundException + + FullyQualifiedErrorId : CommandNotFoundException + +.ProcessName : The term '.ProcessName' is not recognized as the name of a cmdlet, function, script file, or operable +program. Check the spelling of the name, or if a path was included, verify that the path is correct and try again. +At line:1 char:29 ++ Get-Process | Where-Object {.ProcessName -like '*synergy*'} | Select- ... ++ ~~~~~~~~~~~~ + + CategoryInfo : ObjectNotFound: (.ProcessName:String) [], CommandNotFoundException + + FullyQualifiedErrorId : CommandNotFoundException + +.ProcessName : The term '.ProcessName' is not recognized as the name of a cmdlet, function, script file, or operable +program. Check the spelling of the name, or if a path was included, verify that the path is correct and try again. +At line:1 char:29 ++ Get-Process | Where-Object {.ProcessName -like '*synergy*'} | Select- ... ++ ~~~~~~~~~~~~ + + CategoryInfo : ObjectNotFound: (.ProcessName:String) [], CommandNotFoundException + + FullyQualifiedErrorId : CommandNotFoundException + +.ProcessName : The term '.ProcessName' is not recognized as the name of a cmdlet, function, script file, or operable +program. Check the spelling of the name, or if a path was included, verify that the path is correct and try again. +At line:1 char:29 ++ Get-Process | Where-Object {.ProcessName -like '*synergy*'} | Select- ... ++ ~~~~~~~~~~~~ + + CategoryInfo : ObjectNotFound: (.ProcessName:String) [], CommandNotFoundException + + FullyQualifiedErrorId : CommandNotFoundException + +.ProcessName : The term '.ProcessName' is not recognized as the name of a cmdlet, function, script file, or operable +program. Check the spelling of the name, or if a path was included, verify that the path is correct and try again. +At line:1 char:29 ++ Get-Process | Where-Object {.ProcessName -like '*synergy*'} | Select- ... ++ ~~~~~~~~~~~~ + + CategoryInfo : ObjectNotFound: (.ProcessName:String) [], CommandNotFoundException + + FullyQualifiedErrorId : CommandNotFoundException + +.ProcessName : The term '.ProcessName' is not recognized as the name of a cmdlet, function, script file, or operable +program. Check the spelling of the name, or if a path was included, verify that the path is correct and try again. +At line:1 char:29 ++ Get-Process | Where-Object {.ProcessName -like '*synergy*'} | Select- ... ++ ~~~~~~~~~~~~ + + CategoryInfo : ObjectNotFound: (.ProcessName:String) [], CommandNotFoundException + + FullyQualifiedErrorId : CommandNotFoundException + +.ProcessName : The term '.ProcessName' is not recognized as the name of a cmdlet, function, script file, or operable +program. Check the spelling of the name, or if a path was included, verify that the path is correct and try again. +At line:1 char:29 ++ Get-Process | Where-Object {.ProcessName -like '*synergy*'} | Select- ... ++ ~~~~~~~~~~~~ + + CategoryInfo : ObjectNotFound: (.ProcessName:String) [], CommandNotFoundException + + FullyQualifiedErrorId : CommandNotFoundException + +.ProcessName : The term '.ProcessName' is not recognized as the name of a cmdlet, function, script file, or operable +program. Check the spelling of the name, or if a path was included, verify that the path is correct and try again. +At line:1 char:29 ++ Get-Process | Where-Object {.ProcessName -like '*synergy*'} | Select- ... ++ ~~~~~~~~~~~~ + + CategoryInfo : ObjectNotFound: (.ProcessName:String) [], CommandNotFoundException + + FullyQualifiedErrorId : CommandNotFoundException + +.ProcessName : The term '.ProcessName' is not recognized as the name of a cmdlet, function, script file, or operable +program. Check the spelling of the name, or if a path was included, verify that the path is correct and try again. +At line:1 char:29 ++ Get-Process | Where-Object {.ProcessName -like '*synergy*'} | Select- ... ++ ~~~~~~~~~~~~ + + CategoryInfo : ObjectNotFound: (.ProcessName:String) [], CommandNotFoundException + + FullyQualifiedErrorId : CommandNotFoundException + +.ProcessName : The term '.ProcessName' is not recognized as the name of a cmdlet, function, script file, or operable +program. Check the spelling of the name, or if a path was included, verify that the path is correct and try again. +At line:1 char:29 ++ Get-Process | Where-Object {.ProcessName -like '*synergy*'} | Select- ... ++ ~~~~~~~~~~~~ + + CategoryInfo : ObjectNotFound: (.ProcessName:String) [], CommandNotFoundException + + FullyQualifiedErrorId : CommandNotFoundException + +.ProcessName : The term '.ProcessName' is not recognized as the name of a cmdlet, function, script file, or operable +program. Check the spelling of the name, or if a path was included, verify that the path is correct and try again. +At line:1 char:29 ++ Get-Process | Where-Object {.ProcessName -like '*synergy*'} | Select- ... ++ ~~~~~~~~~~~~ + + CategoryInfo : ObjectNotFound: (.ProcessName:String) [], CommandNotFoundException + + FullyQualifiedErrorId : CommandNotFoundException + +.ProcessName : The term '.ProcessName' is not recognized as the name of a cmdlet, function, script file, or operable +program. Check the spelling of the name, or if a path was included, verify that the path is correct and try again. +At line:1 char:29 ++ Get-Process | Where-Object {.ProcessName -like '*synergy*'} | Select- ... ++ ~~~~~~~~~~~~ + + CategoryInfo : ObjectNotFound: (.ProcessName:String) [], CommandNotFoundException + + FullyQualifiedErrorId : CommandNotFoundException + +.ProcessName : The term '.ProcessName' is not recognized as the name of a cmdlet, function, script file, or operable +program. Check the spelling of the name, or if a path was included, verify that the path is correct and try again. +At line:1 char:29 ++ Get-Process | Where-Object {.ProcessName -like '*synergy*'} | Select- ... ++ ~~~~~~~~~~~~ + + CategoryInfo : ObjectNotFound: (.ProcessName:String) [], CommandNotFoundException + + FullyQualifiedErrorId : CommandNotFoundException + +.ProcessName : The term '.ProcessName' is not recognized as the name of a cmdlet, function, script file, or operable +program. Check the spelling of the name, or if a path was included, verify that the path is correct and try again. +At line:1 char:29 ++ Get-Process | Where-Object {.ProcessName -like '*synergy*'} | Select- ... ++ ~~~~~~~~~~~~ + + CategoryInfo : ObjectNotFound: (.ProcessName:String) [], CommandNotFoundException + + FullyQualifiedErrorId : CommandNotFoundException + +.ProcessName : The term '.ProcessName' is not recognized as the name of a cmdlet, function, script file, or operable +program. Check the spelling of the name, or if a path was included, verify that the path is correct and try again. +At line:1 char:29 ++ Get-Process | Where-Object {.ProcessName -like '*synergy*'} | Select- ... ++ ~~~~~~~~~~~~ + + CategoryInfo : ObjectNotFound: (.ProcessName:String) [], CommandNotFoundException + + FullyQualifiedErrorId : CommandNotFoundException + +.ProcessName : The term '.ProcessName' is not recognized as the name of a cmdlet, function, script file, or operable +program. Check the spelling of the name, or if a path was included, verify that the path is correct and try again. +At line:1 char:29 ++ Get-Process | Where-Object {.ProcessName -like '*synergy*'} | Select- ... ++ ~~~~~~~~~~~~ + + CategoryInfo : ObjectNotFound: (.ProcessName:String) [], CommandNotFoundException + + FullyQualifiedErrorId : CommandNotFoundException + +.ProcessName : The term '.ProcessName' is not recognized as the name of a cmdlet, function, script file, or operable +program. Check the spelling of the name, or if a path was included, verify that the path is correct and try again. +At line:1 char:29 ++ Get-Process | Where-Object {.ProcessName -like '*synergy*'} | Select- ... ++ ~~~~~~~~~~~~ + + CategoryInfo : ObjectNotFound: (.ProcessName:String) [], CommandNotFoundException + + FullyQualifiedErrorId : CommandNotFoundException + +.ProcessName : The term '.ProcessName' is not recognized as the name of a cmdlet, function, script file, or operable +program. Check the spelling of the name, or if a path was included, verify that the path is correct and try again. +At line:1 char:29 ++ Get-Process | Where-Object {.ProcessName -like '*synergy*'} | Select- ... ++ ~~~~~~~~~~~~ + + CategoryInfo : ObjectNotFound: (.ProcessName:String) [], CommandNotFoundException + + FullyQualifiedErrorId : CommandNotFoundException + +.ProcessName : The term '.ProcessName' is not recognized as the name of a cmdlet, function, script file, or operable +program. Check the spelling of the name, or if a path was included, verify that the path is correct and try again. +At line:1 char:29 ++ Get-Process | Where-Object {.ProcessName -like '*synergy*'} | Select- ... ++ ~~~~~~~~~~~~ + + CategoryInfo : ObjectNotFound: (.ProcessName:String) [], CommandNotFoundException + + FullyQualifiedErrorId : CommandNotFoundException + +.ProcessName : The term '.ProcessName' is not recognized as the name of a cmdlet, function, script file, or operable +program. Check the spelling of the name, or if a path was included, verify that the path is correct and try again. +At line:1 char:29 ++ Get-Process | Where-Object {.ProcessName -like '*synergy*'} | Select- ... ++ ~~~~~~~~~~~~ + + CategoryInfo : ObjectNotFound: (.ProcessName:String) [], CommandNotFoundException + + FullyQualifiedErrorId : CommandNotFoundException + +.ProcessName : The term '.ProcessName' is not recognized as the name of a cmdlet, function, script file, or operable +program. Check the spelling of the name, or if a path was included, verify that the path is correct and try again. +At line:1 char:29 ++ Get-Process | Where-Object {.ProcessName -like '*synergy*'} | Select- ... ++ ~~~~~~~~~~~~ + + CategoryInfo : ObjectNotFound: (.ProcessName:String) [], CommandNotFoundException + + FullyQualifiedErrorId : CommandNotFoundException + +.ProcessName : The term '.ProcessName' is not recognized as the name of a cmdlet, function, script file, or operable +program. Check the spelling of the name, or if a path was included, verify that the path is correct and try again. +At line:1 char:29 ++ Get-Process | Where-Object {.ProcessName -like '*synergy*'} | Select- ... ++ ~~~~~~~~~~~~ + + CategoryInfo : ObjectNotFound: (.ProcessName:String) [], CommandNotFoundException + + FullyQualifiedErrorId : CommandNotFoundException + +.ProcessName : The term '.ProcessName' is not recognized as the name of a cmdlet, function, script file, or operable +program. Check the spelling of the name, or if a path was included, verify that the path is correct and try again. +At line:1 char:29 ++ Get-Process | Where-Object {.ProcessName -like '*synergy*'} | Select- ... ++ ~~~~~~~~~~~~ + + CategoryInfo : ObjectNotFound: (.ProcessName:String) [], CommandNotFoundException + + FullyQualifiedErrorId : CommandNotFoundException + +.ProcessName : The term '.ProcessName' is not recognized as the name of a cmdlet, function, script file, or operable +program. Check the spelling of the name, or if a path was included, verify that the path is correct and try again. +At line:1 char:29 ++ Get-Process | Where-Object {.ProcessName -like '*synergy*'} | Select- ... ++ ~~~~~~~~~~~~ + + CategoryInfo : ObjectNotFound: (.ProcessName:String) [], CommandNotFoundException + + FullyQualifiedErrorId : CommandNotFoundException + +.ProcessName : The term '.ProcessName' is not recognized as the name of a cmdlet, function, script file, or operable +program. Check the spelling of the name, or if a path was included, verify that the path is correct and try again. +At line:1 char:29 ++ Get-Process | Where-Object {.ProcessName -like '*synergy*'} | Select- ... ++ ~~~~~~~~~~~~ + + CategoryInfo : ObjectNotFound: (.ProcessName:String) [], CommandNotFoundException + + FullyQualifiedErrorId : CommandNotFoundException + +.ProcessName : The term '.ProcessName' is not recognized as the name of a cmdlet, function, script file, or operable +program. Check the spelling of the name, or if a path was included, verify that the path is correct and try again. +At line:1 char:29 ++ Get-Process | Where-Object {.ProcessName -like '*synergy*'} | Select- ... ++ ~~~~~~~~~~~~ + + CategoryInfo : ObjectNotFound: (.ProcessName:String) [], CommandNotFoundException + + FullyQualifiedErrorId : CommandNotFoundException + +.ProcessName : The term '.ProcessName' is not recognized as the name of a cmdlet, function, script file, or operable +program. Check the spelling of the name, or if a path was included, verify that the path is correct and try again. +At line:1 char:29 ++ Get-Process | Where-Object {.ProcessName -like '*synergy*'} | Select- ... ++ ~~~~~~~~~~~~ + + CategoryInfo : ObjectNotFound: (.ProcessName:String) [], CommandNotFoundException + + FullyQualifiedErrorId : CommandNotFoundException + +.ProcessName : The term '.ProcessName' is not recognized as the name of a cmdlet, function, script file, or operable +program. Check the spelling of the name, or if a path was included, verify that the path is correct and try again. +At line:1 char:29 ++ Get-Process | Where-Object {.ProcessName -like '*synergy*'} | Select- ... ++ ~~~~~~~~~~~~ + + CategoryInfo : ObjectNotFound: (.ProcessName:String) [], CommandNotFoundException + + FullyQualifiedErrorId : CommandNotFoundException + +.ProcessName : The term '.ProcessName' is not recognized as the name of a cmdlet, function, script file, or operable +program. Check the spelling of the name, or if a path was included, verify that the path is correct and try again. +At line:1 char:29 ++ Get-Process | Where-Object {.ProcessName -like '*synergy*'} | Select- ... ++ ~~~~~~~~~~~~ + + CategoryInfo : ObjectNotFound: (.ProcessName:String) [], CommandNotFoundException + + FullyQualifiedErrorId : CommandNotFoundException + +.ProcessName : The term '.ProcessName' is not recognized as the name of a cmdlet, function, script file, or operable +program. Check the spelling of the name, or if a path was included, verify that the path is correct and try again. +At line:1 char:29 ++ Get-Process | Where-Object {.ProcessName -like '*synergy*'} | Select- ... ++ ~~~~~~~~~~~~ + + CategoryInfo : ObjectNotFound: (.ProcessName:String) [], CommandNotFoundException + + FullyQualifiedErrorId : CommandNotFoundException + +.ProcessName : The term '.ProcessName' is not recognized as the name of a cmdlet, function, script file, or operable +program. Check the spelling of the name, or if a path was included, verify that the path is correct and try again. +At line:1 char:29 ++ Get-Process | Where-Object {.ProcessName -like '*synergy*'} | Select- ... ++ ~~~~~~~~~~~~ + + CategoryInfo : ObjectNotFound: (.ProcessName:String) [], CommandNotFoundException + + FullyQualifiedErrorId : CommandNotFoundException + +.ProcessName : The term '.ProcessName' is not recognized as the name of a cmdlet, function, script file, or operable +program. Check the spelling of the name, or if a path was included, verify that the path is correct and try again. +At line:1 char:29 ++ Get-Process | Where-Object {.ProcessName -like '*synergy*'} | Select- ... ++ ~~~~~~~~~~~~ + + CategoryInfo : ObjectNotFound: (.ProcessName:String) [], CommandNotFoundException + + FullyQualifiedErrorId : CommandNotFoundException + +.ProcessName : The term '.ProcessName' is not recognized as the name of a cmdlet, function, script file, or operable +program. Check the spelling of the name, or if a path was included, verify that the path is correct and try again. +At line:1 char:29 ++ Get-Process | Where-Object {.ProcessName -like '*synergy*'} | Select- ... ++ ~~~~~~~~~~~~ + + CategoryInfo : ObjectNotFound: (.ProcessName:String) [], CommandNotFoundException + + FullyQualifiedErrorId : CommandNotFoundException + +.ProcessName : The term '.ProcessName' is not recognized as the name of a cmdlet, function, script file, or operable +program. Check the spelling of the name, or if a path was included, verify that the path is correct and try again. +At line:1 char:29 ++ Get-Process | Where-Object {.ProcessName -like '*synergy*'} | Select- ... ++ ~~~~~~~~~~~~ + + CategoryInfo : ObjectNotFound: (.ProcessName:String) [], CommandNotFoundException + + FullyQualifiedErrorId : CommandNotFoundException + +.ProcessName : The term '.ProcessName' is not recognized as the name of a cmdlet, function, script file, or operable +program. Check the spelling of the name, or if a path was included, verify that the path is correct and try again. +At line:1 char:29 ++ Get-Process | Where-Object {.ProcessName -like '*synergy*'} | Select- ... ++ ~~~~~~~~~~~~ + + CategoryInfo : ObjectNotFound: (.ProcessName:String) [], CommandNotFoundException + + FullyQualifiedErrorId : CommandNotFoundException + +.ProcessName : The term '.ProcessName' is not recognized as the name of a cmdlet, function, script file, or operable +program. Check the spelling of the name, or if a path was included, verify that the path is correct and try again. +At line:1 char:29 ++ Get-Process | Where-Object {.ProcessName -like '*synergy*'} | Select- ... ++ ~~~~~~~~~~~~ + + CategoryInfo : ObjectNotFound: (.ProcessName:String) [], CommandNotFoundException + + FullyQualifiedErrorId : CommandNotFoundException + +.ProcessName : The term '.ProcessName' is not recognized as the name of a cmdlet, function, script file, or operable +program. Check the spelling of the name, or if a path was included, verify that the path is correct and try again. +At line:1 char:29 ++ Get-Process | Where-Object {.ProcessName -like '*synergy*'} | Select- ... ++ ~~~~~~~~~~~~ + + CategoryInfo : ObjectNotFound: (.ProcessName:String) [], CommandNotFoundException + + FullyQualifiedErrorId : CommandNotFoundException + +.ProcessName : The term '.ProcessName' is not recognized as the name of a cmdlet, function, script file, or operable +program. Check the spelling of the name, or if a path was included, verify that the path is correct and try again. +At line:1 char:29 ++ Get-Process | Where-Object {.ProcessName -like '*synergy*'} | Select- ... ++ ~~~~~~~~~~~~ + + CategoryInfo : ObjectNotFound: (.ProcessName:String) [], CommandNotFoundException + + FullyQualifiedErrorId : CommandNotFoundException + +.ProcessName : The term '.ProcessName' is not recognized as the name of a cmdlet, function, script file, or operable +program. Check the spelling of the name, or if a path was included, verify that the path is correct and try again. +At line:1 char:29 ++ Get-Process | Where-Object {.ProcessName -like '*synergy*'} | Select- ... ++ ~~~~~~~~~~~~ + + CategoryInfo : ObjectNotFound: (.ProcessName:String) [], CommandNotFoundException + + FullyQualifiedErrorId : CommandNotFoundException + +.ProcessName : The term '.ProcessName' is not recognized as the name of a cmdlet, function, script file, or operable +program. Check the spelling of the name, or if a path was included, verify that the path is correct and try again. +At line:1 char:29 ++ Get-Process | Where-Object {.ProcessName -like '*synergy*'} | Select- ... ++ ~~~~~~~~~~~~ + + CategoryInfo : ObjectNotFound: (.ProcessName:String) [], CommandNotFoundException + + FullyQualifiedErrorId : CommandNotFoundException + +.ProcessName : The term '.ProcessName' is not recognized as the name of a cmdlet, function, script file, or operable +program. Check the spelling of the name, or if a path was included, verify that the path is correct and try again. +At line:1 char:29 ++ Get-Process | Where-Object {.ProcessName -like '*synergy*'} | Select- ... ++ ~~~~~~~~~~~~ + + CategoryInfo : ObjectNotFound: (.ProcessName:String) [], CommandNotFoundException + + FullyQualifiedErrorId : CommandNotFoundException + +.ProcessName : The term '.ProcessName' is not recognized as the name of a cmdlet, function, script file, or operable +program. Check the spelling of the name, or if a path was included, verify that the path is correct and try again. +At line:1 char:29 ++ Get-Process | Where-Object {.ProcessName -like '*synergy*'} | Select- ... ++ ~~~~~~~~~~~~ + + CategoryInfo : ObjectNotFound: (.ProcessName:String) [], CommandNotFoundException + + FullyQualifiedErrorId : CommandNotFoundException + +.ProcessName : The term '.ProcessName' is not recognized as the name of a cmdlet, function, script file, or operable +program. Check the spelling of the name, or if a path was included, verify that the path is correct and try again. +At line:1 char:29 ++ Get-Process | Where-Object {.ProcessName -like '*synergy*'} | Select- ... ++ ~~~~~~~~~~~~ + + CategoryInfo : ObjectNotFound: (.ProcessName:String) [], CommandNotFoundException + + FullyQualifiedErrorId : CommandNotFoundException + +.ProcessName : The term '.ProcessName' is not recognized as the name of a cmdlet, function, script file, or operable +program. Check the spelling of the name, or if a path was included, verify that the path is correct and try again. +At line:1 char:29 ++ Get-Process | Where-Object {.ProcessName -like '*synergy*'} | Select- ... ++ ~~~~~~~~~~~~ + + CategoryInfo : ObjectNotFound: (.ProcessName:String) [], CommandNotFoundException + + FullyQualifiedErrorId : CommandNotFoundException + +.ProcessName : The term '.ProcessName' is not recognized as the name of a cmdlet, function, script file, or operable +program. Check the spelling of the name, or if a path was included, verify that the path is correct and try again. +At line:1 char:29 ++ Get-Process | Where-Object {.ProcessName -like '*synergy*'} | Select- ... ++ ~~~~~~~~~~~~ + + CategoryInfo : ObjectNotFound: (.ProcessName:String) [], CommandNotFoundException + + FullyQualifiedErrorId : CommandNotFoundException + +.ProcessName : The term '.ProcessName' is not recognized as the name of a cmdlet, function, script file, or operable +program. Check the spelling of the name, or if a path was included, verify that the path is correct and try again. +At line:1 char:29 ++ Get-Process | Where-Object {.ProcessName -like '*synergy*'} | Select- ... ++ ~~~~~~~~~~~~ + + CategoryInfo : ObjectNotFound: (.ProcessName:String) [], CommandNotFoundException + + FullyQualifiedErrorId : CommandNotFoundException + +.ProcessName : The term '.ProcessName' is not recognized as the name of a cmdlet, function, script file, or operable +program. Check the spelling of the name, or if a path was included, verify that the path is correct and try again. +At line:1 char:29 ++ Get-Process | Where-Object {.ProcessName -like '*synergy*'} | Select- ... ++ ~~~~~~~~~~~~ + + CategoryInfo : ObjectNotFound: (.ProcessName:String) [], CommandNotFoundException + + FullyQualifiedErrorId : CommandNotFoundException + +.ProcessName : The term '.ProcessName' is not recognized as the name of a cmdlet, function, script file, or operable +program. Check the spelling of the name, or if a path was included, verify that the path is correct and try again. +At line:1 char:29 ++ Get-Process | Where-Object {.ProcessName -like '*synergy*'} | Select- ... ++ ~~~~~~~~~~~~ + + CategoryInfo : ObjectNotFound: (.ProcessName:String) [], CommandNotFoundException + + FullyQualifiedErrorId : CommandNotFoundException + +.ProcessName : The term '.ProcessName' is not recognized as the name of a cmdlet, function, script file, or operable +program. Check the spelling of the name, or if a path was included, verify that the path is correct and try again. +At line:1 char:29 ++ Get-Process | Where-Object {.ProcessName -like '*synergy*'} | Select- ... ++ ~~~~~~~~~~~~ + + CategoryInfo : ObjectNotFound: (.ProcessName:String) [], CommandNotFoundException + + FullyQualifiedErrorId : CommandNotFoundException + +.ProcessName : The term '.ProcessName' is not recognized as the name of a cmdlet, function, script file, or operable +program. Check the spelling of the name, or if a path was included, verify that the path is correct and try again. +At line:1 char:29 ++ Get-Process | Where-Object {.ProcessName -like '*synergy*'} | Select- ... ++ ~~~~~~~~~~~~ + + CategoryInfo : ObjectNotFound: (.ProcessName:String) [], CommandNotFoundException + + FullyQualifiedErrorId : CommandNotFoundException + +.ProcessName : The term '.ProcessName' is not recognized as the name of a cmdlet, function, script file, or operable +program. Check the spelling of the name, or if a path was included, verify that the path is correct and try again. +At line:1 char:29 ++ Get-Process | Where-Object {.ProcessName -like '*synergy*'} | Select- ... ++ ~~~~~~~~~~~~ + + CategoryInfo : ObjectNotFound: (.ProcessName:String) [], CommandNotFoundException + + FullyQualifiedErrorId : CommandNotFoundException + +.ProcessName : The term '.ProcessName' is not recognized as the name of a cmdlet, function, script file, or operable +program. Check the spelling of the name, or if a path was included, verify that the path is correct and try again. +At line:1 char:29 ++ Get-Process | Where-Object {.ProcessName -like '*synergy*'} | Select- ... ++ ~~~~~~~~~~~~ + + CategoryInfo : ObjectNotFound: (.ProcessName:String) [], CommandNotFoundException + + FullyQualifiedErrorId : CommandNotFoundException + +.ProcessName : The term '.ProcessName' is not recognized as the name of a cmdlet, function, script file, or operable +program. Check the spelling of the name, or if a path was included, verify that the path is correct and try again. +At line:1 char:29 ++ Get-Process | Where-Object {.ProcessName -like '*synergy*'} | Select- ... ++ ~~~~~~~~~~~~ + + CategoryInfo : ObjectNotFound: (.ProcessName:String) [], CommandNotFoundException + + FullyQualifiedErrorId : CommandNotFoundException + +.ProcessName : The term '.ProcessName' is not recognized as the name of a cmdlet, function, script file, or operable +program. Check the spelling of the name, or if a path was included, verify that the path is correct and try again. +At line:1 char:29 ++ Get-Process | Where-Object {.ProcessName -like '*synergy*'} | Select- ... ++ ~~~~~~~~~~~~ + + CategoryInfo : ObjectNotFound: (.ProcessName:String) [], CommandNotFoundException + + FullyQualifiedErrorId : CommandNotFoundException + +.ProcessName : The term '.ProcessName' is not recognized as the name of a cmdlet, function, script file, or operable +program. Check the spelling of the name, or if a path was included, verify that the path is correct and try again. +At line:1 char:29 ++ Get-Process | Where-Object {.ProcessName -like '*synergy*'} | Select- ... ++ ~~~~~~~~~~~~ + + CategoryInfo : ObjectNotFound: (.ProcessName:String) [], CommandNotFoundException + + FullyQualifiedErrorId : CommandNotFoundException + +.ProcessName : The term '.ProcessName' is not recognized as the name of a cmdlet, function, script file, or operable +program. Check the spelling of the name, or if a path was included, verify that the path is correct and try again. +At line:1 char:29 ++ Get-Process | Where-Object {.ProcessName -like '*synergy*'} | Select- ... ++ ~~~~~~~~~~~~ + + CategoryInfo : ObjectNotFound: (.ProcessName:String) [], CommandNotFoundException + + FullyQualifiedErrorId : CommandNotFoundException + +.ProcessName : The term '.ProcessName' is not recognized as the name of a cmdlet, function, script file, or operable +program. Check the spelling of the name, or if a path was included, verify that the path is correct and try again. +At line:1 char:29 ++ Get-Process | Where-Object {.ProcessName -like '*synergy*'} | Select- ... ++ ~~~~~~~~~~~~ + + CategoryInfo : ObjectNotFound: (.ProcessName:String) [], CommandNotFoundException + + FullyQualifiedErrorId : CommandNotFoundException + +.ProcessName : The term '.ProcessName' is not recognized as the name of a cmdlet, function, script file, or operable +program. Check the spelling of the name, or if a path was included, verify that the path is correct and try again. +At line:1 char:29 ++ Get-Process | Where-Object {.ProcessName -like '*synergy*'} | Select- ... ++ ~~~~~~~~~~~~ + + CategoryInfo : ObjectNotFound: (.ProcessName:String) [], CommandNotFoundException + + FullyQualifiedErrorId : CommandNotFoundException + +.ProcessName : The term '.ProcessName' is not recognized as the name of a cmdlet, function, script file, or operable +program. Check the spelling of the name, or if a path was included, verify that the path is correct and try again. +At line:1 char:29 ++ Get-Process | Where-Object {.ProcessName -like '*synergy*'} | Select- ... ++ ~~~~~~~~~~~~ + + CategoryInfo : ObjectNotFound: (.ProcessName:String) [], CommandNotFoundException + + FullyQualifiedErrorId : CommandNotFoundException + +.ProcessName : The term '.ProcessName' is not recognized as the name of a cmdlet, function, script file, or operable +program. Check the spelling of the name, or if a path was included, verify that the path is correct and try again. +At line:1 char:29 ++ Get-Process | Where-Object {.ProcessName -like '*synergy*'} | Select- ... ++ ~~~~~~~~~~~~ + + CategoryInfo : ObjectNotFound: (.ProcessName:String) [], CommandNotFoundException + + FullyQualifiedErrorId : CommandNotFoundException + +.ProcessName : The term '.ProcessName' is not recognized as the name of a cmdlet, function, script file, or operable +program. Check the spelling of the name, or if a path was included, verify that the path is correct and try again. +At line:1 char:29 ++ Get-Process | Where-Object {.ProcessName -like '*synergy*'} | Select- ... ++ ~~~~~~~~~~~~ + + CategoryInfo : ObjectNotFound: (.ProcessName:String) [], CommandNotFoundException + + FullyQualifiedErrorId : CommandNotFoundException + +.ProcessName : The term '.ProcessName' is not recognized as the name of a cmdlet, function, script file, or operable +program. Check the spelling of the name, or if a path was included, verify that the path is correct and try again. +At line:1 char:29 ++ Get-Process | Where-Object {.ProcessName -like '*synergy*'} | Select- ... ++ ~~~~~~~~~~~~ + + CategoryInfo : ObjectNotFound: (.ProcessName:String) [], CommandNotFoundException + + FullyQualifiedErrorId : CommandNotFoundException + +.ProcessName : The term '.ProcessName' is not recognized as the name of a cmdlet, function, script file, or operable +program. Check the spelling of the name, or if a path was included, verify that the path is correct and try again. +At line:1 char:29 ++ Get-Process | Where-Object {.ProcessName -like '*synergy*'} | Select- ... ++ ~~~~~~~~~~~~ + + CategoryInfo : ObjectNotFound: (.ProcessName:String) [], CommandNotFoundException + + FullyQualifiedErrorId : CommandNotFoundException + +.ProcessName : The term '.ProcessName' is not recognized as the name of a cmdlet, function, script file, or operable +program. Check the spelling of the name, or if a path was included, verify that the path is correct and try again. +At line:1 char:29 ++ Get-Process | Where-Object {.ProcessName -like '*synergy*'} | Select- ... ++ ~~~~~~~~~~~~ + + CategoryInfo : ObjectNotFound: (.ProcessName:String) [], CommandNotFoundException + + FullyQualifiedErrorId : CommandNotFoundException + +.ProcessName : The term '.ProcessName' is not recognized as the name of a cmdlet, function, script file, or operable +program. Check the spelling of the name, or if a path was included, verify that the path is correct and try again. +At line:1 char:29 ++ Get-Process | Where-Object {.ProcessName -like '*synergy*'} | Select- ... ++ ~~~~~~~~~~~~ + + CategoryInfo : ObjectNotFound: (.ProcessName:String) [], CommandNotFoundException + + FullyQualifiedErrorId : CommandNotFoundException + +.ProcessName : The term '.ProcessName' is not recognized as the name of a cmdlet, function, script file, or operable +program. Check the spelling of the name, or if a path was included, verify that the path is correct and try again. +At line:1 char:29 ++ Get-Process | Where-Object {.ProcessName -like '*synergy*'} | Select- ... ++ ~~~~~~~~~~~~ + + CategoryInfo : ObjectNotFound: (.ProcessName:String) [], CommandNotFoundException + + FullyQualifiedErrorId : CommandNotFoundException + +.ProcessName : The term '.ProcessName' is not recognized as the name of a cmdlet, function, script file, or operable +program. Check the spelling of the name, or if a path was included, verify that the path is correct and try again. +At line:1 char:29 ++ Get-Process | Where-Object {.ProcessName -like '*synergy*'} | Select- ... ++ ~~~~~~~~~~~~ + + CategoryInfo : ObjectNotFound: (.ProcessName:String) [], CommandNotFoundException + + FullyQualifiedErrorId : CommandNotFoundException + +.ProcessName : The term '.ProcessName' is not recognized as the name of a cmdlet, function, script file, or operable +program. Check the spelling of the name, or if a path was included, verify that the path is correct and try again. +At line:1 char:29 ++ Get-Process | Where-Object {.ProcessName -like '*synergy*'} | Select- ... ++ ~~~~~~~~~~~~ + + CategoryInfo : ObjectNotFound: (.ProcessName:String) [], CommandNotFoundException + + FullyQualifiedErrorId : CommandNotFoundException + +.ProcessName : The term '.ProcessName' is not recognized as the name of a cmdlet, function, script file, or operable +program. Check the spelling of the name, or if a path was included, verify that the path is correct and try again. +At line:1 char:29 ++ Get-Process | Where-Object {.ProcessName -like '*synergy*'} | Select- ... ++ ~~~~~~~~~~~~ + + CategoryInfo : ObjectNotFound: (.ProcessName:String) [], CommandNotFoundException + + FullyQualifiedErrorId : CommandNotFoundException + +.ProcessName : The term '.ProcessName' is not recognized as the name of a cmdlet, function, script file, or operable +program. Check the spelling of the name, or if a path was included, verify that the path is correct and try again. +At line:1 char:29 ++ Get-Process | Where-Object {.ProcessName -like '*synergy*'} | Select- ... ++ ~~~~~~~~~~~~ + + CategoryInfo : ObjectNotFound: (.ProcessName:String) [], CommandNotFoundException + + FullyQualifiedErrorId : CommandNotFoundException + +.ProcessName : The term '.ProcessName' is not recognized as the name of a cmdlet, function, script file, or operable +program. Check the spelling of the name, or if a path was included, verify that the path is correct and try again. +At line:1 char:29 ++ Get-Process | Where-Object {.ProcessName -like '*synergy*'} | Select- ... ++ ~~~~~~~~~~~~ + + CategoryInfo : ObjectNotFound: (.ProcessName:String) [], CommandNotFoundException + + FullyQualifiedErrorId : CommandNotFoundException + +.ProcessName : The term '.ProcessName' is not recognized as the name of a cmdlet, function, script file, or operable +program. Check the spelling of the name, or if a path was included, verify that the path is correct and try again. +At line:1 char:29 ++ Get-Process | Where-Object {.ProcessName -like '*synergy*'} | Select- ... ++ ~~~~~~~~~~~~ + + CategoryInfo : ObjectNotFound: (.ProcessName:String) [], CommandNotFoundException + + FullyQualifiedErrorId : CommandNotFoundException + +.ProcessName : The term '.ProcessName' is not recognized as the name of a cmdlet, function, script file, or operable +program. Check the spelling of the name, or if a path was included, verify that the path is correct and try again. +At line:1 char:29 ++ Get-Process | Where-Object {.ProcessName -like '*synergy*'} | Select- ... ++ ~~~~~~~~~~~~ + + CategoryInfo : ObjectNotFound: (.ProcessName:String) [], CommandNotFoundException + + FullyQualifiedErrorId : CommandNotFoundException + +.ProcessName : The term '.ProcessName' is not recognized as the name of a cmdlet, function, script file, or operable +program. Check the spelling of the name, or if a path was included, verify that the path is correct and try again. +At line:1 char:29 ++ Get-Process | Where-Object {.ProcessName -like '*synergy*'} | Select- ... ++ ~~~~~~~~~~~~ + + CategoryInfo : ObjectNotFound: (.ProcessName:String) [], CommandNotFoundException + + FullyQualifiedErrorId : CommandNotFoundException + +.ProcessName : The term '.ProcessName' is not recognized as the name of a cmdlet, function, script file, or operable +program. Check the spelling of the name, or if a path was included, verify that the path is correct and try again. +At line:1 char:29 ++ Get-Process | Where-Object {.ProcessName -like '*synergy*'} | Select- ... ++ ~~~~~~~~~~~~ + + CategoryInfo : ObjectNotFound: (.ProcessName:String) [], CommandNotFoundException + + FullyQualifiedErrorId : CommandNotFoundException + +.ProcessName : The term '.ProcessName' is not recognized as the name of a cmdlet, function, script file, or operable +program. Check the spelling of the name, or if a path was included, verify that the path is correct and try again. +At line:1 char:29 ++ Get-Process | Where-Object {.ProcessName -like '*synergy*'} | Select- ... ++ ~~~~~~~~~~~~ + + CategoryInfo : ObjectNotFound: (.ProcessName:String) [], CommandNotFoundException + + FullyQualifiedErrorId : CommandNotFoundException + +.ProcessName : The term '.ProcessName' is not recognized as the name of a cmdlet, function, script file, or operable +program. Check the spelling of the name, or if a path was included, verify that the path is correct and try again. +At line:1 char:29 ++ Get-Process | Where-Object {.ProcessName -like '*synergy*'} | Select- ... ++ ~~~~~~~~~~~~ + + CategoryInfo : ObjectNotFound: (.ProcessName:String) [], CommandNotFoundException + + FullyQualifiedErrorId : CommandNotFoundException + +.ProcessName : The term '.ProcessName' is not recognized as the name of a cmdlet, function, script file, or operable +program. Check the spelling of the name, or if a path was included, verify that the path is correct and try again. +At line:1 char:29 ++ Get-Process | Where-Object {.ProcessName -like '*synergy*'} | Select- ... ++ ~~~~~~~~~~~~ + + CategoryInfo : ObjectNotFound: (.ProcessName:String) [], CommandNotFoundException + + FullyQualifiedErrorId : CommandNotFoundException + +.ProcessName : The term '.ProcessName' is not recognized as the name of a cmdlet, function, script file, or operable +program. Check the spelling of the name, or if a path was included, verify that the path is correct and try again. +At line:1 char:29 ++ Get-Process | Where-Object {.ProcessName -like '*synergy*'} | Select- ... ++ ~~~~~~~~~~~~ + + CategoryInfo : ObjectNotFound: (.ProcessName:String) [], CommandNotFoundException + + FullyQualifiedErrorId : CommandNotFoundException + +.ProcessName : The term '.ProcessName' is not recognized as the name of a cmdlet, function, script file, or operable +program. Check the spelling of the name, or if a path was included, verify that the path is correct and try again. +At line:1 char:29 ++ Get-Process | Where-Object {.ProcessName -like '*synergy*'} | Select- ... ++ ~~~~~~~~~~~~ + + CategoryInfo : ObjectNotFound: (.ProcessName:String) [], CommandNotFoundException + + FullyQualifiedErrorId : CommandNotFoundException + +.ProcessName : The term '.ProcessName' is not recognized as the name of a cmdlet, function, script file, or operable +program. Check the spelling of the name, or if a path was included, verify that the path is correct and try again. +At line:1 char:29 ++ Get-Process | Where-Object {.ProcessName -like '*synergy*'} | Select- ... ++ ~~~~~~~~~~~~ + + CategoryInfo : ObjectNotFound: (.ProcessName:String) [], CommandNotFoundException + + FullyQualifiedErrorId : CommandNotFoundException + +.ProcessName : The term '.ProcessName' is not recognized as the name of a cmdlet, function, script file, or operable +program. Check the spelling of the name, or if a path was included, verify that the path is correct and try again. +At line:1 char:29 ++ Get-Process | Where-Object {.ProcessName -like '*synergy*'} | Select- ... ++ ~~~~~~~~~~~~ + + CategoryInfo : ObjectNotFound: (.ProcessName:String) [], CommandNotFoundException + + FullyQualifiedErrorId : CommandNotFoundException + +.ProcessName : The term '.ProcessName' is not recognized as the name of a cmdlet, function, script file, or operable +program. Check the spelling of the name, or if a path was included, verify that the path is correct and try again. +At line:1 char:29 ++ Get-Process | Where-Object {.ProcessName -like '*synergy*'} | Select- ... ++ ~~~~~~~~~~~~ + + CategoryInfo : ObjectNotFound: (.ProcessName:String) [], CommandNotFoundException + + FullyQualifiedErrorId : CommandNotFoundException + +.ProcessName : The term '.ProcessName' is not recognized as the name of a cmdlet, function, script file, or operable +program. Check the spelling of the name, or if a path was included, verify that the path is correct and try again. +At line:1 char:29 ++ Get-Process | Where-Object {.ProcessName -like '*synergy*'} | Select- ... ++ ~~~~~~~~~~~~ + + CategoryInfo : ObjectNotFound: (.ProcessName:String) [], CommandNotFoundException + + FullyQualifiedErrorId : CommandNotFoundException + +.ProcessName : The term '.ProcessName' is not recognized as the name of a cmdlet, function, script file, or operable +program. Check the spelling of the name, or if a path was included, verify that the path is correct and try again. +At line:1 char:29 ++ Get-Process | Where-Object {.ProcessName -like '*synergy*'} | Select- ... ++ ~~~~~~~~~~~~ + + CategoryInfo : ObjectNotFound: (.ProcessName:String) [], CommandNotFoundException + + FullyQualifiedErrorId : CommandNotFoundException + +.ProcessName : The term '.ProcessName' is not recognized as the name of a cmdlet, function, script file, or operable +program. Check the spelling of the name, or if a path was included, verify that the path is correct and try again. +At line:1 char:29 ++ Get-Process | Where-Object {.ProcessName -like '*synergy*'} | Select- ... ++ ~~~~~~~~~~~~ + + CategoryInfo : ObjectNotFound: (.ProcessName:String) [], CommandNotFoundException + + FullyQualifiedErrorId : CommandNotFoundException + +.ProcessName : The term '.ProcessName' is not recognized as the name of a cmdlet, function, script file, or operable +program. Check the spelling of the name, or if a path was included, verify that the path is correct and try again. +At line:1 char:29 ++ Get-Process | Where-Object {.ProcessName -like '*synergy*'} | Select- ... ++ ~~~~~~~~~~~~ + + CategoryInfo : ObjectNotFound: (.ProcessName:String) [], CommandNotFoundException + + FullyQualifiedErrorId : CommandNotFoundException + +.ProcessName : The term '.ProcessName' is not recognized as the name of a cmdlet, function, script file, or operable +program. Check the spelling of the name, or if a path was included, verify that the path is correct and try again. +At line:1 char:29 ++ Get-Process | Where-Object {.ProcessName -like '*synergy*'} | Select- ... ++ ~~~~~~~~~~~~ + + CategoryInfo : ObjectNotFound: (.ProcessName:String) [], CommandNotFoundException + + FullyQualifiedErrorId : CommandNotFoundException + +.ProcessName : The term '.ProcessName' is not recognized as the name of a cmdlet, function, script file, or operable +program. Check the spelling of the name, or if a path was included, verify that the path is correct and try again. +At line:1 char:29 ++ Get-Process | Where-Object {.ProcessName -like '*synergy*'} | Select- ... ++ ~~~~~~~~~~~~ + + CategoryInfo : ObjectNotFound: (.ProcessName:String) [], CommandNotFoundException + + FullyQualifiedErrorId : CommandNotFoundException + +.ProcessName : The term '.ProcessName' is not recognized as the name of a cmdlet, function, script file, or operable +program. Check the spelling of the name, or if a path was included, verify that the path is correct and try again. +At line:1 char:29 ++ Get-Process | Where-Object {.ProcessName -like '*synergy*'} | Select- ... ++ ~~~~~~~~~~~~ + + CategoryInfo : ObjectNotFound: (.ProcessName:String) [], CommandNotFoundException + + FullyQualifiedErrorId : CommandNotFoundException + +.ProcessName : The term '.ProcessName' is not recognized as the name of a cmdlet, function, script file, or operable +program. Check the spelling of the name, or if a path was included, verify that the path is correct and try again. +At line:1 char:29 ++ Get-Process | Where-Object {.ProcessName -like '*synergy*'} | Select- ... ++ ~~~~~~~~~~~~ + + CategoryInfo : ObjectNotFound: (.ProcessName:String) [], CommandNotFoundException + + FullyQualifiedErrorId : CommandNotFoundException + +.ProcessName : The term '.ProcessName' is not recognized as the name of a cmdlet, function, script file, or operable +program. Check the spelling of the name, or if a path was included, verify that the path is correct and try again. +At line:1 char:29 ++ Get-Process | Where-Object {.ProcessName -like '*synergy*'} | Select- ... ++ ~~~~~~~~~~~~ + + CategoryInfo : ObjectNotFound: (.ProcessName:String) [], CommandNotFoundException + + FullyQualifiedErrorId : CommandNotFoundException + +.ProcessName : The term '.ProcessName' is not recognized as the name of a cmdlet, function, script file, or operable +program. Check the spelling of the name, or if a path was included, verify that the path is correct and try again. +At line:1 char:29 ++ Get-Process | Where-Object {.ProcessName -like '*synergy*'} | Select- ... ++ ~~~~~~~~~~~~ + + CategoryInfo : ObjectNotFound: (.ProcessName:String) [], CommandNotFoundException + + FullyQualifiedErrorId : CommandNotFoundException + +.ProcessName : The term '.ProcessName' is not recognized as the name of a cmdlet, function, script file, or operable +program. Check the spelling of the name, or if a path was included, verify that the path is correct and try again. +At line:1 char:29 ++ Get-Process | Where-Object {.ProcessName -like '*synergy*'} | Select- ... ++ ~~~~~~~~~~~~ + + CategoryInfo : ObjectNotFound: (.ProcessName:String) [], CommandNotFoundException + + FullyQualifiedErrorId : CommandNotFoundException + +.ProcessName : The term '.ProcessName' is not recognized as the name of a cmdlet, function, script file, or operable +program. Check the spelling of the name, or if a path was included, verify that the path is correct and try again. +At line:1 char:29 ++ Get-Process | Where-Object {.ProcessName -like '*synergy*'} | Select- ... ++ ~~~~~~~~~~~~ + + CategoryInfo : ObjectNotFound: (.ProcessName:String) [], CommandNotFoundException + + FullyQualifiedErrorId : CommandNotFoundException + +.ProcessName : The term '.ProcessName' is not recognized as the name of a cmdlet, function, script file, or operable +program. Check the spelling of the name, or if a path was included, verify that the path is correct and try again. +At line:1 char:29 ++ Get-Process | Where-Object {.ProcessName -like '*synergy*'} | Select- ... ++ ~~~~~~~~~~~~ + + CategoryInfo : ObjectNotFound: (.ProcessName:String) [], CommandNotFoundException + + FullyQualifiedErrorId : CommandNotFoundException + +.ProcessName : The term '.ProcessName' is not recognized as the name of a cmdlet, function, script file, or operable +program. Check the spelling of the name, or if a path was included, verify that the path is correct and try again. +At line:1 char:29 ++ Get-Process | Where-Object {.ProcessName -like '*synergy*'} | Select- ... ++ ~~~~~~~~~~~~ + + CategoryInfo : ObjectNotFound: (.ProcessName:String) [], CommandNotFoundException + + FullyQualifiedErrorId : CommandNotFoundException + +.ProcessName : The term '.ProcessName' is not recognized as the name of a cmdlet, function, script file, or operable +program. Check the spelling of the name, or if a path was included, verify that the path is correct and try again. +At line:1 char:29 ++ Get-Process | Where-Object {.ProcessName -like '*synergy*'} | Select- ... ++ ~~~~~~~~~~~~ + + CategoryInfo : ObjectNotFound: (.ProcessName:String) [], CommandNotFoundException + + FullyQualifiedErrorId : CommandNotFoundException + +.ProcessName : The term '.ProcessName' is not recognized as the name of a cmdlet, function, script file, or operable +program. Check the spelling of the name, or if a path was included, verify that the path is correct and try again. +At line:1 char:29 ++ Get-Process | Where-Object {.ProcessName -like '*synergy*'} | Select- ... ++ ~~~~~~~~~~~~ + + CategoryInfo : ObjectNotFound: (.ProcessName:String) [], CommandNotFoundException + + FullyQualifiedErrorId : CommandNotFoundException + +.ProcessName : The term '.ProcessName' is not recognized as the name of a cmdlet, function, script file, or operable +program. Check the spelling of the name, or if a path was included, verify that the path is correct and try again. +At line:1 char:29 ++ Get-Process | Where-Object {.ProcessName -like '*synergy*'} | Select- ... ++ ~~~~~~~~~~~~ + + CategoryInfo : ObjectNotFound: (.ProcessName:String) [], CommandNotFoundException + + FullyQualifiedErrorId : CommandNotFoundException + +.ProcessName : The term '.ProcessName' is not recognized as the name of a cmdlet, function, script file, or operable +program. Check the spelling of the name, or if a path was included, verify that the path is correct and try again. +At line:1 char:29 ++ Get-Process | Where-Object {.ProcessName -like '*synergy*'} | Select- ... ++ ~~~~~~~~~~~~ + + CategoryInfo : ObjectNotFound: (.ProcessName:String) [], CommandNotFoundException + + FullyQualifiedErrorId : CommandNotFoundException + +.ProcessName : The term '.ProcessName' is not recognized as the name of a cmdlet, function, script file, or operable +program. Check the spelling of the name, or if a path was included, verify that the path is correct and try again. +At line:1 char:29 ++ Get-Process | Where-Object {.ProcessName -like '*synergy*'} | Select- ... ++ ~~~~~~~~~~~~ + + CategoryInfo : ObjectNotFound: (.ProcessName:String) [], CommandNotFoundException + + FullyQualifiedErrorId : CommandNotFoundException + +.ProcessName : The term '.ProcessName' is not recognized as the name of a cmdlet, function, script file, or operable +program. Check the spelling of the name, or if a path was included, verify that the path is correct and try again. +At line:1 char:29 ++ Get-Process | Where-Object {.ProcessName -like '*synergy*'} | Select- ... ++ ~~~~~~~~~~~~ + + CategoryInfo : ObjectNotFound: (.ProcessName:String) [], CommandNotFoundException + + FullyQualifiedErrorId : CommandNotFoundException + +.ProcessName : The term '.ProcessName' is not recognized as the name of a cmdlet, function, script file, or operable +program. Check the spelling of the name, or if a path was included, verify that the path is correct and try again. +At line:1 char:29 ++ Get-Process | Where-Object {.ProcessName -like '*synergy*'} | Select- ... ++ ~~~~~~~~~~~~ + + CategoryInfo : ObjectNotFound: (.ProcessName:String) [], CommandNotFoundException + + FullyQualifiedErrorId : CommandNotFoundException + +.ProcessName : The term '.ProcessName' is not recognized as the name of a cmdlet, function, script file, or operable +program. Check the spelling of the name, or if a path was included, verify that the path is correct and try again. +At line:1 char:29 ++ Get-Process | Where-Object {.ProcessName -like '*synergy*'} | Select- ... ++ ~~~~~~~~~~~~ + + CategoryInfo : ObjectNotFound: (.ProcessName:String) [], CommandNotFoundException + + FullyQualifiedErrorId : CommandNotFoundException + +.ProcessName : The term '.ProcessName' is not recognized as the name of a cmdlet, function, script file, or operable +program. Check the spelling of the name, or if a path was included, verify that the path is correct and try again. +At line:1 char:29 ++ Get-Process | Where-Object {.ProcessName -like '*synergy*'} | Select- ... ++ ~~~~~~~~~~~~ + + CategoryInfo : ObjectNotFound: (.ProcessName:String) [], CommandNotFoundException + + FullyQualifiedErrorId : CommandNotFoundException + +.ProcessName : The term '.ProcessName' is not recognized as the name of a cmdlet, function, script file, or operable +program. Check the spelling of the name, or if a path was included, verify that the path is correct and try again. +At line:1 char:29 ++ Get-Process | Where-Object {.ProcessName -like '*synergy*'} | Select- ... ++ ~~~~~~~~~~~~ + + CategoryInfo : ObjectNotFound: (.ProcessName:String) [], CommandNotFoundException + + FullyQualifiedErrorId : CommandNotFoundException + +.ProcessName : The term '.ProcessName' is not recognized as the name of a cmdlet, function, script file, or operable +program. Check the spelling of the name, or if a path was included, verify that the path is correct and try again. +At line:1 char:29 ++ Get-Process | Where-Object {.ProcessName -like '*synergy*'} | Select- ... ++ ~~~~~~~~~~~~ + + CategoryInfo : ObjectNotFound: (.ProcessName:String) [], CommandNotFoundException + + FullyQualifiedErrorId : CommandNotFoundException + +.ProcessName : The term '.ProcessName' is not recognized as the name of a cmdlet, function, script file, or operable +program. Check the spelling of the name, or if a path was included, verify that the path is correct and try again. +At line:1 char:29 ++ Get-Process | Where-Object {.ProcessName -like '*synergy*'} | Select- ... ++ ~~~~~~~~~~~~ + + CategoryInfo : ObjectNotFound: (.ProcessName:String) [], CommandNotFoundException + + FullyQualifiedErrorId : CommandNotFoundException + +.ProcessName : The term '.ProcessName' is not recognized as the name of a cmdlet, function, script file, or operable +program. Check the spelling of the name, or if a path was included, verify that the path is correct and try again. +At line:1 char:29 ++ Get-Process | Where-Object {.ProcessName -like '*synergy*'} | Select- ... ++ ~~~~~~~~~~~~ + + CategoryInfo : ObjectNotFound: (.ProcessName:String) [], CommandNotFoundException + + FullyQualifiedErrorId : CommandNotFoundException + +.ProcessName : The term '.ProcessName' is not recognized as the name of a cmdlet, function, script file, or operable +program. Check the spelling of the name, or if a path was included, verify that the path is correct and try again. +At line:1 char:29 ++ Get-Process | Where-Object {.ProcessName -like '*synergy*'} | Select- ... ++ ~~~~~~~~~~~~ + + CategoryInfo : ObjectNotFound: (.ProcessName:String) [], CommandNotFoundException + + FullyQualifiedErrorId : CommandNotFoundException + +.ProcessName : The term '.ProcessName' is not recognized as the name of a cmdlet, function, script file, or operable +program. Check the spelling of the name, or if a path was included, verify that the path is correct and try again. +At line:1 char:29 ++ Get-Process | Where-Object {.ProcessName -like '*synergy*'} | Select- ... ++ ~~~~~~~~~~~~ + + CategoryInfo : ObjectNotFound: (.ProcessName:String) [], CommandNotFoundException + + FullyQualifiedErrorId : CommandNotFoundException + +.ProcessName : The term '.ProcessName' is not recognized as the name of a cmdlet, function, script file, or operable +program. Check the spelling of the name, or if a path was included, verify that the path is correct and try again. +At line:1 char:29 ++ Get-Process | Where-Object {.ProcessName -like '*synergy*'} | Select- ... ++ ~~~~~~~~~~~~ + + CategoryInfo : ObjectNotFound: (.ProcessName:String) [], CommandNotFoundException + + FullyQualifiedErrorId : CommandNotFoundException + +.ProcessName : The term '.ProcessName' is not recognized as the name of a cmdlet, function, script file, or operable +program. Check the spelling of the name, or if a path was included, verify that the path is correct and try again. +At line:1 char:29 ++ Get-Process | Where-Object {.ProcessName -like '*synergy*'} | Select- ... ++ ~~~~~~~~~~~~ + + CategoryInfo : ObjectNotFound: (.ProcessName:String) [], CommandNotFoundException + + FullyQualifiedErrorId : CommandNotFoundException + +.ProcessName : The term '.ProcessName' is not recognized as the name of a cmdlet, function, script file, or operable +program. Check the spelling of the name, or if a path was included, verify that the path is correct and try again. +At line:1 char:29 ++ Get-Process | Where-Object {.ProcessName -like '*synergy*'} | Select- ... ++ ~~~~~~~~~~~~ + + CategoryInfo : ObjectNotFound: (.ProcessName:String) [], CommandNotFoundException + + FullyQualifiedErrorId : CommandNotFoundException + +.ProcessName : The term '.ProcessName' is not recognized as the name of a cmdlet, function, script file, or operable +program. Check the spelling of the name, or if a path was included, verify that the path is correct and try again. +At line:1 char:29 ++ Get-Process | Where-Object {.ProcessName -like '*synergy*'} | Select- ... ++ ~~~~~~~~~~~~ + + CategoryInfo : ObjectNotFound: (.ProcessName:String) [], CommandNotFoundException + + FullyQualifiedErrorId : CommandNotFoundException + +.ProcessName : The term '.ProcessName' is not recognized as the name of a cmdlet, function, script file, or operable +program. Check the spelling of the name, or if a path was included, verify that the path is correct and try again. +At line:1 char:29 ++ Get-Process | Where-Object {.ProcessName -like '*synergy*'} | Select- ... ++ ~~~~~~~~~~~~ + + CategoryInfo : ObjectNotFound: (.ProcessName:String) [], CommandNotFoundException + + FullyQualifiedErrorId : CommandNotFoundException + +.ProcessName : The term '.ProcessName' is not recognized as the name of a cmdlet, function, script file, or operable +program. Check the spelling of the name, or if a path was included, verify that the path is correct and try again. +At line:1 char:29 ++ Get-Process | Where-Object {.ProcessName -like '*synergy*'} | Select- ... ++ ~~~~~~~~~~~~ + + CategoryInfo : ObjectNotFound: (.ProcessName:String) [], CommandNotFoundException + + FullyQualifiedErrorId : CommandNotFoundException + +.ProcessName : The term '.ProcessName' is not recognized as the name of a cmdlet, function, script file, or operable +program. Check the spelling of the name, or if a path was included, verify that the path is correct and try again. +At line:1 char:29 ++ Get-Process | Where-Object {.ProcessName -like '*synergy*'} | Select- ... ++ ~~~~~~~~~~~~ + + CategoryInfo : ObjectNotFound: (.ProcessName:String) [], CommandNotFoundException + + FullyQualifiedErrorId : CommandNotFoundException + +.ProcessName : The term '.ProcessName' is not recognized as the name of a cmdlet, function, script file, or operable +program. Check the spelling of the name, or if a path was included, verify that the path is correct and try again. +At line:1 char:29 ++ Get-Process | Where-Object {.ProcessName -like '*synergy*'} | Select- ... ++ ~~~~~~~~~~~~ + + CategoryInfo : ObjectNotFound: (.ProcessName:String) [], CommandNotFoundException + + FullyQualifiedErrorId : CommandNotFoundException + +.ProcessName : The term '.ProcessName' is not recognized as the name of a cmdlet, function, script file, or operable +program. Check the spelling of the name, or if a path was included, verify that the path is correct and try again. +At line:1 char:29 ++ Get-Process | Where-Object {.ProcessName -like '*synergy*'} | Select- ... ++ ~~~~~~~~~~~~ + + CategoryInfo : ObjectNotFound: (.ProcessName:String) [], CommandNotFoundException + + FullyQualifiedErrorId : CommandNotFoundException + +.ProcessName : The term '.ProcessName' is not recognized as the name of a cmdlet, function, script file, or operable +program. Check the spelling of the name, or if a path was included, verify that the path is correct and try again. +At line:1 char:29 ++ Get-Process | Where-Object {.ProcessName -like '*synergy*'} | Select- ... ++ ~~~~~~~~~~~~ + + CategoryInfo : ObjectNotFound: (.ProcessName:String) [], CommandNotFoundException + + FullyQualifiedErrorId : CommandNotFoundException + +.ProcessName : The term '.ProcessName' is not recognized as the name of a cmdlet, function, script file, or operable +program. Check the spelling of the name, or if a path was included, verify that the path is correct and try again. +At line:1 char:29 ++ Get-Process | Where-Object {.ProcessName -like '*synergy*'} | Select- ... ++ ~~~~~~~~~~~~ + + CategoryInfo : ObjectNotFound: (.ProcessName:String) [], CommandNotFoundException + + FullyQualifiedErrorId : CommandNotFoundException + +.ProcessName : The term '.ProcessName' is not recognized as the name of a cmdlet, function, script file, or operable +program. Check the spelling of the name, or if a path was included, verify that the path is correct and try again. +At line:1 char:29 ++ Get-Process | Where-Object {.ProcessName -like '*synergy*'} | Select- ... ++ ~~~~~~~~~~~~ + + CategoryInfo : ObjectNotFound: (.ProcessName:String) [], CommandNotFoundException + + FullyQualifiedErrorId : CommandNotFoundException + +.ProcessName : The term '.ProcessName' is not recognized as the name of a cmdlet, function, script file, or operable +program. Check the spelling of the name, or if a path was included, verify that the path is correct and try again. +At line:1 char:29 ++ Get-Process | Where-Object {.ProcessName -like '*synergy*'} | Select- ... ++ ~~~~~~~~~~~~ + + CategoryInfo : ObjectNotFound: (.ProcessName:String) [], CommandNotFoundException + + FullyQualifiedErrorId : CommandNotFoundException + +.ProcessName : The term '.ProcessName' is not recognized as the name of a cmdlet, function, script file, or operable +program. Check the spelling of the name, or if a path was included, verify that the path is correct and try again. +At line:1 char:29 ++ Get-Process | Where-Object {.ProcessName -like '*synergy*'} | Select- ... ++ ~~~~~~~~~~~~ + + CategoryInfo : ObjectNotFound: (.ProcessName:String) [], CommandNotFoundException + + FullyQualifiedErrorId : CommandNotFoundException + +.ProcessName : The term '.ProcessName' is not recognized as the name of a cmdlet, function, script file, or operable +program. Check the spelling of the name, or if a path was included, verify that the path is correct and try again. +At line:1 char:29 ++ Get-Process | Where-Object {.ProcessName -like '*synergy*'} | Select- ... ++ ~~~~~~~~~~~~ + + CategoryInfo : ObjectNotFound: (.ProcessName:String) [], CommandNotFoundException + + FullyQualifiedErrorId : CommandNotFoundException + +.ProcessName : The term '.ProcessName' is not recognized as the name of a cmdlet, function, script file, or operable +program. Check the spelling of the name, or if a path was included, verify that the path is correct and try again. +At line:1 char:29 ++ Get-Process | Where-Object {.ProcessName -like '*synergy*'} | Select- ... ++ ~~~~~~~~~~~~ + + CategoryInfo : ObjectNotFound: (.ProcessName:String) [], CommandNotFoundException + + FullyQualifiedErrorId : CommandNotFoundException + +.ProcessName : The term '.ProcessName' is not recognized as the name of a cmdlet, function, script file, or operable +program. Check the spelling of the name, or if a path was included, verify that the path is correct and try again. +At line:1 char:29 ++ Get-Process | Where-Object {.ProcessName -like '*synergy*'} | Select- ... ++ ~~~~~~~~~~~~ + + CategoryInfo : ObjectNotFound: (.ProcessName:String) [], CommandNotFoundException + + FullyQualifiedErrorId : CommandNotFoundException + +.ProcessName : The term '.ProcessName' is not recognized as the name of a cmdlet, function, script file, or operable +program. Check the spelling of the name, or if a path was included, verify that the path is correct and try again. +At line:1 char:29 ++ Get-Process | Where-Object {.ProcessName -like '*synergy*'} | Select- ... ++ ~~~~~~~~~~~~ + + CategoryInfo : ObjectNotFound: (.ProcessName:String) [], CommandNotFoundException + + FullyQualifiedErrorId : CommandNotFoundException + +.ProcessName : The term '.ProcessName' is not recognized as the name of a cmdlet, function, script file, or operable +program. Check the spelling of the name, or if a path was included, verify that the path is correct and try again. +At line:1 char:29 ++ Get-Process | Where-Object {.ProcessName -like '*synergy*'} | Select- ... ++ ~~~~~~~~~~~~ + + CategoryInfo : ObjectNotFound: (.ProcessName:String) [], CommandNotFoundException + + FullyQualifiedErrorId : CommandNotFoundException + +.ProcessName : The term '.ProcessName' is not recognized as the name of a cmdlet, function, script file, or operable +program. Check the spelling of the name, or if a path was included, verify that the path is correct and try again. +At line:1 char:29 ++ Get-Process | Where-Object {.ProcessName -like '*synergy*'} | Select- ... ++ ~~~~~~~~~~~~ + + CategoryInfo : ObjectNotFound: (.ProcessName:String) [], CommandNotFoundException + + FullyQualifiedErrorId : CommandNotFoundException + +.ProcessName : The term '.ProcessName' is not recognized as the name of a cmdlet, function, script file, or operable +program. Check the spelling of the name, or if a path was included, verify that the path is correct and try again. +At line:1 char:29 ++ Get-Process | Where-Object {.ProcessName -like '*synergy*'} | Select- ... ++ ~~~~~~~~~~~~ + + CategoryInfo : ObjectNotFound: (.ProcessName:String) [], CommandNotFoundException + + FullyQualifiedErrorId : CommandNotFoundException + +.ProcessName : The term '.ProcessName' is not recognized as the name of a cmdlet, function, script file, or operable +program. Check the spelling of the name, or if a path was included, verify that the path is correct and try again. +At line:1 char:29 ++ Get-Process | Where-Object {.ProcessName -like '*synergy*'} | Select- ... ++ ~~~~~~~~~~~~ + + CategoryInfo : ObjectNotFound: (.ProcessName:String) [], CommandNotFoundException + + FullyQualifiedErrorId : CommandNotFoundException + +.ProcessName : The term '.ProcessName' is not recognized as the name of a cmdlet, function, script file, or operable +program. Check the spelling of the name, or if a path was included, verify that the path is correct and try again. +At line:1 char:29 ++ Get-Process | Where-Object {.ProcessName -like '*synergy*'} | Select- ... ++ ~~~~~~~~~~~~ + + CategoryInfo : ObjectNotFound: (.ProcessName:String) [], CommandNotFoundException + + FullyQualifiedErrorId : CommandNotFoundException + +.ProcessName : The term '.ProcessName' is not recognized as the name of a cmdlet, function, script file, or operable +program. Check the spelling of the name, or if a path was included, verify that the path is correct and try again. +At line:1 char:29 ++ Get-Process | Where-Object {.ProcessName -like '*synergy*'} | Select- ... ++ ~~~~~~~~~~~~ + + CategoryInfo : ObjectNotFound: (.ProcessName:String) [], CommandNotFoundException + + FullyQualifiedErrorId : CommandNotFoundException + +.ProcessName : The term '.ProcessName' is not recognized as the name of a cmdlet, function, script file, or operable +program. Check the spelling of the name, or if a path was included, verify that the path is correct and try again. +At line:1 char:29 ++ Get-Process | Where-Object {.ProcessName -like '*synergy*'} | Select- ... ++ ~~~~~~~~~~~~ + + CategoryInfo : ObjectNotFound: (.ProcessName:String) [], CommandNotFoundException + + FullyQualifiedErrorId : CommandNotFoundException + +.ProcessName : The term '.ProcessName' is not recognized as the name of a cmdlet, function, script file, or operable +program. Check the spelling of the name, or if a path was included, verify that the path is correct and try again. +At line:1 char:29 ++ Get-Process | Where-Object {.ProcessName -like '*synergy*'} | Select- ... ++ ~~~~~~~~~~~~ + + CategoryInfo : ObjectNotFound: (.ProcessName:String) [], CommandNotFoundException + + FullyQualifiedErrorId : CommandNotFoundException + +.ProcessName : The term '.ProcessName' is not recognized as the name of a cmdlet, function, script file, or operable +program. Check the spelling of the name, or if a path was included, verify that the path is correct and try again. +At line:1 char:29 ++ Get-Process | Where-Object {.ProcessName -like '*synergy*'} | Select- ... ++ ~~~~~~~~~~~~ + + CategoryInfo : ObjectNotFound: (.ProcessName:String) [], CommandNotFoundException + + FullyQualifiedErrorId : CommandNotFoundException + +.ProcessName : The term '.ProcessName' is not recognized as the name of a cmdlet, function, script file, or operable +program. Check the spelling of the name, or if a path was included, verify that the path is correct and try again. +At line:1 char:29 ++ Get-Process | Where-Object {.ProcessName -like '*synergy*'} | Select- ... ++ ~~~~~~~~~~~~ + + CategoryInfo : ObjectNotFound: (.ProcessName:String) [], CommandNotFoundException + + FullyQualifiedErrorId : CommandNotFoundException + +.ProcessName : The term '.ProcessName' is not recognized as the name of a cmdlet, function, script file, or operable +program. Check the spelling of the name, or if a path was included, verify that the path is correct and try again. +At line:1 char:29 ++ Get-Process | Where-Object {.ProcessName -like '*synergy*'} | Select- ... ++ ~~~~~~~~~~~~ + + CategoryInfo : ObjectNotFound: (.ProcessName:String) [], CommandNotFoundException + + FullyQualifiedErrorId : CommandNotFoundException + +.ProcessName : The term '.ProcessName' is not recognized as the name of a cmdlet, function, script file, or operable +program. Check the spelling of the name, or if a path was included, verify that the path is correct and try again. +At line:1 char:29 ++ Get-Process | Where-Object {.ProcessName -like '*synergy*'} | Select- ... ++ ~~~~~~~~~~~~ + + CategoryInfo : ObjectNotFound: (.ProcessName:String) [], CommandNotFoundException + + FullyQualifiedErrorId : CommandNotFoundException + +.ProcessName : The term '.ProcessName' is not recognized as the name of a cmdlet, function, script file, or operable +program. Check the spelling of the name, or if a path was included, verify that the path is correct and try again. +At line:1 char:29 ++ Get-Process | Where-Object {.ProcessName -like '*synergy*'} | Select- ... ++ ~~~~~~~~~~~~ + + CategoryInfo : ObjectNotFound: (.ProcessName:String) [], CommandNotFoundException + + FullyQualifiedErrorId : CommandNotFoundException + +.ProcessName : The term '.ProcessName' is not recognized as the name of a cmdlet, function, script file, or operable +program. Check the spelling of the name, or if a path was included, verify that the path is correct and try again. +At line:1 char:29 ++ Get-Process | Where-Object {.ProcessName -like '*synergy*'} | Select- ... ++ ~~~~~~~~~~~~ + + CategoryInfo : ObjectNotFound: (.ProcessName:String) [], CommandNotFoundException + + FullyQualifiedErrorId : CommandNotFoundException + +.ProcessName : The term '.ProcessName' is not recognized as the name of a cmdlet, function, script file, or operable +program. Check the spelling of the name, or if a path was included, verify that the path is correct and try again. +At line:1 char:29 ++ Get-Process | Where-Object {.ProcessName -like '*synergy*'} | Select- ... ++ ~~~~~~~~~~~~ + + CategoryInfo : ObjectNotFound: (.ProcessName:String) [], CommandNotFoundException + + FullyQualifiedErrorId : CommandNotFoundException + +.ProcessName : The term '.ProcessName' is not recognized as the name of a cmdlet, function, script file, or operable +program. Check the spelling of the name, or if a path was included, verify that the path is correct and try again. +At line:1 char:29 ++ Get-Process | Where-Object {.ProcessName -like '*synergy*'} | Select- ... ++ ~~~~~~~~~~~~ + + CategoryInfo : ObjectNotFound: (.ProcessName:String) [], CommandNotFoundException + + FullyQualifiedErrorId : CommandNotFoundException + +.ProcessName : The term '.ProcessName' is not recognized as the name of a cmdlet, function, script file, or operable +program. Check the spelling of the name, or if a path was included, verify that the path is correct and try again. +At line:1 char:29 ++ Get-Process | Where-Object {.ProcessName -like '*synergy*'} | Select- ... ++ ~~~~~~~~~~~~ + + CategoryInfo : ObjectNotFound: (.ProcessName:String) [], CommandNotFoundException + + FullyQualifiedErrorId : CommandNotFoundException + +.ProcessName : The term '.ProcessName' is not recognized as the name of a cmdlet, function, script file, or operable +program. Check the spelling of the name, or if a path was included, verify that the path is correct and try again. +At line:1 char:29 ++ Get-Process | Where-Object {.ProcessName -like '*synergy*'} | Select- ... ++ ~~~~~~~~~~~~ + + CategoryInfo : ObjectNotFound: (.ProcessName:String) [], CommandNotFoundException + + FullyQualifiedErrorId : CommandNotFoundException + +.ProcessName : The term '.ProcessName' is not recognized as the name of a cmdlet, function, script file, or operable +program. Check the spelling of the name, or if a path was included, verify that the path is correct and try again. +At line:1 char:29 ++ Get-Process | Where-Object {.ProcessName -like '*synergy*'} | Select- ... ++ ~~~~~~~~~~~~ + + CategoryInfo : ObjectNotFound: (.ProcessName:String) [], CommandNotFoundException + + FullyQualifiedErrorId : CommandNotFoundException + +.ProcessName : The term '.ProcessName' is not recognized as the name of a cmdlet, function, script file, or operable +program. Check the spelling of the name, or if a path was included, verify that the path is correct and try again. +At line:1 char:29 ++ Get-Process | Where-Object {.ProcessName -like '*synergy*'} | Select- ... ++ ~~~~~~~~~~~~ + + CategoryInfo : ObjectNotFound: (.ProcessName:String) [], CommandNotFoundException + + FullyQualifiedErrorId : CommandNotFoundException + +.ProcessName : The term '.ProcessName' is not recognized as the name of a cmdlet, function, script file, or operable +program. Check the spelling of the name, or if a path was included, verify that the path is correct and try again. +At line:1 char:29 ++ Get-Process | Where-Object {.ProcessName -like '*synergy*'} | Select- ... ++ ~~~~~~~~~~~~ + + CategoryInfo : ObjectNotFound: (.ProcessName:String) [], CommandNotFoundException + + FullyQualifiedErrorId : CommandNotFoundException + +.ProcessName : The term '.ProcessName' is not recognized as the name of a cmdlet, function, script file, or operable +program. Check the spelling of the name, or if a path was included, verify that the path is correct and try again. +At line:1 char:29 ++ Get-Process | Where-Object {.ProcessName -like '*synergy*'} | Select- ... ++ ~~~~~~~~~~~~ + + CategoryInfo : ObjectNotFound: (.ProcessName:String) [], CommandNotFoundException + + FullyQualifiedErrorId : CommandNotFoundException + +.ProcessName : The term '.ProcessName' is not recognized as the name of a cmdlet, function, script file, or operable +program. Check the spelling of the name, or if a path was included, verify that the path is correct and try again. +At line:1 char:29 ++ Get-Process | Where-Object {.ProcessName -like '*synergy*'} | Select- ... ++ ~~~~~~~~~~~~ + + CategoryInfo : ObjectNotFound: (.ProcessName:String) [], CommandNotFoundException + + FullyQualifiedErrorId : CommandNotFoundException + +.ProcessName : The term '.ProcessName' is not recognized as the name of a cmdlet, function, script file, or operable +program. Check the spelling of the name, or if a path was included, verify that the path is correct and try again. +At line:1 char:29 ++ Get-Process | Where-Object {.ProcessName -like '*synergy*'} | Select- ... ++ ~~~~~~~~~~~~ + + CategoryInfo : ObjectNotFound: (.ProcessName:String) [], CommandNotFoundException + + FullyQualifiedErrorId : CommandNotFoundException + +.ProcessName : The term '.ProcessName' is not recognized as the name of a cmdlet, function, script file, or operable +program. Check the spelling of the name, or if a path was included, verify that the path is correct and try again. +At line:1 char:29 ++ Get-Process | Where-Object {.ProcessName -like '*synergy*'} | Select- ... ++ ~~~~~~~~~~~~ + + CategoryInfo : ObjectNotFound: (.ProcessName:String) [], CommandNotFoundException + + FullyQualifiedErrorId : CommandNotFoundException + +.ProcessName : The term '.ProcessName' is not recognized as the name of a cmdlet, function, script file, or operable +program. Check the spelling of the name, or if a path was included, verify that the path is correct and try again. +At line:1 char:29 ++ Get-Process | Where-Object {.ProcessName -like '*synergy*'} | Select- ... ++ ~~~~~~~~~~~~ + + CategoryInfo : ObjectNotFound: (.ProcessName:String) [], CommandNotFoundException + + FullyQualifiedErrorId : CommandNotFoundException + +.ProcessName : The term '.ProcessName' is not recognized as the name of a cmdlet, function, script file, or operable +program. Check the spelling of the name, or if a path was included, verify that the path is correct and try again. +At line:1 char:29 ++ Get-Process | Where-Object {.ProcessName -like '*synergy*'} | Select- ... ++ ~~~~~~~~~~~~ + + CategoryInfo : ObjectNotFound: (.ProcessName:String) [], CommandNotFoundException + + FullyQualifiedErrorId : CommandNotFoundException + +.ProcessName : The term '.ProcessName' is not recognized as the name of a cmdlet, function, script file, or operable +program. Check the spelling of the name, or if a path was included, verify that the path is correct and try again. +At line:1 char:29 ++ Get-Process | Where-Object {.ProcessName -like '*synergy*'} | Select- ... ++ ~~~~~~~~~~~~ + + CategoryInfo : ObjectNotFound: (.ProcessName:String) [], CommandNotFoundException + + FullyQualifiedErrorId : CommandNotFoundException + +.ProcessName : The term '.ProcessName' is not recognized as the name of a cmdlet, function, script file, or operable +program. Check the spelling of the name, or if a path was included, verify that the path is correct and try again. +At line:1 char:29 ++ Get-Process | Where-Object {.ProcessName -like '*synergy*'} | Select- ... ++ ~~~~~~~~~~~~ + + CategoryInfo : ObjectNotFound: (.ProcessName:String) [], CommandNotFoundException + + FullyQualifiedErrorId : CommandNotFoundException + +.ProcessName : The term '.ProcessName' is not recognized as the name of a cmdlet, function, script file, or operable +program. Check the spelling of the name, or if a path was included, verify that the path is correct and try again. +At line:1 char:29 ++ Get-Process | Where-Object {.ProcessName -like '*synergy*'} | Select- ... ++ ~~~~~~~~~~~~ + + CategoryInfo : ObjectNotFound: (.ProcessName:String) [], CommandNotFoundException + + FullyQualifiedErrorId : CommandNotFoundException + +.ProcessName : The term '.ProcessName' is not recognized as the name of a cmdlet, function, script file, or operable +program. Check the spelling of the name, or if a path was included, verify that the path is correct and try again. +At line:1 char:29 ++ Get-Process | Where-Object {.ProcessName -like '*synergy*'} | Select- ... ++ ~~~~~~~~~~~~ + + CategoryInfo : ObjectNotFound: (.ProcessName:String) [], CommandNotFoundException + + FullyQualifiedErrorId : CommandNotFoundException + +.ProcessName : The term '.ProcessName' is not recognized as the name of a cmdlet, function, script file, or operable +program. Check the spelling of the name, or if a path was included, verify that the path is correct and try again. +At line:1 char:29 ++ Get-Process | Where-Object {.ProcessName -like '*synergy*'} | Select- ... ++ ~~~~~~~~~~~~ + + CategoryInfo : ObjectNotFound: (.ProcessName:String) [], CommandNotFoundException + + FullyQualifiedErrorId : CommandNotFoundException + +.ProcessName : The term '.ProcessName' is not recognized as the name of a cmdlet, function, script file, or operable +program. Check the spelling of the name, or if a path was included, verify that the path is correct and try again. +At line:1 char:29 ++ Get-Process | Where-Object {.ProcessName -like '*synergy*'} | Select- ... ++ ~~~~~~~~~~~~ + + CategoryInfo : ObjectNotFound: (.ProcessName:String) [], CommandNotFoundException + + FullyQualifiedErrorId : CommandNotFoundException + +.ProcessName : The term '.ProcessName' is not recognized as the name of a cmdlet, function, script file, or operable +program. Check the spelling of the name, or if a path was included, verify that the path is correct and try again. +At line:1 char:29 ++ Get-Process | Where-Object {.ProcessName -like '*synergy*'} | Select- ... ++ ~~~~~~~~~~~~ + + CategoryInfo : ObjectNotFound: (.ProcessName:String) [], CommandNotFoundException + + FullyQualifiedErrorId : CommandNotFoundException + +.ProcessName : The term '.ProcessName' is not recognized as the name of a cmdlet, function, script file, or operable +program. Check the spelling of the name, or if a path was included, verify that the path is correct and try again. +At line:1 char:29 ++ Get-Process | Where-Object {.ProcessName -like '*synergy*'} | Select- ... ++ ~~~~~~~~~~~~ + + CategoryInfo : ObjectNotFound: (.ProcessName:String) [], CommandNotFoundException + + FullyQualifiedErrorId : CommandNotFoundException + +.ProcessName : The term '.ProcessName' is not recognized as the name of a cmdlet, function, script file, or operable +program. Check the spelling of the name, or if a path was included, verify that the path is correct and try again. +At line:1 char:29 ++ Get-Process | Where-Object {.ProcessName -like '*synergy*'} | Select- ... ++ ~~~~~~~~~~~~ + + CategoryInfo : ObjectNotFound: (.ProcessName:String) [], CommandNotFoundException + + FullyQualifiedErrorId : CommandNotFoundException + +.ProcessName : The term '.ProcessName' is not recognized as the name of a cmdlet, function, script file, or operable +program. Check the spelling of the name, or if a path was included, verify that the path is correct and try again. +At line:1 char:29 ++ Get-Process | Where-Object {.ProcessName -like '*synergy*'} | Select- ... ++ ~~~~~~~~~~~~ + + CategoryInfo : ObjectNotFound: (.ProcessName:String) [], CommandNotFoundException + + FullyQualifiedErrorId : CommandNotFoundException + +.ProcessName : The term '.ProcessName' is not recognized as the name of a cmdlet, function, script file, or operable +program. Check the spelling of the name, or if a path was included, verify that the path is correct and try again. +At line:1 char:29 ++ Get-Process | Where-Object {.ProcessName -like '*synergy*'} | Select- ... ++ ~~~~~~~~~~~~ + + CategoryInfo : ObjectNotFound: (.ProcessName:String) [], CommandNotFoundException + + FullyQualifiedErrorId : CommandNotFoundException + +.ProcessName : The term '.ProcessName' is not recognized as the name of a cmdlet, function, script file, or operable +program. Check the spelling of the name, or if a path was included, verify that the path is correct and try again. +At line:1 char:29 ++ Get-Process | Where-Object {.ProcessName -like '*synergy*'} | Select- ... ++ ~~~~~~~~~~~~ + + CategoryInfo : ObjectNotFound: (.ProcessName:String) [], CommandNotFoundException + + FullyQualifiedErrorId : CommandNotFoundException + +.ProcessName : The term '.ProcessName' is not recognized as the name of a cmdlet, function, script file, or operable +program. Check the spelling of the name, or if a path was included, verify that the path is correct and try again. +At line:1 char:29 ++ Get-Process | Where-Object {.ProcessName -like '*synergy*'} | Select- ... ++ ~~~~~~~~~~~~ + + CategoryInfo : ObjectNotFound: (.ProcessName:String) [], CommandNotFoundException + + FullyQualifiedErrorId : CommandNotFoundException + +.ProcessName : The term '.ProcessName' is not recognized as the name of a cmdlet, function, script file, or operable +program. Check the spelling of the name, or if a path was included, verify that the path is correct and try again. +At line:1 char:29 ++ Get-Process | Where-Object {.ProcessName -like '*synergy*'} | Select- ... ++ ~~~~~~~~~~~~ + + CategoryInfo : ObjectNotFound: (.ProcessName:String) [], CommandNotFoundException + + FullyQualifiedErrorId : CommandNotFoundException + +.ProcessName : The term '.ProcessName' is not recognized as the name of a cmdlet, function, script file, or operable +program. Check the spelling of the name, or if a path was included, verify that the path is correct and try again. +At line:1 char:29 ++ Get-Process | Where-Object {.ProcessName -like '*synergy*'} | Select- ... ++ ~~~~~~~~~~~~ + + CategoryInfo : ObjectNotFound: (.ProcessName:String) [], CommandNotFoundException + + FullyQualifiedErrorId : CommandNotFoundException + +.ProcessName : The term '.ProcessName' is not recognized as the name of a cmdlet, function, script file, or operable +program. Check the spelling of the name, or if a path was included, verify that the path is correct and try again. +At line:1 char:29 ++ Get-Process | Where-Object {.ProcessName -like '*synergy*'} | Select- ... ++ ~~~~~~~~~~~~ + + CategoryInfo : ObjectNotFound: (.ProcessName:String) [], CommandNotFoundException + + FullyQualifiedErrorId : CommandNotFoundException + +.ProcessName : The term '.ProcessName' is not recognized as the name of a cmdlet, function, script file, or operable +program. Check the spelling of the name, or if a path was included, verify that the path is correct and try again. +At line:1 char:29 ++ Get-Process | Where-Object {.ProcessName -like '*synergy*'} | Select- ... ++ ~~~~~~~~~~~~ + + CategoryInfo : ObjectNotFound: (.ProcessName:String) [], CommandNotFoundException + + FullyQualifiedErrorId : CommandNotFoundException + +.ProcessName : The term '.ProcessName' is not recognized as the name of a cmdlet, function, script file, or operable +program. Check the spelling of the name, or if a path was included, verify that the path is correct and try again. +At line:1 char:29 ++ Get-Process | Where-Object {.ProcessName -like '*synergy*'} | Select- ... ++ ~~~~~~~~~~~~ + + CategoryInfo : ObjectNotFound: (.ProcessName:String) [], CommandNotFoundException + + FullyQualifiedErrorId : CommandNotFoundException + +.ProcessName : The term '.ProcessName' is not recognized as the name of a cmdlet, function, script file, or operable +program. Check the spelling of the name, or if a path was included, verify that the path is correct and try again. +At line:1 char:29 ++ Get-Process | Where-Object {.ProcessName -like '*synergy*'} | Select- ... ++ ~~~~~~~~~~~~ + + CategoryInfo : ObjectNotFound: (.ProcessName:String) [], CommandNotFoundException + + FullyQualifiedErrorId : CommandNotFoundException + +.ProcessName : The term '.ProcessName' is not recognized as the name of a cmdlet, function, script file, or operable +program. Check the spelling of the name, or if a path was included, verify that the path is correct and try again. +At line:1 char:29 ++ Get-Process | Where-Object {.ProcessName -like '*synergy*'} | Select- ... ++ ~~~~~~~~~~~~ + + CategoryInfo : ObjectNotFound: (.ProcessName:String) [], CommandNotFoundException + + FullyQualifiedErrorId : CommandNotFoundException + +.ProcessName : The term '.ProcessName' is not recognized as the name of a cmdlet, function, script file, or operable +program. Check the spelling of the name, or if a path was included, verify that the path is correct and try again. +At line:1 char:29 ++ Get-Process | Where-Object {.ProcessName -like '*synergy*'} | Select- ... ++ ~~~~~~~~~~~~ + + CategoryInfo : ObjectNotFound: (.ProcessName:String) [], CommandNotFoundException + + FullyQualifiedErrorId : CommandNotFoundException + +.ProcessName : The term '.ProcessName' is not recognized as the name of a cmdlet, function, script file, or operable +program. Check the spelling of the name, or if a path was included, verify that the path is correct and try again. +At line:1 char:29 ++ Get-Process | Where-Object {.ProcessName -like '*synergy*'} | Select- ... ++ ~~~~~~~~~~~~ + + CategoryInfo : ObjectNotFound: (.ProcessName:String) [], CommandNotFoundException + + FullyQualifiedErrorId : CommandNotFoundException + +.ProcessName : The term '.ProcessName' is not recognized as the name of a cmdlet, function, script file, or operable +program. Check the spelling of the name, or if a path was included, verify that the path is correct and try again. +At line:1 char:29 ++ Get-Process | Where-Object {.ProcessName -like '*synergy*'} | Select- ... ++ ~~~~~~~~~~~~ + + CategoryInfo : ObjectNotFound: (.ProcessName:String) [], CommandNotFoundException + + FullyQualifiedErrorId : CommandNotFoundException + +.ProcessName : The term '.ProcessName' is not recognized as the name of a cmdlet, function, script file, or operable +program. Check the spelling of the name, or if a path was included, verify that the path is correct and try again. +At line:1 char:29 ++ Get-Process | Where-Object {.ProcessName -like '*synergy*'} | Select- ... ++ ~~~~~~~~~~~~ + + CategoryInfo : ObjectNotFound: (.ProcessName:String) [], CommandNotFoundException + + FullyQualifiedErrorId : CommandNotFoundException + +.ProcessName : The term '.ProcessName' is not recognized as the name of a cmdlet, function, script file, or operable +program. Check the spelling of the name, or if a path was included, verify that the path is correct and try again. +At line:1 char:29 ++ Get-Process | Where-Object {.ProcessName -like '*synergy*'} | Select- ... ++ ~~~~~~~~~~~~ + + CategoryInfo : ObjectNotFound: (.ProcessName:String) [], CommandNotFoundException + + FullyQualifiedErrorId : CommandNotFoundException + +.ProcessName : The term '.ProcessName' is not recognized as the name of a cmdlet, function, script file, or operable +program. Check the spelling of the name, or if a path was included, verify that the path is correct and try again. +At line:1 char:29 ++ Get-Process | Where-Object {.ProcessName -like '*synergy*'} | Select- ... ++ ~~~~~~~~~~~~ + + CategoryInfo : ObjectNotFound: (.ProcessName:String) [], CommandNotFoundException + + FullyQualifiedErrorId : CommandNotFoundException + +.ProcessName : The term '.ProcessName' is not recognized as the name of a cmdlet, function, script file, or operable +program. Check the spelling of the name, or if a path was included, verify that the path is correct and try again. +At line:1 char:29 ++ Get-Process | Where-Object {.ProcessName -like '*synergy*'} | Select- ... ++ ~~~~~~~~~~~~ + + CategoryInfo : ObjectNotFound: (.ProcessName:String) [], CommandNotFoundException + + FullyQualifiedErrorId : CommandNotFoundException + +.ProcessName : The term '.ProcessName' is not recognized as the name of a cmdlet, function, script file, or operable +program. Check the spelling of the name, or if a path was included, verify that the path is correct and try again. +At line:1 char:29 ++ Get-Process | Where-Object {.ProcessName -like '*synergy*'} | Select- ... ++ ~~~~~~~~~~~~ + + CategoryInfo : ObjectNotFound: (.ProcessName:String) [], CommandNotFoundException + + FullyQualifiedErrorId : CommandNotFoundException + +.ProcessName : The term '.ProcessName' is not recognized as the name of a cmdlet, function, script file, or operable +program. Check the spelling of the name, or if a path was included, verify that the path is correct and try again. +At line:1 char:29 ++ Get-Process | Where-Object {.ProcessName -like '*synergy*'} | Select- ... ++ ~~~~~~~~~~~~ + + CategoryInfo : ObjectNotFound: (.ProcessName:String) [], CommandNotFoundException + + FullyQualifiedErrorId : CommandNotFoundException + +.ProcessName : The term '.ProcessName' is not recognized as the name of a cmdlet, function, script file, or operable +program. Check the spelling of the name, or if a path was included, verify that the path is correct and try again. +At line:1 char:29 ++ Get-Process | Where-Object {.ProcessName -like '*synergy*'} | Select- ... ++ ~~~~~~~~~~~~ + + CategoryInfo : ObjectNotFound: (.ProcessName:String) [], CommandNotFoundException + + FullyQualifiedErrorId : CommandNotFoundException + +.ProcessName : The term '.ProcessName' is not recognized as the name of a cmdlet, function, script file, or operable +program. Check the spelling of the name, or if a path was included, verify that the path is correct and try again. +At line:1 char:29 ++ Get-Process | Where-Object {.ProcessName -like '*synergy*'} | Select- ... ++ ~~~~~~~~~~~~ + + CategoryInfo : ObjectNotFound: (.ProcessName:String) [], CommandNotFoundException + + FullyQualifiedErrorId : CommandNotFoundException + +.ProcessName : The term '.ProcessName' is not recognized as the name of a cmdlet, function, script file, or operable +program. Check the spelling of the name, or if a path was included, verify that the path is correct and try again. +At line:1 char:29 ++ Get-Process | Where-Object {.ProcessName -like '*synergy*'} | Select- ... ++ ~~~~~~~~~~~~ + + CategoryInfo : ObjectNotFound: (.ProcessName:String) [], CommandNotFoundException + + FullyQualifiedErrorId : CommandNotFoundException + +.ProcessName : The term '.ProcessName' is not recognized as the name of a cmdlet, function, script file, or operable +program. Check the spelling of the name, or if a path was included, verify that the path is correct and try again. +At line:1 char:29 ++ Get-Process | Where-Object {.ProcessName -like '*synergy*'} | Select- ... ++ ~~~~~~~~~~~~ + + CategoryInfo : ObjectNotFound: (.ProcessName:String) [], CommandNotFoundException + + FullyQualifiedErrorId : CommandNotFoundException + +.ProcessName : The term '.ProcessName' is not recognized as the name of a cmdlet, function, script file, or operable +program. Check the spelling of the name, or if a path was included, verify that the path is correct and try again. +At line:1 char:29 ++ Get-Process | Where-Object {.ProcessName -like '*synergy*'} | Select- ... ++ ~~~~~~~~~~~~ + + CategoryInfo : ObjectNotFound: (.ProcessName:String) [], CommandNotFoundException + + FullyQualifiedErrorId : CommandNotFoundException + +.ProcessName : The term '.ProcessName' is not recognized as the name of a cmdlet, function, script file, or operable +program. Check the spelling of the name, or if a path was included, verify that the path is correct and try again. +At line:1 char:29 ++ Get-Process | Where-Object {.ProcessName -like '*synergy*'} | Select- ... ++ ~~~~~~~~~~~~ + + CategoryInfo : ObjectNotFound: (.ProcessName:String) [], CommandNotFoundException + + FullyQualifiedErrorId : CommandNotFoundException + +.ProcessName : The term '.ProcessName' is not recognized as the name of a cmdlet, function, script file, or operable +program. Check the spelling of the name, or if a path was included, verify that the path is correct and try again. +At line:1 char:29 ++ Get-Process | Where-Object {.ProcessName -like '*synergy*'} | Select- ... ++ ~~~~~~~~~~~~ + + CategoryInfo : ObjectNotFound: (.ProcessName:String) [], CommandNotFoundException + + FullyQualifiedErrorId : CommandNotFoundException + +.ProcessName : The term '.ProcessName' is not recognized as the name of a cmdlet, function, script file, or operable +program. Check the spelling of the name, or if a path was included, verify that the path is correct and try again. +At line:1 char:29 ++ Get-Process | Where-Object {.ProcessName -like '*synergy*'} | Select- ... ++ ~~~~~~~~~~~~ + + CategoryInfo : ObjectNotFound: (.ProcessName:String) [], CommandNotFoundException + + FullyQualifiedErrorId : CommandNotFoundException + +.ProcessName : The term '.ProcessName' is not recognized as the name of a cmdlet, function, script file, or operable +program. Check the spelling of the name, or if a path was included, verify that the path is correct and try again. +At line:1 char:29 ++ Get-Process | Where-Object {.ProcessName -like '*synergy*'} | Select- ... ++ ~~~~~~~~~~~~ + + CategoryInfo : ObjectNotFound: (.ProcessName:String) [], CommandNotFoundException + + FullyQualifiedErrorId : CommandNotFoundException + +.ProcessName : The term '.ProcessName' is not recognized as the name of a cmdlet, function, script file, or operable +program. Check the spelling of the name, or if a path was included, verify that the path is correct and try again. +At line:1 char:29 ++ Get-Process | Where-Object {.ProcessName -like '*synergy*'} | Select- ... ++ ~~~~~~~~~~~~ + + CategoryInfo : ObjectNotFound: (.ProcessName:String) [], CommandNotFoundException + + FullyQualifiedErrorId : CommandNotFoundException + +.ProcessName : The term '.ProcessName' is not recognized as the name of a cmdlet, function, script file, or operable +program. Check the spelling of the name, or if a path was included, verify that the path is correct and try again. +At line:1 char:29 ++ Get-Process | Where-Object {.ProcessName -like '*synergy*'} | Select- ... ++ ~~~~~~~~~~~~ + + CategoryInfo : ObjectNotFound: (.ProcessName:String) [], CommandNotFoundException + + FullyQualifiedErrorId : CommandNotFoundException + +.ProcessName : The term '.ProcessName' is not recognized as the name of a cmdlet, function, script file, or operable +program. Check the spelling of the name, or if a path was included, verify that the path is correct and try again. +At line:1 char:29 ++ Get-Process | Where-Object {.ProcessName -like '*synergy*'} | Select- ... ++ ~~~~~~~~~~~~ + + CategoryInfo : ObjectNotFound: (.ProcessName:String) [], CommandNotFoundException + + FullyQualifiedErrorId : CommandNotFoundException + +.ProcessName : The term '.ProcessName' is not recognized as the name of a cmdlet, function, script file, or operable +program. Check the spelling of the name, or if a path was included, verify that the path is correct and try again. +At line:1 char:29 ++ Get-Process | Where-Object {.ProcessName -like '*synergy*'} | Select- ... ++ ~~~~~~~~~~~~ + + CategoryInfo : ObjectNotFound: (.ProcessName:String) [], CommandNotFoundException + + FullyQualifiedErrorId : CommandNotFoundException + +.ProcessName : The term '.ProcessName' is not recognized as the name of a cmdlet, function, script file, or operable +program. Check the spelling of the name, or if a path was included, verify that the path is correct and try again. +At line:1 char:29 ++ Get-Process | Where-Object {.ProcessName -like '*synergy*'} | Select- ... ++ ~~~~~~~~~~~~ + + CategoryInfo : ObjectNotFound: (.ProcessName:String) [], CommandNotFoundException + + FullyQualifiedErrorId : CommandNotFoundException + +.ProcessName : The term '.ProcessName' is not recognized as the name of a cmdlet, function, script file, or operable +program. Check the spelling of the name, or if a path was included, verify that the path is correct and try again. +At line:1 char:29 ++ Get-Process | Where-Object {.ProcessName -like '*synergy*'} | Select- ... ++ ~~~~~~~~~~~~ + + CategoryInfo : ObjectNotFound: (.ProcessName:String) [], CommandNotFoundException + + FullyQualifiedErrorId : CommandNotFoundException + +.ProcessName : The term '.ProcessName' is not recognized as the name of a cmdlet, function, script file, or operable +program. Check the spelling of the name, or if a path was included, verify that the path is correct and try again. +At line:1 char:29 ++ Get-Process | Where-Object {.ProcessName -like '*synergy*'} | Select- ... ++ ~~~~~~~~~~~~ + + CategoryInfo : ObjectNotFound: (.ProcessName:String) [], CommandNotFoundException + + FullyQualifiedErrorId : CommandNotFoundException + +.ProcessName : The term '.ProcessName' is not recognized as the name of a cmdlet, function, script file, or operable +program. Check the spelling of the name, or if a path was included, verify that the path is correct and try again. +At line:1 char:29 ++ Get-Process | Where-Object {.ProcessName -like '*synergy*'} | Select- ... ++ ~~~~~~~~~~~~ + + CategoryInfo : ObjectNotFound: (.ProcessName:String) [], CommandNotFoundException + + FullyQualifiedErrorId : CommandNotFoundException + +.ProcessName : The term '.ProcessName' is not recognized as the name of a cmdlet, function, script file, or operable +program. Check the spelling of the name, or if a path was included, verify that the path is correct and try again. +At line:1 char:29 ++ Get-Process | Where-Object {.ProcessName -like '*synergy*'} | Select- ... ++ ~~~~~~~~~~~~ + + CategoryInfo : ObjectNotFound: (.ProcessName:String) [], CommandNotFoundException + + FullyQualifiedErrorId : CommandNotFoundException + +.ProcessName : The term '.ProcessName' is not recognized as the name of a cmdlet, function, script file, or operable +program. Check the spelling of the name, or if a path was included, verify that the path is correct and try again. +At line:1 char:29 ++ Get-Process | Where-Object {.ProcessName -like '*synergy*'} | Select- ... ++ ~~~~~~~~~~~~ + + CategoryInfo : ObjectNotFound: (.ProcessName:String) [], CommandNotFoundException + + FullyQualifiedErrorId : CommandNotFoundException + +.ProcessName : The term '.ProcessName' is not recognized as the name of a cmdlet, function, script file, or operable +program. Check the spelling of the name, or if a path was included, verify that the path is correct and try again. +At line:1 char:29 ++ Get-Process | Where-Object {.ProcessName -like '*synergy*'} | Select- ... ++ ~~~~~~~~~~~~ + + CategoryInfo : ObjectNotFound: (.ProcessName:String) [], CommandNotFoundException + + FullyQualifiedErrorId : CommandNotFoundException + +.ProcessName : The term '.ProcessName' is not recognized as the name of a cmdlet, function, script file, or operable +program. Check the spelling of the name, or if a path was included, verify that the path is correct and try again. +At line:1 char:29 ++ Get-Process | Where-Object {.ProcessName -like '*synergy*'} | Select- ... ++ ~~~~~~~~~~~~ + + CategoryInfo : ObjectNotFound: (.ProcessName:String) [], CommandNotFoundException + + FullyQualifiedErrorId : CommandNotFoundException + +.ProcessName : The term '.ProcessName' is not recognized as the name of a cmdlet, function, script file, or operable +program. Check the spelling of the name, or if a path was included, verify that the path is correct and try again. +At line:1 char:29 ++ Get-Process | Where-Object {.ProcessName -like '*synergy*'} | Select- ... ++ ~~~~~~~~~~~~ + + CategoryInfo : ObjectNotFound: (.ProcessName:String) [], CommandNotFoundException + + FullyQualifiedErrorId : CommandNotFoundException + +.ProcessName : The term '.ProcessName' is not recognized as the name of a cmdlet, function, script file, or operable +program. Check the spelling of the name, or if a path was included, verify that the path is correct and try again. +At line:1 char:29 ++ Get-Process | Where-Object {.ProcessName -like '*synergy*'} | Select- ... ++ ~~~~~~~~~~~~ + + CategoryInfo : ObjectNotFound: (.ProcessName:String) [], CommandNotFoundException + + FullyQualifiedErrorId : CommandNotFoundException + +.ProcessName : The term '.ProcessName' is not recognized as the name of a cmdlet, function, script file, or operable +program. Check the spelling of the name, or if a path was included, verify that the path is correct and try again. +At line:1 char:29 ++ Get-Process | Where-Object {.ProcessName -like '*synergy*'} | Select- ... ++ ~~~~~~~~~~~~ + + CategoryInfo : ObjectNotFound: (.ProcessName:String) [], CommandNotFoundException + + FullyQualifiedErrorId : CommandNotFoundException + +.ProcessName : The term '.ProcessName' is not recognized as the name of a cmdlet, function, script file, or operable +program. Check the spelling of the name, or if a path was included, verify that the path is correct and try again. +At line:1 char:29 ++ Get-Process | Where-Object {.ProcessName -like '*synergy*'} | Select- ... ++ ~~~~~~~~~~~~ + + CategoryInfo : ObjectNotFound: (.ProcessName:String) [], CommandNotFoundException + + FullyQualifiedErrorId : CommandNotFoundException + +.ProcessName : The term '.ProcessName' is not recognized as the name of a cmdlet, function, script file, or operable +program. Check the spelling of the name, or if a path was included, verify that the path is correct and try again. +At line:1 char:29 ++ Get-Process | Where-Object {.ProcessName -like '*synergy*'} | Select- ... ++ ~~~~~~~~~~~~ + + CategoryInfo : ObjectNotFound: (.ProcessName:String) [], CommandNotFoundException + + FullyQualifiedErrorId : CommandNotFoundException + +.ProcessName : The term '.ProcessName' is not recognized as the name of a cmdlet, function, script file, or operable +program. Check the spelling of the name, or if a path was included, verify that the path is correct and try again. +At line:1 char:29 ++ Get-Process | Where-Object {.ProcessName -like '*synergy*'} | Select- ... ++ ~~~~~~~~~~~~ + + CategoryInfo : ObjectNotFound: (.ProcessName:String) [], CommandNotFoundException + + FullyQualifiedErrorId : CommandNotFoundException + +.ProcessName : The term '.ProcessName' is not recognized as the name of a cmdlet, function, script file, or operable +program. Check the spelling of the name, or if a path was included, verify that the path is correct and try again. +At line:1 char:29 ++ Get-Process | Where-Object {.ProcessName -like '*synergy*'} | Select- ... ++ ~~~~~~~~~~~~ + + CategoryInfo : ObjectNotFound: (.ProcessName:String) [], CommandNotFoundException + + FullyQualifiedErrorId : CommandNotFoundException + +.ProcessName : The term '.ProcessName' is not recognized as the name of a cmdlet, function, script file, or operable +program. Check the spelling of the name, or if a path was included, verify that the path is correct and try again. +At line:1 char:29 ++ Get-Process | Where-Object {.ProcessName -like '*synergy*'} | Select- ... ++ ~~~~~~~~~~~~ + + CategoryInfo : ObjectNotFound: (.ProcessName:String) [], CommandNotFoundException + + FullyQualifiedErrorId : CommandNotFoundException + +.ProcessName : The term '.ProcessName' is not recognized as the name of a cmdlet, function, script file, or operable +program. Check the spelling of the name, or if a path was included, verify that the path is correct and try again. +At line:1 char:29 ++ Get-Process | Where-Object {.ProcessName -like '*synergy*'} | Select- ... ++ ~~~~~~~~~~~~ + + CategoryInfo : ObjectNotFound: (.ProcessName:String) [], CommandNotFoundException + + FullyQualifiedErrorId : CommandNotFoundException + +.ProcessName : The term '.ProcessName' is not recognized as the name of a cmdlet, function, script file, or operable +program. Check the spelling of the name, or if a path was included, verify that the path is correct and try again. +At line:1 char:29 ++ Get-Process | Where-Object {.ProcessName -like '*synergy*'} | Select- ... ++ ~~~~~~~~~~~~ + + CategoryInfo : ObjectNotFound: (.ProcessName:String) [], CommandNotFoundException + + FullyQualifiedErrorId : CommandNotFoundException + +.ProcessName : The term '.ProcessName' is not recognized as the name of a cmdlet, function, script file, or operable +program. Check the spelling of the name, or if a path was included, verify that the path is correct and try again. +At line:1 char:29 ++ Get-Process | Where-Object {.ProcessName -like '*synergy*'} | Select- ... ++ ~~~~~~~~~~~~ + + CategoryInfo : ObjectNotFound: (.ProcessName:String) [], CommandNotFoundException + + FullyQualifiedErrorId : CommandNotFoundException + +.ProcessName : The term '.ProcessName' is not recognized as the name of a cmdlet, function, script file, or operable +program. Check the spelling of the name, or if a path was included, verify that the path is correct and try again. +At line:1 char:29 ++ Get-Process | Where-Object {.ProcessName -like '*synergy*'} | Select- ... ++ ~~~~~~~~~~~~ + + CategoryInfo : ObjectNotFound: (.ProcessName:String) [], CommandNotFoundException + + FullyQualifiedErrorId : CommandNotFoundException + +.ProcessName : The term '.ProcessName' is not recognized as the name of a cmdlet, function, script file, or operable +program. Check the spelling of the name, or if a path was included, verify that the path is correct and try again. +At line:1 char:29 ++ Get-Process | Where-Object {.ProcessName -like '*synergy*'} | Select- ... ++ ~~~~~~~~~~~~ + + CategoryInfo : ObjectNotFound: (.ProcessName:String) [], CommandNotFoundException + + FullyQualifiedErrorId : CommandNotFoundException + +.ProcessName : The term '.ProcessName' is not recognized as the name of a cmdlet, function, script file, or operable +program. Check the spelling of the name, or if a path was included, verify that the path is correct and try again. +At line:1 char:29 ++ Get-Process | Where-Object {.ProcessName -like '*synergy*'} | Select- ... ++ ~~~~~~~~~~~~ + + CategoryInfo : ObjectNotFound: (.ProcessName:String) [], CommandNotFoundException + + FullyQualifiedErrorId : CommandNotFoundException + +.ProcessName : The term '.ProcessName' is not recognized as the name of a cmdlet, function, script file, or operable +program. Check the spelling of the name, or if a path was included, verify that the path is correct and try again. +At line:1 char:29 ++ Get-Process | Where-Object {.ProcessName -like '*synergy*'} | Select- ... ++ ~~~~~~~~~~~~ + + CategoryInfo : ObjectNotFound: (.ProcessName:String) [], CommandNotFoundException + + FullyQualifiedErrorId : CommandNotFoundException + +.ProcessName : The term '.ProcessName' is not recognized as the name of a cmdlet, function, script file, or operable +program. Check the spelling of the name, or if a path was included, verify that the path is correct and try again. +At line:1 char:29 ++ Get-Process | Where-Object {.ProcessName -like '*synergy*'} | Select- ... ++ ~~~~~~~~~~~~ + + CategoryInfo : ObjectNotFound: (.ProcessName:String) [], CommandNotFoundException + + FullyQualifiedErrorId : CommandNotFoundException + +.ProcessName : The term '.ProcessName' is not recognized as the name of a cmdlet, function, script file, or operable +program. Check the spelling of the name, or if a path was included, verify that the path is correct and try again. +At line:1 char:29 ++ Get-Process | Where-Object {.ProcessName -like '*synergy*'} | Select- ... ++ ~~~~~~~~~~~~ + + CategoryInfo : ObjectNotFound: (.ProcessName:String) [], CommandNotFoundException + + FullyQualifiedErrorId : CommandNotFoundException + +.ProcessName : The term '.ProcessName' is not recognized as the name of a cmdlet, function, script file, or operable +program. Check the spelling of the name, or if a path was included, verify that the path is correct and try again. +At line:1 char:29 ++ Get-Process | Where-Object {.ProcessName -like '*synergy*'} | Select- ... ++ ~~~~~~~~~~~~ + + CategoryInfo : ObjectNotFound: (.ProcessName:String) [], CommandNotFoundException + + FullyQualifiedErrorId : CommandNotFoundException + +.ProcessName : The term '.ProcessName' is not recognized as the name of a cmdlet, function, script file, or operable +program. Check the spelling of the name, or if a path was included, verify that the path is correct and try again. +At line:1 char:29 ++ Get-Process | Where-Object {.ProcessName -like '*synergy*'} | Select- ... ++ ~~~~~~~~~~~~ + + CategoryInfo : ObjectNotFound: (.ProcessName:String) [], CommandNotFoundException + + FullyQualifiedErrorId : CommandNotFoundException + +.ProcessName : The term '.ProcessName' is not recognized as the name of a cmdlet, function, script file, or operable +program. Check the spelling of the name, or if a path was included, verify that the path is correct and try again. +At line:1 char:29 ++ Get-Process | Where-Object {.ProcessName -like '*synergy*'} | Select- ... ++ ~~~~~~~~~~~~ + + CategoryInfo : ObjectNotFound: (.ProcessName:String) [], CommandNotFoundException + + FullyQualifiedErrorId : CommandNotFoundException + +.ProcessName : The term '.ProcessName' is not recognized as the name of a cmdlet, function, script file, or operable +program. Check the spelling of the name, or if a path was included, verify that the path is correct and try again. +At line:1 char:29 ++ Get-Process | Where-Object {.ProcessName -like '*synergy*'} | Select- ... ++ ~~~~~~~~~~~~ + + CategoryInfo : ObjectNotFound: (.ProcessName:String) [], CommandNotFoundException + + FullyQualifiedErrorId : CommandNotFoundException + +.ProcessName : The term '.ProcessName' is not recognized as the name of a cmdlet, function, script file, or operable +program. Check the spelling of the name, or if a path was included, verify that the path is correct and try again. +At line:1 char:29 ++ Get-Process | Where-Object {.ProcessName -like '*synergy*'} | Select- ... ++ ~~~~~~~~~~~~ + + CategoryInfo : ObjectNotFound: (.ProcessName:String) [], CommandNotFoundException + + FullyQualifiedErrorId : CommandNotFoundException + +.ProcessName : The term '.ProcessName' is not recognized as the name of a cmdlet, function, script file, or operable +program. Check the spelling of the name, or if a path was included, verify that the path is correct and try again. +At line:1 char:29 ++ Get-Process | Where-Object {.ProcessName -like '*synergy*'} | Select- ... ++ ~~~~~~~~~~~~ + + CategoryInfo : ObjectNotFound: (.ProcessName:String) [], CommandNotFoundException + + FullyQualifiedErrorId : CommandNotFoundException + +.ProcessName : The term '.ProcessName' is not recognized as the name of a cmdlet, function, script file, or operable +program. Check the spelling of the name, or if a path was included, verify that the path is correct and try again. +At line:1 char:29 ++ Get-Process | Where-Object {.ProcessName -like '*synergy*'} | Select- ... ++ ~~~~~~~~~~~~ + + CategoryInfo : ObjectNotFound: (.ProcessName:String) [], CommandNotFoundException + + FullyQualifiedErrorId : CommandNotFoundException + +.ProcessName : The term '.ProcessName' is not recognized as the name of a cmdlet, function, script file, or operable +program. Check the spelling of the name, or if a path was included, verify that the path is correct and try again. +At line:1 char:29 ++ Get-Process | Where-Object {.ProcessName -like '*synergy*'} | Select- ... ++ ~~~~~~~~~~~~ + + CategoryInfo : ObjectNotFound: (.ProcessName:String) [], CommandNotFoundException + + FullyQualifiedErrorId : CommandNotFoundException + +.ProcessName : The term '.ProcessName' is not recognized as the name of a cmdlet, function, script file, or operable +program. Check the spelling of the name, or if a path was included, verify that the path is correct and try again. +At line:1 char:29 ++ Get-Process | Where-Object {.ProcessName -like '*synergy*'} | Select- ... ++ ~~~~~~~~~~~~ + + CategoryInfo : ObjectNotFound: (.ProcessName:String) [], CommandNotFoundException + + FullyQualifiedErrorId : CommandNotFoundException + +.ProcessName : The term '.ProcessName' is not recognized as the name of a cmdlet, function, script file, or operable +program. Check the spelling of the name, or if a path was included, verify that the path is correct and try again. +At line:1 char:29 ++ Get-Process | Where-Object {.ProcessName -like '*synergy*'} | Select- ... ++ ~~~~~~~~~~~~ + + CategoryInfo : ObjectNotFound: (.ProcessName:String) [], CommandNotFoundException + + FullyQualifiedErrorId : CommandNotFoundException + +.ProcessName : The term '.ProcessName' is not recognized as the name of a cmdlet, function, script file, or operable +program. Check the spelling of the name, or if a path was included, verify that the path is correct and try again. +At line:1 char:29 ++ Get-Process | Where-Object {.ProcessName -like '*synergy*'} | Select- ... ++ ~~~~~~~~~~~~ + + CategoryInfo : ObjectNotFound: (.ProcessName:String) [], CommandNotFoundException + + FullyQualifiedErrorId : CommandNotFoundException + +.ProcessName : The term '.ProcessName' is not recognized as the name of a cmdlet, function, script file, or operable +program. Check the spelling of the name, or if a path was included, verify that the path is correct and try again. +At line:1 char:29 ++ Get-Process | Where-Object {.ProcessName -like '*synergy*'} | Select- ... ++ ~~~~~~~~~~~~ + + CategoryInfo : ObjectNotFound: (.ProcessName:String) [], CommandNotFoundException + + FullyQualifiedErrorId : CommandNotFoundException + +.ProcessName : The term '.ProcessName' is not recognized as the name of a cmdlet, function, script file, or operable +program. Check the spelling of the name, or if a path was included, verify that the path is correct and try again. +At line:1 char:29 ++ Get-Process | Where-Object {.ProcessName -like '*synergy*'} | Select- ... ++ ~~~~~~~~~~~~ + + CategoryInfo : ObjectNotFound: (.ProcessName:String) [], CommandNotFoundException + + FullyQualifiedErrorId : CommandNotFoundException + +.ProcessName : The term '.ProcessName' is not recognized as the name of a cmdlet, function, script file, or operable +program. Check the spelling of the name, or if a path was included, verify that the path is correct and try again. +At line:1 char:29 ++ Get-Process | Where-Object {.ProcessName -like '*synergy*'} | Select- ... ++ ~~~~~~~~~~~~ + + CategoryInfo : ObjectNotFound: (.ProcessName:String) [], CommandNotFoundException + + FullyQualifiedErrorId : CommandNotFoundException + +.ProcessName : The term '.ProcessName' is not recognized as the name of a cmdlet, function, script file, or operable +program. Check the spelling of the name, or if a path was included, verify that the path is correct and try again. +At line:1 char:29 ++ Get-Process | Where-Object {.ProcessName -like '*synergy*'} | Select- ... ++ ~~~~~~~~~~~~ + + CategoryInfo : ObjectNotFound: (.ProcessName:String) [], CommandNotFoundException + + FullyQualifiedErrorId : CommandNotFoundException + +.ProcessName : The term '.ProcessName' is not recognized as the name of a cmdlet, function, script file, or operable +program. Check the spelling of the name, or if a path was included, verify that the path is correct and try again. +At line:1 char:29 ++ Get-Process | Where-Object {.ProcessName -like '*synergy*'} | Select- ... ++ ~~~~~~~~~~~~ + + CategoryInfo : ObjectNotFound: (.ProcessName:String) [], CommandNotFoundException + + FullyQualifiedErrorId : CommandNotFoundException + +.ProcessName : The term '.ProcessName' is not recognized as the name of a cmdlet, function, script file, or operable +program. Check the spelling of the name, or if a path was included, verify that the path is correct and try again. +At line:1 char:29 ++ Get-Process | Where-Object {.ProcessName -like '*synergy*'} | Select- ... ++ ~~~~~~~~~~~~ + + CategoryInfo : ObjectNotFound: (.ProcessName:String) [], CommandNotFoundException + + FullyQualifiedErrorId : CommandNotFoundException + +.ProcessName : The term '.ProcessName' is not recognized as the name of a cmdlet, function, script file, or operable +program. Check the spelling of the name, or if a path was included, verify that the path is correct and try again. +At line:1 char:29 ++ Get-Process | Where-Object {.ProcessName -like '*synergy*'} | Select- ... ++ ~~~~~~~~~~~~ + + CategoryInfo : ObjectNotFound: (.ProcessName:String) [], CommandNotFoundException + + FullyQualifiedErrorId : CommandNotFoundException + +.ProcessName : The term '.ProcessName' is not recognized as the name of a cmdlet, function, script file, or operable +program. Check the spelling of the name, or if a path was included, verify that the path is correct and try again. +At line:1 char:29 ++ Get-Process | Where-Object {.ProcessName -like '*synergy*'} | Select- ... ++ ~~~~~~~~~~~~ + + CategoryInfo : ObjectNotFound: (.ProcessName:String) [], CommandNotFoundException + + FullyQualifiedErrorId : CommandNotFoundException + +.ProcessName : The term '.ProcessName' is not recognized as the name of a cmdlet, function, script file, or operable +program. Check the spelling of the name, or if a path was included, verify that the path is correct and try again. +At line:1 char:29 ++ Get-Process | Where-Object {.ProcessName -like '*synergy*'} | Select- ... ++ ~~~~~~~~~~~~ + + CategoryInfo : ObjectNotFound: (.ProcessName:String) [], CommandNotFoundException + + FullyQualifiedErrorId : CommandNotFoundException + +.ProcessName : The term '.ProcessName' is not recognized as the name of a cmdlet, function, script file, or operable +program. Check the spelling of the name, or if a path was included, verify that the path is correct and try again. +At line:1 char:29 ++ Get-Process | Where-Object {.ProcessName -like '*synergy*'} | Select- ... ++ ~~~~~~~~~~~~ + + CategoryInfo : ObjectNotFound: (.ProcessName:String) [], CommandNotFoundException + + FullyQualifiedErrorId : CommandNotFoundException + +.ProcessName : The term '.ProcessName' is not recognized as the name of a cmdlet, function, script file, or operable +program. Check the spelling of the name, or if a path was included, verify that the path is correct and try again. +At line:1 char:29 ++ Get-Process | Where-Object {.ProcessName -like '*synergy*'} | Select- ... ++ ~~~~~~~~~~~~ + + CategoryInfo : ObjectNotFound: (.ProcessName:String) [], CommandNotFoundException + + FullyQualifiedErrorId : CommandNotFoundException + +.ProcessName : The term '.ProcessName' is not recognized as the name of a cmdlet, function, script file, or operable +program. Check the spelling of the name, or if a path was included, verify that the path is correct and try again. +At line:1 char:29 ++ Get-Process | Where-Object {.ProcessName -like '*synergy*'} | Select- ... ++ ~~~~~~~~~~~~ + + CategoryInfo : ObjectNotFound: (.ProcessName:String) [], CommandNotFoundException + + FullyQualifiedErrorId : CommandNotFoundException + +.ProcessName : The term '.ProcessName' is not recognized as the name of a cmdlet, function, script file, or operable +program. Check the spelling of the name, or if a path was included, verify that the path is correct and try again. +At line:1 char:29 ++ Get-Process | Where-Object {.ProcessName -like '*synergy*'} | Select- ... ++ ~~~~~~~~~~~~ + + CategoryInfo : ObjectNotFound: (.ProcessName:String) [], CommandNotFoundException + + FullyQualifiedErrorId : CommandNotFoundException + +.ProcessName : The term '.ProcessName' is not recognized as the name of a cmdlet, function, script file, or operable +program. Check the spelling of the name, or if a path was included, verify that the path is correct and try again. +At line:1 char:29 ++ Get-Process | Where-Object {.ProcessName -like '*synergy*'} | Select- ... ++ ~~~~~~~~~~~~ + + CategoryInfo : ObjectNotFound: (.ProcessName:String) [], CommandNotFoundException + + FullyQualifiedErrorId : CommandNotFoundException + +.ProcessName : The term '.ProcessName' is not recognized as the name of a cmdlet, function, script file, or operable +program. Check the spelling of the name, or if a path was included, verify that the path is correct and try again. +At line:1 char:29 ++ Get-Process | Where-Object {.ProcessName -like '*synergy*'} | Select- ... ++ ~~~~~~~~~~~~ + + CategoryInfo : ObjectNotFound: (.ProcessName:String) [], CommandNotFoundException + + FullyQualifiedErrorId : CommandNotFoundException + +.ProcessName : The term '.ProcessName' is not recognized as the name of a cmdlet, function, script file, or operable +program. Check the spelling of the name, or if a path was included, verify that the path is correct and try again. +At line:1 char:29 ++ Get-Process | Where-Object {.ProcessName -like '*synergy*'} | Select- ... ++ ~~~~~~~~~~~~ + + CategoryInfo : ObjectNotFound: (.ProcessName:String) [], CommandNotFoundException + + FullyQualifiedErrorId : CommandNotFoundException + +.ProcessName : The term '.ProcessName' is not recognized as the name of a cmdlet, function, script file, or operable +program. Check the spelling of the name, or if a path was included, verify that the path is correct and try again. +At line:1 char:29 ++ Get-Process | Where-Object {.ProcessName -like '*synergy*'} | Select- ... ++ ~~~~~~~~~~~~ + + CategoryInfo : ObjectNotFound: (.ProcessName:String) [], CommandNotFoundException + + FullyQualifiedErrorId : CommandNotFoundException + +.ProcessName : The term '.ProcessName' is not recognized as the name of a cmdlet, function, script file, or operable +program. Check the spelling of the name, or if a path was included, verify that the path is correct and try again. +At line:1 char:29 ++ Get-Process | Where-Object {.ProcessName -like '*synergy*'} | Select- ... ++ ~~~~~~~~~~~~ + + CategoryInfo : ObjectNotFound: (.ProcessName:String) [], CommandNotFoundException + + FullyQualifiedErrorId : CommandNotFoundException + +.ProcessName : The term '.ProcessName' is not recognized as the name of a cmdlet, function, script file, or operable +program. Check the spelling of the name, or if a path was included, verify that the path is correct and try again. +At line:1 char:29 ++ Get-Process | Where-Object {.ProcessName -like '*synergy*'} | Select- ... ++ ~~~~~~~~~~~~ + + CategoryInfo : ObjectNotFound: (.ProcessName:String) [], CommandNotFoundException + + FullyQualifiedErrorId : CommandNotFoundException + +.ProcessName : The term '.ProcessName' is not recognized as the name of a cmdlet, function, script file, or operable +program. Check the spelling of the name, or if a path was included, verify that the path is correct and try again. +At line:1 char:29 ++ Get-Process | Where-Object {.ProcessName -like '*synergy*'} | Select- ... ++ ~~~~~~~~~~~~ + + CategoryInfo : ObjectNotFound: (.ProcessName:String) [], CommandNotFoundException + + FullyQualifiedErrorId : CommandNotFoundException + +.ProcessName : The term '.ProcessName' is not recognized as the name of a cmdlet, function, script file, or operable +program. Check the spelling of the name, or if a path was included, verify that the path is correct and try again. +At line:1 char:29 ++ Get-Process | Where-Object {.ProcessName -like '*synergy*'} | Select- ... ++ ~~~~~~~~~~~~ + + CategoryInfo : ObjectNotFound: (.ProcessName:String) [], CommandNotFoundException + + FullyQualifiedErrorId : CommandNotFoundException + +.ProcessName : The term '.ProcessName' is not recognized as the name of a cmdlet, function, script file, or operable +program. Check the spelling of the name, or if a path was included, verify that the path is correct and try again. +At line:1 char:29 ++ Get-Process | Where-Object {.ProcessName -like '*synergy*'} | Select- ... ++ ~~~~~~~~~~~~ + + CategoryInfo : ObjectNotFound: (.ProcessName:String) [], CommandNotFoundException + + FullyQualifiedErrorId : CommandNotFoundException + +.ProcessName : The term '.ProcessName' is not recognized as the name of a cmdlet, function, script file, or operable +program. Check the spelling of the name, or if a path was included, verify that the path is correct and try again. +At line:1 char:29 ++ Get-Process | Where-Object {.ProcessName -like '*synergy*'} | Select- ... ++ ~~~~~~~~~~~~ + + CategoryInfo : ObjectNotFound: (.ProcessName:String) [], CommandNotFoundException + + FullyQualifiedErrorId : CommandNotFoundException + +.ProcessName : The term '.ProcessName' is not recognized as the name of a cmdlet, function, script file, or operable +program. Check the spelling of the name, or if a path was included, verify that the path is correct and try again. +At line:1 char:29 ++ Get-Process | Where-Object {.ProcessName -like '*synergy*'} | Select- ... ++ ~~~~~~~~~~~~ + + CategoryInfo : ObjectNotFound: (.ProcessName:String) [], CommandNotFoundException + + FullyQualifiedErrorId : CommandNotFoundException + +.ProcessName : The term '.ProcessName' is not recognized as the name of a cmdlet, function, script file, or operable +program. Check the spelling of the name, or if a path was included, verify that the path is correct and try again. +At line:1 char:29 ++ Get-Process | Where-Object {.ProcessName -like '*synergy*'} | Select- ... ++ ~~~~~~~~~~~~ + + CategoryInfo : ObjectNotFound: (.ProcessName:String) [], CommandNotFoundException + + FullyQualifiedErrorId : CommandNotFoundException + +.ProcessName : The term '.ProcessName' is not recognized as the name of a cmdlet, function, script file, or operable +program. Check the spelling of the name, or if a path was included, verify that the path is correct and try again. +At line:1 char:29 ++ Get-Process | Where-Object {.ProcessName -like '*synergy*'} | Select- ... ++ ~~~~~~~~~~~~ + + CategoryInfo : ObjectNotFound: (.ProcessName:String) [], CommandNotFoundException + + FullyQualifiedErrorId : CommandNotFoundException + +.ProcessName : The term '.ProcessName' is not recognized as the name of a cmdlet, function, script file, or operable +program. Check the spelling of the name, or if a path was included, verify that the path is correct and try again. +At line:1 char:29 ++ Get-Process | Where-Object {.ProcessName -like '*synergy*'} | Select- ... ++ ~~~~~~~~~~~~ + + CategoryInfo : ObjectNotFound: (.ProcessName:String) [], CommandNotFoundException + + FullyQualifiedErrorId : CommandNotFoundException + +.ProcessName : The term '.ProcessName' is not recognized as the name of a cmdlet, function, script file, or operable +program. Check the spelling of the name, or if a path was included, verify that the path is correct and try again. +At line:1 char:29 ++ Get-Process | Where-Object {.ProcessName -like '*synergy*'} | Select- ... ++ ~~~~~~~~~~~~ + + CategoryInfo : ObjectNotFound: (.ProcessName:String) [], CommandNotFoundException + + FullyQualifiedErrorId : CommandNotFoundException + +.ProcessName : The term '.ProcessName' is not recognized as the name of a cmdlet, function, script file, or operable +program. Check the spelling of the name, or if a path was included, verify that the path is correct and try again. +At line:1 char:29 ++ Get-Process | Where-Object {.ProcessName -like '*synergy*'} | Select- ... ++ ~~~~~~~~~~~~ + + CategoryInfo : ObjectNotFound: (.ProcessName:String) [], CommandNotFoundException + + FullyQualifiedErrorId : CommandNotFoundException + +.ProcessName : The term '.ProcessName' is not recognized as the name of a cmdlet, function, script file, or operable +program. Check the spelling of the name, or if a path was included, verify that the path is correct and try again. +At line:1 char:29 ++ Get-Process | Where-Object {.ProcessName -like '*synergy*'} | Select- ... ++ ~~~~~~~~~~~~ + + CategoryInfo : ObjectNotFound: (.ProcessName:String) [], CommandNotFoundException + + FullyQualifiedErrorId : CommandNotFoundException + +.ProcessName : The term '.ProcessName' is not recognized as the name of a cmdlet, function, script file, or operable +program. Check the spelling of the name, or if a path was included, verify that the path is correct and try again. +At line:1 char:29 ++ Get-Process | Where-Object {.ProcessName -like '*synergy*'} | Select- ... ++ ~~~~~~~~~~~~ + + CategoryInfo : ObjectNotFound: (.ProcessName:String) [], CommandNotFoundException + + FullyQualifiedErrorId : CommandNotFoundException + +.ProcessName : The term '.ProcessName' is not recognized as the name of a cmdlet, function, script file, or operable +program. Check the spelling of the name, or if a path was included, verify that the path is correct and try again. +At line:1 char:29 ++ Get-Process | Where-Object {.ProcessName -like '*synergy*'} | Select- ... ++ ~~~~~~~~~~~~ + + CategoryInfo : ObjectNotFound: (.ProcessName:String) [], CommandNotFoundException + + FullyQualifiedErrorId : CommandNotFoundException + +.ProcessName : The term '.ProcessName' is not recognized as the name of a cmdlet, function, script file, or operable +program. Check the spelling of the name, or if a path was included, verify that the path is correct and try again. +At line:1 char:29 ++ Get-Process | Where-Object {.ProcessName -like '*synergy*'} | Select- ... ++ ~~~~~~~~~~~~ + + CategoryInfo : ObjectNotFound: (.ProcessName:String) [], CommandNotFoundException + + FullyQualifiedErrorId : CommandNotFoundException + +.ProcessName : The term '.ProcessName' is not recognized as the name of a cmdlet, function, script file, or operable +program. Check the spelling of the name, or if a path was included, verify that the path is correct and try again. +At line:1 char:29 ++ Get-Process | Where-Object {.ProcessName -like '*synergy*'} | Select- ... ++ ~~~~~~~~~~~~ + + CategoryInfo : ObjectNotFound: (.ProcessName:String) [], CommandNotFoundException + + FullyQualifiedErrorId : CommandNotFoundException + +.ProcessName : The term '.ProcessName' is not recognized as the name of a cmdlet, function, script file, or operable +program. Check the spelling of the name, or if a path was included, verify that the path is correct and try again. +At line:1 char:29 ++ Get-Process | Where-Object {.ProcessName -like '*synergy*'} | Select- ... ++ ~~~~~~~~~~~~ + + CategoryInfo : ObjectNotFound: (.ProcessName:String) [], CommandNotFoundException + + FullyQualifiedErrorId : CommandNotFoundException + +.ProcessName : The term '.ProcessName' is not recognized as the name of a cmdlet, function, script file, or operable +program. Check the spelling of the name, or if a path was included, verify that the path is correct and try again. +At line:1 char:29 ++ Get-Process | Where-Object {.ProcessName -like '*synergy*'} | Select- ... ++ ~~~~~~~~~~~~ + + CategoryInfo : ObjectNotFound: (.ProcessName:String) [], CommandNotFoundException + + FullyQualifiedErrorId : CommandNotFoundException + +.ProcessName : The term '.ProcessName' is not recognized as the name of a cmdlet, function, script file, or operable +program. Check the spelling of the name, or if a path was included, verify that the path is correct and try again. +At line:1 char:29 ++ Get-Process | Where-Object {.ProcessName -like '*synergy*'} | Select- ... ++ ~~~~~~~~~~~~ + + CategoryInfo : ObjectNotFound: (.ProcessName:String) [], CommandNotFoundException + + FullyQualifiedErrorId : CommandNotFoundException + +.ProcessName : The term '.ProcessName' is not recognized as the name of a cmdlet, function, script file, or operable +program. Check the spelling of the name, or if a path was included, verify that the path is correct and try again. +At line:1 char:29 ++ Get-Process | Where-Object {.ProcessName -like '*synergy*'} | Select- ... ++ ~~~~~~~~~~~~ + + CategoryInfo : ObjectNotFound: (.ProcessName:String) [], CommandNotFoundException + + FullyQualifiedErrorId : CommandNotFoundException + +.ProcessName : The term '.ProcessName' is not recognized as the name of a cmdlet, function, script file, or operable +program. Check the spelling of the name, or if a path was included, verify that the path is correct and try again. +At line:1 char:29 ++ Get-Process | Where-Object {.ProcessName -like '*synergy*'} | Select- ... ++ ~~~~~~~~~~~~ + + CategoryInfo : ObjectNotFound: (.ProcessName:String) [], CommandNotFoundException + + FullyQualifiedErrorId : CommandNotFoundException + +.ProcessName : The term '.ProcessName' is not recognized as the name of a cmdlet, function, script file, or operable +program. Check the spelling of the name, or if a path was included, verify that the path is correct and try again. +At line:1 char:29 ++ Get-Process | Where-Object {.ProcessName -like '*synergy*'} | Select- ... ++ ~~~~~~~~~~~~ + + CategoryInfo : ObjectNotFound: (.ProcessName:String) [], CommandNotFoundException + + FullyQualifiedErrorId : CommandNotFoundException + +.ProcessName : The term '.ProcessName' is not recognized as the name of a cmdlet, function, script file, or operable +program. Check the spelling of the name, or if a path was included, verify that the path is correct and try again. +At line:1 char:29 ++ Get-Process | Where-Object {.ProcessName -like '*synergy*'} | Select- ... ++ ~~~~~~~~~~~~ + + CategoryInfo : ObjectNotFound: (.ProcessName:String) [], CommandNotFoundException + + FullyQualifiedErrorId : CommandNotFoundException + +.ProcessName : The term '.ProcessName' is not recognized as the name of a cmdlet, function, script file, or operable +program. Check the spelling of the name, or if a path was included, verify that the path is correct and try again. +At line:1 char:29 ++ Get-Process | Where-Object {.ProcessName -like '*synergy*'} | Select- ... ++ ~~~~~~~~~~~~ + + CategoryInfo : ObjectNotFound: (.ProcessName:String) [], CommandNotFoundException + + FullyQualifiedErrorId : CommandNotFoundException + +.ProcessName : The term '.ProcessName' is not recognized as the name of a cmdlet, function, script file, or operable +program. Check the spelling of the name, or if a path was included, verify that the path is correct and try again. +At line:1 char:29 ++ Get-Process | Where-Object {.ProcessName -like '*synergy*'} | Select- ... ++ ~~~~~~~~~~~~ + + CategoryInfo : ObjectNotFound: (.ProcessName:String) [], CommandNotFoundException + + FullyQualifiedErrorId : CommandNotFoundException + +.ProcessName : The term '.ProcessName' is not recognized as the name of a cmdlet, function, script file, or operable +program. Check the spelling of the name, or if a path was included, verify that the path is correct and try again. +At line:1 char:29 ++ Get-Process | Where-Object {.ProcessName -like '*synergy*'} | Select- ... ++ ~~~~~~~~~~~~ + + CategoryInfo : ObjectNotFound: (.ProcessName:String) [], CommandNotFoundException + + FullyQualifiedErrorId : CommandNotFoundException + +.ProcessName : The term '.ProcessName' is not recognized as the name of a cmdlet, function, script file, or operable +program. Check the spelling of the name, or if a path was included, verify that the path is correct and try again. +At line:1 char:29 ++ Get-Process | Where-Object {.ProcessName -like '*synergy*'} | Select- ... ++ ~~~~~~~~~~~~ + + CategoryInfo : ObjectNotFound: (.ProcessName:String) [], CommandNotFoundException + + FullyQualifiedErrorId : CommandNotFoundException + +.ProcessName : The term '.ProcessName' is not recognized as the name of a cmdlet, function, script file, or operable +program. Check the spelling of the name, or if a path was included, verify that the path is correct and try again. +At line:1 char:29 ++ Get-Process | Where-Object {.ProcessName -like '*synergy*'} | Select- ... ++ ~~~~~~~~~~~~ + + CategoryInfo : ObjectNotFound: (.ProcessName:String) [], CommandNotFoundException + + FullyQualifiedErrorId : CommandNotFoundException + +.ProcessName : The term '.ProcessName' is not recognized as the name of a cmdlet, function, script file, or operable +program. Check the spelling of the name, or if a path was included, verify that the path is correct and try again. +At line:1 char:29 ++ Get-Process | Where-Object {.ProcessName -like '*synergy*'} | Select- ... ++ ~~~~~~~~~~~~ + + CategoryInfo : ObjectNotFound: (.ProcessName:String) [], CommandNotFoundException + + FullyQualifiedErrorId : CommandNotFoundException + +.ProcessName : The term '.ProcessName' is not recognized as the name of a cmdlet, function, script file, or operable +program. Check the spelling of the name, or if a path was included, verify that the path is correct and try again. +At line:1 char:29 ++ Get-Process | Where-Object {.ProcessName -like '*synergy*'} | Select- ... ++ ~~~~~~~~~~~~ + + CategoryInfo : ObjectNotFound: (.ProcessName:String) [], CommandNotFoundException + + FullyQualifiedErrorId : CommandNotFoundException + +.ProcessName : The term '.ProcessName' is not recognized as the name of a cmdlet, function, script file, or operable +program. Check the spelling of the name, or if a path was included, verify that the path is correct and try again. +At line:1 char:29 ++ Get-Process | Where-Object {.ProcessName -like '*synergy*'} | Select- ... ++ ~~~~~~~~~~~~ + + CategoryInfo : ObjectNotFound: (.ProcessName:String) [], CommandNotFoundException + + FullyQualifiedErrorId : CommandNotFoundException + +.ProcessName : The term '.ProcessName' is not recognized as the name of a cmdlet, function, script file, or operable +program. Check the spelling of the name, or if a path was included, verify that the path is correct and try again. +At line:1 char:29 ++ Get-Process | Where-Object {.ProcessName -like '*synergy*'} | Select- ... ++ ~~~~~~~~~~~~ + + CategoryInfo : ObjectNotFound: (.ProcessName:String) [], CommandNotFoundException + + FullyQualifiedErrorId : CommandNotFoundException + + +``` +
+
+ +--- + + +Synergy is likely intercepting Alt+R. It intercepts keyboard input to share it across computers, which can block shortcuts. + +## **Most likely culprit: Synergy** + +1. Open Synergy (check the system tray for the Synergy icon) +2. Go to Settings or Preferences +3. Look for "Hotkeys" or "Keyboard shortcuts" +4. Check if Alt+R is bound to anything (e.g., switching screens) +5. Either disable the hotkey or change it + +**Quick test:** Temporarily quit Synergy (right-click the tray icon → Quit) and test Alt+R in Blender. + +## **Other possibilities to check:** + +**AMD Radeon Software:** +- Open Radeon Software (RadeonSoftware.exe is running) +- Check for hotkey settings, especially recording/overlay shortcuts + +**MSI Afterburner:** +- Open MSI Afterburner +- Check Settings → General → Global hotkeys + +**SignalRGB:** +- Open SignalRGB +- Check for any hotkey bindings + +**Windows Accessibility:** +- Settings → Ease of Access → Keyboard +- Check if Sticky Keys, Filter Keys, or other features are enabled + +Start with Synergy; it’s the most likely cause. If quitting it fixes Alt+R, adjust its hotkey settings. + +--- + +_**User**_ + +It was radeon. I turned off hotkeys and it works now. + +--- + +_**Agent (model default, mode Agent)**_ + + +AMD Radeon Software was intercepting Alt+R. Disabling its hotkeys should resolve it. + +Radeon Software often uses Alt+R for recording/overlay shortcuts, which can block shortcuts in other apps like Blender. + +If you need Radeon hotkeys later, you can: +- Change the Alt+R binding in Radeon Software settings +- Use a different modifier (e.g., Ctrl+Alt+R) +- Keep hotkeys disabled if you don’t use them + +Alt+R should now work in Blender. + +--- + diff --git a/Assets/Blends/Char/Vanessa_v2.0.blend b/Assets/Blends/Char/Vanessa_v2.0.blend index abb8b71..bfeaa8a 100644 --- a/Assets/Blends/Char/Vanessa_v2.0.blend +++ b/Assets/Blends/Char/Vanessa_v2.0.blend @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:6c3bbf16a178a24c477170da014e538527ee1a9a9766af54fcf3bcaf60245c92 -size 4225324 +oid sha256:2e7ac996fc95d4f113fd1270a1cb8fb61defe4def2f463f3a1e250c359cf35b9 +size 4226761 diff --git a/Blends/animations/FreddyEpstein/FreddyEpstein.blend b/Blends/animations/FreddyEpstein/FreddyEpstein.blend index 628e6f8..ea6ab5d 100644 --- a/Blends/animations/FreddyEpstein/FreddyEpstein.blend +++ b/Blends/animations/FreddyEpstein/FreddyEpstein.blend @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:e4e8fe1f79aa17053d64584fd8d9a04f6b6f040aad5db1bfab93bf7db7cd5ce8 -size 973174 +oid sha256:0da215568b4aebb723754ab3205a05c288c11b4b0b9bf2add5961d26edf2431f +size 1339466