美文网首页
写几个小脚本_windows批处理脚本

写几个小脚本_windows批处理脚本

作者: masakakaikai | 来源:发表于2015-05-04 21:43 被阅读1302次

cmd命令shutdown有以下几个主要参数:-s(关机) -r(重启) -f(强制关闭所有未响应程序) -t(延时) -a(取消设置)

定时自动关机/重启命令:

23:00 自动关机
at 23:00 shutdown -s
23:00 自动重启
at 23:00 shutdown -r
延时自动关机/重启命令:


10分钟后自动关机, 600秒钟
shutdown -s -t 600
10分钟后自动重启
shutdown -r -t 600
注:如果想强制关机要可以加上-f 参数;如果已经执行命令后想撤销自动关机,命令为shutdown -a(你知道的,可以WIN+R输入shutdown -a来运行这个命令)


将以上的某一条命令粘贴到记事本中,保存为.bat文件,双击执行即可;或者直接WIN+R运行某一条命令。


显示隐藏文件:新建一个txt文本文档,把下面的内容拷贝进去,然后保存为 显示.bat ,双击运行此bat文件,再刷新下你的文件浏览器,就能看到隐藏的文件了。

reg add HKCU\Software\Microsoft\Windows\Currentversion\Explorer\Advanced /v Hidden /t REG_DWORD /d 1 /fexit

不显示隐藏文件:如上内容,只是命令改成以下内容,保存为 隐藏.bat,双击运行,刷新文件浏览器,隐藏文件就会又隐藏起来了。

reg add HKCU\Software\Microsoft\Windows\Currentversion\Explorer\Advanced /v Hidden /t REG_DWORD /d 2 /fexit


清除系统临时文件:

@echo off
echo 正在清除系统垃圾文件,请稍等......
del /f /s /q %systemdrive%\*.tmp
del /f /s /q %systemdrive%\*._mp
del /f /s /q %systemdrive%\*.log
del /f /s /q %systemdrive%\*.gid
del /f /s /q %systemdrive%\*.chk
del /f /s /q %systemdrive%\*.old
del /f /s /q %systemdrive%\recycled\*.*
del /f /s /q %windir%\*.bak
del /f /s /q %windir%\prefetch\*.*
rd /s /q %windir%\temp & md %windir%\temp
del /f /q %userprofile%\cookies\*.*
del /f /q %userprofile%\recent\*.*
del /f /s /q "%userprofile%\Local Settings\Temporary Internet Files\*.*"
del /f /s /q "%userprofile%\Local Settings\Temp\*.*"
del /f /s /q "%userprofile%\recent\*.*"
echo 清除系统垃圾文件完成!
echo. & pause

方法一样,自己试试。来自网络

面向的读者是:初三一个男生
2015年5月4日21:40:17
@kaikai

相关文章

  • 写几个小脚本_windows批处理脚本

    cmd命令shutdown有以下几个主要参数:-s(关机) -r(重启) -f(强制关闭所有未响应程序) -t(延...

  • Linux Shell 脚本编写学习

    shell脚本 Shell Script,Shell脚本与Windows/Dos下的批处理]相似,也就是用各类命令...

  • 第四单元 Shell脚本

    一、Shell介绍 1、什么是shell脚本 Shell脚本与Windows/Dos下的批处理相似,也就是用各类命...

  • shell脚本

    一、Shell介绍 1、什么是shell脚本 Shell脚本与Windows/Dos下的批处理相似,也就是用各类命...

  • 批处理脚本

    shell脚本和批处理,通常就是linux和windows下进行的一些简单脚本执行任务的途径。对于linux来说,...

  • Windows下批处理文件完成简单的系统管理

    笔者在linux平台下写脚本较多,在windows平台使用批处理文件.bat完成过数据库备份和wireshar...

  • Windows的批处理脚本

    Windows批处理功能配合脚本还是很强大的!(1) 这是一篇技术教程,我会用很简单的文字表达清楚自己的意思,你要...

  • Python脚本:一键加固Ubuntu服务器

    镜像文章:批处理脚本:一键加固Windows终端[https://www.jianshu.com/p/53418d...

  • 自研导出 git 版本差异到剪贴板工具

    由于规定每次发布版本需要记录文件变动差异,写了个批处理脚本。自学了一会儿 Windows 批处理教程,欢迎浏览和发...

  • windows命令行美化

    本文给大家分享下windows中的命令行窗口美化方法,对于经常需要编写windows下的批处理脚本,能提升使用体验...

网友评论

      本文标题:写几个小脚本_windows批处理脚本

      本文链接:https://www.haomeiwen.com/subject/tnhifttx.html