Hello,
I am trying to configure a deployment to cover our multiple "Office 365 Click to Run technologies". I thought this would be simple since we already have our multiple installs configured and when we go to install, we just run a batch script that runs the specified command. I am however getting an error when testing the script to run via CMD installer package.
I can successfully run the command via a Command Prompt without hesitations, but when I configure the command via a package, I get the following error in the Deployments tab on the workstation:
Result: Deployment ended: Incorrect function. Stop(Failure). Credential: (<domain>\<user>). ShareCredential: (<domain>\<user>).Here is my package xml:
<?xml version="1.0" encoding="utf-8"?>
<Package>
<Name>OneDrive for Business</Name>
<Description>Deploys OneDrive for Business from \\dfs_path\Office 365 2013\E1\ folder</Description>
<ShutdownOption>0</ShutdownOption>
<ShutdownTime>0</ShutdownTime>
<MaxDuration>900</MaxDuration>
<Rescan>True</Rescan>
<Steps>
<Step>
<Nr>1</Nr>
<Name>Install OneDrive</Name>
<Type>2</Type>
<ReturnCodes>0,1641,3010</ReturnCodes>
<Success>-2</Success>
<Failure>-3</Failure>
<Path></Path>
<Parameters></Parameters>
<MSIParameters></MSIParameters>
<MSIName></MSIName>
<MSIVersion></MSIVersion>
<Command>"\\dfs_path\Office 365 2013\E1\setup.exe" /configure "\\dfs_path\Office 365 2013\E1\OneDriveInstall.xml"</Command>
<EditMode>False</EditMode>
<Conditions />
</Step>
</Steps>
<SoftwareVersion>5217</SoftwareVersion>
</Package>
The only thing I can contribute to this error is that the setup.exe always returns a UAC prompt when we run it via command prompt or batch script.
Any help would be appreciated.
Thank you.