这看起来有点奇怪,但我尝试在批处理文件中打开PowerShell,将Chrome设置为默认浏览器。我知道这似乎反直觉,但我保证这个应用程序和批处理文件中的其余内容,这是我必须去的路线。
这是我正在使用的字符串
start powershell.exe -noexit -command "$chromePath = "${Env:ProgramFiles(x86)}\Google\Chrome\Application\"
$chromeApp = "chrome.exe"
$chromeCommandArgs = "--make-default-browser" & "$chromePath$chromeApp" $chromeCommandArgs
但是一旦启动PowerShell,我就会遇到一个丢失的终结器错误。
特别是这个
The string is missing the terminator: ".
+ CategoryInfo : ParserError: (:) [], ParentContainsErrorRecordException
+ FullyQualifiedErrorId : TerminatorExpectedAtEndOfString
任何人都可以帮助新手识别我错过的内容吗?