|
本帖最后由 aichong168 于 2021-3-17 15:46 编辑
计算机进不去系统,怎么才能看到原系统的ip地址和计算机名等信息
https://wenda.so.com/q/1533920319217044
[已解决] 计算机进不去系统,怎么才能看到原系统的ip地址和计算机名等信息
https://www.itsk.com/thread-120300-1-1.html
刚给你查了一下资料 你试试看能不能成 首先还是需要一个PE 进PE之后加载本机的注册表
(已解决)pe下获取本机用户名与ip、dns地址
虽然手动可以获得,但如果有个工具会方便很多。
进PE,运行注册表编辑器regedit,加载配置单元:windows\system32\config\下的SYSTEM文件。
用户名
[HKEY_LOCAL_MACHINE\sys\SYSTEM\ControlSet001\Control\ComputerName\ComputerName]
"ComputerName"="******"
ip、dns地址:
[HKEY_LOCAL_MACHINE\sys\SYSTEM\ControlSet001\Services\Tcpip\Parameters\Interfaces]
这个下面有几个项,其中一个里面就有
感谢dos时代菜鸟提供批处理
默认操作系统目录为C:\windows,如在其它盘请直接找到windows\system32\config\下的SYSTEM文件拖放到下面批处理上即可。
@echo off
set tempsys=%1
if %1*==* SET TEMPSYS=C:\windows\system32\config\SYSTEM
REG LOAD HKLM\TEMPSYS %tempsys%
set regx=HKLM\TEMPSYS\ControlSet001
echo 显示本地网标 >%temp%\temp.txt
for /f "tokens=3" %%c in ('reg query %regx%\Control\ComputerName\ComputerName ^| find /i "computername"') do echo %%c >>%temp%\temp.txt
echo.>>%temp%\temp.txt
echo 显示本地固定ip>>%temp%\temp.txt
for /f %%c in ('reg query %regx%\Services\Tcpip\Parameters\Interfaces') do (
for /f "tokens=3" %%d in ('reg query %%c /v ipaddress^|find /i "ipaddress"') do if not %%d*==0.0.0.0\0\0* echo %%d>>%temp%\temp.txt
)
echo.>>%temp%\temp.txt
echo 显示本地子网掩码>>%temp%\temp.txt
for /f %%c in ('reg query %regx%\Services\Tcpip\Parameters\Interfaces') do (
for /f "tokens=3" %%d in ('reg query %%c /v subnetmask^|find /i "subnetmask"') do if not %%d*==0.0.0.0\0\0* echo %%d>>%temp%\temp.txt
)
echo.>>%temp%\temp.txt
echo 显示本地默认网关>>%temp%\temp.txt
for /f %%c in ('reg query %regx%\Services\Tcpip\Parameters\Interfaces') do (
for /f "tokens=3" %%d in ('reg query %%c /v defaultgateway^|find /i "defaultgateway"') do if not %%d*==\0* echo %%d>>%temp%\temp.txt
)
echo 显示本地固定dns>>%temp%\temp.txt
for /f %%c in ('reg query %regx%\Services\Tcpip\Parameters\Interfaces') do (
for /f "tokens=3" %%d in ('reg query %%c /v nameserver^|find /i "nameserver"') do echo %%d>>%temp%\temp.txt
)
echo.>>%temp%\temp.txt
REG UNLOAD HKLM\TEMPSYS
cls
type %temp%\temp.txt
echo.
pause
转载自网络 感谢分享
在PE里查看目标系统的IP地址和计算机名等信息.zip
(907 Bytes, 下载次数: 110)
|
评分
-
查看全部评分
|