12 lines
307 B
PowerShell
12 lines
307 B
PowerShell
param([string]$SrcPath);
|
|
|
|
$DestPath = "c:\EgtProg\EgwMultiEngineManager\"
|
|
|
|
# verifica esistenza della folder di destinazione
|
|
if(!(Test-Path -Path $DestPath )){
|
|
New-Item -ItemType directory -Path $DestPath
|
|
}
|
|
|
|
# copia la dll nella folder di destinazione
|
|
Copy-Item -Path $SrcPath -Destination $DestPath
|