Search the Community
Showing results for tags 'cmd'.
-
Hi there, i'm in desperate need of help regarding a command line issue I am having. I am trying to run a command line that calls on an .exe in program files and also uses an .xml file to configure an installation of BizTalk 2013R2. Method 1 - Task Sequence command line SCCM Task Sequence Command Line: "C:\Program Files (x86)\Microsoft BizTalk Server 2013 R2\configuration.exe" /s "C:\Program Files (x86)\Microsoft BizTalk Server 2013 R2\BizTalkDomainExport.xml" Method 2 - Task Sequence batch file SCCM Task Sequence Command Line: "C:\Program Files (x86)\Microsoft BizTalk Server 2013 R2\ConfigureBIzTalkCMD.bat" Content of batch file runas /profile /user:domain\administrator /password:##### cmd cd "C:\Program Files (x86)\Microsoft BizTalk Server 2013 R2\" Configuration.exe /s BizTalkExportConfiguration.xml Both above command lines work fine when manually run on the server and completes a silent configuration of BizTalk 2013R2 - but once it is run through a task sequence it fails. NOTE: The BizTalk installation creates an SQL DB. I have set the account that runs the SCCM task sequence as a sysadmin in SQL. ERRORS (Both logs attached; cmdSCCM.log and batchSCCM.log) Both command line and batch file start with the same errors (below) but have different errors later in the log files. Error getting system isolation info. Code 8027000C Remediation failed. Code 8027000C Remediation failed with error code 8027000C I have attempted to run the above commands and configuraton files through an SCCM package/application with the same results. It can't be this hard to run a command line through SCCM can it? I have run other command lines before with no issue. I am lost, can anyone help? Thank you in advance. batchSCCM.log cmdSCCM.log
- 5 replies
-
- Task Sequences
- Command Line
-
(and 4 more)
Tagged with:
-
Hi, I need to deploy Oracle database client 11 g to some of our already installed client devices and thou OSD deployment. I did some research how other did it but couldn't find a way which matched out company. I read that is should work to install it as a task sequence with only one command, but I was not able to make it work. So I made a good old fashion batch-file. @echo offnet use /delete N: net use N: "\\Server\windows\Oracle\Oracle 11gR2\x86\client" /USER:domain\cm_jd xxxxxx N: REM Set TMP=C:\TEMP\Oracle REM Set TEMP=C:\TEMP\Oracle setup.exe -silent -nowelcome -responseFile "N:/response/NetListner.rsp" echo Installing Oracle 11g with NetListner please wait.. Timeout /t 60 /NOBREAK > NUL echo Copy tnsnames\tnsnames.ora to C:\Oracle\11.2.0\NETWORK\ADMIN\ Timeout /t 5 /NOBREAK > NUL copy tnsnames\tnsnames.ora C:\Oracle\11.2.0\NETWORK\ADMIN C: net use /delete N: /y echo Installation completed.. Timeout /t 5 /NOBREAK > NUL It works but there must be a better way? Best regards, Brian Pedersen
- 8 replies
-
- oracle
- application
-
(and 3 more)
Tagged with: