And English is a Work in Progress ⌛
Write-Host "Are you sure you want to delete Teams Cache (Y/N)?" -ForegroundColor Yellow -NoNewLine | |
$challenge = Read-Host | |
$challenge = $challenge.ToUpper() | |
if ($challenge -eq "Y"){ | |
try{ | |
Write-Host "[$((Get-Date).ToString("HH:mm:ss"))] Stopping Teams Processes if running" -ForegroundColor Cyan | |
Get-Process -ProcessName Teams -ErrorAction SilentlyContinue | Stop-Process -Force | |
Start-Sleep -Seconds 3 | |
Write-Host "[$((Get-Date).ToString("HH:mm:ss"))] Teams Processes Sucessfully Stopped" -ForegroundColor Green | |
}catch{ |
-
docker version* : Muestre el comando y la version tanto para el cliente de docker, como para el demonio de docker.
-
docker help pul*l: muestra ayuda contextual del comando con nombre pull en este caso
-
docker images* :Lista la lista de imagenes disponibles en el host de docker. Es importante notar que las imagenes de docker tienen un tag, que es como el release o version de esa imagen, por defecto docker descarga el tag LATEST al ejecutar un pull. Las imagenes de docker tambien tienen algunos metadatos por decirlo asi extras como, IMAGE ID que identifican de manera unica y especifica, al lanzar el contenedor este tambien tiene tambien NAME y CONTAINER ID.
-
*docker rm CONTAINER ID: Elimina el contenedor con id.
-
docker rm CONTAINER NAME: Elimina el contenedor con nombre CONTAINER NAME
-
docker rm $(docker ps -aq) : Eliminar todos los contenedores en el host de docker. la opcion de -aq entrega una lista de ids.
-
***docker rm $(docker ps
--- #Install Maria DB | |
- hosts: localhost | |
remote_user: ansible | |
become: yes | |
become_method: sudo | |
connection: ssh | |
gather_facts: yes | |
tasks: | |
- name : Installing MariDB | |
yum: |
#requires -version 3.0 | |
#requires -module Hyper-V | |
<# | |
.SYNOPSIS | |
Export virtual machines | |
.DESCRIPTION | |
This utility will export virtual machines to a target destination. By default | |
it will create a folder using the format: |
sudo chown -R www-data.www-data /var/www/travel_list/storage | |
sudo chown -R www-data.www-data /var/www/travel_list/bootstrap/cache |
# The full public facing url | |
#root_url = %(protocol)s://%(domain)s:%(http_port)s/ | |
root_url = http://localhost:80/grafana/ |
# View public IP
- curl -s checkip.dyndns.org | sed 's#.Address: (.)</b.*#\1#'
- wget -qO - icanhazip.com
- curl ifconfig.me
- curl ident.me
- dig +short myip.opendns.com @resolver1.opendns.com
- lynx -dump ifconfig.me | grep 'IP Address'
- curl ipecho.net/plain
- curl bot.whatismyipaddress.com
- curl ipinfo.io
############################################# | |
## | |
## PostgreSQL base backup automation | |
## Author: Stefan Prodan | |
## Date : 20 Oct 2014 | |
## Company: VeriTech.io | |
############################################# | |
# path settings | |
$BackupRoot = 'C:\Database\Backup'; |
############################################# | |
## | |
## PostgreSQL base backup automation | |
## Author: Stefan Prodan | |
## Date : 20 Oct 2014 | |
## Company: VeriTech.io | |
############################################# | |
# path settings | |
$BackupRoot = 'C:\Database\Backup'; |