티스토리 뷰
728x90
cmd와 powershell을 이용해서 크롬을 설치하는 방법을 알려 드리겠습니다!
Powershell로 설치하기
powershell로 설치하려면 아래 코드를 파워쉘에 입력하시면 됩니다!
(new-object System.Net.WebClient).DownloadFile('http://dl.google.com/chrome/install/375.126/chrome_installer.exe', $env:TEMP+'\chrome.exe'); start $env:TEMP\chrome.exe
그럼 chrome인스툴러가 다운되고 실행됩니다.
Cmd로 설치하기
cmd로 설치하려면 아래 코드를 입력하시면 됩니다.
powershell -command (new-object System.Net.WebClient).DownloadFile('http://dl.google.com/chrome/install/375.126/chrome_installer.exe', $env:TEMP+'\chrome.exe'); & start %temp%\chrome.exe
마찬가지로 chrome 인스툴러가 실행됩니다.
더보기
chrome, 크롬, powershell, cmd, chrome 다운로드, chrome download, 다운로드, download, cmd로 크롬 다운로드, powreshell로 크롬 다운로드, 하기, 명령 프롬프트, 파워쉘, 파워쉘 크롬 다운로드
반응형
댓글