84

この回答の PowerShell スクリプトを使用して、ファイルのコピーを実行しています。フィルタを使用して複数のファイル タイプを含めたい場合に問題が発生します。

Get-ChildItem $originalPath -filter "*.htm"  | `
   foreach{ $targetFile = $htmPath + $_.FullName.SubString($originalPath.Length); ` 
 New-Item -ItemType File -Path $targetFile -Force;  `
 Copy-Item $_.FullName -destination $targetFile }

夢のように働きます。ただし、フィルターを使用して複数のファイルタイプを含めたい場合に問題が発生します。

Get-ChildItem $originalPath ` 
  -filter "*.gif","*.jpg","*.xls*","*.doc*","*.pdf*","*.wav*",".ppt*")  | `
   foreach{ $targetFile = $htmPath + $_.FullName.SubString($originalPath.Length); ` 
 New-Item -ItemType File -Path $targetFile -Force;  `
 Copy-Item $_.FullName -destination $targetFile }

次のエラーが表示されます。

Get-ChildItem : Cannot convert 'System.Object[]' to the type 'System.String' required by parameter 'Filter'. Specified method is not supported.
At F:\data\foo\CGM.ps1:121 char:36
+ Get-ChildItem $originalPath -filter <<<<  "*.gif","*.jpg","*.xls*","*.doc*","*.pdf*","*.wav*",".ppt*" | `
    + CategoryInfo          : InvalidArgument: (:) [Get-ChildItem], ParameterBindingException
    + FullyQualifiedErrorId : CannotConvertArgument,Microsoft.PowerShell.Commands.GetChildItemCommand

-filter括弧のさまざまな繰り返しがあり、括弧なし、、、-include包含を変数として定義し(例:$fileFilter)、毎回上記のエラーが発生し、常に次のものを指しています-filter

それに対する興味深い例外は、私がコーディングするときです-filter "*.gif,*.jpg,*.xls*,*.doc*,*.pdf*,*.wav*,*.ppt*"。エラーはありませんが、結果が得られず、コンソールにも何も返されません。私はうっかりandそのステートメントで暗示をコーディングしたと思いますか?

では、何が間違っているのでしょうか。どうすれば修正できますか?

4

5 に答える 5

3

このようなものがうまくいくはずです(私にとってはそうでした)。-Filterの代わりに使用したい理由-Includeは、 include は に比べてパフォーマンスが大幅に低下するため-Filterです。

以下は、各ファイル タイプと、個別のファイルで指定された複数のサーバー/ワークステーションをループするだけです。

##  
##  This script will pull from a list of workstations in a text file and search for the specified string


## Change the file path below to where your list of target workstations reside
## Change the file path below to where your list of filetypes reside

$filetypes = gc 'pathToListOffiletypes.txt'
$servers = gc 'pathToListOfWorkstations.txt'

##Set the scope of the variable so it has visibility
set-variable -Name searchString -Scope 0
$searchString = 'whatYouAreSearchingFor'

foreach ($server in $servers)
    {

    foreach ($filetype in $filetypes)
    {

    ## below creates the search path.  This could be further improved to exclude the windows directory
    $serverString = "\\"+$server+"\c$\Program Files"


    ## Display the server being queried
    write-host “Server:” $server "searching for " $filetype in $serverString

    Get-ChildItem -Path $serverString -Recurse -Filter $filetype |
    #-Include "*.xml","*.ps1","*.cnf","*.odf","*.conf","*.bat","*.cfg","*.ini","*.config","*.info","*.nfo","*.txt" |
    Select-String -pattern $searchstring | group path | select name | out-file f:\DataCentre\String_Results.txt

    $os = gwmi win32_operatingsystem -computer $server
    $sp = $os | % {$_.servicepackmajorversion}
    $a = $os | % {$_.caption}

    ##  Below will list again the server name as well as its OS and SP
    ##  Because the script may not be monitored, this helps confirm the machine has been successfully scanned
        write-host $server “has completed its " $filetype "scan:” “|” “OS:” $a “SP:” “|” $sp


    }

}
#end script
于 2014-01-30T10:00:56.590 に答える
-2

インクルードを使用するのが最も簡単な方法です

http://www.vistax64.com/powershell/168315-get-childitem-filter-files-multiple-extensions.html

于 2013-09-04T14:46:15.277 に答える