SCCM 2012R2/SQL 2008R2 CU4 problem

Hi All,
our environment: SCCM 2012R2 / SQL 2008R2
Wanted to apply the CU4 for SCCM but when it comes to updating SQL i'm getting following errors:
Could someone please advise re solving the problem?
Thanks a lot in advance.
Msg 2812, Level 16, State 62, Line 1
Could not find stored procedure 'k'.
Msg 207, Level 16, State 1, Procedure spAddRecoveryTrackingRecord, Line 41
Invalid column name 'TransportType'.
Msg 207, Level 16, State 1, Procedure spAddRecoveryTrackingRecord, Line 46
Invalid column name 'TransportType'.
Msg 207, Level 16, State 1, Procedure spAddRecoveryTrackingRecord, Line 49
Invalid column name 'TransportType'.
(0 row(s) affected)
Msg 208, Level 16, State 6, Procedure v_ContentDistributionReport_G, Line 2
Invalid object name 'v_ContentDistributionReport_G'.
(0 row(s) affected)
(0 row(s) affected)
(0 row(s) affected)
(0 row(s) affected)
(0 row(s) affected)
(0 row(s) affected)
(0 row(s) affected)
(0 row(s) affected)
(0 row(s) affected)
(0 row(s) affected)
(0 row(s) affected)
(0 row(s) affected)
(0 row(s) affected)
(0 row(s) affected)
(0 row(s) affected)
(0 row(s) affected)
(1 row(s) affected)
(1 row(s) affected)
(1 row(s) affected)
(1 row(s) affected)
(1 row(s) affected)
(1 row(s) affected)
(1 row(s) affected)
(1 row(s) affected)
(1 row(s) affected)
(1 row(s) affected)
(1 row(s) affected)
(0 row(s) affected)
(0 row(s) affected)
(1 row(s) affected)
(1 row(s) affected)
(1 row(s) affected)
(1 row(s) affected)
(1 row(s) affected)
(1 row(s) affected)
(1 row(s) affected)
(1 row(s) affected)
(1 row(s) affected)
(1 row(s) affected)
(1 row(s) affected)
(1 row(s) affected)
(1 row(s) affected)
(1 row(s) affected)
(1 row(s) affected)
(1 row(s) affected)
(1 row(s) affected)
(2 row(s) affected)
(0 row(s) affected)
(0 row(s) affected)
(0 row(s) affected)
(0 row(s) affected)
(0 row(s) affected)
(0 row(s) affected)
(1 row(s) affected)
(1 row(s) affected)
(1 row(s) affected)
(1 row(s) affected)
(2 row(s) affected)
(0 row(s) affected)
(0 row(s) affected)
(0 row(s) affected)
(0 row(s) affected)
(0 row(s) affected)
(0 row(s) affected)
(1 row(s) affected)
(1 row(s) affected)
(1 row(s) affected)
(1 row(s) affected)
(2 row(s) affected)
(0 row(s) affected)
(0 row(s) affected)
(0 row(s) affected)
(0 row(s) affected)
(0 row(s) affected)
(0 row(s) affected)
(1 row(s) affected)
(1 row(s) affected)
(1 row(s) affected)
(0 row(s) affected)
(0 row(s) affected)
(0 row(s) affected)

How are you executing this (through osql/sqlcmd/SSMS)?  Can you post the code that it is trying to execute when you get the error "Could not find stored procedure 'k'."?  you can double-click on the error message in the results pane to
go directly to the code that is hitting the error if you're using SSMS.
Here is one suggestion to get around the error if using osql/sqlcmd:
http://blogs.msdn.com/b/sayanghosh/archive/2007/12/23/msg-2812-level-16-state-62-line-1-could-not-find-stored-procedure-s-issues-with-osql.aspx
Thanks,
Sam Lester (MSFT)
http://blogs.msdn.com/b/samlester
This posting is provided "AS IS" with no warranties, and confers no rights. Please remember to click
"Mark as Answer" and
"Vote as Helpful" on posts that help you. This can be beneficial to other community members reading the thread.

