·n·
Shhhh
·n·
Create a support ticket
·n·
A dónde va bit.ly?
Añade un + al final del enlace para ir hasta la pagina de información relacionada de bit.ly.
Por ejemplo: https://bit.ly/swimprescindible+
Enjoy!
·n·
Gestionar tareas desde Powershell
Durante la pandemia decidí utilizar el tiempo muerto para aprender más Powershell, uno de los proyectos que usé para motivarme fue un script para hacer un deploy de Windows 10 desde limpio a usable.
Nada que configuradores como Ansible no hagan ya mejor, pero necesitaba engrasar mis habilidades haciendo algo.
Una de las tareas es actualizar el software instalado previamente usando chocolatey
a través de una tarea programada. El workflow viene a ser este:
- Actualiza todo
- Borra todos los iconos que se creen en el escritorio público
- Lanza la tarea todos los días a las 0AM o, cuando el equipo esté disponible tras esa hora.
$taskAction = New-ScheduledTaskAction -Execute 'powershell.exe' -Argument 'chocolatey upgrade --yes all; Get-ChildItem C:\Users\Public\Desktop -filter '*lnk' | foreach-object { Remove-item -Path $_.Fullname -Force -ErrorAction SilentlyContinue }'
$taskTrigger = New-ScheduledTaskTrigger -Daily -At 0AM
$taskPrincipal = New-ScheduledTaskPrincipal -UserId "SYSTEM" -LogonType ServiceAccount
$taskSettings=New-ScheduledTaskSettingsSet -StartWhenAvailable
Register-ScheduledTask -TaskName "ChocolateyUpdate" -Action $taskAction -Trigger $taskTrigger -Description "Update chocolatey packages" -Principal $taskPrincipal -Settings $taskSettings
Los logs asociados a la actualización son los de chocolatey, en una instalación por defecto, a fecha de escritura, están en C:\ProgramData\chocolatey\logs
·n·
Powershell – Using defined variables in a scriptblock
If you try use an already defined variable inside a scripblock, using the default call without any scope definition, the variable will not be expanded and it probably will not produce the expected outcome.
From Powershell v3 onwards, the scopes include an «using», that allows to access defined variables in other scopes, in this way the variable will be expanded as expected inside the scriptblock.
$foo = 'Get-Childitem .'
Invoke-Command -Computername server -scriptblock { $using:foo }
·n·
Synology – Acceso lento
Desde la actualización de Windows a 20H2 el acceso a la ds1512+ se vuelve lento de repente durante una transferencia via SMB. Empieza bien y en algún punto de la transferencia se detiene.
Si intentas navegar al dispositivo via SMB el Explorer se queda en no reponde, el acceso via navegador o NFS sigue funcionando como esperarías.
¿Qué hacer para solucionar este problema y cual es el problema raiz?
Unraid – Wake on lan
Con el cambio a Unraid mi main driver sigue hibernando como si fuese un pc normal, para poder re-encender el ordenador la única manera es conectarse a la web de unraid, ir a la sección de máquinas virtuales e iniciar la máquina hibernada (que muestra un botón de pausa anaranjado en lugar del habitual play verde).
¿Es esta la única manera o te puedes ahorrar los 10 clicks?
Windows – Recover boot
Today, after a failed centos installation, I had to recover the previous Windows boot, the solution is quite easy:
- Boot from Windows installation media
- Select language and regional options
- Select recover Windows
- Select command prompt
- Type:
bootrec /fixboot
- Restart the computer
Windows boot should be fixed
•n•
Windows 10, change network configurations
Sometimes, after changing configurations in your internal network like the router or the DHCP subnet, Windows detects the network as a new one instead the same with minor tweaks.
This leads to a change in the network name (from Network to Network 2 and so on) and, in some cases, it changes from Private to Public, and all the shares do not work as expected.
How can this be fixed?