Change Chrome Settings via Powershell

前端 未结 2 667
北恋
北恋 2021-01-26 06:12

I want to make a script to change the default page zoom in Chrome, however I do not know where these options are stored. I guess that I have to find an appropriate options text

2条回答
  •  慢半拍i
    慢半拍i (楼主)
    2021-01-26 06:53

    $Env:
    

    Is a special PSdrive that contains many of the SpecialFolder Paths

    $Env:LOCALAPPDATA
    

    and

    [Environment]::GetFolderPath( [Environment+SpecialFolder]::LocalApplicationData )
    

    Yield the same result in addition to the rest of Mathias answer.

提交回复
热议问题