|
本帖最后由 yyz2191958 于 2023-12-14 09:35 编辑
刷新系统-返回原来窗口(PE 专用)
****************************
刷新系统.bat:
@echo off
隐藏批处理窗口.exe @ /HID
::************************************************************************************************
::【重启资源管理器】
X:\Windows\System32\pecmd.exe kill explorer & start "" "X:\Windows\explorer.exe"
::************************************************************************************************
::【检测(cmd是否进入 “桌面” {即是否在“桌面”刷新}】)(是到:S,否到:T)】
echo %cd% >159.txt %【cmd所在目录保存为:159.txt】%
type 159.txt|findstr /rec:"\\Desktop *">nul
if %errorlevel% equ 0 (goto :S) else goto :T
::************************************************************************************************
:T
::【打开原来的窗口(即:cmd所在目录)】
start "" "%cd%"
:S
del 159.txt
毫秒.com 1200
::************************************************************************************************
::【关闭 “此电脑” 窗口】
mshta "javascript:wnds=new ActiveXObject('Shell.Application').windows(); for (i=0; i<wnds.Count; i++) {w=wnds(i); w && w.document && w.document.folder && '此电脑'==w.document.folder.title && w.quit();} close();"
::************************************************************************************************
exit
|
|