gpt4 book ai didi

powershell - 将 powershell 输出存储在 CMD 中的变量中

转载 作者:行者123 更新时间:2023-12-03 16:51:00 25 4
gpt4 key购买 nike

在批处理文件中,如何将 powershell 命令的输出存储在变量中这不起作用

set yest=powershell get-date((get-date).addDays(-1)) -uformat "%Y%m%d"


powershell get-date((get-date).addDays(-1)) -uformat "%Y%m%d"

给出20130623

set yest=powershell get-date((get-date).addDays(-1)) -uformat "%Y%m%d"
echo %yest%

给出powershell get-date((get-date).addDays(-1)) -uformat "md"

最佳答案

右大括号和百分比需要转义/加倍。

@echo off
for /f "delims=" %%a in ('powershell get-date((get-date^).addDays(-1^)^) -uformat "%%Y%%m%%d"') do set d8=%%a
echo %d8%
pause

关于powershell - 将 powershell 输出存储在 CMD 中的变量中,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/17287587/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com