Read-Host와 함께 기본값을 사용할 수 있는 단일 라이너가 있습니까? 프롬프트의 기본값을 지정하기 위해 이와 같은 내용을 작성했습니다. $defaultValue = 'default' $prompt = Read-Host "Press enter to accept the default [$($defaultValue)]" if ($prompt -eq "") {} else { $defaultValue = $prompt } 더 줄일 수 있습니까? 여기 제 시도가 있습니다. $defaultValue = 'default' $prompt = Read-Host "Press enter to accept the default [$($defaultValue)]" if (!$prompt -eq "") {$defaultVal..