windows内核网络调试
1 windows 网络调试 2 bcdedit /dbgsettings net hostip:192.168.2.1 port:50000 3 Key=sfz54lfnnz7r.2qv9aiovadd5i.2gtkz3xamru32.cdwwl45caxfl 4 5 6 bcdedit /set {a90d0577-0b11-11ec-bb91-9a00ca0fe027} busparams 11.0.0
1 BCDEdit.exe /set LoadOptions DISABLE_INTEGRITY_CHECKS 2 BCDEdit.exe /set TESTSIGNING ON 3 BCDEdit.exe /set nointegritychecks ON 4 windows 关闭驱动强制签名 5 BCDEdit.exe /set LoadOptions DISABLE_INTEGRITY_CHECKS 6 BCDEdit.exe /set TESTSIGNING ON 7 BCDEdit.exe /set nointegritychecks ON 8 BCDEdit.exe /set {bootmgr} flightsigning off 9 BCDEdit.exe /set flightsigning off 10 bcdedit /debug on 11 bcdedit /bootdebug on
1 windows cmd设置代理 2 set http_proxy=http://127.0.0.1:1189 3 set https_proxy=http://127.0.0.1:1189
1 ============================================================================= 2 @rem 清理系统日志 3 @rd /S /Q "C:\Windows\System32\winevt\Logs" >nul 2>&1 4 5 function clear-all-event-logs () 6 { 7 $logs = Get-EventLog -List | ForEach-Object {$_.Log} 8 $logs | ForEach-Object {Clear-EventLog -LogName $_ } 9 Get-EventLog -list 10 } 11 12 clear-all-event-logs
rundll32 qga-vss,COMUnregister
1 windows debug: 2 bcdedit /bootdebug {bootmgr} on 3 bcdedit /bootdebug on 4 bcdedit /debug on