(2020-2-3 13:12:23)
以-任意一种方式.创建快捷方式.
移动到.%programdata%\Microsoft\Windows\Start Menu\Programs\Startup
文件夹.
%programdata%也就是环境变量?(未找到.(2020-2-3 13:19:14)).=C:\ProgramData
(2020-2-3 13:15:40)
完成.尝试中.(2020-2-3 13:16:40)
add(2020-2-5 13:33:11)
添加批处理文件.自动在开机.执行批处理脚本.自动打开一些东西.或者做一些事情.(2020-2-5 13:33:43)
也许…vbs文件.也是可以支持的.?(2020-2-5 13:33:53)
待测试.
(2020-2-5 13:35:54)over
add(2020-2-6 16:56:40)
在开机时.每次自动生成电池报告.并打开.(2020-2-6 16:57:00)
添加到.start.bat文件.即可.
explorer C:\ProgramData\Microsoft\Windows\Start Menu\Programs\StartUp
E:
powercfg /BATTERYREPORT
explorer battery-report.html
(2020-2-6 16:57:49)
vbs操作电脑.(2020-2-6 18:29:20)关闭语音助理.的输入.
文件名
start.vbs
dim operation
set operation=wscript.createobject("wscript.shell")
' operation.run "cmd /k echo satart"
wscript.sleep 3000
operation.sendkeys "{f6}"
' 关闭.(开机后打开的.)语音输入.
(2020-2-6 18:31:23)
add(2020-2-6 20:10:04)
最终.start.bat文件.
REM cmd /k
explorer C:\ProgramData\Microsoft\Windows\Start Menu\Programs\StartUp
E:
REM cd .
REM pause
powercfg /BATTERYREPORT
REM explorer battery-report.html
set newname="battery-report(%date:~0,4%-%date:~5,2%-%date:~8,2%_%time:~0,2%-%time:~3,2%-%time:~6,2%).html"
rename battery-report.html %newname%
explorer %newname%