Explore tweets tagged as #ProcessID
How to kill an unstoppable service via its process id in (elevated) #PowerShell . kill -id (gcim win32_service -Filter "name = 'dnscache'").ProcessId
3
39
199
Need to see which IIS worker process (w3wp.exe) is which? #PowerShell . gcim win32_process -Filter "name = 'w3wp.exe'"|select processid,creationdate,commandline
4
16
87
@manelrodero If the service is still running, this will order by start time. gcim win32_service | where-object processid -gt 0 | select *,@{n='StartTime';e={(get-process -id $_.ProcessId).StartTime}}|select Name,DisplayName,ProcessId,StartTime|sort starttime
1
6
24
Create table in @AzDataExplorer .#365daysofADX Day4. 1: Select db in KWE(.2: Type "create table MyLogs ( Level:string, Timestamp:datetime, UserId:string, TraceId:string, Message:string, ProcessId:int32 )".3: Shift+Enter. Learn more:
0
0
1