반응형
인터넷 익스 플로어로 크룸 다운로드 버튼이 안먹히는 오류
파워쉘를 관리자 권한으로 실행
$LocalTempDir = $env:TEMP; $ChromeInstaller = "ChromeInstaller.exe"; (new-object System.Net.WebClient).DownloadFile('http://dl.google.com/chrome/install/375.126/chrome_installer.exe', "$LocalTempDir\$ChromeInstaller"); & "$LocalTempDir\$ChromeInstaller" /silent /install; $Process2Monitor = "ChromeInstaller"; Do { $ProcessesFound = Get-Process | ?{$Process2Monitor -contains $_.Name} | Select-Object -ExpandProperty Name; If ($ProcessesFound) { "Still running: $($ProcessesFound -join ', ')" | Write-Host; Start-Sleep -Seconds 2 } else { rm "$LocalTempDir\$ChromeInstaller" -ErrorAction SilentlyContinue -Verbose } } Until (!$ProcessesFound)
반응형
'OS > Windows Server' 카테고리의 다른 글
사용자추가+홈디렉터리 마운트 (0) | 2021.11.09 |
---|---|
파워쉘 스크립트 문법 (0) | 2021.11.09 |
윈도우 서버-이벤트 로그 (0) | 2021.10.25 |
CUI RAID 5 솔루션 (0) | 2021.10.25 |
[윈도우 서버] RDP CA (0) | 2021.10.25 |