__Background__:
1. Using the [106186](https://autospinstaller.codeplex.com/SourceControl/changeset/106186) release
2. Topology: 1 SQL, 1 WFE, 1 APP
Attached: our XML
__Behavior__:
We've been firing off the AutoSPInstaller.bat file from the WFE server in our case. Everything runs fine from checks, prereq installs, binary install, cumulative update, farm creation from WFE and it abruptly stops the script when trying to run Remote install on APP with [this](http://i.imgur.com/o961vF7.png) error:
>
> -There are other servers specified as farm members in:
> -\\...\AutoSPInstallerInput.XML
> -but <RemoteInstall> is not set to "true" - nothing else to do.
>
...
__Workaround__:
Interestingly, when we fire off this batch file second time time from WFE server then the script executes remotely to APP just fine. This led us to the guts of Franken-Scripts and we added a check for remote install (copied what you already have lines 64-80 in Main.ps1) in Remote-Install function. We noticed that the registry values as correct as we go through install but the value of $enableRemoteInstall does not get updated properly unless we did this check. At this point, the script was kicking off remotely fine :)
But we ran into another hiccup right after remote install was preparing to start on APP-
> "Cannot bind argument to parameter 'SecureString' because it is null"
Tracing the code, we determined that it didn't have credential value passed, so we added a check for this as well (also something you already have in Main.ps1 in this region- '#Region MAIN - Check for input file and start the install").
With these two changes (our current version of Main.ps1 also attached), we were able to run things without a hicchup and are happy. We just want to reach out about this before we get too lost in copying pasting around :)
__Question for community, brianlala__:
Why us!? jk What are we doing different that no one else seems to be reporting this issue? Or has anyone else seen this issue?
Let me know if I can clarify anything here.
Thank You,
Samir Raut
Comments: ** Comment from web user: Macrel **
1. Using the [106186](https://autospinstaller.codeplex.com/SourceControl/changeset/106186) release
2. Topology: 1 SQL, 1 WFE, 1 APP
Attached: our XML
__Behavior__:
We've been firing off the AutoSPInstaller.bat file from the WFE server in our case. Everything runs fine from checks, prereq installs, binary install, cumulative update, farm creation from WFE and it abruptly stops the script when trying to run Remote install on APP with [this](http://i.imgur.com/o961vF7.png) error:
>
> -There are other servers specified as farm members in:
> -\\...\AutoSPInstallerInput.XML
> -but <RemoteInstall> is not set to "true" - nothing else to do.
>
...
__Workaround__:
Interestingly, when we fire off this batch file second time time from WFE server then the script executes remotely to APP just fine. This led us to the guts of Franken-Scripts and we added a check for remote install (copied what you already have lines 64-80 in Main.ps1) in Remote-Install function. We noticed that the registry values as correct as we go through install but the value of $enableRemoteInstall does not get updated properly unless we did this check. At this point, the script was kicking off remotely fine :)
But we ran into another hiccup right after remote install was preparing to start on APP-
> "Cannot bind argument to parameter 'SecureString' because it is null"
Tracing the code, we determined that it didn't have credential value passed, so we added a check for this as well (also something you already have in Main.ps1 in this region- '#Region MAIN - Check for input file and start the install").
With these two changes (our current version of Main.ps1 also attached), we were able to run things without a hicchup and are happy. We just want to reach out about this before we get too lost in copying pasting around :)
__Question for community, brianlala__:
Why us!? jk What are we doing different that no one else seems to be reporting this issue? Or has anyone else seen this issue?
Let me know if I can clarify anything here.
Thank You,
Samir Raut
Comments: ** Comment from web user: Macrel **
Hi,
I am using AutoSPInstaller for the first time and am looking for a clarification.
I managed to get the SP 2013 app server installed and configured with Central Admin and various services, but got
"There are other servers specified as farm members in but <RemoteInstall> is not set to "true" - nothing else to do" even though I have the following - and Brian explained why that is in this thread ...
<RemoteInstall Enable="true">
<ParallelInstall>true</ParallelInstall>
</RemoteInstall>
Brian wrote: "don't bother with RemoteInstall with a) such a small farm and b) with SharePoint 2013 (due to the reboots involved)."
Q. What is the approach to installing without remote install? Do I just copy the files to my WFE and run the script there?