I am trying to build an enviornemnt an dusing Hyrdation scripts from deploymentresearch.com ( thanks to Johan Arwidmark and team). The below mentioned script works fine with local SQL server deployment but i want it to work with my remote SQL server instance. Can any please advice as to what all changes I have to do to make this script work.
'//---------------------------------------------------------------------------- '// Solution: Hydration '// Purpose: Used to Install Install - System Center 2012 R2 Operations Manager '// Version: 1.0 - July 12, 2012 - Mikael Nystrom '// Version: 1.1 - January 10, 2014 - Johan Arwidmark '// '// This script is provided "AS IS" with no warranties, confers no rights and '// is not supported by the authors or Deployment Artist. '// '//----------------------------------------------------------------------------
'//---------------------------------------------------------------------------- '// Global constant and variable declaration '//----------------------------------------------------------------------------
Option Explicit
Dim iRetVal
'//---------------------------------------------------------------------------- '// End declarations '//----------------------------------------------------------------------------
'//---------------------------------------------------------------------------- '// Main routine '//----------------------------------------------------------------------------
'On Error Resume Next iRetVal = ZTIProcess ProcessResults iRetVal On Error Goto 0
Dim sFile Dim sCmd Dim sApp Dim sSCOMActionAccount Dim sSCOMActionAccountPW Dim sSCOMDASAccount Dim sSCOMDASAccountPW Dim sSCOMSrv Dim sSCOMDBSrv Dim sSCOMManagementGroup
If not oFSO.FileExists(sFile) then oLogging.CreateEntry "Install " & sApp & ": " & sFile & " was not found, unable to install " & sApp & "", LogTypeError ZTIProcess = Failure Exit Function End if
oLogging.CreateEntry "Installing " & sApp & ": Server", LogTypeInfo oLogging.CreateEntry "The Setup log file for " & sApp & " is OpsMgrSetupWizard.log", LogTypeInfo
We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.
Hi All,
I am trying to build an enviornemnt an dusing Hyrdation scripts from deploymentresearch.com ( thanks to Johan Arwidmark and team). The below mentioned script works fine with local SQL server deployment but i want it to work with my remote SQL server instance. Can any please advice as to what all changes I have to do to make this script work.
Appreciate your help in advance.
Share this post
Link to post
Share on other sites