Hi Guys, It happened for me a few times that QNAP interface was frozen and I didn’t have physical access to the device. The easy way is to use SSH and run this command: kill `ps –no-headers -C apache -o pid`kill `ps –no-headers -C apache -o pid`
February 2019
I had to get SID for all Users that Logon Name begin with pa Get-ADUser -Filter {Name -like “pa*”} | Select Name,SID | Format-Table -Auto For all Groups that Name begin with pa Get-ADGroup -Filter {Name -like “pa*”} | Select Name,SID | Format-Table -Auto For all Computers that Name begin…