Elasticsearch 8.1.0 data handling

Dear experts, please don’t roast me, this is a rookies view. If i wrote bs, any hints are highly appreciated via elasticdata@xxaxxelxx Mechanical stuff: You can handle all this data handling via the so called console. The console is a tool you find inside of the Kibana WebUI: Log in as elastic superuser (or something […]

Windows 10 | Setting NIC Properties dependig on Vendor via Powershell

Get-NetAdapter -Physical | where InterfaceDescription -eq “Intel(R) Ethernet Connection (7) I219-V” | Set-NetAdapterAdvancedProperty -NoRestart -DisplayName “Energieeffizientes Ethernet” -DisplayValue “Aus” Get-NetAdapter -Physical | where InterfaceDescription -eq “Realtek*” | Set-NetAdapterAdvancedProperty -NoRestart -RegistryKeyword “EEE” -RegistryType “REG_SZ” -RegistryValue “0” Get-NetAdapter -Physical | where DriverProvider -eq “Intel” | where DriverVersion -like “12.18.8.*” | Set-NetAdapterAdvancedProperty -NoRestart -DisplayName “Energieeffizientes Ethernet” -DisplayValue “Ein” […]