浏览模式: 标准 | 列表
Tag: windows
Posted by amxku on 2007-12-26, 10:50 PM
有些特殊部门不允许使用移动存储设备,接受检查的时候可以用这招。
删除
HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Control\DeviceClasses\{53f56307-b6bf-11d0-94f2-00a0c91efb8b}下的所有项
HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Enum\USB 下所有Vid开头的项
HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Enum\USBSTOR 下的所有Disk&Ven开头的项
HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Control\UsbFlags 下所有项
c:\windows\setupapi.log 文件
Tags: windows, 系统, 清理记录
共享 | 评论: 2 | 阅读: 1937
Posted by amxku on 2007-12-15, 1:54 PM
一> 序言
windows下的
服务程序都遵循
服务控制管理器(SCM)的接口标准,它们会在登录
系统时自动运行,甚至在没有用户登录
系统的情况下也会正常执行,类似与UNIX
系统中的守护进程(daemon)。它们大多是控制台程序,不过也有少数的GUI程序。本文所涉及到的
服务程序仅限于
windows2000/XP
系统中的一般
服务程序,不包含
windows9X。本文相关
服务级
后门程序和代码可以到我们的主页FZ5FZ下载。
二>
windows服务简介
服务控制管理器拥有一个在注册表中记录的数据库,包含了所有已安装的服务程序和设备驱动服务程序的相关信息。它允许
系统管理员为每个服务自定义安全要求和控制访问权限。
windows服务包括四大部分:服务控制管理器(Service Control Manager),服务控制程序(Service Control Program),服务程序(Service Program)和服务配置程序(Service Configuration Program)。
» 阅读全文
Tags: 系统安全, 系统, 后门, 服务, windows
技术 | 评论: 1 | 阅读: 1727
Posted by amxku on 2006-10-05, 4:21 AM
Findstr
Findstr
使用正则表达式
搜索文件中的文本模式。
语法
findstr [/b] [/e] [/l] [/r] [/s] [/i] [/x] [/v] [/n] [/m] [/o] [/p] [/offline] [/g:File] [/f:File] [/c:String] [/d:DirList] [/a:ColorAttribute] [Strings] [[Drive:][Path] FileName [...]]
» 阅读全文
Tags: 工具, windows, 搜索
共享 | 评论: 2 | 阅读: 3461
Posted by amxku on 2005-11-17, 9:28 PM
@echo offecho 正在帮您清除系统垃圾文件,请稍等......del /f /s /q %systemdrive%*.tmpdel /f /s /q %systemdrive%*._mpdel /f /s /q %systemdrive%*.logdel /f /s /q %systemdrive%*.giddel /f /s /q %systemdrive%*.chkdel /f /s /q %systemdrive%*.olddel /f /s /q %systemdrive%recycled*.*del /f /s /q %windir%*.bakdel /f /s /q %windir%prefetch*.*rd /s /q %windir%temp & md %windir%tempdel /f /q %userprofile%cookies*.*del /f /q %userprofile%recent*.*del /f /s /q "%userprofile%\Local Settings\Temporary Internet Files\*.*"del /f /s /q "%userprofile%\Local Settings\Temp\*.*"del /f /s /q "%userprofile%\recent\*.*"echo 清除系统垃圾完成!echo. & pause
Tags: 系统, 垃圾, windows, 清理记录
共享 | 评论: 0 | 阅读: 2260