We have policies in place that block unknown exes from running in appdata. Is it possible to specify a different directory using remote.bat and install.txt?
###
rem simple batch file to run the install over a network
rem change the network path to your server
@echo off
net use u: \\server\SDI
u:
cd \
SDIO_x64_R732.exe -script:scripts\install.txt
c:
net use u: /delete
###
#
# Snappy Driver Installer Origin
#
# Title: Simple Install
# Author: Glenn Delahoy
# Description: Simple script to install missing and better drivers.
# Notes: Test mode by default. Set ‘enableinstall on’ to make it live.
#
echo ==============================
echo Snappy Driver Installer Origin
echo Simple Install
echo ==============================
echo
echo Initialising…
verbose 384
logging on
enableinstall on
init
echo Installing missing and better drivers…
select missing better
install
end
###
Thanks for your work on a great piece of software!