Fix Loud Fan Win10 Dell Notebook
My Dell notebook was making very loud fan noises as soon as it was connected to the dock. I already suspected the windows powerplan ...
Merging dictionaries within powershell
In Development, Documentation, PowerShell, Sep 01, 2020Twitter hack lessons learned
In Uncategorized, Aug 05, 2020All Stories
2012R2 IPv6 DHCP without Router
If you want to have your DHCP-Server assigning unique local ipv6 addresses, but you don't have a IPv6 gateway or router jet, you will notice the following behavior: The IPv6 adre...
In DHCP, IPv6, Oct 29, 2015Remote Powershell
Login automatically with current privileges Enter-PSSession -computername hostname
In Administration, PowerShell, Oct 27, 2015Powershell UNC and Registry Paths
In Administration, PowerShell, Oct 27, 2015Get Powershell Version
$PSVersionTable $PSVersionTable.PSCompatibleVersions$PSVersionTable.PSVersion
In PowerShell, Oct 27, 2015Logfile Monitoring (PowerShell/Bash)
In Linux, PowerShell, Oct 23, 2015Native Network Scanner - foreach-object (PowerShell)
1..255 | foreach-object {[System.Net.Networkinformation.Ping]::new().Send("192.168.1.$_") } |where-object {$_.Status -eq "success"} | select Address
In PowerShell, Oct 23, 2015Status Monitoring - Statusbar
How to have one line updated, for example showing available disk space updated every second.Within one line: while true; do echo -ne "$(df | grep /dev/sda4)\\r"; sleep 1; donehow ...
In Linux, Oct 19, 2015SFC is deprecated, use dism instead
Often sfc.exe reports errors that it cannot resolve automatically. Instead of "sfc.exe /scannow" run as Administrator: Dism /Online /Cleanup-Image /ScanHealth Dism /Online /C...
In System recovery, Oct 19, 2015Featured
-
Twitter hack lessons learned
In Uncategorized, -
shadow compile error
In Development, -
gcc compile error
In Development, -
ncurses5.9 compile error
In Development, -
m4 1.4.17 fails to compile
In Development, Linux, -
Hacking an SQL-Server
In Administration, Security, System recovery, -
Encrypted LVM remote unlock
In Administration, Linux, LVM, Security,