Search
 
SCRIPT & CODE EXAMPLE
 

SHELL

windows server 2016 install chrome

 $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)
Comment

PREVIOUS NEXT
Code Example
Shell :: linux bash if else 
Shell :: jq filter array 
Shell :: install docker-compose 
Shell :: git go back to commit 
Shell :: static ip wsl2 
Shell :: mate on ubuntu 20.04 
Shell :: git get back to most recent commit 
Shell :: to take screenshot in ubuntu 
Shell :: jenkins execute shell script on remote host using ssh 
Shell :: awk define string as delimiter 
Shell :: vscode update terminal limit 
Shell :: git push to create 
Shell :: run shell script remotely using ssh 
Shell :: shell script tutorial 
Shell :: push imagesto docker 
Shell :: how to get all branches from gitlab repository 
Shell :: delete a folder from git 
Shell :: docker no pg_hba.conf entry for host SSL off 
Shell :: ubuntu restart systemctl 
Shell :: how to add code to git 
Shell :: github pages push 
Shell :: make vscode git mergetool 
Shell :: how to install all your pipenv packages 
Shell :: cut delimiter spaces 
Shell :: linux os 
Shell :: how to ssh to another computer 
Shell :: merge_otu_tables.py qiime 
Shell :: kubectl jq json pod name jsonpath 
Shell :: ksd command not found 
Shell :: Target DEP-11-icons-small (stable/dep11/icons-48x48.tar) is configured multiple times in /etc/apt/sources.list.d/archive_uri-https_download_docker_com_linux_ubuntu-groovy.list:1 and /etc/apt/sources.list.d/docker-ce.list:1 
ADD CONTENT
Topic
Content
Source link
Name
8+4 =