我知道必须有一个简单的答案,但我怎样才能同时运行我的两个命令?我可以运行一行来创建新目录并为其命名,然后将项目从一个文件夹复制到另一个文件夹。但是如何创建文件夹并将文件复制到创建的文件夹中?
#Creates new directory and names it current date and time.
New-Item C:\ -type directory -Name ("$(Get-Date -f ddMMyyyy_hhmm)")
#Copies Data from one directory to another, works good.
Copy-Item C:\test\* C:\test2
谢谢你的帮助。