POWERSHELL 或者CMD 有什么命令可以复制一些名字不同的文件!
我用powershell输入个命令得到个列表类似于FileName--------C:\windows\Explorer.EXEC:\windows\SYSTEM32\n...
我用powershell 输入个命令得到个列表类似于
FileName
--------
C:\windows\Explorer.EXE
C:\windows\SYSTEM32\ntdll.dll
C:\windows\system32\kernel32.dll
C:\windows\system32\KERNELBASE.dll
C:\windows\system32\ADVAPI32.dll
C:\windows\system32\msvcrt.dll
C:\windows\SYSTEM32\sechost.dll
C:\windows\system32\RPCRT4.dll
C:\windows\system32\GDI32.dll
C:\windows\system32\USER32.dll
C:\windows\system32\LPK.dll
C:\windows\system32\USP10.dll
C:\windows\system32\SHLWAPI.dll
C:\windows\system32\SHELL32.dll
C:\windows\system32\ole32.dll
C:\windows\system32\OLEAUT32.dll
C:\windows\system32\EXPLORERFRAME.dll
C:\windows\system32\DUser.dll
C:\windows\system32\DUI70.dll
C:\windows\system32\IMM32.dll
C:\windows\system32\msutb.dll
C:\windows\system32\USERENV.dll
C:\windows\system32\SAMLIB.dll
C:\windows\system32\samcli.dll
C:\Windows\System32\gameux.dll
怎么能用一条命令都从系统文件夹吧他们复制出来?有这样通过管道直接复制的命令么? 展开
FileName
--------
C:\windows\Explorer.EXE
C:\windows\SYSTEM32\ntdll.dll
C:\windows\system32\kernel32.dll
C:\windows\system32\KERNELBASE.dll
C:\windows\system32\ADVAPI32.dll
C:\windows\system32\msvcrt.dll
C:\windows\SYSTEM32\sechost.dll
C:\windows\system32\RPCRT4.dll
C:\windows\system32\GDI32.dll
C:\windows\system32\USER32.dll
C:\windows\system32\LPK.dll
C:\windows\system32\USP10.dll
C:\windows\system32\SHLWAPI.dll
C:\windows\system32\SHELL32.dll
C:\windows\system32\ole32.dll
C:\windows\system32\OLEAUT32.dll
C:\windows\system32\EXPLORERFRAME.dll
C:\windows\system32\DUser.dll
C:\windows\system32\DUI70.dll
C:\windows\system32\IMM32.dll
C:\windows\system32\msutb.dll
C:\windows\system32\USERENV.dll
C:\windows\system32\SAMLIB.dll
C:\windows\system32\samcli.dll
C:\Windows\System32\gameux.dll
怎么能用一条命令都从系统文件夹吧他们复制出来?有这样通过管道直接复制的命令么? 展开
2013-07-20 · 知道合伙人软件行家
关注
展开全部
在后面加管道符就行。foreach-object{copy-item $_ -dest destpatch}
追问
在具体一点啊!我现在想得到一个进程的所有module
我那个文件列表就是这样的出来的!
Get-Process -name qq -module | format-table filename
这样怎么加到你那个命令里面?
追答
Get-Process -name qq -module|foreach-object{copy-item $_.filename -dest destpatch}
本回答被提问者采纳
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
Copy-Item [-LiteralPath] <string[]> [[-Destination] <string>] [-Container] [-Credential <PSCredential>] [-Exclude <string[]>] [-Filter <string>] [-Force] [-Include <string[]>] [-PassThru] [-Recurse] [-Confirm] [-WhatI
f] [-UseTransaction] [<CommonParameters>]
Copy-Item [-Path] <string[]> [[-Destination] <string>] [-Container] [-Credential <PSCredential>] [-Exclude <string[]>] [-Filter <string>] [-Force] [-Include <string[]>] [-PassThru] [-Recurse] [-Confirm] [-WhatIf] [-Us
eTransaction] [<CommonParameters>]
f] [-UseTransaction] [<CommonParameters>]
Copy-Item [-Path] <string[]> [[-Destination] <string>] [-Container] [-Credential <PSCredential>] [-Exclude <string[]>] [-Filter <string>] [-Force] [-Include <string[]>] [-PassThru] [-Recurse] [-Confirm] [-WhatIf] [-Us
eTransaction] [<CommonParameters>]
追问
这个我知道啊!问是怎么一下全部复制!怎么通过管道传递这个列表
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询