分类

首页 > 软件资讯 > 应用教程 > 正文

如何屏蔽系统中的任务管理器

作者:小黑游戏   来源:本站整理   时间:2022-10-26 19:28

如何屏蔽系统中的任务管理器:

  //适用于Win NT/2K/XP,

  //参数Key为True,屏蔽“任务管理器”;为False,“任务管理器”可用
 
  //使用方法:

  //DisableTaskmgr(True);

  procedure DisableTaskmgr(Key: Boolean);
  Var
  Reg:TRegistry;
  Begin
  Reg:=TRegistry.Create;
  try
  Reg.RootKey := HKEY_CURRENT_USER;
  if Reg.OpenKey('/Software/Microsoft/Windows/CurrentVersion/Policies/System', True) then
  begin
  if Key then
  Reg.WriteString('DisableTaskMgr','1')
  else
  Reg.WriteInteger('DisableTaskMgr',0);
  Reg.CloseKey;
  end;
  except
  Reg.Free;
  end;
  end;
 

更多 0

Tags:

相关文章

相关下载

猜你喜欢

阅读排行

网友评论

我要跟帖
取消
声明:评论内容只代表网友观点,与本站立场无关!