15438 lines
897 KiB
Markdown
15438 lines
897 KiB
Markdown
|
|
<!-- Generated by SpecStory, Markdown v2.1.0 -->
|
|||
|
|
|
|||
|
|
<!-- cursor Session d4fd527e-c079-4155-b318-05dd0453b71d (2026-01-27 01:19Z) -->
|
|||
|
|
|
|||
|
|
# 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 data-tool-type="unknown" data-tool-name="semantic_search_full">
|
|||
|
|
<details>
|
|||
|
|
<summary>Tool use: **semantic_search_full**</summary>
|
|||
|
|
|
|||
|
|
|
|||
|
|
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**
|
|||
|
|
|
|||
|
|
|
|||
|
|
</details>
|
|||
|
|
</tool-use>
|
|||
|
|
|
|||
|
|
---
|
|||
|
|
|
|||
|
|
<tool-use data-tool-type="generic" data-tool-name="glob_file_search">
|
|||
|
|
<details>
|
|||
|
|
<summary>Tool use: **glob_file_search** • Searched codebase "undefined" • **0** result in **1** directory</summary>
|
|||
|
|
|
|||
|
|
Directory: **undefined** (0 file)
|
|||
|
|
|
|||
|
|
</details>
|
|||
|
|
</tool-use>
|
|||
|
|
|
|||
|
|
---
|
|||
|
|
|
|||
|
|
<tool-use data-tool-type="generic" data-tool-name="glob_file_search">
|
|||
|
|
<details>
|
|||
|
|
<summary>Tool use: **glob_file_search** • Searched codebase "undefined" • **0** result in **1** directory</summary>
|
|||
|
|
|
|||
|
|
Directory: **undefined** (0 file)
|
|||
|
|
|
|||
|
|
</details>
|
|||
|
|
</tool-use>
|
|||
|
|
|
|||
|
|
---
|
|||
|
|
|
|||
|
|
<tool-use data-tool-type="read" data-tool-name="read_file_v2">
|
|||
|
|
<details><summary>Tool use: **read_file_v2** • Read file: D:\2025-12-28 ytshorts gigaproj\.config\config.json</summary>
|
|||
|
|
|
|||
|
|
</details>
|
|||
|
|
</tool-use>
|
|||
|
|
|
|||
|
|
---
|
|||
|
|
|
|||
|
|
Checking Cursor's keybindings and providing steps to identify what's intercepting Alt+R:
|
|||
|
|
|
|||
|
|
|
|||
|
|
---
|
|||
|
|
|
|||
|
|
<tool-use data-tool-type="search" data-tool-name="web_search">
|
|||
|
|
<details>
|
|||
|
|
<summary>Tool use: **web_search** • Searched web `undefined` • **1** results</summary>
|
|||
|
|
|
|||
|
|
| Title | URL | Chunk |
|
|||
|
|
|-------|-----|-------|
|
|||
|
|
| Web search results for query: Cursor VS Code Alt+R keyboard shortcut default binding | | Links:<br/>1. [Cursor Documentation](https://docs.cursor.com/advanced/keyboard-shortcuts)<br/>2. [Keyboard Shortcuts](https://www.aidoczh.com/cursor/kbd.html)<br/>3. [Keyboard shortcuts for Visual Studio Code](https://code.visualstudio.com/docs/getstarted/keybindings)<br/>4. [Keyboard shortcuts for Visual Studio Code](https://code.visualstudio.com/docs/configure/keybindings)<br/>5. [VS Code & Cursor Shortcuts](https://design.dev/guides/cursor-shortcuts/)<br/><br/># Alt+R Keyboard Shortcut in Cursor vs VS Code<br/><br/>Based on the search results, there is no default Alt+R binding mentioned in either Cursor or VS Code's documentation.<br/><br/>In **Cursor**, Alt+R is not listed among the documented keyboard shortcuts.[2] The closest relevant shortcuts in Cursor are:<br/>- Cmd+R (or Ctrl+R on Windows) - Create new chat[2]<br/>- Cmd+R then Cmd+S - View all keyboard shortcuts[2]<br/><br/>In **VS Code**, Alt+R is similarly not documented as a default binding in the official keyboard shortcuts reference.[3][4]<br/><br/>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. |
|
|||
|
|
|
|||
|
|
</details>
|
|||
|
|
</tool-use>
|
|||
|
|
|
|||
|
|
---
|
|||
|
|
|
|||
|
|
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 data-tool-type="search" data-tool-name="web_search">
|
|||
|
|
<details>
|
|||
|
|
<summary>Tool use: **web_search** • Searched web `undefined` • **1** results</summary>
|
|||
|
|
|
|||
|
|
| Title | URL | Chunk |
|
|||
|
|
|-------|-----|-------|
|
|||
|
|
| Web search results for query: Windows 10 Alt+R keyboard shortcut system default what application uses | | Links:<br/>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)<br/>2. [What is Alt R?](https://www.lenovo.com/us/en/glossary/alt-r/)<br/>3. [List of all Windows 10 keyboard shortcuts: The ultimate guide](https://www.windowscentral.com/best-windows-10-keyboard-shortcuts)<br/>4. [Windows keyboard tips and tricks](https://support.microsoft.com/en-us/windows/windows-keyboard-tips-and-tricks-588e0b72-0fff-6d3f-aeee-6e5116097942)<br/>5. [Keyboard shortcuts in apps](https://support.microsoft.com/en-us/windows/keyboard-shortcuts-in-apps-139014e7-177b-d1f3-eb2e-7298b2599a34)<br/><br/>Based on the search results, Alt+R is not a default Windows 10 system keyboard shortcut with a built-in function.[2] <br/><br/>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.<br/><br/>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. |
|
|||
|
|
|
|||
|
|
</details>
|
|||
|
|
</tool-use>
|
|||
|
|
|
|||
|
|
---
|
|||
|
|
|
|||
|
|
<tool-use data-tool-type="shell" data-tool-name="run_terminal_command_v2">
|
|||
|
|
<details><summary>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"</summary>
|
|||
|
|
|
|||
|
|
```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
|
|||
|
|
|
|||
|
|
|
|||
|
|
```
|
|||
|
|
</details>
|
|||
|
|
</tool-use>
|
|||
|
|
|
|||
|
|
---
|
|||
|
|
|
|||
|
|
|
|||
|
|
Fixing the command and checking running processes that might intercept Alt+R:
|
|||
|
|
|
|||
|
|
|
|||
|
|
---
|
|||
|
|
|
|||
|
|
<tool-use data-tool-type="shell" data-tool-name="run_terminal_command_v2">
|
|||
|
|
<details><summary>Tool use: **run_terminal_command_v2** • Run command: powershell -Command "Get-Process | Where-Object { $_.MainWindowTitle -ne '' } | Select-Object ProcessName, MainWindowTitle | Sort-Object ProcessName"</summary>
|
|||
|
|
|
|||
|
|
```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
|
|||
|
|
|
|||
|
|
|
|||
|
|
```
|
|||
|
|
</details>
|
|||
|
|
</tool-use>
|
|||
|
|
|
|||
|
|
---
|
|||
|
|
|
|||
|
|
|
|||
|
|
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 data-tool-type="shell" data-tool-name="run_terminal_command_v2">
|
|||
|
|
<details><summary>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"</summary>
|
|||
|
|
|
|||
|
|
```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
|
|||
|
|
|
|||
|
|
|
|||
|
|
```
|
|||
|
|
</details>
|
|||
|
|
</tool-use>
|
|||
|
|
|
|||
|
|
---
|
|||
|
|
|
|||
|
|
|
|||
|
|
Trying a simpler command:
|
|||
|
|
|
|||
|
|
|
|||
|
|
---
|
|||
|
|
|
|||
|
|
<tool-use data-tool-type="shell" data-tool-name="run_terminal_command_v2">
|
|||
|
|
<details><summary>Tool use: **run_terminal_command_v2** • Run command: tasklist | findstr /i "obs nvidia geforce steam discord teamviewer anydesk gamebar"</summary>
|
|||
|
|
|
|||
|
|
```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
|
|||
|
|
|
|||
|
|
```
|
|||
|
|
</details>
|
|||
|
|
</tool-use>
|
|||
|
|
|
|||
|
|
---
|
|||
|
|
|
|||
|
|
|
|||
|
|
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 data-tool-type="shell" data-tool-name="run_terminal_command_v2">
|
|||
|
|
<details><summary>Tool use: **run_terminal_command_v2** • Run command: tasklist /v | findstr /i "narrator screen reader accessibility"</summary>
|
|||
|
|
|
|||
|
|
```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
|
|||
|
|
|
|||
|
|
```
|
|||
|
|
</details>
|
|||
|
|
</tool-use>
|
|||
|
|
|
|||
|
|
---
|
|||
|
|
|
|||
|
|
<tool-use data-tool-type="shell" data-tool-name="run_terminal_command_v2">
|
|||
|
|
<details><summary>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"</summary>
|
|||
|
|
|
|||
|
|
```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
|
|||
|
|
|
|||
|
|
|
|||
|
|
```
|
|||
|
|
</details>
|
|||
|
|
</tool-use>
|
|||
|
|
|
|||
|
|
---
|
|||
|
|
|
|||
|
|
|
|||
|
|
Trying a simpler approach to list processes:
|
|||
|
|
|
|||
|
|
|
|||
|
|
---
|
|||
|
|
|
|||
|
|
<tool-use data-tool-type="shell" data-tool-name="run_terminal_command_v2">
|
|||
|
|
<details><summary>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"</summary>
|
|||
|
|
|
|||
|
|
```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
|
|||
|
|
|
|||
|
|
```
|
|||
|
|
</details>
|
|||
|
|
</tool-use>
|
|||
|
|
|
|||
|
|
---
|
|||
|
|
|
|||
|
|
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 data-tool-type="shell" data-tool-name="run_terminal_command_v2">
|
|||
|
|
<details><summary>Tool use: **run_terminal_command_v2** • Run command: powershell -Command "Get-Process | Where-Object {$_.ProcessName -like '*synergy*'} | Select-Object ProcessName, Id, Path"</summary>
|
|||
|
|
|
|||
|
|
```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
|
|||
|
|
|
|||
|
|
|
|||
|
|
```
|
|||
|
|
</details>
|
|||
|
|
</tool-use>
|
|||
|
|
|
|||
|
|
---
|
|||
|
|
|
|||
|
|
|
|||
|
|
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.
|
|||
|
|
|
|||
|
|
---
|
|||
|
|
|