Tag: Windows
-
Enumerate or Count Active Connections on a Given Port
Enumerate Active Connections on port 1433: netstat -aon | find “:1433 ” Count Active Connections on port 1433: netstat -aon | find /c “:1433 ” To Enumerate and Count Active Connections on port 1433 and 443 ECHO This is the log for %date%: >> C:\logs\log.txt ECHO Current number of connections to 1433: >> C:\logs\log.txt…
-
Faulting application name: cygrunsrv.exe, version: 0.0.0.0, time stamp: 0x40826252 Faulting module name: ntdll.dll, version: 6.1.7601.17725, time stamp: 0x4ec49b8f
Okay, ran into this issue and had errors in numerous places, errors consisted of 2 Information items in the event viewer: Faulting application name: cygrunsrv.exe, version: 0.0.0.0, time stamp: 0x40826252 Faulting module name: ntdll.dll, version: 6.1.7601.17725, time stamp: 0x4ec49b8f Exception code: 0xc0000005 Fault offset: 0x00033de8 Faulting process id: 0x1864 Faulting application start time: 0x01ce3154ee337ce8 Faulting…
-
SOLVED: ‘regsrv32’ is not recognized as an internal or external command,
I have gotten the error of ‘regsrv32’ is not recognized as an internal or external command, a few times recently, and it turns out, I typo’d the command. I was typing in regsrv32 as aposed to regsvr32, yes, the ‘v’ and the ‘r’ were switched. Gah, stupid muscle memory.