Actualizar 'README.md'
This commit is contained in:
289
README.md
289
README.md
@@ -1,158 +1,177 @@
|
|||||||
# windows-tips
|
# windows-tips
|
||||||
## Renombrar archivos masivamente PowerShell
|
## Renombrar archivos masivamente PowerShell
|
||||||
```sh
|
```sh
|
||||||
get-childitem -recurse | rename-item -NewName {$_.name -replace "procesado","" }
|
get-childitem -recurse | rename-item -NewName {$_.name -replace "procesado","" }
|
||||||
```
|
```
|
||||||
## Copiar clave ssh a servidor linux
|
## Copiar clave ssh a servidor linux
|
||||||
```sh
|
```sh
|
||||||
type $env:USERPROFILE\.ssh\id_rsa.pub | ssh suma@45.183.247.209 "cat >> .ssh/authorized_keys"
|
type $env:USERPROFILE\.ssh\id_rsa.pub | ssh suma@45.183.247.209 "cat >> .ssh/authorized_keys"
|
||||||
```
|
```
|
||||||
|
|
||||||
## Ocultar carpeta o archivo
|
## Ocultar carpeta o archivo
|
||||||
```sh
|
```sh
|
||||||
attrib +h +s +r Esconder
|
attrib +h +s +r Esconder
|
||||||
|
|
||||||
## Volvwe visibles
|
## volver visibles
|
||||||
attrib -h -s -r Esconder
|
attrib -h -s -r Esconder
|
||||||
```
|
```
|
||||||
## Mostrar propiedades de la red
|
## Mostrar propiedades de la red
|
||||||
|
|
||||||
```sh
|
```sh
|
||||||
netsh wlan show profile "CHAPARRO" key=clear
|
netsh wlan show profile "CHAPARRO" key=clear
|
||||||
```
|
```
|
||||||
## Información HArdware
|
## Información Hardware
|
||||||
```sh
|
```sh
|
||||||
systeminfo
|
systeminfo
|
||||||
```
|
```
|
||||||
|
|
||||||
|
## Abrir consola en el explorador
|
||||||
|
En la barra de navegacion escribir cmd y enter
|
||||||
|
|
||||||
|
## Abrir carpeta en el explorador desde la consola
|
||||||
|
|
||||||
|
```sh
|
||||||
|
explorer .
|
||||||
|
```
|
||||||
|
|
||||||
|
## Crear una inidad S: que apunta a una carpeta
|
||||||
|
```sh
|
||||||
|
subst s: "C:\Users\80187452\Documents\pruebaCMD"
|
||||||
|
|
||||||
|
## Eliminarla
|
||||||
|
subst /d s:
|
||||||
|
|
||||||
|
```
|
||||||
|
## Cambiar Prompt
|
||||||
|
```sh
|
||||||
|
prompt ¨:-)$G
|
||||||
|
```
|
||||||
|
|
||||||
|
## Crear codigo QR
|
||||||
|
```sh
|
||||||
|
curl qrenco.de/https://unelectronica.github.io/
|
||||||
|
```
|
||||||
|
|
||||||
|
### Eliminar temporales
|
||||||
|
```sh
|
||||||
|
del /q /f /s %temp%\*
|
||||||
|
```
|
||||||
|
|
||||||
|
```sh
|
||||||
|
del /s /q C:\Windows\temp\*
|
||||||
|
```
|
||||||
|
|
||||||
|
## Historial
|
||||||
|
```sh
|
||||||
|
doskey /history
|
||||||
|
```
|
||||||
|
|
||||||
|
## ipconfig
|
||||||
|
```sh
|
||||||
|
ipconfig /release
|
||||||
|
ipconfig /renew
|
||||||
|
ipconfig /displaydns
|
||||||
|
ipconfig /flushdns
|
||||||
|
ipconfig /all | findstr DNS | clip
|
||||||
|
```
|
||||||
|
|
||||||
|
**findstr** busca una cadena de texto y el comando **clip** copia al portapapeles
|
||||||
|
|
||||||
|
```sh
|
||||||
|
nslookup www.sumasas.com
|
||||||
|
```
|
||||||
|
Respuesta:
|
||||||
|
```sh
|
||||||
|
Servidor: megacenter-cache-res.claro.net.co
|
||||||
|
Address: 190.157.8.108
|
||||||
|
|
||||||
|
Nombre: sumasas.com
|
||||||
|
Address: 35.188.185.14
|
||||||
|
Aliases: www.sumasas.com
|
||||||
|
|
||||||
|
|
||||||
## Abrir consola en el explorador
|
```
|
||||||
. EN la barra de navegacion escribir cmd y enter
|
|
||||||
## Abrir carpeta en el explorador desde la consola
|
|
||||||
|
|
||||||
```sh
|
|
||||||
explorer .
|
|
||||||
```
|
|
||||||
|
|
||||||
## Crear una inidad S: que apunta a una carpeta
|
```sh
|
||||||
```sh
|
nslookup -type=ptr www.sumasas.com | clip
|
||||||
subst s: "C:\Users\80187452\Documents\pruebaCMD"
|
|
||||||
|
|
||||||
## Eliminarla
|
```
|
||||||
subst /d s:
|
Respuesta:
|
||||||
|
```sh
|
||||||
|
Servidor: megacenter-cache-res.claro.net.co
|
||||||
|
Address: 190.157.8.108
|
||||||
|
|
||||||
```
|
www.sumasas.com canonical name = sumasas.com
|
||||||
## Cambiar Promt
|
|
||||||
```sh
|
|
||||||
prompt ¨:-)$G
|
|
||||||
```
|
|
||||||
|
|
||||||
## Clear codigo QR
|
sumasas.com
|
||||||
```sh
|
primary name server = ns-cloud-e1.googledomains.com
|
||||||
curl qrenco.de/https://unelectronica.github.io/
|
responsible mail addr = cloud-dns-hostmaster.google.com
|
||||||
```
|
serial = 1
|
||||||
|
refresh = 21600 (6 hours)
|
||||||
|
retry = 3600 (1 hour)
|
||||||
|
expire = 259200 (3 days)
|
||||||
|
default TTL = 300 (5 mins)
|
||||||
|
|
||||||
### Eliminar temporales
|
```
|
||||||
```sh
|
|
||||||
del /q /f /s %temp%\*
|
|
||||||
```
|
|
||||||
|
|
||||||
```sh
|
## Reporte bateria
|
||||||
del /s /q C:\Windows\temp\*
|
```sh
|
||||||
```
|
powercfg /batteryreport
|
||||||
|
|
||||||
## Historial
|
```
|
||||||
```sh
|
|
||||||
doskey /history
|
|
||||||
```
|
|
||||||
|
|
||||||
## Historial
|
## Scaneo archivos del sistema
|
||||||
```sh
|
```sh
|
||||||
ipconfig /release
|
sfc /scannow
|
||||||
ipconfig /renew
|
```
|
||||||
ipconfig /displaydns
|
|
||||||
ipconfig /flushdns
|
|
||||||
ipconfig /all | findstr DNS | clip
|
|
||||||
```
|
|
||||||
|
|
||||||
**findstr** busca una cadena de texto y el comando **clip** copia al portapapeles
|
### TaskList
|
||||||
|
Lista de tareas se puede usar en conbinación con **findstrl**
|
||||||
|
|
||||||
```sh
|
### Taskkill /f /pid
|
||||||
nslookup www.sumasas.com
|
Mata un proceso indicando el pid
|
||||||
```
|
|
||||||
Respuesta:
|
|
||||||
```sh
|
|
||||||
Servidor: megacenter-cache-res.claro.net.co
|
|
||||||
Address: 190.157.8.108
|
|
||||||
|
|
||||||
Nombre: sumasas.com
|
### netsh
|
||||||
Address: 35.188.185.14
|
|
||||||
Aliases: www.sumasas.com
|
|
||||||
|
|
||||||
|
```sh
|
||||||
|
netsh wlan show wlanreport
|
||||||
|
```
|
||||||
|
|
||||||
```
|
```sh
|
||||||
|
netsh interface show interface
|
||||||
|
```
|
||||||
|
```sh
|
||||||
|
netsh interface ip show address
|
||||||
|
```
|
||||||
|
|
||||||
```sh
|
### NETSTAT
|
||||||
nslookup -type=ptr www.sumasas.com | clip
|
|
||||||
|
|
||||||
```
|
|
||||||
Respuesta:
|
|
||||||
```sh
|
|
||||||
Servidor: megacenter-cache-res.claro.net.co
|
|
||||||
Address: 190.157.8.108
|
|
||||||
|
|
||||||
www.sumasas.com canonical name = sumasas.com
|
```sh
|
||||||
|
netstat
|
||||||
|
```
|
||||||
|
|
||||||
|
```sh
|
||||||
|
netstat -af
|
||||||
|
```
|
||||||
|
|
||||||
|
```sh
|
||||||
|
netstat -o
|
||||||
|
```
|
||||||
|
|
||||||
|
```sh
|
||||||
|
netstat -e -t
|
||||||
|
```
|
||||||
|
|
||||||
|
```sh
|
||||||
|
route print
|
||||||
|
```
|
||||||
|
|
||||||
sumasas.com
|
## shuntdown
|
||||||
primary name server = ns-cloud-e1.googledomains.com
|
Reiniciar equipo
|
||||||
responsible mail addr = cloud-dns-hostmaster.google.com
|
```sh
|
||||||
serial = 1
|
shuntdown /r /f
|
||||||
refresh = 21600 (6 hours)
|
```
|
||||||
retry = 3600 (1 hour)
|
|
||||||
expire = 259200 (3 days)
|
|
||||||
default TTL = 300 (5 mins)
|
|
||||||
|
|
||||||
|
### Convertir archivos md a pdf
|
||||||
```
|
|
||||||
|
|
||||||
## Reporte bateria
|
|
||||||
```sh
|
|
||||||
powercfg /batteryreport
|
|
||||||
|
|
||||||
```
|
|
||||||
|
|
||||||
## Scaneo archivos del sistema
|
[https://products.groupdocs.app/es/conversion/md-to-pdf](https://products.groupdocs.app/es/conversion/md-to-pdf)
|
||||||
```sh
|
|
||||||
sfc /scannow
|
|
||||||
```
|
|
||||||
|
|
||||||
### TaskList
|
|
||||||
Lista de tareas se puede usar en conbinación con **findstrl**
|
|
||||||
|
|
||||||
### Taskkill /f /pid
|
|
||||||
Mata un proceso indicando el pid
|
|
||||||
|
|
||||||
### netsh
|
|
||||||
|
|
||||||
```sh
|
|
||||||
netsh wlan show wlanreport
|
|
||||||
```
|
|
||||||
|
|
||||||
```sh
|
|
||||||
netsh interface show interface
|
|
||||||
```
|
|
||||||
```sh
|
|
||||||
netsh interface ip show address
|
|
||||||
```
|
|
||||||
|
|
||||||
### NETSTAT
|
|
||||||
|
|
||||||
``` netstat```
|
|
||||||
``` netstat -af```
|
|
||||||
``` netstat -o```
|
|
||||||
``` netstat -e -t```
|
|
||||||
``` route print```
|
|
||||||
|
|
||||||
## shuntdown
|
|
||||||
Reiniciar equipo
|
|
||||||
``` shuntdown /r /f ```
|
|
||||||
Reference in New Issue
Block a user