mstsc快捷键
1、Ctrl+Alt+Break 在窗口模式和全屏之间切换。
2、Ctrl+Alt+End 显示Windows安全性对话框
3、mstsc -admin
powercfg.exe -h off
printbrmui
userpasswords2
chrome://extensions/
net user UserName Password /add
net localgroup Administrators UserName /add
shutdown -s -t 0:立即关机,-s表示关机,-t 0表示立即执行关机操作。
shutdown -s -t 3600:在3600秒后关机,-t后面的数字表示关机前的等待时间。
shutdown -f -s -t 0:强制关闭所有应用程序后立即关机,-f表示强制关闭。
shutdown -a:取消系统定时关机。
shutdown -r -t 5:5秒后重启计算机
脚本生成歌曲列表 for /R F:\ %%i in (*.*) do @echo %%i >> list.m3u
[HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\Policies\System]
"DisableTaskMgr"=dword:00000000
[-HKEY_LOCAL_MACHINE\SOFTWARE\Policies\Google]
--------------------------------------------------------------------------
[HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\DateTime\Servers]
@="1"
"1"="cn.pool.ntp.org"
"2"="time.nist.gov"
"3"="192.168.1.2"
"4"="ntp.aliyun.com"
"5"="time1.cloud.tencent.com"
[HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Services\W32Time\Parameters]
"Type"="NTP"
--------------------------------------------------------------------------
setlocal enabledelayedexpansion
for %%F in (C D E F G H I J K L M N O P Q R S T U V W X Y Z) do (
set "file=%%~F:\ISOS\TEST.ISO"
if exist "!file!" (
imdisk -a -f "%%~F:\sys\EasyDrv7_Win7.x64_7.23.1221.1.iso" -m p: -o ro
)
)
start P:\
exit
endlocal
--------------------------------------------------------------------------
setlocal enabledelayedexpansion
for %%F in (C D E F G H I J K L M N O P Q R S T U V W X Y Z) do (
set "file=%%~F:\Windows\System32\config\SOFTWARE"
if exist "!file!" (
echo 文件 %%~F"!file!" 存在。
reg load HKLM\Temp2 %%~F:/Windows/System32/config/system
reg export "HKEY_LOCAL_MACHINE\Temp2\ControlSet001\services\Tcpip\Parameters\Interfaces" %%~F_IP.txt /y
reg unload HKLM\Temp2
)
)
endlocal
网友评论