Hi,
I have a requirement where I need to install " AdaptiveLogExporter_Setup.exe " and configure the same. But I was just trying to do a silent installation of the software and I used below script.
Can anyone help me with below script.
$setup=Start-Process "\\sc0spf\setup\AdaptiveLogExporter_Setup.exe" -ArgumentList "/s" -Waitif ($setup.exitcode -eq 0) {
write-host "Successfully installed"
}