吾爱破解 - 52pojie.cn

 找回密码
 注册[Register]

QQ登录

只需一步,快速开始

查看: 396|回复: 5
收起左侧

[经验求助] 改下这个【给新建文件夹添加当前日期】的批处理文件

[复制链接]
hongweiwhw 发表于 2024-7-11 21:10
25吾爱币
之前看到有个帖子是给新建文件夹添加当前日期的,这个是他给的代码。现在有个问题是在win10上运行没有问题, 在win11上运行就没有作用了。请大神修改下让我可以在win11上用,谢谢了
[Asm] 纯文本查看 复制代码
@ECHO OFF
SET dt=%date:~0,4%%date:~5,2%%date:~8,2%
reg add "HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\Explorer\NamingTemplates" /v RenameNameTemplate /t REG_SZ /d %dt%--%%s% /f 

最佳答案

查看完整内容

[mw_shl_code=shell,true]@ECHO OFF :: Check for administrative privileges openfiles >nul 2>&1 if %errorlevel% NEQ 0 ( echo Requesting administrative privileges... powershell -command "Start-Process cmd -ArgumentList '/c %~fnx0' -Verb RunAs" exit /b ) :: Get current date in YYYYMMDD format for /f "tokens=2 delims==" %%I in ('"wmic os get localdatetime /value"') do set dt=%%I ...

发帖前要善用论坛搜索功能,那里可能会有你要找的答案或者已经有人发布过相同内容了,请勿重复发帖。

bu^shan 发表于 2024-7-11 21:10
[Shell] 纯文本查看 复制代码
@ECHO OFF
:: Check for administrative privileges
openfiles >nul 2>&1
if %errorlevel% NEQ 0 (
    echo Requesting administrative privileges...
    powershell -command "Start-Process cmd -ArgumentList '/c %~fnx0' -Verb RunAs"
    exit /b
)

:: Get current date in YYYYMMDD format
for /f "tokens=2 delims==" %%I in ('"wmic os get localdatetime /value"') do set dt=%%I
set dt=%dt:~0,8%

:: Add registry entry
reg add "HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\Explorer\NamingTemplates" /v RenameNameTemplate /t REG_SZ /d %dt%--%%s% /f

echo Operation completed successfully.
pause

保存为.bat 运行
平淡最真 发表于 2024-7-11 23:19
freelive 发表于 2024-7-12 16:04
当初遇你时 发表于 2024-7-12 16:55
新建一个文本,把它粘贴进去,然后后缀名改成bat,管理员运行就可以
 楼主| hongweiwhw 发表于 2024-7-13 15:06
找到原因了,我把系统的时间显示格式改了,调整系统格式后可以正常用了
您需要登录后才可以回帖 登录 | 注册[Register]

本版积分规则

返回列表

RSS订阅|小黑屋|处罚记录|联系我们|吾爱破解 - LCG - LSG ( 京ICP备16042023号 | 京公网安备 11010502030087号 )

GMT+8, 2024-12-13 05:44

Powered by Discuz!

Copyright © 2001-2020, Tencent Cloud.

快速回复 返回顶部 返回列表