用于生成带有日期和时间的电子邮件地址的批处理脚本

用于生成带有日期和时间的电子邮件地址的批处理脚本

我想创建一个批处理脚本,根据脚本运行的日期/时间输出电子邮件地址,并将其放入剪贴板。例如,如果我运行它,则会生成一个电子邮件地址,如下所示 [电子邮件保护] 我用它来进行测试,以便我可以以更准确的时间搜索错误日志,从而更容易缩小错误范围。

答案1

这应该能解决问题。
通常我不会为这个网站上的人写脚本(SU 不是免费的脚本编写服务),但这个脚本只有两行,没有逻辑,所以我还是写了。

@echo off

:: First, I am using powershell to get the date just like requested.
:: It gives us total control over the format.
for /f %%a in ('powershell -Command "Get-Date -format MM-dd-yy-HH-mm-ss"') do set email_addr=support-%%[email protected]

:: Now, put our value into the clipboard
echo %email_addr%|clip

祝你好运。

相关内容