Similar Messages

  • SQL Query (Migrating report from SMS 2003 and SCCM 2012R2)

    Hello everyone,
    I solicit you because I have to work on migrating reports from SMS 2003 and SCCM 2012 R2.
    The following SQL query causes me some problems:
    SELECT DISTINCT SYS.Netbios_Name0 AS Computer, (SELECT SUM(ProcAddtl.NumberOfLogicalProcessors0) FROM v_GS_Processor_Addtl0 ProcAddtl WHERE ProcAddtl.ResourceID=SYS.ResourceID) [Cores], CS.NumberOfProcessors0 AS CPU, CPU.MaxClockSpeed0 As Speed, CPU.Name0, MEMORY.TotalPhysicalMemory0/1024 AS [RAM Mb], (SELECT LDISKS.Name0 + '=' + CONVERT(varchar(15), LDISKS.Size0/1024) + ' | ' as 'data()' FROM v_GS_LOGICAL_DISK LDISKS WHERE LDISKS.ResourceID=SYS.ResourceID AND (LDISKS.Name0='C:' OR LDISKS.Name0='D:') ORDER BY LDISKS.Name0 FOR xml path('')) [Logical Disk (Gb)], (SELECT LDISKS.Name0 + '=' + CONVERT(varchar(15), LDISKS.FreeSpace0/1024) + ' | ' as 'data()' FROM v_GS_LOGICAL_DISK LDISKS WHERE LDISKS.ResourceID=SYS.ResourceID AND (LDISKS.Name0='C:' OR LDISKS.Name0='D:') ORDER BY LDISKS.Name0 FOR xml path('')) [Free Space(Gb)],CS.Manufacturer0 AS Manufacturer, CS.Model0, OS.Caption0 AS 'OS', (SELECT CONVERT(varchar(10), NIC.Index0) + '=' + NIC.IPAddress0 + ' | ' as 'data()' FROM v_GS_NETWORK_ADAPTER_CONFIGUR NIC WHERE NIC.ResourceID=SYS.ResourceID FOR xml path('')) [Network], (SELECT Count(Name0) FROM v_GS_SCSI_CONTROLLER SCSI WHERE SCSI.ResourceID=SYS.ResourceID AND SCSI.Name0 Like '%Qlogic%') [# FC HBA], INFONOYAU.RoleServeur0 AS Role, INFONOYAU.Zone0 AS Zone
    FROM v_R_System SYS
    LEFT JOIN v_GS_COMPUTER_SYSTEM CS ON CS.ResourceID = SYS.ResourceID
    LEFT JOIN v_GS_PROCESSOR CPU ON CPU.ResourceID = SYS.ResourceID
    LEFT JOIN v_GS_X86_PC_MEMORY MEMORY ON MEMORY.ResourceID = SYS.ResourceID
    LEFT JOIN v_GS_OPERATING_SYSTEM OS ON OS.ResourceID = SYS.ResourceID
    LEFT JOIN v_GS_Informations_Noyau0 INFONOYAU ON INFONOYAU.ResourceID = SYS.ResourceID
    LEFT JOIN v_FullCollectionMembership COL ON COL.ResourceID = SYS.ResourceID
    WHERE COL.CollectionID = @CollectionID ORDER BY SYS.Netbios_Name0
    Can a charitable soul help me to migrate this query to a SCCM 2012R2 report?

    The following SQL query causes me some problems:
    Why? What's happening?
    Torsten Meringer | http://www.mssccmfaq.de

  • Have delay to deliver updates to client in sccm 2012r2

    Hi 
    that's a few month that I'm working with sccm 2012r2 in order to keep my organization updated and patched .but the problem is after discovering a new computer and triggering that computer to get updates from SUP It doesn't show any updates in software center
    ,in fact after 2 hours those updates appear and start installing .I searched the internet a lot .all settings are right according to microsoft documents .recently I doubt to my automatic deployment rules .those rules are working fine but I think the delay
    could be because of the number of my rules ,I have 35 automatic deployment rules that start at the same time .this is the screen shot of the rules . is this configuration suitable ?
    if the number of update rule is too much what should to do with maximum number of updates in each rule(1000 update per each rule) ?
    thanks a million 

    Yes. That's a lot of update rules (as a side question, why are being so granular with them?); however, it has nothing to do with what you've described. Update Rules have nothing to do with enforcing updates on clients. ADRs merely create (or update) update
    groups, update packages, and update deployments. Update deployments perform the actual work of enforcing updates on clients. Also, there's no 1,000 updates per rule requirement. Update groups however are limited to 1,000 updates. Still, none of this truly
    has anything to do with what you've described.
    ConfigMgr is not an instant gratification system -- it is an enterprise client management tool and certain actions and activities take time to happen. Can you please walk us through *exactly* what you're doing when installing a new system including the timing
    and what your expectations are?
    Jason | http://blog.configmgrftw.com | @jasonsandys
    thank you very much .
    but my expectation is when I install a new os ,Sccm detect that as soon as possible and give client the updates asap again even when I use the Action tab in configuration manager Item in control panel.
    of course it detect my new client but it takes time to give them updates (about 2 hours).Before I was using wsus ,updates was sent to client and was installed immediately after client detection(of course using Check for Update in control panel).
    I want to decrease my rules .but whats the best solution and categorization ?now I have 4449 Updates in sccm database .
    in Update classification I just selected critical,security,rullup,update.
    I would be glad if you masters give me  a helpful solution .
    thanks

  • MSXML6.dll method"SEND" don't work in Windows Server 2012 and SQL 2008R2

    Hi all,
    I have a SP to send a WebService data
    It works fine on Windows 2008R2 server and also on Windows Server 2003.
    moving it on Windows Server 2012 with SQL 2008R2 express (32bit) or SQL 2012 express (32bit), it doesn't work anymore.
    Below the SP.
    -- =============================================
    -- Author: Giancarlo MADA Service 2008
    -- Create date: 09/09/2008
    -- Description: Web Service Interface
    -- =============================================
    CREATE PROCEDURE [dbo].[spmd_HTTPRequest]
    @URI varchar(2000) = '',
    @methodName varchar(50) = '', -- POST, GET
    @requestBody varchar(8000) = '', -- XML Document envelope
    @SoapAction varchar(255),
    @UserName nvarchar(100), -- Domain\UserName or UserName
    @Password nvarchar(100),
    @responseText varchar(8000) output
    as
    SET NOCOUNT ON
    IF @methodName = ''
    BEGIN
    select FailPoint = 'Method Name must be set'
    return
    END
    set @responseText = 'FAILED'
    DECLARE @objectID int
    DECLARE @hResult int
    DECLARE @source varchar(255), @desc varchar(255)
    EXEC @hResult = sp_OACreate 'MSXML2.ServerXMLHTTP.6.0', @objectID OUT
    IF @hResult <> 0
    BEGIN
    EXEC sp_OAGetErrorInfo @objectID, @source OUT, @desc OUT
    SELECT hResult = convert(varbinary(4), @hResult),
    source = @source,
    description = @desc,
    FailPoint = 'Create failed',
    MedthodName = @methodName
    goto destroy
    return
    END
    -- open the destination URI with Specified method
    EXEC @hResult = sp_OAMethod @objectID, 'open', null, @methodName, @URI, 'false', @UserName, @Password
    IF @hResult <> 0
    BEGIN
    EXEC sp_OAGetErrorInfo @objectID, @source OUT, @desc OUT
    SELECT hResult = convert(varbinary(4), @hResult),
    source = @source,
    description = @desc,
    FailPoint = 'Open failed',
    MedthodName = @methodName
    goto destroy
    return
    END
    -- set request headers
    EXEC @hResult = sp_OAMethod @objectID, 'setRequestHeader', null, 'Content-Type', 'text/xml;charset=UTF-8'
    IF @hResult <> 0
    BEGIN
    EXEC sp_OAGetErrorInfo @objectID, @source OUT, @desc OUT
    SELECT hResult = convert(varbinary(4), @hResult),
    source = @source,
    description = @desc,
    FailPoint = 'SetRequestHeader failed',
    MedthodName = @methodName
    goto destroy
    return
    END
    -- set soap action
    EXEC @hResult = sp_OAMethod @objectID, 'setRequestHeader', null, 'SOAPAction', @SoapAction
    IF @hResult <> 0
    BEGIN
    EXEC sp_OAGetErrorInfo @objectID, @source OUT, @desc OUT
    SELECT hResult = convert(varbinary(4), @hResult),
    source = @source,
    description = @desc,
    FailPoint = 'SetRequestHeader failed',
    MedthodName = @methodName
    goto destroy
    return
    END
    declare @len int
    set @len = len(@requestBody)
    EXEC @hResult = sp_OAMethod @objectID, 'setRequestHeader', null, 'Content-Length', @len
    IF @hResult <> 0
    BEGIN
    EXEC sp_OAGetErrorInfo @objectID, @source OUT, @desc OUT
    SELECT hResult = convert(varbinary(4), @hResult),
    source = @source,
    description = @desc,
    FailPoint = 'SetRequestHeader failed',
    MedthodName = @methodName
    goto destroy
    return
    END
    -- send the request
    EXEC @hresult = sp_OAMethod @objectID, 'send', NULL, @requestBody
    IF @hResult <> 0
    BEGIN
    EXEC sp_OAGetErrorInfo @objectID, @source OUT, @desc OUT
    SELECT hResult = convert(varbinary(4), @hResult),
    source = @source,
    description = @desc,
    FailPoint = 'Send failed',
    MedthodName = @methodName
    goto destroy
    return
    END
    declare @statusText varchar(1000), @status varchar(1000)
    -- Get status text
    exec sp_OAGetProperty @objectID, 'StatusText', @statusText out
    exec sp_OAGetProperty @objectID, 'Status', @status out
    select @status, @statusText, @methodName
    -- Get response text
    exec sp_OAGetProperty @objectID, 'responseText', @responseText out
    IF @hResult <> 0
    BEGIN
    EXEC sp_OAGetErrorInfo @objectID, @source OUT, @desc OUT
    SELECT hResult = convert(varbinary(4), @hResult),
    source = @source,
    description = @desc,
    FailPoint = 'ResponseText failed',
    MedthodName = @methodName
    goto destroy
    return
    END
    destroy:
    exec sp_OADestroy @objectID
    SET NOCOUNT OFF
    The underlined portion is the one that gives error, reported below.
    "Msxml6.dll 0x80070057 The parameter is incorrect. Send failed POST"
    Previously the SP used MSXML3.dll and also with that it gives the same problem.
    I can't understand what the wrong parameter is.
    Even because, as mentioned at the beginning, everything works fine on windows server 2008R2 and Windows Server 2003
    Some ideas?

    Hello, 
    We have built a dll via CLR on the database. 
    Below is the code.
    If you want to send the file SOAP.dll. Give me an e-mail ..
    USE MydatabaseGO
    /****** Object: SqlAssembly [SOAP] Script Date: 03/05/2014 12:59:14 ******/
    CREATE ASSEMBLY [SOAP]
    AUTHORIZATION [dbo]
    FROM MyPath\SOAP.dll
    WITH PERMISSION_SET = EXTERNAL_ACCESS
    GO
    USE Mydatabase
    GO
    /****** Object: StoredProcedure [dbo].[spmd_HTTPRequest3] Script Date: 03/05/2014 12:53:32 ******/
    CREATE PROCEDURE [dbo].[spmd_HTTPRequest3]
    @URI [nvarchar](4000),
    @methodName [nvarchar](4000),
    @requestBody [nvarchar](4000),
    @SoapAction [nvarchar](4000),
    @UserName [nvarchar](4000),
    @Password [nvarchar](4000),
    @responseText [nvarchar](4000) OUTPUT
    WITH EXECUTE AS CALLER
    AS
    EXTERNAL NAME [SOAP].[StoredProcedures].[spmd_HTTPRequest3]
    GO
    Now call the new SP called spmd_HTTPRequest3
    By..

  • SCCM 2012R2 Endpoint 4.7 update

    Since upgrading to the new 4.7 Client some (not all)downloads are being blocked by endpoint because it thinks it is a virus. The we have ran this test many times in .doc .xls .ppt we know are not infected. Uninstalling endpoint and going to an
    earlier version seems to fix the issue. Anyone else had this?

    Ok. So we have found a common factor so far...
    Devices that run the windows 8 to 8.1 upgrade are showing the fault. Any exceptions to file types etc do not work!  Going back to Client 4.6 solves this issue but means we are behind on the client version.
    Any machine that has been built from 8.1 as scratch do not have this fault. so far as we have seen so far
    We also upgraded to SCCM 2012R2 CU4 in a vein effort in case the policy xml's changed but this did not solve anything. We have stopped rolling out 4.7 for now.
    UPDATE.. We are still only seeing those devices that have ran the Windows 8 to 8.1 upgrade process showing this fault. I think its time MS looked to see what is causing this.

  • HS : Connecting from 9.2.0.8 database on AIX to  MS SQL 2008R2

    Hello ,
    We have a requirement to connect from 9.2.0.8 database on AIX to MS SQL 2008R2 .
    Source :
    Oracle : 9.2.0.8 (64 bit)
    OS : AIX - 4.3.3.0/5.3.0.0 (64-bit)
    Target :
    MS SQL : 2008R2
    OS : Windows 2008 (64-bit)
    1] Can we use - Database Gateway for SQL Server for the above set up ? If so , does this require a separate license ?
    2] Where Do we need to install the "Database Gateway for SQL Server " -- soruce or target server ?
    3] Is there any other solution apart from using "Database Gateway for SQL Server " ?
    THanks,
    shashi

    Shashi,
    To answer your questions -
    1] Can we use - Database Gateway for SQL Server for the above set up ? If so , does this require a separate license ?
    Yes, you can use DG4MSQL and it does require a separate license.
    Your best option would be to use the latest version which is 11.2.0.3 but this requires you to apply patch 5965763 to your 9.2.0.8 RDBMS. See this note in My Oracle Support -
    Note.549796.1 Desupport of Oracle Transparent Gateways (Doc ID 549796.1)
    You also need to be on a particularAIX version as shown in the certification matrix -
    http://www.oracle.com/technetwork/database/gateways/certmatrix-168347.pdf
    if you install the gateway on AIX.
    2] Where Do we need to install the "Database Gateway for SQL Server " -- soruce or target server ?
    You can install DG4MSQL on any machine and connect to it from the RDBMS on AIX using database links. So, you can install on either AIX or Windows where SQL*Server is running. There is no difference in the performance.
    3] Is there any other solution apart from using "Database Gateway for SQL Server " ?
    You could also use the Database Gateway for ODBC (DG4ODBC) which uses a third party ODBC driver to make the connection between the gateway and the non-Oracle database. This is included with your RDBMS license but you need to supply the ODBC driver
    The following notes on My Orcle Support have further details and information -
    Master Note for Oracle Gateway Products (Doc ID 1083703.1)
    Options for Connecting to Foreign Data Stores and Non-Oracle Databases (Doc ID 233876.1)
    Functional Differences Between DG4ODBC and Specific Database Gateways (Doc ID 252364.1)
    Gateway and Generic Connectivity Licensing Considerations (Doc ID 232482.1)
    Depending what you want to do you could also use the GoldenGate product to replicate between Oracle and SQL*Server -
    http://www.oracle.com/technetwork/middleware/goldengate/overview/index.html
    This also requires aa separate license.
    Regards,
    Mike

  • How to solve Oracle SQL Developer connection problem ?

    Folks,
    Hello. I am using Oracle Database 11gR1. The Database Control Console https://localhost.localdomain:1158/em works correctly. I can create a Database and a table successfully.
    My OS is Linux and connects to internet successfully.
    In order to run SQL statements. we need to use Oracle SQL Developer. I connect Oracle SQL Developer in the following way:
    Connection Name: DB1 (this is my database name as well)
    Username: SYS (this is the user name I used to login to the Console)
    Password: SYS (this the password used to login to the Console)
    Connection Type: Basic
    Host Name: localhost
    Port: 1158
    SID: DB1 (this is created during installing the Database)
    But the error message comes up: "Status: Failure - IO exception Connection Reset."
    Can any folk tell me how to solve Oracle SQL Developer connection problem ?

    user8860348 wrote:
    Folks,
    Hello. I am using Oracle Database 11gR1. The Database Control Console https://localhost.localdomain:1158/em works correctly. I can create a Database and a table successfully.
    My OS is Linux and connects to internet successfully.
    In order to run SQL statements. we need to use Oracle SQL Developer. I connect Oracle SQL Developer in the following way:
    Connection Name: DB1 (this is my database name as well)
    Username: SYS (this is the user name I used to login to the Console)
    Password: SYS (this the password used to login to the Console)
    Connection Type: Basic
    Host Name: localhost
    Port: 1158
    SID: DB1 (this is created during installing the Database)
    But the error message comes up: "Status: Failure - IO exception Connection Reset."
    Can any folk tell me how to solve Oracle SQL Developer connection problem ?username: sys
    password: enter_your_correct_password given at the time of oracle installation
    role: select sysdba if you would connect as sysdba else select normal for users other than sys
    hostname: enter your oracle server hostname or ip address eg:- 192.168.11.12
    to find the hostname open terminal/command prompt in oracle installed machine
    type ---> hostname
    type ---->ping hostname
    you can find the ipaddress of the server
    port number: 1521 (default) ----> i guess , else check the port number in the tnsnames.ora file under your ORACLE_HOME/network/admin folder
    SID: DB1
    try it
    Good Luck

  • RE: Database (SQL-SERVER) access problem

    Have you used NT Control Panel/ ODBC to set up the ODBC data source name?
    You have to define the data source (database) SecTrade as well as the
    driver to be used (SQL Server). This can be done by selecting the Add
    button on the Data Sources screen in Control Panel/ ODBC.
    Hope this helps.
    Sanjay Murthi
    Indus Consultancy Services, Inc.
    From: Administrator
    Sent: Wednesday, August 13, 1997 6:49 PM
    To: "'[email protected]'"
    Cc: murthis; thyagarajm; thyagarm; vasasm; chandraa
    Subject: Database (SQL-SERVER) access problems
    MCI Mail date/time: Mon Aug 11, 1997 10:28 pm EST
    Source date/time: Mon, 11 Aug 1997 19:25:34 +0530
    Hi Forte-Users,
    We have a setup a Sql-Server database on a NT server. In the Forte
    EConsole,
    we have
    setup a ODBC-type Resource for this server, named SERVER2_ODBC. This NT
    server
    is configured as a Client Node in the active Forte environment. Note
    that
    Server2 is not
    the Forte server, but has Forte installed. There is another NT server
    which
    acts as the
    Forte server. NODEMGR and Sql-Server are running on SERVER2.
    In our application, we have a DBSession SO with the database source
    as SERVER2_ODBC, Userid=ForteInstructor. When running the application,
    Forte
    throws an exception, the gist of it being as follows:
    USER ERROR: (This error was converted)
    Failed to connect to database: SecTrade, username: ForteInstructor.
    [Microsoft][ODBC Driver Manager] Data source name not found and no
    default
    driver specified
    We have tried
    1) Installing ODBC drivers on the NT server (Server2)
    2) Accessing local databases from Forte clients which works fine
    3) Accessing the Sql-Server database through Isqlw (Sql-Server Client
    s/w) -
    It works.
    Could someone suggest what we should try to get rid of this problem?
    Thanks for any help,
    Kishore Puvvada

    Rajsarawat wrote:
    Dear sir/mam,
    I have installed sql server 2005 (server) and on another computer installed client. It installed successfully but on client side it does not seen, from where should i start it. so please send me procedure to install sql server 2005 on both side(client and server).You have to turn on network (external to your computer) access.
    Under programs->sql server look for "surface"

  • SCCM 2012R2 - Windows xp sp3 capture error

    Hi, i'm trying to capture Windows xp sp3 with SCCM 2012R2, but still getting an error. We already applied the hotfix for Windows xp with WinPe3.1. Is anybody able to help with smsts.log below or do i need to post some additinal logs?
    I followed this guide:
    http://blogs.technet.com/b/smartinez/archive/2012/03/27/how-can-you-capture-a-windows-xp-image-using-system-center-2012-configuration-manager-osd.aspx
    SMSTS.LOG
    <![LOG[!--------------------------------------------------------------------------------------------!]LOG]!><time="14:12:12.225-60" date="03-13-2014" component="TSManager" context="" type="1" thread="3784"
    file="instruction.cxx:804">
    <![LOG[Successfully completed the action (Install Deployment Tools - Sysprep) with the exit win32 code 0]LOG]!><time="14:12:12.225-60" date="03-13-2014" component="TSManager" context="" type="1" thread="3784"
    file="instruction.cxx:830">
    <![LOG[Set authenticator in transport]LOG]!><time="14:12:12.225-60" date="03-13-2014" component="TSManager" context="" type="0" thread="3784" file="libsmsmessaging.cpp:7734">
    <![LOG[Set a global environment variable _SMSTSLastActionRetCode=0]LOG]!><time="14:12:12.506-60" date="03-13-2014" component="TSManager" context="" type="0" thread="3784" file="executionenv.cxx:668">
    <![LOG[Set a global environment variable _SMSTSLastActionSucceeded=true]LOG]!><time="14:12:12.506-60" date="03-13-2014" component="TSManager" context="" type="0" thread="3784" file="executionenv.cxx:668">
    <![LOG[Clear local default environment]LOG]!><time="14:12:12.506-60" date="03-13-2014" component="TSManager" context="" type="0" thread="3784" file="executionenv.cxx:807">
    <![LOG[Updated security on object C:\_SMSTaskSequence.]LOG]!><time="14:12:12.568-60" date="03-13-2014" component="TSManager" context="" type="1" thread="3784" file="utils.cpp:1704">
    <![LOG[Set a global environment variable _SMSTSNextInstructionPointer=4]LOG]!><time="14:12:12.568-60" date="03-13-2014" component="TSManager" context="" type="0" thread="3784" file="executionenv.cxx:668">
    <![LOG[Set a TS execution environment variable _SMSTSNextInstructionPointer=4]LOG]!><time="14:12:12.568-60" date="03-13-2014" component="TSManager" context="" type="0" thread="3784" file="executionenv.cxx:386">
    <![LOG[Set a global environment variable _SMSTSInstructionStackString=0]LOG]!><time="14:12:12.568-60" date="03-13-2014" component="TSManager" context="" type="0" thread="3784" file="executionenv.cxx:668">
    <![LOG[Set a TS execution environment variable _SMSTSInstructionStackString=0]LOG]!><time="14:12:12.568-60" date="03-13-2014" component="TSManager" context="" type="0" thread="3784" file="executionenv.cxx:414">
    <![LOG[Save the current environment block]LOG]!><time="14:12:12.568-60" date="03-13-2014" component="TSManager" context="" type="0" thread="3784" file="executionenv.cxx:833">
    <![LOG[Start executing an instruction. Instruction name: Prepare ConfigMgr Client for Capture. Instruction pointer: 4]LOG]!><time="14:12:12.631-60" date="03-13-2014" component="TSManager" context="" type="1"
    thread="3784" file="engine.cxx:116">
    <![LOG[Set a global environment variable _SMSTSCurrentActionName=Prepare ConfigMgr Client for Capture]LOG]!><time="14:12:12.631-60" date="03-13-2014" component="TSManager" context="" type="0" thread="3784"
    file="executionenv.cxx:668">
    <![LOG[Set a global environment variable _SMSTSNextInstructionPointer=4]LOG]!><time="14:12:12.631-60" date="03-13-2014" component="TSManager" context="" type="0" thread="3784" file="executionenv.cxx:668">
    <![LOG[Set a global environment variable _SMSTSLogPath=C:\WINDOWS\CCM\Logs\SMSTSLog]LOG]!><time="14:12:12.631-60" date="03-13-2014" component="TSManager" context="" type="0" thread="3784"
    file="executionenv.cxx:668">
    <![LOG[Expand a string: osdpreparesmsclient.exe]LOG]!><time="14:12:12.631-60" date="03-13-2014" component="TSManager" context="" type="0" thread="3784" file="executionenv.cxx:782">
    <![LOG[Expand a string: ]LOG]!><time="14:12:12.631-60" date="03-13-2014" component="TSManager" context="" type="0" thread="3784" file="executionenv.cxx:782">
    <![LOG[Start executing the command line: osdpreparesmsclient.exe]LOG]!><time="14:12:12.631-60" date="03-13-2014" component="TSManager" context="" type="1" thread="3784" file="instruction.cxx:722">
    <![LOG[!--------------------------------------------------------------------------------------------!]LOG]!><time="14:12:12.631-60" date="03-13-2014" component="TSManager" context="" type="1" thread="3784"
    file="instruction.cxx:751">
    <![LOG[Expand a string: FullOS]LOG]!><time="14:12:12.631-60" date="03-13-2014" component="TSManager" context="" type="0" thread="3784" file="executionenv.cxx:782">
    <![LOG[Executing command line: osdpreparesmsclient.exe]LOG]!><time="14:12:12.631-60" date="03-13-2014" component="TSManager" context="" type="1" thread="3784" file="commandline.cpp:827">
    <![LOG[Checks succeeded. Client meets capture requirements]LOG]!><time="14:12:12.740-60" date="03-13-2014" component="PrepareSMSClient" context="" type="1" thread="2360" file="preparesmsclient.cpp:822">
    <![LOG[Set TSEnv:SMSClientVersion=5.00.7958.1000 ok]LOG]!><time="14:12:12.771-60" date="03-13-2014" component="PrepareSMSClient" context="" type="1" thread="2360" file="preparesmsclient.cpp:1240">
    <![LOG[Successfully enabled provisioning mode.]LOG]!><time="14:12:13.864-60" date="03-13-2014" component="PrepareSMSClient" context="" type="1" thread="2360" file="preparesmsclient.cpp:1380">
    <![LOG[Waiting for CcmExec service to be fully operational]LOG]!><time="14:12:13.864-60" date="03-13-2014" component="PrepareSMSClient" context="" type="1" thread="2360" file="utils.cpp:4888">
    <![LOG[CcmExec service is up and fully operational]LOG]!><time="14:14:10.723-60" date="03-13-2014" component="PrepareSMSClient" context="" type="1" thread="2360" file="utils.cpp:4937">
    <![LOG[Cache contents deleted successfully]LOG]!><time="14:14:10.833-60" date="03-13-2014" component="PrepareSMSClient" context="" type="1" thread="2360" file="preparesmsclient.cpp:116">
    <![LOG[Stopped the service 'ccmexec' successfully]LOG]!><time="14:14:24.336-60" date="03-13-2014" component="PrepareSMSClient" context="" type="1" thread="2360" file="servicecontrol.cpp:267">
    <![LOG[Successfully stopped the client agent service.]LOG]!><time="14:14:24.336-60" date="03-13-2014" component="PrepareSMSClient" context="" type="1" thread="2360" file="preparesmsclient.cpp:1276">
    <![LOG[Removing SitePolicy succeeded.]LOG]!><time="14:14:25.194-60" date="03-13-2014" component="PrepareSMSClient" context="" type="1" thread="2360" file="preparesmsclient.cpp:966">
    <![LOG[UnAssigning the SMSClient succeeded]LOG]!><time="14:14:25.335-60" date="03-13-2014" component="PrepareSMSClient" context="" type="1" thread="2360" file="preparesmsclient.cpp:893">
    <![LOG[Deleted 2 SMS certificates]LOG]!><time="14:14:25.335-60" date="03-13-2014" component="PrepareSMSClient" context="" type="1" thread="2360" file="preparesmsclient.cpp:1124">
    <![LOG[Deleting Client properties from file C:\WINDOWS\SMSCFG.INI succeeded.]LOG]!><time="14:14:25.382-60" date="03-13-2014" component="PrepareSMSClient" context="" type="1" thread="2360"
    file="preparesmsclient.cpp:1029">
    <![LOG[Reseting the Trusted Root Key successful]LOG]!><time="14:14:25.413-60" date="03-13-2014" component="PrepareSMSClient" context="" type="1" thread="2360" file="preparesmsclient.cpp:1195">
    <![LOG[Deleting instance of 'CCM_Client' successful]LOG]!><time="14:14:25.413-60" date="03-13-2014" component="PrepareSMSClient" context="" type="1" thread="2360" file="preparesmsclient.cpp:174">
    <![LOG[Deleting any existing TS execution requests so they are not captured into the image]LOG]!><time="14:14:25.413-60" date="03-13-2014" component="PrepareSMSClient" context="" type="1" thread="2360"
    file="preparesmsclient.cpp:201">
    <![LOG[Deleting 1 instance(s) of 'CCM_TSExecutionRequest' successful]LOG]!><time="14:14:25.428-60" date="03-13-2014" component="PrepareSMSClient" context="" type="1" thread="2360" file="preparesmsclient.cpp:234">
    <![LOG[Deleting any existing maintenance tasks so they are not captured into the image]LOG]!><time="14:14:25.428-60" date="03-13-2014" component="PrepareSMSClient" context="" type="1" thread="2360"
    file="preparesmsclient.cpp:238">
    <![LOG[Deleting 1 instance(s) of 'SMS_MaintenanceTaskRequests' successful]LOG]!><time="14:14:25.444-60" date="03-13-2014" component="PrepareSMSClient" context="" type="1" thread="2360" file="preparesmsclient.cpp:272">
    <![LOG[Successfully reset Registration status flag to "not registered"]LOG]!><time="14:14:25.444-60" date="03-13-2014" component="PrepareSMSClient" context="" type="1" thread="2360"
    file="preparesmsclient.cpp:411">
    <![LOG[Successfully disabled provisioning mode.]LOG]!><time="14:14:25.460-60" date="03-13-2014" component="PrepareSMSClient" context="" type="1" thread="2360" file="preparesmsclient.cpp:1380">
    <![LOG[Start to cleanup TS policy]LOG]!><time="14:14:25.460-60" date="03-13-2014" component="PrepareSMSClient" context="" type="0" thread="2360" file="utils.cpp:3639">
    <![LOG[End TS policy cleanup]LOG]!><time="14:14:25.507-60" date="03-13-2014" component="PrepareSMSClient" context="" type="0" thread="2360" file="utils.cpp:3687">
    <![LOG[Setting startup type for 'smstsmgr' service to manual..]LOG]!><time="14:14:25.507-60" date="03-13-2014" component="PrepareSMSClient" context="" type="1" thread="2360" file="preparesmsclient.cpp:1056">
    <![LOG['smstsmgr' service is configured to be manual]LOG]!><time="14:14:25.522-60" date="03-13-2014" component="PrepareSMSClient" context="" type="1" thread="2360" file="preparesmsclient.cpp:1063">
    <![LOG[SMS Client has been successfully prepared for OS capture]LOG]!><time="14:14:25.522-60" date="03-13-2014" component="PrepareSMSClient" context="" type="1" thread="2360" file="preparesmsclient.cpp:573">
    <![LOG[Process completed with exit code 0]LOG]!><time="14:14:25.647-60" date="03-13-2014" component="TSManager" context="" type="1" thread="3784" file="commandline.cpp:1123">
    <![LOG[!--------------------------------------------------------------------------------------------!]LOG]!><time="14:14:25.647-60" date="03-13-2014" component="TSManager" context="" type="1" thread="3784"
    file="instruction.cxx:804">
    <![LOG[Successfully completed the action (Prepare ConfigMgr Client for Capture) with the exit win32 code 0]LOG]!><time="14:14:25.647-60" date="03-13-2014" component="TSManager" context="" type="1" thread="3784"
    file="instruction.cxx:830">
    <![LOG[Set authenticator in transport]LOG]!><time="14:14:25.647-60" date="03-13-2014" component="TSManager" context="" type="0" thread="3784" file="libsmsmessaging.cpp:7734">
    <![LOG[Set a global environment variable _SMSTSLastActionRetCode=0]LOG]!><time="14:14:26.193-60" date="03-13-2014" component="TSManager" context="" type="0" thread="3784" file="executionenv.cxx:668">
    <![LOG[Set a global environment variable _SMSTSLastActionSucceeded=true]LOG]!><time="14:14:26.193-60" date="03-13-2014" component="TSManager" context="" type="0" thread="3784" file="executionenv.cxx:668">
    <![LOG[Clear local default environment]LOG]!><time="14:14:26.193-60" date="03-13-2014" component="TSManager" context="" type="0" thread="3784" file="executionenv.cxx:807">
    <![LOG[Updated security on object C:\_SMSTaskSequence.]LOG]!><time="14:14:26.256-60" date="03-13-2014" component="TSManager" context="" type="1" thread="3784" file="utils.cpp:1704">
    <![LOG[Set a global environment variable _SMSTSNextInstructionPointer=5]LOG]!><time="14:14:26.256-60" date="03-13-2014" component="TSManager" context="" type="0" thread="3784" file="executionenv.cxx:668">
    <![LOG[Set a TS execution environment variable _SMSTSNextInstructionPointer=5]LOG]!><time="14:14:26.256-60" date="03-13-2014" component="TSManager" context="" type="0" thread="3784" file="executionenv.cxx:386">
    <![LOG[Set a global environment variable _SMSTSInstructionStackString=0]LOG]!><time="14:14:26.256-60" date="03-13-2014" component="TSManager" context="" type="0" thread="3784" file="executionenv.cxx:668">
    <![LOG[Set a TS execution environment variable _SMSTSInstructionStackString=0]LOG]!><time="14:14:26.256-60" date="03-13-2014" component="TSManager" context="" type="0" thread="3784" file="executionenv.cxx:414">
    <![LOG[Save the current environment block]LOG]!><time="14:14:26.256-60" date="03-13-2014" component="TSManager" context="" type="0" thread="3784" file="executionenv.cxx:833">
    <![LOG[Start executing an instruction. Instruction name: Prepare Windows for Capture. Instruction pointer: 5]LOG]!><time="14:14:26.318-60" date="03-13-2014" component="TSManager" context="" type="1"
    thread="3784" file="engine.cxx:116">
    <![LOG[Set a global environment variable _SMSTSCurrentActionName=Prepare Windows for Capture]LOG]!><time="14:14:26.318-60" date="03-13-2014" component="TSManager" context="" type="0" thread="3784"
    file="executionenv.cxx:668">
    <![LOG[Set a global environment variable _SMSTSNextInstructionPointer=5]LOG]!><time="14:14:26.318-60" date="03-13-2014" component="TSManager" context="" type="0" thread="3784" file="executionenv.cxx:668">
    <![LOG[Set a local default variable OSDBuildStorageDriverList]LOG]!><time="14:14:26.318-60" date="03-13-2014" component="TSManager" context="" type="0" thread="3784" file="executionenv.cxx:700">
    <![LOG[Set a local default variable OSDKeepActivation]LOG]!><time="14:14:26.318-60" date="03-13-2014" component="TSManager" context="" type="0" thread="3784" file="executionenv.cxx:700">
    <![LOG[Set a global environment variable _SMSTSLogPath=C:\WINDOWS\CCM\Logs\SMSTSLog]LOG]!><time="14:14:26.334-60" date="03-13-2014" component="TSManager" context="" type="0" thread="3784"
    file="executionenv.cxx:668">
    <![LOG[Expand a string: osdprepareos.exe /activate:%OSDKeepActivation% /bmsd:%OSDBuildStorageDriverList%]LOG]!><time="14:14:26.334-60" date="03-13-2014" component="TSManager" context="" type="0" thread="3784"
    file="executionenv.cxx:782">
    <![LOG[Expand a string: ]LOG]!><time="14:14:26.334-60" date="03-13-2014" component="TSManager" context="" type="0" thread="3784" file="executionenv.cxx:782">
    <![LOG[Start executing the command line: osdprepareos.exe /activate:%OSDKeepActivation% /bmsd:%OSDBuildStorageDriverList%]LOG]!><time="14:14:26.334-60" date="03-13-2014" component="TSManager" context="" type="1"
    thread="3784" file="instruction.cxx:722">
    <![LOG[!--------------------------------------------------------------------------------------------!]LOG]!><time="14:14:26.334-60" date="03-13-2014" component="TSManager" context="" type="1" thread="3784"
    file="instruction.cxx:751">
    <![LOG[Expand a string: FullOS]LOG]!><time="14:14:26.334-60" date="03-13-2014" component="TSManager" context="" type="0" thread="3784" file="executionenv.cxx:782">
    <![LOG[Executing command line: osdprepareos.exe /activate:%OSDKeepActivation% /bmsd:%OSDBuildStorageDriverList%]LOG]!><time="14:14:26.334-60" date="03-13-2014" component="TSManager" context="" type="1"
    thread="3784" file="commandline.cpp:827">
    <![LOG[=======================[ OSDPrepareOS.exe ] =======================]LOG]!><time="14:14:26.412-60" date="03-13-2014" component="PrepareOS" context="" type="1" thread="1408" file="main.cpp:211">
    <![LOG[Local machine is not a domain controller.]LOG]!><time="14:14:26.474-60" date="03-13-2014" component="PrepareOS" context="" type="1" thread="1408" file="deployutil.cpp:569">
    <![LOG[System partition is NTFS]LOG]!><time="14:14:26.474-60" date="03-13-2014" component="PrepareOS" context="" type="1" thread="1408" file="deployutil.cpp:494">
    <![LOG[Verified deploy tools are present.]LOG]!><time="14:14:26.474-60" date="03-13-2014" component="PrepareOS" context="" type="1" thread="1408" file="deployutil.cpp:415">
    <![LOG[The file version of C:\sysprep\sysprep.exe matches with the OS Version]LOG]!><time="14:14:26.521-60" date="03-13-2014" component="PrepareOS" context="" type="1" thread="1408" file="deployutil.cpp:456">
    <![LOG[Local machine is not part of a domain]LOG]!><time="14:14:26.521-60" date="03-13-2014" component="PrepareOS" context="" type="1" thread="1408" file="deployutil.cpp:534">
    <![LOG[Administrator account name = 'Administrator']LOG]!><time="14:14:26.584-60" date="03-13-2014" component="PrepareOS" context="" type="1" thread="1408" file="prepareos.cpp:642">
    <![LOG[ResetPassword operation successful]LOG]!><time="14:14:26.599-60" date="03-13-2014" component="PrepareOS" context="" type="1" thread="1408" file="prepareos.cpp:789">
    <![LOG[Staging boot image xxx00002]LOG]!><time="14:14:26.615-60" date="03-13-2014" component="PrepareOS" context="" type="1" thread="1408" file="bootimage.cpp:716">
    <![LOG[ResolveSource flags: 0x00000000]LOG]!><time="14:14:27.505-60" date="03-13-2014" component="PrepareOS" context="" type="1" thread="1408" file="resolvesource.cpp:3201">
    <![LOG[SMSTSPersistContent: . The content for package xxx00002 will be persisted]LOG]!><time="14:14:27.505-60" date="03-13-2014" component="PrepareOS" context="" type="1" thread="1408" file="resolvesource.cpp:3212">
    <![LOG[Locations: Multicast = 0, HTTP = 1, SMB = 0.]LOG]!><time="14:14:27.505-60" date="03-13-2014" component="PrepareOS" context="" type="1" thread="1408" file="resolvesource.cpp:2749">
    <![LOG[Multicast is not enabled for the package.]LOG]!><time="14:14:27.505-60" date="03-13-2014" component="PrepareOS" context="" type="1" thread="1408" file="resolvesource.cpp:2789">
    <![LOG[Trying http://SCCM.xxx.nl/SMS_DP_SMSPKG$/xxx00002.]LOG]!><time="14:14:27.505-60" date="03-13-2014" component="PrepareOS" context="" type="1" thread="1408" file="resolvesource.cpp:2870">
    <![LOG[Set authenticator in transport]LOG]!><time="14:14:27.520-60" date="03-13-2014" component="PrepareOS" context="" type="0" thread="1408" file="libsmsmessaging.cpp:7734">
    <![LOG[WinHttp credentials set]LOG]!><time="14:14:27.520-60" date="03-13-2014" component="PrepareOS" context="" type="1" thread="1408" file="downloadcontent.cpp:796">
    <![LOG[List of files to be downloaded]LOG]!><time="14:14:27.551-60" date="03-13-2014" component="PrepareOS" context="" type="1" thread="1408" file="downloadcontent.cpp:350">
    <![LOG[Downloaded file from http://SCCM.xxx.nl:80/SMS_DP_SMSPKG$/xxx00002/sccm?/boot.xxx00002.wim to C:\_SMSTaskSequence\Packages\xxx00002\boot.xxx00002.wim ]LOG]!><time="14:19:01.031-60" date="03-13-2014" component="PrepareOS"
    context="" type="1" thread="1408" file="downloadcontent.cpp:1574">
    <![LOG[VerifyContentHash: Hash algorithm is 32780]LOG]!><time="14:19:01.047-60" date="03-13-2014" component="PrepareOS" context="" type="1" thread="1408" file="downloadcontent.cpp:1829">
    <![LOG[Found boot image C:\_SMSTaskSequence\Packages\xxx00002\boot.xxx00002.wim]LOG]!><time="14:19:07.576-60" date="03-13-2014" component="PrepareOS" context="" type="1" thread="1408" file="bootimage.cpp:1114">
    <![LOG[Copying boot image locally...]LOG]!><time="14:19:07.576-60" date="03-13-2014" component="PrepareOS" context="" type="1" thread="1408" file="bootimage.cpp:744">
    <![LOG[ADK installation root registry value not found.]LOG]!><time="14:19:11.262-60" date="03-13-2014" component="PrepareOS" context="" type="1" thread="1408" file="wimfile.cpp:197">
    <![LOG[Loaded C:\Program Files\Windows Imaging\wimgapi.dll]LOG]!><time="14:19:11.403-60" date="03-13-2014" component="PrepareOS" context="" type="1" thread="1408" file="wimfile.cpp:334">
    <![LOG[Opening image file C:\_SMSTaskSequence\WinPE\sources\boot.wim]LOG]!><time="14:19:11.403-60" date="03-13-2014" component="PrepareOS" context="" type="1" thread="1408" file="wimfile.cpp:412">
    <![LOG[Applying image 1 to volume C:\_SMSTaskSequence\WinPE]LOG]!><time="14:19:11.653-60" date="03-13-2014" component="PrepareOS" context="" type="1" thread="1408" file="wimfile.cpp:603">
    <![LOG[Closing image file C:\_SMSTaskSequence\WinPE\sources\boot.wim]LOG]!><time="14:19:15.917-60" date="03-13-2014" component="PrepareOS" context="" type="1" thread="1408" file="wimfile.cpp:448">
    <![LOG[Capturing WinPE bootstrap settings]LOG]!><time="14:19:15.917-60" date="03-13-2014" component="PrepareOS" context="" type="1" thread="1408" file="winpesettings.cpp:80">
    <![LOG[Environment scope successfully created: Global\{E7E5BB69-6198-4555-B5CA-6C46A2B5EB78}]LOG]!><time="14:19:15.917-60" date="03-13-2014" component="PrepareOS" context="" type="1" thread="1408"
    file="environmentscope.cpp:623">
    <![LOG[Executing command line: "osdnetsettings.exe" capture adapters:true scope:Global\{E7E5BB69-6198-4555-B5CA-6C46A2B5EB78}]LOG]!><time="14:19:15.917-60" date="03-13-2014" component="PrepareOS" context=""
    type="1" thread="1408" file="commandline.cpp:827">
    <![LOG[==============================[ OSDNetSettings.exe ]===========================]LOG]!><time="14:19:16.010-60" date="03-13-2014" component="OSDNetSettings" context="" type="1" thread="2980"
    file="main.cpp:134">
    <![LOG[Command line: "osdnetsettings.exe" capture adapters:true scope:Global\{E7E5BB69-6198-4555-B5CA-6C46A2B5EB78}]LOG]!><time="14:19:16.010-60" date="03-13-2014" component="OSDNetSettings" context=""
    type="1" thread="2980" file="main.cpp:135">
    <![LOG[No adapters found with non-empty DNSDomainSuffixSearchOrder]LOG]!><time="14:19:16.292-60" date="03-13-2014" component="OSDNetSettings" context="" type="0" thread="2980" file="netwmiadapterconfig.cpp:408">
    <![LOG[Captured settings for adapter 1]LOG]!><time="14:19:17.838-60" date="03-13-2014" component="OSDNetSettings" context="" type="1" thread="2980" file="netsettings.cpp:99">
    <![LOG[OSDNetSettings finished: 0x00000000]LOG]!><time="14:19:17.838-60" date="03-13-2014" component="OSDNetSettings" context="" type="1" thread="2980" file="main.cpp:192">
    <![LOG[Process completed with exit code 0]LOG]!><time="14:19:17.963-60" date="03-13-2014" component="PrepareOS" context="" type="1" thread="1408" file="commandline.cpp:1123">
    <![LOG[Pre-staging of WINPE image successful]LOG]!><time="14:19:17.994-60" date="03-13-2014" component="PrepareOS" context="" type="1" thread="1408" file="prepareos.cpp:919">
    <![LOG[Deleting Machine Certificates succeeded]LOG]!><time="14:19:17.994-60" date="03-13-2014" component="PrepareOS" context="" type="1" thread="1408" file="prepareos.cpp:1058">
    <![LOG[Executing 'C:\sysprep\sysprep.exe -reseal -mini -quiet -noreboot' ...]LOG]!><time="14:19:17.994-60" date="03-13-2014" component="PrepareOS" context="" type="1" thread="1408" file="prepareos.cpp:457">
    <![LOG[Executing command line: "C:\sysprep\sysprep.exe" -reseal -mini -quiet -noreboot]LOG]!><time="14:19:17.994-60" date="03-13-2014" component="PrepareOS" context="" type="1" thread="1408"
    file="commandline.cpp:827">
    <![LOG[Process completed with exit code 0]LOG]!><time="14:19:43.908-60" date="03-13-2014" component="PrepareOS" context="" type="1" thread="1408" file="commandline.cpp:1123">
    <![LOG[MiniSetupInProgress set to 1]LOG]!><time="14:19:43.955-60" date="03-13-2014" component="PrepareOS" context="" type="0" thread="1408" file="offlineos.cpp:363">
    <![LOG[Sysprep.exe has marked the OS as generalized for deployment.]LOG]!><time="14:19:43.955-60" date="03-13-2014" component="PrepareOS" context="" type="1" thread="1408" file="offlineos.cpp:399">
    <![LOG[Sysprep finished successfully]LOG]!><time="14:19:43.955-60" date="03-13-2014" component="PrepareOS" context="" type="1" thread="1408" file="prepareos.cpp:516">
    <![LOG[Sysprep'ing the machine successful]LOG]!><time="14:19:43.970-60" date="03-13-2014" component="PrepareOS" context="" type="1" thread="1408" file="main.cpp:272">
    <![LOG[Exiting with error code 0]LOG]!><time="14:19:43.970-60" date="03-13-2014" component="PrepareOS" context="" type="1" thread="1408" file="main.cpp:293">
    <![LOG[Process completed with exit code 0]LOG]!><time="14:19:43.986-60" date="03-13-2014" component="TSManager" context="" type="1" thread="3784" file="commandline.cpp:1123">
    <![LOG[!--------------------------------------------------------------------------------------------!]LOG]!><time="14:19:43.986-60" date="03-13-2014" component="TSManager" context="" type="1" thread="3784"
    file="instruction.cxx:804">
    <![LOG[Successfully completed the action (Prepare Windows for Capture) with the exit win32 code 0]LOG]!><time="14:19:43.986-60" date="03-13-2014" component="TSManager" context="" type="1" thread="3784"
    file="instruction.cxx:830">
    <![LOG[Set authenticator in transport]LOG]!><time="14:19:44.002-60" date="03-13-2014" component="TSManager" context="" type="0" thread="3784" file="libsmsmessaging.cpp:7734">
    <![LOG[unknown host (gethostbyname failed)]LOG]!><time="14:19:44.189-60" date="03-13-2014" component="TSManager" context="" type="3" thread="3784" file="libsmsmessaging.cpp:695">
    <![LOG[sending with winhttp failed; 80072ee7]LOG]!><time="14:19:44.205-60" date="03-13-2014" component="TSManager" context="" type="3" thread="3784" file="libsmsmessaging.cpp:8919">
    <![LOG[Will retry in 5 second(s)]LOG]!><time="14:19:44.205-60" date="03-13-2014" component="TSManager" context="" type="2" thread="3784" file="libsmsmessaging.cpp:1833">
    <![LOG[Retrying...]LOG]!><time="14:19:49.642-60" date="03-13-2014" component="TSManager" context="" type="2" thread="3784" file="libsmsmessaging.cpp:1837">
    <![LOG[unknown host (gethostbyname failed)]LOG]!><time="14:19:49.642-60" date="03-13-2014" component="TSManager" context="" type="3" thread="3784" file="libsmsmessaging.cpp:695">
    <![LOG[sending with winhttp failed; 80072ee7]LOG]!><time="14:19:49.642-60" date="03-13-2014" component="TSManager" context="" type="3" thread="3784" file="libsmsmessaging.cpp:8919">
    <![LOG[Will retry in 10 second(s)]LOG]!><time="14:19:49.642-60" date="03-13-2014" component="TSManager" context="" type="2" thread="3784" file="libsmsmessaging.cpp:1833">
    <![LOG[Retrying...]LOG]!><time="14:20:00.502-60" date="03-13-2014" component="TSManager" context="" type="2" thread="3784" file="libsmsmessaging.cpp:1837">
    <![LOG[unknown host (gethostbyname failed)]LOG]!><time="14:20:00.502-60" date="03-13-2014" component="TSManager" context="" type="3" thread="3784" file="libsmsmessaging.cpp:695">
    <![LOG[sending with winhttp failed; 80072ee7]LOG]!><time="14:20:00.502-60" date="03-13-2014" component="TSManager" context="" type="3" thread="3784" file="libsmsmessaging.cpp:8919">
    <![LOG[Will retry in 22 second(s)]LOG]!><time="14:20:00.502-60" date="03-13-2014" component="TSManager" context="" type="2" thread="3784" file="libsmsmessaging.cpp:1833">
    <![LOG[Retrying...]LOG]!><time="14:20:22.642-60" date="03-13-2014" component="TSManager" context="" type="2" thread="3784" file="libsmsmessaging.cpp:1837">
    <![LOG[unknown host (gethostbyname failed)]LOG]!><time="14:20:22.642-60" date="03-13-2014" component="TSManager" context="" type="3" thread="3784" file="libsmsmessaging.cpp:695">
    <![LOG[sending with winhttp failed; 80072ee7]LOG]!><time="14:20:22.642-60" date="03-13-2014" component="TSManager" context="" type="3" thread="3784" file="libsmsmessaging.cpp:8919">
    <![LOG[Will retry in 45 second(s)]LOG]!><time="14:20:22.642-60" date="03-13-2014" component="TSManager" context="" type="2" thread="3784" file="libsmsmessaging.cpp:1833">
    <![LOG[Retrying...]LOG]!><time="14:21:08.580-60" date="03-13-2014" component="TSManager" context="" type="2" thread="3784" file="libsmsmessaging.cpp:1837">
    <![LOG[unknown host (gethostbyname failed)]LOG]!><time="14:21:08.580-60" date="03-13-2014" component="TSManager" context="" type="3" thread="3784" file="libsmsmessaging.cpp:695">
    <![LOG[sending with winhttp failed; 80072ee7]LOG]!><time="14:21:08.580-60" date="03-13-2014" component="TSManager" context="" type="3" thread="3784" file="libsmsmessaging.cpp:8919">
    <![LOG[End of retries]LOG]!><time="14:21:08.580-60" date="03-13-2014" component="TSManager" context="" type="2" thread="3784" file="libsmsmessaging.cpp:1821">
    <![LOG[failed to send the request]LOG]!><time="14:21:08.580-60" date="03-13-2014" component="TSManager" context="" type="3" thread="3784" file="libsmsmessaging.cpp:1950">
    <![LOG[Failed to send status message (80072ee7)]LOG]!><time="14:21:08.580-60" date="03-13-2014" component="TSManager" context="" type="3" thread="3784" file="libsmsmessaging.cpp:4053">
    <![LOG[Error calling message lib Send(). Code 0x80072ee7]LOG]!><time="14:21:08.580-60" date="03-13-2014" component="TSManager" context="" type="2" thread="3784" file="utils.cpp:5975">
    <![LOG[Non fatal error 0x80072ee7 in sending task sequence execution status message to MP]LOG]!><time="14:21:08.580-60" date="03-13-2014" component="TSManager" context="" type="2" thread="3784"
    file="utils.cpp:5987">
    <![LOG[Set a global environment variable _SMSTSLastActionRetCode=0]LOG]!><time="14:21:08.580-60" date="03-13-2014" component="TSManager" context="" type="0" thread="3784" file="executionenv.cxx:668">
    <![LOG[Set a global environment variable _SMSTSLastActionSucceeded=true]LOG]!><time="14:21:08.580-60" date="03-13-2014" component="TSManager" context="" type="0" thread="3784" file="executionenv.cxx:668">
    <![LOG[Clear local default environment]LOG]!><time="14:21:08.580-60" date="03-13-2014" component="TSManager" context="" type="0" thread="3784" file="executionenv.cxx:807">
    <![LOG[Updated security on object C:\_SMSTaskSequence.]LOG]!><time="14:21:08.642-60" date="03-13-2014" component="TSManager" context="" type="1" thread="3784" file="utils.cpp:1704">
    <![LOG[Set a global environment variable _SMSTSNextInstructionPointer=6]LOG]!><time="14:21:08.642-60" date="03-13-2014" component="TSManager" context="" type="0" thread="3784" file="executionenv.cxx:668">
    <![LOG[Set a TS execution environment variable _SMSTSNextInstructionPointer=6]LOG]!><time="14:21:08.642-60" date="03-13-2014" component="TSManager" context="" type="0" thread="3784" file="executionenv.cxx:386">
    <![LOG[Set a global environment variable _SMSTSInstructionStackString=0]LOG]!><time="14:21:08.642-60" date="03-13-2014" component="TSManager" context="" type="0" thread="3784" file="executionenv.cxx:668">
    <![LOG[Set a TS execution environment variable _SMSTSInstructionStackString=0]LOG]!><time="14:21:08.642-60" date="03-13-2014" component="TSManager" context="" type="0" thread="3784" file="executionenv.cxx:414">
    <![LOG[Save the current environment block]LOG]!><time="14:21:08.642-60" date="03-13-2014" component="TSManager" context="" type="0" thread="3784" file="executionenv.cxx:833">
    <![LOG[Executing command line: "bcdedit.exe"]LOG]!><time="14:21:08.845-60" date="03-13-2014" component="TSManager" context="" type="1" thread="3784" file="commandline.cpp:827">
    <![LOG[CreateProcess failed. Code(0x80070002)]LOG]!><time="14:21:08.845-60" date="03-13-2014" component="TSManager" context="" type="3" thread="3784" file="commandline.cpp:1018">
    <![LOG[Command line execution failed (80070002)]LOG]!><time="14:21:08.845-60" date="03-13-2014" component="TSManager" context="" type="3" thread="3784" file="commandline.cpp:1245">
    <![LOG[Staging boot image xxx00002]LOG]!><time="14:21:08.845-60" date="03-13-2014" component="TSManager" context="" type="1" thread="3784" file="bootimage.cpp:716">
    <![LOG[Boot image already staged locally]LOG]!><time="14:21:09.689-60" date="03-13-2014" component="TSManager" context="" type="1" thread="3784" file="bootimage.cpp:778">
    <![LOG[Installing boot image to hard drive]LOG]!><time="14:21:09.689-60" date="03-13-2014" component="TSManager" context="" type="1" thread="3784" file="bootimage.cpp:621">
    <![LOG[Backing up existing boot system before trying to set up new boot system]LOG]!><time="14:21:09.689-60" date="03-13-2014" component="TSManager" context="" type="1" thread="3784" file="bootimage.cpp:644">
    <![LOG[BootLoader::backup: C:\, C:\_SMSTaskSequence\backup]LOG]!><time="14:21:10.361-60" date="03-13-2014" component="TSManager" context="" type="1" thread="3784" file="bootloader.cpp:85">
    <![LOG[BootLoader::restore: C:\_SMSTaskSequence\WinPE, C:\]LOG]!><time="14:21:12.502-60" date="03-13-2014" component="TSManager" context="" type="1" thread="3784" file="bootloader.cpp:382">
    <![LOG[Saving bcd store to C:\_SMSTaskSequence\WinPE\boot\BCD]LOG]!><time="14:21:14.470-60" date="03-13-2014" component="TSManager" context="" type="1" thread="3784" file="bootconfigimplbcd.cpp:703">
    <![LOG[Executing command line: "C:\_SMSTaskSequence\WinPE\SMS\bin\i386\bootsect.exe" /NT60 SYS /MBR]LOG]!><time="14:21:14.705-60" date="03-13-2014" component="TSManager" context="" type="1"
    thread="3784" file="commandline.cpp:827">
    <![LOG[CreateProcess failed. Code(0x800700C1)]LOG]!><time="14:21:14.720-60" date="03-13-2014" component="TSManager" context="" type="3" thread="3784" file="commandline.cpp:1018">
    <![LOG[Command line execution failed (800700C1)]LOG]!><time="14:21:14.720-60" date="03-13-2014" component="TSManager" context="" type="3" thread="3784" file="commandline.cpp:1245">
    <![LOG[Failed to install boot image. 
    Unknown error (Error: 800700C1; Source: Unknown)]LOG]!><time="14:21:14.736-60" date="03-13-2014" component="TSManager" context="" type="3" thread="3784" file="bootimage.cpp:681">
    <![LOG[Failed to install boot image xxx00002. 
    Unknown error (Error: 800700C1; Source: Unknown)]LOG]!><time="14:21:14.736-60" date="03-13-2014" component="TSManager" context="" type="3" thread="3784" file="engine.cxx:840">
    <![LOG[Failed to reboot the system. Error 0x(800700c1)]LOG]!><time="14:21:14.736-60" date="03-13-2014" component="TSManager" context="" type="3" thread="3784" file="engine.cxx:953">
    <![LOG[Failed to initialize a system reboot. 
    Unknown error (Error: 800700C1; Source: Unknown)]LOG]!><time="14:21:14.736-60" date="03-13-2014" component="TSManager" context="" type="3" thread="3784" file="engine.cxx:577">
    <![LOG[Fatal error is returned in check for reboot request of the action (Prepare Windows for Capture). 
    Unknown error (Error: 800700C1; Source: Unknown)]LOG]!><time="14:21:14.736-60" date="03-13-2014" component="TSManager" context="" type="3" thread="3784" file="engine.cxx:273">
    <![LOG[An error (0x800700c1) is encountered in execution of the task sequence]LOG]!><time="14:21:14.736-60" date="03-13-2014" component="TSManager" context="" type="3" thread="3784" file="engine.cxx:348">
    <![LOG[Set authenticator in transport]LOG]!><time="14:21:14.736-60" date="03-13-2014" component="TSManager" context="" type="0" thread="3784" file="libsmsmessaging.cpp:7734">
    <![LOG[unknown host (gethostbyname failed)]LOG]!><time="14:21:14.924-60" date="03-13-2014" component="TSManager" context="" type="3" thread="3784" file="libsmsmessaging.cpp:695">
    <![LOG[sending with winhttp failed; 80072ee7]LOG]!><time="14:21:14.924-60" date="03-13-2014" component="TSManager" context="" type="3" thread="3784" file="libsmsmessaging.cpp:8919">
    <![LOG[Will retry in 5 second(s)]LOG]!><time="14:21:14.924-60" date="03-13-2014" component="TSManager" context="" type="2" thread="3784" file="libsmsmessaging.cpp:1833">
    <![LOG[Retrying...]LOG]!><time="14:21:20.642-60" date="03-13-2014" component="TSManager" context="" type="2" thread="3784" file="libsmsmessaging.cpp:1837">
    <![LOG[unknown host (gethostbyname failed)]LOG]!><time="14:21:20.642-60" date="03-13-2014" component="TSManager" context="" type="3" thread="3784" file="libsmsmessaging.cpp:695">
    <![LOG[sending with winhttp failed; 80072ee7]LOG]!><time="14:21:20.642-60" date="03-13-2014" component="TSManager" context="" type="3" thread="3784" file="libsmsmessaging.cpp:8919">
    <![LOG[Will retry in 11 second(s)]LOG]!><time="14:21:20.642-60" date="03-13-2014" component="TSManager" context="" type="2" thread="3784" file="libsmsmessaging.cpp:1833">
    <![LOG[Retrying...]LOG]!><time="14:21:31.814-60" date="03-13-2014" component="TSManager" context="" type="2" thread="3784" file="libsmsmessaging.cpp:1837">
    <![LOG[unknown host (gethostbyname failed)]LOG]!><time="14:21:31.814-60" date="03-13-2014" component="TSManager" context="" type="3" thread="3784" file="libsmsmessaging.cpp:695">
    <![LOG[sending with winhttp failed; 80072ee7]LOG]!><time="14:21:31.814-60" date="03-13-2014" component="TSManager" context="" type="3" thread="3784" file="libsmsmessaging.cpp:8919">
    <![LOG[Will retry in 22 second(s)]LOG]!><time="14:21:31.814-60" date="03-13-2014" component="TSManager" context="" type="2" thread="3784" file="libsmsmessaging.cpp:1833">
    <![LOG[Retrying...]LOG]!><time="14:21:54.095-60" date="03-13-2014" component="TSManager" context="" type="2" thread="3784" file="libsmsmessaging.cpp:1837">
    <![LOG[unknown host (gethostbyname failed)]LOG]!><time="14:21:54.095-60" date="03-13-2014" component="TSManager" context="" type="3" thread="3784" file="libsmsmessaging.cpp:695">
    <![LOG[sending with winhttp failed; 80072ee7]LOG]!><time="14:21:54.095-60" date="03-13-2014" component="TSManager" context="" type="3" thread="3784" file="libsmsmessaging.cpp:8919">
    <![LOG[Will retry in 44 second(s)]LOG]!><time="14:21:54.095-60" date="03-13-2014" component="TSManager" context="" type="2" thread="3784" file="libsmsmessaging.cpp:1833">
    <![LOG[Retrying...]LOG]!><time="14:22:39.049-60" date="03-13-2014" component="TSManager" context="" type="2" thread="3784" file="libsmsmessaging.cpp:1837">
    <![LOG[unknown host (gethostbyname failed)]LOG]!><time="14:22:39.049-60" date="03-13-2014" component="TSManager" context="" type="3" thread="3784" file="libsmsmessaging.cpp:695">
    <![LOG[sending with winhttp failed; 80072ee7]LOG]!><time="14:22:39.049-60" date="03-13-2014" component="TSManager" context="" type="3" thread="3784" file="libsmsmessaging.cpp:8919">
    <![LOG[End of retries]LOG]!><time="14:22:39.049-60" date="03-13-2014" component="TSManager" context="" type="2" thread="3784" file="libsmsmessaging.cpp:1821">
    <![LOG[failed to send the request]LOG]!><time="14:22:39.049-60" date="03-13-2014" component="TSManager" context="" type="3" thread="3784" file="libsmsmessaging.cpp:1950">
    <![LOG[Failed to send status message (80072ee7)]LOG]!><time="14:22:39.049-60" date="03-13-2014" component="TSManager" context="" type="3" thread="3784" file="libsmsmessaging.cpp:4053">
    <![LOG[Error calling message lib Send(). Code 0x80072ee7]LOG]!><time="14:22:39.049-60" date="03-13-2014" component="TSManager" context="" type="2" thread="3784" file="utils.cpp:5975">
    <![LOG[Non fatal error 0x80072ee7 in sending task sequence execution status message to MP]LOG]!><time="14:22:39.049-60" date="03-13-2014" component="TSManager" context="" type="2" thread="3784"
    file="utils.cpp:5987">

    Is your capture TS based on MDT or OSD? Do you have MDT installed and integrated?
    I was wrong before, MDT 2013 and ADK 8.1 does not support XP, but ConfMgr 2012R2 does, if you integrate WinPE 3.1 as you already did. Still, your logs shows that you have troubles with Boot Image / WinPE.
    Let me suggest something;
    - Make sure WinPE 3.1 is available from DP. Are you able to deploy TS (Win7) with 3.1? Will it get downloaded?
    - With XP, I felt is more reliable to capture it with a media. So you have XP running, and you execure capture image (created By ConfMgr). So maybe you should try that? Capture Media will reboot your reference machine to WinPE and save .wim file to a share.

  • SCCM 2012R2 Software Update Point (Old Programs List olny)

    hi,
    i have sccm 2012R2,  today i add to sccm software update point role but there in Products page not showilng latest microsoft products such as Office 2013, Exchange 2013, Windows Server 2012R2,Windows 8.1,
    there is only old programs,eg. office 2010, server 2012 (not R2)
    i update sccm to latest cumulative update 4 but no change in there,   
    i need to update client computers,  there are all Windows 8.1 systems.
    how can i update cients from sccm?
    picture link:
    https://www.imageupload.co.uk/image/ZZww

    This list comes from WSUS which in its default, newly installed state is out of date. The list is however updated every time that WSUS in synced and the catalog is updated in ConfigMgr. Thus, you simple need to initiate an update catalog sync from within
    the ConfigMgr console by going to the Software Updates -> All Software Updates node and choosing Synchronize Software Updates from the ribbon bar or right-click context menu.
    Jason | http://blog.configmgrftw.com | @jasonsandys

  • Deploy Powershell 3 to Win7 Via SCCM 2012R2

    Is it possible to deploy Powershell 3 to Windows 7 clients using SCCM 2012R2? Or WSUS? 
    I have read a few blogs describing different methods such as dism to repackage the cab file or using a scripted deployment type (Windows6.1-KBxxxxxxxx64.msu /quiet
    /norestart)  but i can not get it to install the update.  My aim is to get the app-v 5 client on windows 7 desktops so powershell 3 is a requirement.
    Has anyone worked out how to deploy it?
    Many Thanks Dave

    If you're clients are currently at PowerShell 2,  I would recommend installing Windows Management Framework 4 instead of 3.  WMF4 has lots of powershell and WMI improvements over WMF3.
    To deploy WMF4, create an Application with two deployment types (one for x86 and one for x64).  The program is pretty simple - you just need something like "WUSA.EXE Windows6.1-KB2819745-x64-MultiPkg.msu /quiet /norestart".  For a detection
    method, the easiest thing to do is a file version check on "%windir%\System32\WindowsPowerShell\v1.0\powershell.exe"
    Use the WMF4 Application object as a pre-requisite for your App-V 5 Client.  
    I hope that helps,
    Nash
    Nash Pherson, Senior Systems Consultant
    Now Micro -
    My Blog Posts
    If you've found a bug or want the product worked differently,
    share your feedback.
    <-- If this post was helpful, please click "Vote as Helpful".

  • SCCM 2012R2 Bits 2.0

    All,
    Short question. We need to deploy the SCCM (2012R2) agent to 1000+ Windows 2003 servers with BITS 2.0 installed. What is the standard way to deploy BITS 2.5 on those systems. I figured out that 2.5 cannot be pushed with WSUS and since there is no SCCM
    client on the machine it cannot be pushed by configuation manager.
    Thanks

    I did it by hand. You could script it and use psexec or GPO to install it though. I seem to recall that they will also need a .net upgrade.
    John Marcum | Microsoft MVP - Enterprise Client Management
    My blog: System Center Admin | Twitter:
    @SCCM_Marcum | Linkedin:
    John Marcum

  • Going backwards from 2012R2 to 2008R2

    I have a situation in our environment (application compatibility) where I may need to migrate printers from 2012R2 to 2008R2. Can anyone tell me if the Microsoft Print Migration tool will let me do this or if there is a better way?  We'd originally
    planned to move from 2003 to 2012R2 for our print servers & I have a model system built out in 2012R2 (with all of our queues created like we want) however now it may be necessary to downgrade to 2008R2.
    # When I wrote this script only God and I knew what I was doing. # Now, only God Knows!

    If you still have the 2003 machine it may be easier to power that back on and perform the backup using the 2008R2 version of the tool.  Then restore to 2008R2.
    The tool was designed to back up a previous OS printers and restore to the OS that the tool is running from.
    The issue you will have backing up 2012R2.
    1) V4 drivers are stored in the \windows\system32\driverstore\filerepository directory.  They are not in spool\drivers\x64\3.  Only Windows 8 and above versions of the utility can back up this storage path.
    2) The winprint.dll print processor is newer and will fail the restore on 2008R2.  You will need to expand the backup and remove the references to this file before the restore.
    3) WSD ports will cause an issue if you have them on 2012R2.  There was a bunch of work added to get this functionality working in 2012R2.  If you have this port type AND you restore from 2012R2 to 2008R2, the experience will be better but I suspect
    some of the port installations will fail.
    4) Can't think of anything else.  Next stop is perform the restore on a test 2008R2 machine and see what the result is.
    5) Please report back on your findings.  I'm sure someone later in life will find the outcome useful.
    Alan Morris formerly with Windows Printing Team

  • MDT 2013 & SCCM 2012R2

    Hi
    i have SCCM 2012R2 up and running and wanted to integrate it with MDT 2013.
    Just out of curiosity, once MDT has been installed, do we really need to download and install WAIK?
    What is the benefit of having it in MDT? i can see under MDT Components the status is: Required.
    Thanks, M@

    Hi,
    The MDT integration doesn't need the WAIK. The only prerequisite is ConfigMgr console.
    After you installed MDT you need to run the integration wizzard which will add new features in ConfigMgr console such as MDT task sequences, new step types in task sequence, you're not (unless you want to use it) supposed to launch MDT console, it's just
    about extending ConfigMgr console features.
    Regards,
    Mickael, My technet galleries contributions : ConfigMgr driver injector : http://gallery.technet.microsoft.com/ConfigMgr-Driver-Injector-aae7d17d SCCM Collection splitter : http://gallery.technet.microsoft.com/SCCM-Collection-Splitter-e1c82b06 ConfigMgr
    TS Tools : http://gallery.technet.microsoft.com/TSTools-f9b01357

  • SCCM 2012R2 cm application catalog cannot connect to application server

    Good Day,We are attempting to use the Web Portal of SCCM 2012R2 to deliver application installs to users, however we are receiving the above error on the interface.Below is a snippet from the log files located in the ServicePortalWebSite.log:Exception rethrown at [0]:
    at System.Runtime.Remoting.Proxies.RealProxy.HandleReturnMessage(IMessage reqMsg, IMessage retMsg)
    at System.Runtime.Remoting.Proxies.RealProxy.PrivateInvoke(MessageData& msgData, Int32 type)
    at IApplicationOfferService.GetApplications(Int32& totalNumberRows, UserContext userContext, ApplicationProperty sortBy, ApplicationFilter[] filterBy, String searchBy, Int32 maximumRows, Int32 startRowIndex, Boolean sortAscending, ApplicationClassicDisplayName classicNameFields, Boolean useSecondarySort, Platforms platformFilter, String reserved)
    at...
    This topic first appeared in the Spiceworks Community

    I have been Racking my brain for a Month now trying to setup a Biscom Faxserver using the BrookTrout SR140 . I have had a AT&T/Shoretel Tier3 engineer work with me twice, the last session was for 4 hours trying to get the outbound part of this faxserver to work. Oddly to to it will receive inbound Faxes successfully. It will not get past the initial "Send a test Fax".
    Previously I was getting a "403 forbidden" error in wireshark and starting yesterday I am getting a "415 unsupported media" error.I have used the the setup documentation @
    http://support.shoretel.com/products/third_party/downloads/dialogic_brooktrout.pdf?__utma=152168315....Any help or some direction to a solution would be greatly appreciated.

Maybe you are looking for