Created
March 15, 2021 02:20
-
-
Save khayama-zz/8e8cb2c4f90c128a1cf20021b7dcc474 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
rem Chromeインストール | |
rem パブリックインターフェースの有効化 | |
netsh interface set interface name="PublicNetwork-A" admin=enabled | |
rem 10秒待機 | |
PING 127.0.0.1 -n 10 | |
rem クロームのオフラインインストーラーのダウンロード | |
powershell -Command Start-BitsTransfer -Source https://dl.google.com/tag/s/appguid%3D%7B8A69D345-D564-463C-AFF1-A69D9E530F96%7D%26iid%3D%7B9CBC3BA0-0B21-CE75-59A4-7C679C244042%7D%26lang%3Dja%26browser%3D3%26usagestats%3D1%26appname%3DGoogle%2520Chrome%26needsadmin%3Dprefers%26ap%3Dx64-stable/dl/chrome/install/googlechromestandaloneenterprise64.msi -Destination C:¥Users¥Administrator¥Desktop¥ | |
rem パブリックインターフェースの無効化 | |
netsh interface set interface name="PublicNetwork-A" admin=disabled | |
rem インストーラーのディレクトリに移動 | |
cd C:¥Users¥Administrator¥Desktop¥ | |
rem サイレントインストールの実行 | |
googlechromestandaloneenterprise64.msi /qn /norestart |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment