Hello all, I am a bit confused, this script from electropica works great when running manually, the whole SDI folder is on a smb share and kind of wonder, if I want to integrate this in an unattend setup, shouldnt I just call this .bat file or use the whole _Drivers.bat and SDI.bat files? I prefer this method as it automagically launch the proper .exe without having to name it, so when an update changes the name i.e. SDI_x64_423.exe it still works!
If the proper way of doing this in unattend has to be using the SDI.bat and _Drivers.bat, how would I then name the set wdir= option for smb... ? It seems to me like both ways would work but prefer to ask.
I do not have much experience with the unattend.xml, I guess I could just add whats needed to mine using what's provided on here?
Thanks!
If SDI, running from the network, install or update network driver, will it crash or will it handle the temporay lost of connection ?
I have review my script to this to have a debug command lline windows and install network driver from local SDI if needed for the net use.
start cmd /k SET curdir=%~dp0 FOR /F "tokens=*" %%G IN ('DIR /B %curdir%*.exe') do (start wait %curdir%%%G -autoinstall -autoclose -license) NET USE z: \\fogserver\Drivers Z: FOR /F "tokens=*" %%G IN ('DIR /B *.exe') do (%%G -autoinstall -autoclose -license) C: NET USE /delete /yes Z: