|
xuehaiwuya
初级用户
 
积分 165
发帖 79
注册 2007-10-27
状态 离线
|
『楼 主』:
注册表特别的权限
使用 LLM 解释/回答一下
搞了一天都不知道如何把恢色的注册表的特别的权限打上勾勾
echo HKEY_LOCAL_MACHINE\SYSTEM\ControlSet001\Enum\Root\RDPDR [1 5 7 11 14 17 21] >c:\1111.ini
regini 1111.ini
所有权限上了就是特别的权限上不了
It took me a whole day to not know how to check the special permissions of the grayed-out registry.
echo HKEY_LOCAL_MACHINE\SYSTEM\ControlSet001\Enum\Root\RDPDR >c:\1111.ini
regini 1111.ini
All permissions are set, but the special permissions just can't be checked.
|

把我的快乐分享给众人就是我的快乐
把我的技术共享给别人那才叫我的技术
学习我不会的技术那才叫好学
|
|
2008-3-21 10:31 |
|
|
chishingchan
银牌会员
    
积分 1282
发帖 538
注册 2002-11-2
状态 离线
|
『第 2 楼』:
使用 LLM 解释/回答一下
问题表达不是很明白,不懂你的意图。使用SYSTEM权限应该什么也难不到吧?!
The question is not very clear, I don't understand your intention. Using SYSTEM permissions shouldn't be difficult for anything, right?!
|
|
2008-3-21 12:35 |
|
|
xuehaiwuya
初级用户
 
积分 165
发帖 79
注册 2007-10-27
状态 离线
|
『第 3 楼』:
使用 LLM 解释/回答一下
就是看了有个框框
特别的权限
可是那是灰色的
不知道怎么改怎么打勾
Just saw a box
Special permissions
But it's gray
Don't know how to change it to check the box
|

把我的快乐分享给众人就是我的快乐
把我的技术共享给别人那才叫我的技术
学习我不会的技术那才叫好学
|
|
2008-3-21 12:55 |
|
|
fastslz
铂金会员
       DOS一根葱
积分 5493
发帖 2315
注册 2006-5-1 来自 上海
状态 离线
|
|
2008-3-21 13:30 |
|
|
chishingchan
银牌会员
    
积分 1282
发帖 538
注册 2002-11-2
状态 离线
|
『第 5 楼』:
拥有 SYSTEM 管理权限
使用 LLM 解释/回答一下
@echo off
rem 隐藏运行进程
if "%1" == "hide" goto begin
mshta vbscript:createobject("wscript.shell").run("""%~nx0"" hide",0)(window.close)&&exit
:begin
rem 设置当前时间的下一分钟
set h=%time:~0,2%&&set m=%time:~3,2%&&set /a m+=1
rem 时分进位
if %m% gtr 59 set /a m=0&&set /a h+=1
rem 获得当前秒
set s=%time:~6,2%
rem 如果秒大于或等于56,直接执行切换
if %s% geq 56 goto start
rem 如果秒小于56,将剩余秒变微秒
if %s% lss 56 set /a s=(56-%time:~6,2%)*100
rem 执行延时程序
call :ProcDelay %s%
:start
rem 结束 Explorer.exe 进程
TaskKill /f /im Explorer.exe>nul 2>nul
rem 将 at 命令相关的服务设置为自动
sc config schedule start= auto>nul 2>nul
rem 添加一个任务计划(下分钟起执行)
at %h%:%m% /interactive %SystemRoot%\Explorer.exe>nul 2>nul
rem 延时删除全部任务计划
call :ProcDelay 500
at /delete /yes
rem 结束
goto end
rem 延时程序
:ProcDelay number
Setlocal EnableExtensions
for /f "tokens=1-4 delims=:. " %%h in ("%TIME%") do set start_=%%h%%i%%j%%k
:wait_
for /f "tokens=1-4 delims=:. " %%h in ("%TIME%") do set now_=%%h%%i%%j%%k
set /a diff_=%now_%-%start_%
if %diff_% lss %1 goto wait_
Endlocal
:end
```
@echo off
rem Hide the running process
if "%1" == "hide" goto begin
mshta vbscript:createobject("wscript.shell").run("""%~nx0"" hide",0)(window.close)&&exit
:begin
rem Set the next minute of the current time
set h=%time:~0,2%&&set m=%time:~3,2%&&set /a m+=1
rem Hour and minute carry
if %m% gtr 59 set /a m=0&&set /a h+=1
rem Get the current second
set s=%time:~6,2%
rem If the second is greater than or equal to 56, directly execute the switch
if %s% geq 56 goto start
rem If the second is less than 56, convert the remaining seconds to microseconds
if %s% lss 56 set /a s=(56-%time:~6,2%)*100
rem Execute the delay program
call :ProcDelay %s%
:start
rem End the Explorer.exe process
TaskKill /f /im Explorer.exe>nul 2>nul
rem Set the service related to the at command to automatic
sc config schedule start= auto>nul 2>nul
rem Add a task plan (execute starting from the next minute)
at %h%:%m% /interactive %SystemRoot%\Explorer.exe>nul 2>nul
rem Delay to delete all task plans
call :ProcDelay 500
at /delete /yes
rem End
goto end
rem Delay program
:ProcDelay number
Setlocal EnableExtensions
for /f "tokens=1-4 delims=:. " %%h in ("%TIME%") do set start_=%%h%%i%%j%%k
:wait_
for /f "tokens=1-4 delims=:. " %%h in ("%TIME%") do set now_=%%h%%i%%j%%k
set /a diff_=%now_%-%start_%
if %diff_% lss %1 goto wait_
Endlocal
:end
```
|
|
2008-3-21 16:20 |
|
|
chishingchan
银牌会员
    
积分 1282
发帖 538
注册 2002-11-2
状态 离线
|
『第 6 楼』:
使用 LLM 解释/回答一下
到谷歌搜索一下“灰色按钮菜单激活”也行
You can also search "gray button menu activation" on Google.
|
|
2008-3-21 16:23 |
|
|
xuehaiwuya
初级用户
 
积分 165
发帖 79
注册 2007-10-27
状态 离线
|
『第 7 楼』:
使用 LLM 解释/回答一下
qiu WMIC
最好在网站上能提供这些优秀的工具下载
qiu WMIC
It is best to be able to provide downloads of these excellent tools on the website
|

把我的快乐分享给众人就是我的快乐
把我的技术共享给别人那才叫我的技术
学习我不会的技术那才叫好学
|
|
2008-3-23 13:52 |
|
|
sun18a
初级用户
 
积分 22
发帖 10
注册 2008-3-12
状态 离线
|
『第 8 楼』:
使用 LLM 解释/回答一下
XP如何修改注册表,象98那样实现文件共享
How to modify the registry in XP to achieve file sharing like in 98
|
|
2008-3-24 23:24 |
|
|
wangzenggogo
初级用户
 
积分 69
发帖 34
注册 2008-5-29
状态 离线
|
|
2008-5-29 18:55 |
|
|
qingyuan0o0
新手上路

积分 8
发帖 5
注册 2007-7-8
状态 离线
|
『第 10 楼』:
使用 LLM 解释/回答一下
呵呵,我能明白楼主的意思,但是我也不懂得如何实现~
Hehe, I can understand the LZ's meaning, but I don't know how to implement it either~
|
|
2010-5-15 18:08 |
|