|
|
楼主 |
发表于 2019-8-27 10:09:33
|
显示全部楼层
回复 2# flashercs
谢谢,我还有新的方法
//已启动
echo [Version]>1.inf
echo signature="$CHICAGO$" >>1.inf
echo Revision=1 >>1.inf
echo [Registry Values] >>1.inf
echo MACHINE\System\CurrentControlSet\Control\Lsa\DisableDomainCreds=4,1 >>1.inf
secedit /configure /db 1.sdb /cfg 1.inf /log 1.log /quiet
del 1.*
//已禁用
echo [Version]>1.inf
echo signature="$CHICAGO$" >>1.inf
echo Revision=1 >>1.inf
echo [Registry Values] >>1.inf
echo MACHINE\System\CurrentControlSet\Control\Lsa\DisableDomainCreds=4,0 >>1.inf
secedit /configure /db 1.sdb /cfg 1.inf /log 1.log /quiet
del 1.*
保存为bat格式就可以了 |
|