1

Пожалуйста, рассмотрите код ниже (внутри скрипта .ps1)

$latest = Get-ChildItem -Path $env:windows\security -Filter "my-app-here*.*" | Sort-Object -Descending | Select-Object -First 1
$file=$env:windows+"\security\"+$latest.name
start-process $file

это отлично работает

Если я попытаюсь упростить код до:

$latest = Get-ChildItem -Path $env:windows\security -Filter "my-app-here*.*" | Sort-Object -Descending | Select-Object -First 1
start-process $env:windows+"\security\"+$latest.name

Я получаю сообщение об ошибке:

start-process : This command cannot be run due to the error: The system cannot find the file specified.

Есть идеи, что я могу делать не так? большое спасибо

0