PowerShell 경로에서 달러 기호 이스케이프가 작동하지 않음 왜 안 되는 거지? $drvrInstFilePath = "$sharePath\$imageName\ISO`$OEM$`$1\RPKTools\RPKDriverInst.bat" echo $drvrInstFilePath $drvrInstContent = Get-Content -LiteralPath "$sharePath\$imageName\ISO`$OEM$`$1\RPKTools\RPKDriverInst.bat" | Out-String 에코는 올바른 경로를 보여주지만 Get-Content 명령은 $oem 및 $1을 이스케이프된 문자열로 확장합니다. 왜죠?달러 표시를 피해 다니는 대신, 단일 따옴표를 사용합니다.'큰따옴표 대신에"PowerShell 확장..