Powershell chrome.exe强制设备比例因子不起作用

时间:2019-05-08 14:12:48

标签: powershell google-chrome zoom

我正在尝试使用以下命令使用powershell打开具有自定义缩放大小的镶边

& 'C:\Program Files (x86)\Google\Chrome\Application\chrome.exe'  http://www.gnu.org/ /force-device-scale-factor=1.5  /incognito

命令以隐身模式打开网站。但是,缩放比例仍为100%。可能出什么问题了?

1 个答案:

答案 0 :(得分:1)

这已经是答案的一半here

我将代码更改为:

$pathToChrome = 'C:\Program Files (x86)\Google\Chrome\Application\chrome.exe'
$tempFolder = '--user-data-dir=c:\temp' 
$zoomScale = "--force-device-scale-factor=1.5"
$startPage = 'https://stackoverflow.com'

Start-Process -FilePath $pathToChrome -ArgumentList $tempFolder, $startPage, $zoomScale