Determines if ImportExcel is installed and if not loads the local psd1

This commit is contained in:
dfinke
2018-07-04 18:50:44 -04:00
parent f18bcff4db
commit a9aeca9550

3
LoadPSD1.ps1 Normal file
View File

@@ -0,0 +1,3 @@
if((Get-Module -list ImportExcel) -eq $null) {
Import-Module $PSScriptRoot\ImportExcel.psd1 -force
}