Skip to content

Instantly share code, notes, and snippets.

@guskma
Created February 10, 2022 02:25
Show Gist options
  • Save guskma/07f1e6446a958efa279f9273eb29f559 to your computer and use it in GitHub Desktop.
Save guskma/07f1e6446a958efa279f9273eb29f559 to your computer and use it in GitHub Desktop.
VBAモジュール(Sheet、Userform含む)を出力するPowerShellスクリプト
rem Charset: Shift-JIS
rem usage: .\ExcelModulesExporter.ps1 <EXCEL FILEPATH ...>
PowerShell -ExecutionPolicy RemoteSigned .\ExcelModulesExporter.ps1 <EXCEL FILEPATH ...>
pause
param([string]$fileName)
$filePath = Join-Path $pwd $fileName
$excel = New-Object -ComObject Excel.Application
$excel.Workbooks.Open($filePath) | % {
$_.VBProject.VBComponents | % {
switch ($_.Type) {
1 { # vbext_ct_StdModule
$moduleType = "Modules"
$extension = ".bas"
}
2 { # vbext_ct_ClassModule
$moduleType = "Classes"
$extension = ".cls"
}
3 { #vbext_ct_MSForm
$moduleType = "Forms"
$extension = ".frm"
}
100 { # vbext_ct_Document
$moduleType = "Sheets"
$extension = ".cls"
}
Default { # vbext_ct_ActiveXDesigner and Other
$moduleType = "Others"
$extension = ".cls"
}
}
$exportFilePath = Join-Path ($filePath + "_src") $moduleType
if (-not (Test-Path $exportFilePath)) {
New-Item $exportFilePath -ItemType Directory
}
$exportFileNameFull = Join-Path $exportFilePath ($_.Name + $extension)
$_.Export($exportFileNameFull)
Write-Host $exportFileNameFull
}
}
$excel.Quit()
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment