파워셸 스크립트에서 sccreate를 호출하는 방법 호출하고 싶습니다.sc create힘있는 대본에서.코드는 여기 있습니다. function Execute-Command { param([string]$Command, [switch]$ShowOutput=$True) echo $Command if ($ShowOutput) { Invoke-Expression $Command } else { $out = Invoke-Expression $Command } } $cmd="sc create `"$ServiceName`" binpath=`"$TargetPath`" displayname=`"$DisplayName`" " Execute-Command -Command:$cmd 이로 인해 다음과 같은 오류가 발생합니다. S..