Hi,
to determine who shuts down Windows the system log can be filtered for the Event Id 1074 (Source User32).
Continue reading Windows: Determine who and why shuts down Windows
Hi,
to determine who shuts down Windows the system log can be filtered for the Event Id 1074 (Source User32).
Continue reading Windows: Determine who and why shuts down Windows
Hi,
to determine the KMS, the server to activate Windows installations, you can query the DNS by nslookup.
Continue reading ActiveDirectory: Determine the kms activation server by DNS
Hi,
this post describes how to determine which version of an Apache tomcat server is running.
Continue reading Apache Tomcat: Determine Version
Hi,
2 Ways to determine the Windows Feature Version / Release ID from commandline. With powershell
Continue reading Windows: Get Windows Feature Version/Release ID
Hi,
let us assume you want to determine which driver is behind a device. For example disk /dev/sdc
By udev. Query the device /dev/sdc by udevadm. Scroll down to the section for the pci device
root@devdeb ~# udevadm info -a -n /dev/sdc ..... looking at parent device '/devices/pci0000:00/0000:00:10.0': KERNELS=="0000:00:10.0" SUBSYSTEMS=="pci" DRIVERS=="mptspi" .....
or (the native way) by sysfs
root@devdeb ~# cd /sys/block/sdc root@devdeb ~# cd -P /sys/block/sdc/device /sys/devices/pci0000:00/0000:00:10.0/host2/target2:0:1/2:0:1:0
Go to the pci device
root@devdeb ~# cd /sys/devices/pci0000:00/0000:00:10.0 root@devdeb ~# ls -l driver lrwxrwxrwx 1 root root 0 Dec 22 09:14 driver -> ../../../bus/pci/drivers/mptspi
Michael