私はPowerShellを初めて使用するので、ここで助けが必要です。以下は、フォルダー内のExcelファイルを見つけるために作成したスクリプトです。Excelシートのファイルは、同じマシン上の別のフォルダーの内容と比較されます。場所は次のとおりです。"C:\ MKS_DEV \"一致したファイルは圧縮され、スクリプトに示されているように別の場所に配置されます。これらのスクリプトは、異なるマシン上の他のユーザーによって使用されるため、両方のフォルダーの場所が異なるマシン上で異なる可能性があります。
スクリプトを実行しなければならないときに常に場所を指定する必要がなく、これを実装する方法がわからないように、両方のフォルダーの場所に引数を記述したり、パラメーターを使用したりしたいと思います。
スクリプトは完全に機能しますが、引数/パラメーターをスクリプトに組み込む必要があります。どんな助けでも大歓迎です。
ありがとう。
コードは次のとおりです。
# Creating an object for the Excel COM addin
$ExcelObject = New-Object -ComObject Excel.Application
# Opening the Workbook
$ExcelWorkbook = $ExcelObject.Workbooks.Open("C:\Eric_Source\Test.xls")
# Opening the Worksheet by using the index (1 for the first worksheet)
$ExcelWorksheet = $ExcelWorkbook.Worksheets.Item(1)
# The folder where the files will be copied/The folder which will be zipped
# later
$a = Get-Date
$targetfolder = "C:\"+$a.Day+$a.Month+$a.Year+$a.Hour+$a.Minute+$a.Second
# Check if the folder already exists. Command Test-Path $targetfolder returns
# true or false.
if(Test-Path $targetfolder)
{
# delete the folder if it already exists. The following command deletes a
# particular directory
Remove-Item $targetfolder -Force -Recurse -ErrorAction SilentlyContinue
}
# The following command is used to create a particular directory
New-Item -ItemType directory -Path $targetfolder
# Declaration of variables, COlumn value = 6 for Column F
$row = 1
$col = 6
# Read a value from the worksheet with the following command
$filename = $ExcelWorksheet.Cells.Item($row,$col).Value2
$filename
# change the folder value below to specify the folder where the powershell
# needs to search for the filename that it reads from excel file.
$folder = "C:\MKS_DEV\"
$null = ""