在PowerShell中组合两个命令

时间:2013-10-22 18:02:10

标签: powershell

我知道必须有一个简单的答案,但我怎样才能同时运行我的两个命令?我可以运行一行来创建新目录并命名,然后将项目从一个文件夹复制到另一个文件夹。但是如何创建文件夹并将文件复制到创建的文件夹中?

    #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

感谢您的帮助。

1 个答案:

答案 0 :(得分:0)

您可以使用New-Item返回的对象的FullName属性作为另一个命令的目标。即。

Copy-Item C:\somefolder\* -Destination (New-Item -type Directory -name (Get-Date -f ddMMyyyy_hhmmss)).FullName