我想使用Powershell在系统中安装notifyix odbc连接器。
请检查下面我尝试过的代码。
$toolsDir = (Split-Path -parent $MyInvocation.MyCommand.Definition)
$Src64path = Join-Path $toolsDir 'installclientsdk.exe'
Start-Process -Wait -FilePath $Src64path -ArgumentList '/S /v/qn' -PassThru
Write-Host 'Informix Driver is Installed for 64bit'
这段代码给出的是安装驱动程序的安装结果,但是当我在控制面板中签入时,却没有得到期望的结果。