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·
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·
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:
$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·
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·
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?
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?
Today, after a failed centos installation, I had to recover the previous Windows boot, the solution is quite easy:
bootrec /fixboot
Windows boot should be fixed
•n•
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?
The times, they are a-changin…
With Covid-19 around and most of us at home, the usage of video-conferencing software has raised from a work utility to a mainstream solution for keeping up with family and friends in a daily basis.
As a demand of video products arose and stocks disappeared, the prices increased for the pending units in amazon and ebay, anyhow, and since weeks ago, the amount of high res webcams (1080p, 30 fps) at my location is nearly to none for the usual culprits: Logitech C920, Brio, even cheap DSLR cameras and GoPros.
Some of us, that did not care about having a decent webcam around, are at a point in which the options are: using the phone directly or any laptop you have around.
What can you do if you want to use your own computer instead that awful integrated webcam or keep carrying around the phone and having to pay attention to that small screen?
Related with «How to coil cables» and the «99 hacks«
·n·