Tuesday, January 23, 2018

PS: Get service account names

PS c:\> Get-WmiObject Win32_Service -Filter "startname like '_NetBiosName_%'" | Format-Table name, startname, startmode

PS: Get DCOM applications running as domain account

PS c:\> Get-WmiObject Win32_DCOMApplicationSetting -Filter "RunAsUser like '_NetBiosName_%'" | Format-Table -Property AppID, RunAsUser, Caption

Configuring TUN/TAP virtual network interface for use with QEMU on Xubuntu 24.04

Configuring TUN/TAP virtual network interface for use with QEMU on Xubuntu 24.04 I am planning to run qemu-system-ppc to play around QEMU ...