ORA 28112 - Failed to Execute Policy

Hello All,
Can you please help me in resolving the following issue:
We are getting the ORA 28112 - Failed to Execute Policy error while running a custom BI Publisher report on production. However we are not facing the issue on test environment .
Please let us know how to proceed about.
Thank you.

Prathima,
I had the same issue few years back, query was woking in toad but not in Oracle Reports. A ticket was raised for the DBAs and they fixed the issue. How? I don't have any clue. Maybe they fixed the policy function. On my side i just gave them the table name which was raising this error. If you have any other enviroment like Development, Test, etc, log in to that environment and check if report still raises this error. When i had this issue, only one database was raising this error, all others were fine (by using report builder).
FS

Similar Messages

  • ORA-28112: failed to execute policy function - Error in Application Builder

    Hey all,
    I've added a policy function to one of my tables and now I'm getting this error when I try to update a report region that references that table.
    "Query cannot be parsed within the Builder. If you believe your query is syntactically correct, check the ''generic columns'' checkbox below the region source to proceed without parsing. ORA-28112: failed to execute policy function"
    If I remove the policy then everything works fine. My application also runs fine with the policy in place. I just get these errors in the application builder when updating a report or an LOV that references the secure table.
    The parsing schema is APPL_USER.
    Here is the policy function:
    FUNCTION DOCUMENT_TABLE_POLICY (object_schema IN VARCHAR2 DEFAULT NULL
    ,object_name IN VARCHAR2 DEFAULT NULL)
    RETURN VARCHAR2 IS
    v_nt_seq NUMBER;
    BEGIN
    IF user = 'APPL_USER' OR INSTR(user, 'ITFC_') = 1 THEN
    RETURN NULL;
    END IF;
    IF V('APP_USER') IS NOT NULL THEN
    IF V('F_NT_SEQ') IS NOT NULL THEN
    v_nt_seq := V('F_NT_SEQ');
    ELSE
    SELECT NT_SEQ
    INTO v_nt_seq
    FROM APPL_USERS
    WHERE UPPER(NT_ID) = UPPER(V('APP_USER'));
    END IF;
    RETURN '(DOCUMENT_TYPE, MANAGED_BY_ELEMENT, PROGRAM_CODE, CONTRACT_NUMBER) IN (SELECT DISTINCT R.DOCUMENT_TYPE, USL.ELEMENT, USL.PROGRAM_CODE, USL.CONTRACT_NUMBER FROM IPRACA_USERS_SECURITY_LINK USL, IPRACA_SECURITY_ROLES R WHERE R.SECURITY_ROLE_SEQ = USL.SECURITY_ROLE_SEQ AND USL.NT_SEQ = ' || TO_CHAR(v_nt_seq) || ')';
    END IF;
    --UNAUTHORIZED USERS CAN SEE NO DATA
    RETURN '1=0';
    END;
    This is how I setup the policy:
    BEGIN
    DBMS_RLS.ADD_POLICY(
    object_schema => 'APPL_USER'
    ,object_name => 'APPL_DOCUMENT'
    ,policy_name => 'APPL_DOCUMENT_POLICY'
    ,function_schema => 'APPL_USER'
    ,policy_function=> 'APPL_SECURITY.DOCUMENT_TABLE_POLICY'
    END;
    Any help would be greatly appreciated!
    Thanks,
    Jonathan Hart
    APEX 3.1.1

    Thanks.
    After looking at it again, I think that may be the problem, too. I guess the APP_USER is set when in the application builder and the Builder is running the report query as it is being parsed which is causing the error. I added a Begin - Exception block around that query and everything seems to work now.
    Thanks again!

  • ORA-20011: Approximate NDV failed: ORA-29913: error in executing ODCIEXTTAB

    Hello All,
    I am using Oracle 11.2.0.3
    in my alert logs I found the below errors:
    ORA-20011: Approximate NDV failed: ORA-29913: error in executing ODCIEXTTABLEOPEN callout
    KUP-11024: This external table can only be accessed from within a Data Pump job.to resolve that i did the below steps:
    SELECT owner_name, job_name, operation, job_mode,
    state, attached_sessions
    FROM dba_datapump_jobs
    WHERE job_name NOT LIKE 'BIN$%'
    ORDER BY 1,2; the result was that there is two running jobs and the attached_session flag was equal to 1, something like the below:
    OWNER_NAME JOB_NAME            OPERATION JOB_MODE  STATE       ATTACHED
    SCOTT      SYS_IMPORT_TABLE_05      IMPORT TABLE RUNNING        1
    SCOTT      SYS_IMPORT_TABLE_01 IMPORT TABLE     RUNNING        1 so i stopped these 2 jobs using the below statements:
    SET serveroutput on
    SET lines 100
    DECLARE
       h1 NUMBER;
    BEGIN
       h1 := DBMS_DATAPUMP.ATTACH('SYS_IMPORT_TABLE_05','SCOTT');
       DBMS_DATAPUMP.STOP_JOB (h1);
    END;
    SET serveroutput on
    SET lines 100
    DECLARE
       h1 NUMBER;
    BEGIN
       h1 := DBMS_DATAPUMP.ATTACH('SYS_IMPORT_TABLE_01','SCOTT');
       DBMS_DATAPUMP.STOP_JOB (h1);
    END;
    /now the result become like below as stop pending in the state column:
    OWNER_NAME JOB_NAME            OPERATION JOB_MODE  STATE       ATTACHED
    SCOTT      SYS_IMPORT_TABLE_05      IMPORT TABLE STOP PENDING 1
    SCOTT      SYS_IMPORT_TABLE_01 IMPORT TABLE     STOP PENDING 1 for that I did more research and i dropped two temporary external tables after I got their names using the below query:
    select OWNER,OBJECT_NAME,OBJECT_TYPE, status,
    to_char(CREATED,'dd-mon-yyyy hh24:mi:ss') created
    ,to_char(LAST_DDL_TIME , 'dd-mon-yyyy hh24:mi:ss') last_ddl_time
    from dba_objects
    where object_name like 'ET$%'
    /but nothing changed in the output of the below query, the state stayed STOP PENDING
    SELECT owner_name, job_name, operation, job_mode,
    state, attached_sessions
    FROM dba_datapump_jobs
    WHERE job_name NOT LIKE 'BIN$%'
    ORDER BY 1,2; for that I used stop job but with the immediate flag as 1
    DBMS_DATAPUMP.STOP_JOB (h1,1); now the result of the query is NOT RUNNING in the state column:
    OWNER_NAME JOB_NAME            OPERATION JOB_MODE  STATE       ATTACHED
    SCOTT      SYS_IMPORT_TABLE_05      IMPORT TABLE     NOT RUNNING   0
    SCOTT      SYS_IMPORT_TABLE_01      IMPORT TABLE     NOT RUNNING   0 and I discovered that one of my import jobs that I did not realize that it was running, failed due to a fatal error, it is the one related to the import of one table.
    My question:
    Now the below query should return zero records no ?
    How i can clear the result ? and does it affect any future import jobs for the same table?
    SELECT owner_name, job_name, operation, job_mode,
    state, attached_sessions
    FROM dba_datapump_jobs
    WHERE job_name NOT LIKE 'BIN$%'
    ORDER BY 1,2;

    hi just drop all tables that return be the query below i face some issue after 1 months
    SQL> select owner, TABLE_NAME, DEFAULT_DIRECTORY_NAME, ACCESS_TYPE
    from dba_external_tables
    this error appear due to this table must be cleanup auto when the datadump complete the job ,but it's not dropped as well so when gather statistics this error appear,
    so this drop table .

  • Event reports fail to execute (ora-00942, new install, database error?)

    This is my first time working with Oracle software, and I am trying to use the Sensor Edge Server to test an RFID implementation. I am using OAS and SES 10.1.3.1 with Database 10.2.0. I followed many guides, I believe the database install instructions were from the database documentation library, and the OAS/SES instructions from the flash demo found here:
    http://www.oracle.com/technology/products/sensor_edge_server/tutorials.html
    My initial installation did not link to the Data repository, so I used manual configuration instructions from here:
    http://www.oracle.com/technology/obe/1013/fusion_middleware/integration/ses/manualconfig/manualconfig.htm
    At certain points I had to enter the SQL commands manually to ensure the Edge user's password was set, but all the outputs were as expected.
    Now that all this was done, I used the simulator with a simple xml file (as in the example) and confirmed it was loading via the "Monitor Events" tab in the SES. When I went to the "Event Reports" tab, the "Fetch Results" button caused an error message reading "Unable to Process Request / The query failed to execute: ORA-00942: table or view does not exist"
    In the log, sometimes I catch "OracleArchiverWorkerImpl: Cannot insert event into SDR:>>"
    and "java.sql.SQLException: ORA-06550: Line 1 Column 7: PLS-00201: identifier 'EDG_SDA.ON_EVENT" must be declared"
    I've done a fair bit of searching through the whole forum (not just the RFID area), checked on the 00942 error and so on, but what I've done wrong isn't jumping out at me. Anyone care to give input?
    Thanks sincerely,
    Andrew

    To clarify, I used the sql*plus instructions:
       sqlplus edge/<password>@<service_name>
       select count(*) from edg_event_vw
       select count(*) from sda_observationsfrom the server guide and both inititally returned "2", and made no updates, despite resetting devices (causing events in the "monitor events" tab)
    Andrew
    Message was edited by:
    user582280

  • XPath expression failed to execute.

    Hi Everybody ,
    I am working  AIA PIP 3.1 for JDE E1.I am facing some errors so that i can't proceed.
    See the log errors as below:
    javax.xml.ws.soap.SOAPFaultException: XPath expression failed to execute. An error occurs while processing the XPath expression; the expression is ora:processXSLT('xsl/Xform_BillOfMaterialsListABM_to_BillOfMaterialsListAXML.xsl',bpws:getVariableData('InitialLoadBillOfMaterialsListReqMsg','InitialLoadBillOfMaterialsList'),bpws:getVariableData('Parameters')). The XPath expression failed to execute; the reason was: oracle.fabric.common.xml.xpath.XPathFunctionException: javax.xml.transform.TransformerException: oramds:/deployed-composites/default/InitialLoadBillOfMaterialsListJDEE1toAgileImpl_rev1.0/xsl/Xform_BillOfMaterialsListABM_to_BillOfMaterialsListAXML.xsl<Line 18, Column 271>: XML-22044: (Error) Extension function error: Error invoking 'lookupXRef':'oracle.tip.xref.exception.RepositoryException: lookup could not find values in column name "AGILE_01" for table name "oramds:/apps/AIAMetaData/xref/ITEM_ITEMID.xref" using reference column name "JDEE1_01" and reference value "731882::M30" Please ensure lookup criteria has a match.'. Check the detailed root cause described in the exception message text and verify that the XPath query is correct.
    Please reply me ASAP,
    Waiting for your response.....
    Regards
    Jyoti Nayak

    Hi,
    Ya i checked the data for same table,but i didn't get any XREF related information in xref_data table.
    Did you mean that, data should already present under AIAFPINST_XREF.Probably xref is meant for storing dynamic value.
    Please check the above error and reply me soon.
    With Regards
    Jyoti Nayak

  • ORA-19505: failed to identify file - RMAN in creating standby DR database.

    I got this error when creating standby database at remote target server. 
    ORA-19505: failed to identify file "/backup/dxp1p/online/DXP1P_CF_c-2027711285-20131204-01"
    Here is what I did:
    1.   started the listener and created corresponding tnsnames entry at remote standyb server 
    2.  startup nomount to the standby database at remote server for an empty instance (instance name dxp1p).
    3.  All rman backups are in the /backup mount point at primary and the mount point is shared on the remote server as nfs.   So, whatever have in the backup we should be able to see and read from the remote as well.
    4.  Run the following at primary rman:
    sql 'alter system archive log current';
    backup current controlfile for standby;
    sql 'alter system archive log current';
    crosscheck backup;
    crosscheck archivelog all;
    exit
    5.   Start the rman  command from primary after connected to the standby server, as the primary DB uses ASM and the standby DB uses file system for the database files:
    RUN
    SET NEWNAME FOR DATAFILE 1 to '/u01/dxp1p/data/system01.dbf';
    SET NEWNAME FOR DATAFILE 2 to '/u01/dxp1p/data/sysaux01.dbf';
    SET NEWNAME FOR DATAFILE 3 to '/u01/dxp1p/data/undotbs01.dbf';
    SET NEWNAME FOR DATAFILE 4 to '/u01/dxp1p/data/users01.dbf';
    SET NEWNAME FOR DATAFILE 5 to '/u01/dxp1p/data/fxtntdata.dbf';
    SET NEWNAME FOR DATAFILE 6 to '/u01/dxp1p/data/fxtntindex.dbf';
    SET NEWNAME FOR DATAFILE 7 to '/u01/dxp1p/data/mlogs.dbf';
    SET NEWNAME FOR DATAFILE 8 to '/u01/dxp1p/data/dts.dbf';
    SET NEWNAME FOR DATAFILE 9 to '/u01/dxp1p/data/dxpsoa.dbf';
    SET NEWNAME FOR DATAFILE 10 to '/u01/dxp1p/data/expresso_ts.dbf';
    SET NEWNAME FOR DATAFILE 11 to '/u01/dxp1p/data/jms_ts.dbf';
    SET NEWNAME FOR DATAFILE 12 to '/u01/dxp1p/data/uup_ts.dbf';
    SET NEWNAME FOR DATAFILE 13 to '/u01/dxp1p/data/newpage_ts.dbf';
      ALLOCATE AUXILIARY CHANNEL aux1 DEVICE TYPE DISK;
      ALLOCATE AUXILIARY CHANNEL aux2 DEVICE TYPE DISK;
      DUPLICATE TARGET DATABASE for standby
    nofilenamecheck
    dorecover;
    ========================================================================
    But I got this error from the rman log:
    contents of Memory Script:
       set until scn  12245784375453;
       restore clone standby controlfile;
    executing Memory Script
    executing command: SET until clause
    Starting restore at 04-DEC-13
    channel aux1: starting datafile backup set restore
    channel aux1: restoring control file
    channel aux1: reading from backup piece /backup/dxp1p/online/DXP1P_CF_c-2027711285-20131204-01
    channel aux1: ORA-19870: error while restoring backup piece /backup/dxp1p/online/DXP1P_CF_c-2027711285-20131204-01
    ORA-19505: failed to identify file "/backup/dxp1p/online/DXP1P_CF_c-2027711285-20131204-01"
    ORA-27037: unable to obtain file status
    Linux-x86_64 Error: 2: No such file or directory
    Additional information: 3
    failover to previous backup
    channel aux1: starting datafile backup set restore
    channel aux1: restoring control file
    channel aux1: reading from backup piece /backup/dxp1p/online/DXP1P_20131204_833310136_464
    channel aux1: ORA-19870: error while restoring backup piece /backup/dxp1p/online/DXP1P_20131204_833310136_464
    ORA-19505: failed to identify file "/backup/dxp1p/online/DXP1P_20131204_833310136_464"
    ORA-27037: unable to obtain file status
    Linux-x86_64 Error: 2: No such file or directory
    Additional information: 3
    failover to previous backup
    channel aux1: starting datafile backup set restore
    channel aux1: restoring control file
    channel aux1: reading from backup piece /backup/dxp1p/online/DXP1P_CF_c-2027711285-20131204-00
    channel aux1: ORA-19504: failed to create file "/oracle/product/11g/dbs/u02/dxp1p/control/control02.ctl"
    ORA-27040: file create error, unable to create file
    Linux-x86_64 Error: 2: No such file or directory
    Additional information: 1
    ORA-19600: input file is control file  (/u01/dxp1p/control/control01.ctl)
    ORA-19601: output file is control file  (/oracle/product/11g/dbs/u02/dxp1p/control/control02.ctl)
    Finished restore at 04-DEC-13
    contents of Memory Script:
       sql clone 'alter database mount standby database';
    executing Memory Script
    sql statement: alter database mount standby database
    released channel: aux1
    released channel: aux2
    RMAN-00571: ===========================================================
    RMAN-00569: =============== ERROR MESSAGE STACK FOLLOWS ===============
    RMAN-00571: ===========================================================
    RMAN-03002: failure of Duplicate Db command at 12/04/2013 19:06:13
    RMAN-05501: aborting duplication of target database
    RMAN-03015: error occurred in stored script Memory Script
    RMAN-03009: failure of sql command on clone_default channel at 12/04/2013 19:06:13
    RMAN-11003: failure during parse/execution of SQL statement: alter database mount standby database
    ORA-00205: error in identifying control file, check alert log for more info
    =========================================
    Not sure why, can somebody help?   Appreciated!

    I used company regular script to login to standby instance as sys user from primary DB RMAN as oracle OS user and sys DB user.   We normally run this way for years.
    Like this:
    $ORACLE_HOME/bin/rman target=/ auxiliary 'sys/sys0rapr321!'@dxp1p_s11 CMDFILE=${HOME}/dba/scripts/rman_cr_dr.cmd
    rman_cr_dr.cmd:
    RUN
    SET NEWNAME FOR DATAFILE 1 to '/u01/dxp1p/data/system01.dbf';
    SET NEWNAME FOR DATAFILE 2 to '/u01/dxp1p/data/sysaux01.dbf';
    SET NEWNAME FOR DATAFILE 3 to '/u01/dxp1p/data/undotbs01.dbf';
    SET NEWNAME FOR DATAFILE 4 to '/u01/dxp1p/data/users01.dbf';
    SET NEWNAME FOR DATAFILE 5 to '/u01/dxp1p/data/fxtntdata.dbf';
    SET NEWNAME FOR DATAFILE 6 to '/u01/dxp1p/data/fxtntindex.dbf';
    SET NEWNAME FOR DATAFILE 7 to '/u01/dxp1p/data/mlogs.dbf';
    SET NEWNAME FOR DATAFILE 8 to '/u01/dxp1p/data/dts.dbf';
    SET NEWNAME FOR DATAFILE 9 to '/u01/dxp1p/data/dxpsoa.dbf';
    SET NEWNAME FOR DATAFILE 10 to '/u01/dxp1p/data/expresso_ts.dbf';
    SET NEWNAME FOR DATAFILE 11 to '/u01/dxp1p/data/jms_ts.dbf';
    SET NEWNAME FOR DATAFILE 12 to '/u01/dxp1p/data/uup_ts.dbf';
    SET NEWNAME FOR DATAFILE 13 to '/u01/dxp1p/data/newpage_ts.dbf';
      ALLOCATE AUXILIARY CHANNEL aux1 DEVICE TYPE DISK;
      ALLOCATE AUXILIARY CHANNEL aux2 DEVICE TYPE DISK;
      DUPLICATE TARGET DATABASE for standby
    nofilenamecheck
    dorecover;
    exit
    ==========================
    Oinstall is a group.   I am not sure to use oinstall as a user?

  • ORA-13193: failed to allocate space for geometry

    I am having problems indexing a point layer using Locator in 8.1.6. The errors are:
    ERROR at line 1:
    ORA-29855: error occurred in the execution of ODCIINDEXCREATE routine
    ORA-13200: internal error [ROWID:AAAFs9AADAAAB30AAg] in spatial indexing.
    ORA-13206: internal error [] while creating the spatial index
    ORA-13193: failed to allocate space for geometry
    ORA-06512: at "MDSYS.SDO_INDEX_METHOD", line 7
    ORA-06512: at line 1
    ORA-06512: at "MDSYS.GEOCODER_HTTP", line 168
    ORA-06512: at line 1
    The table has 2 columns:
    POSTCODE VARCHAR2(9)
    LOCATION MDSYS.SDO_GEOMETRY
    I loaded the point data with sqlloader rather than geocoding, so this could be the root of my problem, maybe I've missed something obvious:
    POSTCODE
    LOCATION(SDO_GTYPE, SDO_SRID, SDO_POINT(X, Y, Z), SDO_ELEM_INFO, SDO_ORDINATES)
    AB15 8SA
    SDO_GEOMETRY(1, NULL, SDO_POINT_TYPE(3858, 8075, NULL), NULL, NULL)
    AB15 8SB
    SDO_GEOMETRY(1, NULL, SDO_POINT_TYPE(3864, 8077, NULL), NULL, NULL)
    AB15 8SD
    SDO_GEOMETRY(1, NULL, SDO_POINT_TYPE(3867, 8083, NULL), NULL, NULL)
    I am trying to index using the following command, this is when I got the error:
    SQL> execute geocoder_http.setup_locator_index('POSTCODE_POINTS', 'LOCATION');
    User_sdo_geom_metadata has some metadata inserted with lat/long dimensions. My data is not in lat/long, so I updated this but still get the same error message.
    Is it possible to use locator with data that's not in lat/long format?
    Anyone got any ideas?
    Thanks.

    1) If Locator needs lat/long coordinates, can anyone suggest a good route to convert coordinates for example from British National Grid to lat/long?
    2) Are there plans for Locator to be able to use data from other coordinate systems like Spatial can?

  • Exception: ORA-29913: error in executing ODCIEXTTABLEFETCH callout ORA-3065

    Dear Experts,
    Need your help. We export data from oracle 11g database and import into oracle 10g database.
    We have created external tables with same DDL in both export and import schema.
    we are able generate datadump files at export side successfuly. However, when we try to query the datadump files at import side we are getting following error:
    Exception: ORA-29913: error in executing ODCIEXTTABLEFETCH callout ORA-30653: reject limit REACHED
    In the external table definition we have defined the reject limit as zero as we don't want any records to be rejected.
    This issue occurred after we deployed the fix for an issue, which is -> In one of the table we store the xml of the modified record of some core table. And if the records contains control characters [ chr(0) to chr(31), expect chr(9), chr(10) and chr(13) ] then xml fails to validate and our export failed.
    To fix it, we added the code to set the event at the start of the export rountine using command:
    /*Replace the erroneous character with corresponding character reference*/
    EXECUTE IMMEDIATE 'ALTER SESSION SET events = ''19119 trace name context forever, level 0x200000''';
    After this, the export worked fine but import failed.
    I have no clue what this error message is suggesting, expect the reject limit thing which I can't set to unlimited.
    I would be grateful to have your comments on this. Please let me know if you need futher information.
    Many Thanks

    Hi,
    What happens if you set that event on the importing side too?
    Is there no other way to remove the speical characters - can you not use functions against the xml string directly in the routine that populates the external table - why are you using the event?
    Cheers,
    Harry

  • Oracle 10G Encryption Problem - ORA-28353: failed to open wallet

    I have an Oracle 10g R2 database. I would like to use the Transparent Database Encription on a table. However, whenever I try to create or open a wallet I get the following error:
    ORA-28353: failed to open wallet
    I have a directory called wallet in the $ORACLE_BASE directory. I've checked Meta-Link. I can't seem to find any information on what to do.
    Any out-of-the-box ideas.
    Thanks,
    John

    Hi,
    Did you follow the procedure described in Oracle 10g documentation titled as 'Advanced Security' about "Using Transparent Data Encryption" (Chapter 3).????
    Also , in the advisable actions of Oracle about this type of error is this....
    Action: Execute the command again using the correct wallet password or verfying a wallet exists in the specified directory. If necessary, create a new wallet and initialize it.
    Regards ,
    Simon

  • Admin Task 2008 fails while executing from BIDS environment

    Hello,
    we developed a custom SSIS pcakge for automating master data load in BPC 7.5 MS.
    The packages works fine when running form Data Managaer.
    When executing the package from Business Intelligense development studio environement, only Admin Task 2008 with Create Dimension based on the SQL table option fails.
    The user id has full authrozation in BPC.
    Another information is that even this works fine when executing the package inside the server network.
    But fails when executing this by logging to application server remotely.
    Note that Run32bit property is already set to false.
    Error message it gives is : The Task Create Dimension Fails
    any expert thoughts are welcome.

    0x80070047 = "No more connections can be made to this remote computer at this time because there are already as many connections as the computer can accept."
    You must have some non-standard policy or restriction applied to the system hosting the share.
    Jason | http://blog.configmgrftw.com

  • ERROR: Fail to parse policy requests

    I noticed that the ..\sms_p01\inboxes\polreq.box\bad\ folder has accumulated 20 bad policy request files over the last three days.  The ..\sms_p01\Logs\chmgr.log shows this every five minutes:
    Inbox file change detected at 7/20/2012 11:46:09 AM Central Daylight Time 7/20/2012 11:46:09 AM
    New policy file arrived 7/20/2012 11:46:09 AM
    On primary site: process files to DB 7/20/2012 11:46:09 AM
    Client Health Manager is processing *.POL files 7/20/2012 11:46:09 AM
    Processing file POL2012720164690.POL 7/20/2012 11:46:09 AM
    Try to bind to table v_CH_PendingPolicyRequests 7/20/2012 11:46:09 AM
    Column number is 3 7/20/2012 11:46:09 AM
    Successfully bind to table v_CH_PendingPolicyRequests 7/20/2012 11:46:09 AM
    Begin to get policy requests body 7/20/2012 11:46:09 AM
    Successfully get policy requests body 7/20/2012 11:46:09 AM
    Begin to parse policy requests 7/20/2012 11:46:09 AM
    ERROR: Invalid policy request data 7/20/2012 11:46:09 AM
    ERROR: Fail to parse policy requests 7/20/2012 11:46:09 AM
    ERROR: Fail to read from file D:\Program Files\Microsoft Configuration Manager\inboxes\polreq.box\POL2012720164690.POL 7/20/2012 11:46:09 AM
    WARN: Fail to process file POL2012720164690.POL 7/20/2012 11:46:09 AM
    Bad Policy request file was moved to D:\Program Files\Microsoft Configuration Manager\inboxes\polreq.box\bad\POL2012720164690.POL 7/20/2012 11:46:09 AM
    Successfully executed stored procedure CH_SummarizePolicyRequests 7/20/2012 11:46:09 AM
    Work completed at 7/20/2012 11:46:09 AM Central Daylight Time 7/20/2012 11:46:09 AM
    Next wake up time is 7/21/2012 11:46:09 AM Central Daylight Time 7/20/2012 11:46:09 AM
    The SMS_CLIENT_HEALTH component's status shows that it is healthy.
    The only component that shows an unhealthy status is the SMS_DISTRIBUTION_MANAGER.  The DistMgr.Log shows this for package P0100008:
    Used 0 out of 3 allowed processing threads. 7/20/2012 12:37:22 PM
    Starting package processing thread, thread ID = 0x1580 (5504) 7/20/2012 12:37:22 PM
    Sleep 3600 seconds... 7/20/2012 12:37:22 PM
    STATMSG: ID=2304 SEV=I LEV=M SOURCE="SMS Server" COMP="SMS_DISTRIBUTION_MANAGER" SYS=PSCCMA2W.theocc.com SITE=P01 PID=256 TID=5504 GMTDATE=Fri Jul 20 17:37:22.883 2012 ISTR0="P0100008" ISTR1="" ISTR2="" ISTR3="" ISTR4="" ISTR5="" ISTR6="" ISTR7="" ISTR8=""
    ISTR9="" NUMATTRS=1 AID0=400 AVAL0="P0100008" 7/20/2012 12:37:22 PM
    Retrying package P0100008 7/20/2012 12:37:22 PM
    No action specified for the package P0100008. 7/20/2012 12:37:22 PM
    Start validating package P0100008 on server ["Display=\\PSCCMA2W.theocc.com\"]MSWNET:["SMS_SITE=P01"]\\PSCCMA2W.theocc.com\... 7/20/2012 12:37:22 PM
    Failed to start DP health monitoring task for package 'P0100008'. Error code: -1 7/20/2012 12:37:22 PM
    Updating package info for package P0100008 7/20/2012 12:37:22 PM
    Only retrying local DP update for package P0100008, no need to replicate package definition to child sites or DP info to parent site. 7/20/2012 12:37:22 PM
    StoredPkgVersion (7) of package P0100008. StoredPkgVersion in database is 7. 7/20/2012 12:37:22 PM
    SourceVersion (7) of package P0100008. SourceVersion in database is 7. 7/20/2012 12:37:22 PM
    STATMSG: ID=2302 SEV=E LEV=M SOURCE="SMS Server" COMP="SMS_DISTRIBUTION_MANAGER" SYS=PSCCMA2W.theocc.com SITE=P01 PID=256 TID=5504 GMTDATE=Fri Jul 20 17:37:22.989 2012 ISTR0="All Security Updates " ISTR1="P0100008" ISTR2="" ISTR3="" ISTR4="" ISTR5="" ISTR6=""
    ISTR7="" ISTR8="" ISTR9="" NUMATTRS=1 AID0=400 AVAL0="P0100008" 7/20/2012 12:37:22 PM
    Failed to process package P0100008 after 45 retries, will retry 55 more times 7/20/2012 12:37:22 PM
    Exiting package processing thread. 7/20/2012 12:37:22 PM
    Used 0 out of 3 allowed processing threads. 7/20/2012 12:37:28 PM
    Sleep 1824 seconds... 7/20/2012 12:37:28 PM
    Site P01 is the one and only site and has all of the site system roles - including DP.  There is only one site server for this Primary Site.  SQL is local as well.  The server has been restarted to see if this would help.  It didn't.
    If I open one of these 'Bad' *.POL files, I can see that one GUID is not like the others.  It is the same for all of the other corrupt *.POL files:

    I have been having similar issues. Check if you have the EndPoint Protection client running on your site server. If you do, ensure that you have the scanning directory exceptions set.
    http://blogs.technet.com/b/systemcenterpfe/archive/2012/11/29/system-center-2012-configuration-manager-antivirus-exclusions.aspx
    -Ravi

  • Failed to download policy (0x80004005)

    Hi,
    I have installed SCCM 2012 R2 in a lab (following the installation guide from windows-noob) consisting of:
    - 1 Domain Controller on Server 2012
    - 1 CAS on Server 2012
    - 1 DP on Server 2012 (WDS installed here)
    - several Clients
    Everything runs in Hyper-V.
    I try to capture a Windows 8.1 x64 operating system.
    The client PXE boots the Windows PE just fine. But after entering the password the client reboots with the error:
    An error occurred while retrieving policy for this computer  (0x80004005).
    I have searched and tried every solution I could find regarding this error message with no success.
    In the client log smsts.log are the following errors I could not find any hint on the internet:
    cannot load XML reply    TSPxe    14.02.2014 08:41:09    1016 (0x03F8)
    oPolicy.RequestPolicy((GetPolicyFlags() & POLICY_SECURE) != 0, (GetPolicyFlags() & POLICY_COMPRESS) != 0), HRESULT=80004005 (e:\nts_sccm_release\sms\framework\tscore\tspolicy.cpp,2130)    TSPxe    14.02.2014 08:41:09  
     1016 (0x03F8)
    Failed to download policy P0120001-P0100001-6F6BCC28 (Code 0x80004005).    TSPxe    14.02.2014 08:41:09    1016 (0x03F8)
    (*iTSPolicyAssignment)->GetObjects(pszClassName, aTSPolicyObjectArray ), HRESULT=80004005 (e:\nts_sccm_release\sms\framework\tscore\tspolicy.cpp,1223)    TSPxe    14.02.2014 08:41:09    1016 (0x03F8)
    m_pPolicyManager->GetObjects( TS::Policy::TaskSequence::GetClassNameW(), TS::Policy::TaskSequence::GetPolicyCategory(), TS::Policy::TSPolicyAssignment::POLICY_TS_FOR_CD_AND_PXE, aTSPolicyObjectArray ), HRESULT=80004005 (e:\nts_sccm_release\sms\client\tasksequence\tsmbootstrap\tsmediawizardcontrol.cpp,1246)  
     TSPxe    14.02.2014 08:41:09    1016 (0x03F8)
    Exiting TSMediaWizardControl::GetPolicy.    TSPxe    14.02.2014 08:41:09    1016 (0x03F8)
    Best regards
    Bjorn

    Hi Jason,
    the MP is configured: "Specify how client computers communicate with this distribution point: HTTP".
    I deleted and recreated the task sequence several times. The client is imported and in a collection.
    Here is the content of smsts.log (i had to cut out a piece due to length restrictions):
    <![LOG[LOGGING: Finalize process ID set to 676]LOG]!><time="08:40:30.350+480" date="02-14-2014" component="TSBootShell" context="" type="1" thread="680" file="tslogging.cpp:1495">
    <![LOG[==============================[ TSBootShell.exe ]==============================]LOG]!><time="08:40:30.350+480" date="02-14-2014" component="TSBootShell" context="" type="1" thread="680" file="bootshell.cpp:1055">
    <![LOG[Succeeded loading resource DLL 'X:\sms\bin\x64\1033\TSRES.DLL']LOG]!><time="08:40:30.350+480" date="02-14-2014" component="TSBootShell" context="" type="1" thread="680" file="util.cpp:964">
    <![LOG[Debug shell is enabled]LOG]!><time="08:40:30.350+480" date="02-14-2014" component="TSBootShell" context="" type="1" thread="680" file="bootshell.cpp:1066">
    <![LOG[Waiting for PNP initialization...]LOG]!><time="08:40:30.585+480" date="02-14-2014" component="TSBootShell" context="" type="1" thread="688" file="bootshell.cpp:60">
    <![LOG[RAM Disk Boot Path: NET(0)\SMSIMAGES\CAS00005\BOOT.CAS00005.WIM]LOG]!><time="08:40:30.585+480" date="02-14-2014" component="TSBootShell" context="" type="1" thread="688" file="configpath.cpp:302">
    <![LOG[Booted from network (PXE)]LOG]!><time="08:40:30.585+480" date="02-14-2014" component="TSBootShell" context="" type="1" thread="688" file="configpath.cpp:317">
    <![LOG[Network(PXE) path: X:\sms\data\]LOG]!><time="08:40:30.585+480" date="02-14-2014" component="TSBootShell" context="" type="1" thread="688" file="configpath.cpp:319">
    <![LOG[Found config path X:\sms\data\]LOG]!><time="08:40:30.585+480" date="02-14-2014" component="TSBootShell" context="" type="1" thread="688" file="bootshell.cpp:548">
    <![LOG[Booting from removable media, not restoring bootloaders on hard drive]LOG]!><time="08:40:30.585+480" date="02-14-2014" component="TSBootShell" context="" type="1" thread="688" file="bootshell.cpp:582">
    <![LOG[X:\sms\data\WinPE does not exist.]LOG]!><time="08:40:30.585+480" date="02-14-2014" component="TSBootShell" context="" type="1" thread="688" file="bootshell.cpp:599">
    <![LOG[X:\_SmsTsWinPE\WinPE does not exist.]LOG]!><time="08:40:30.585+480" date="02-14-2014" component="TSBootShell" context="" type="1" thread="688" file="bootshell.cpp:613">
    <![LOG[Executing command line: wpeinit.exe -winpe]LOG]!><time="08:40:31.727+480" date="02-14-2014" component="TSBootShell" context="" type="1" thread="688" file="bootshell.cpp:860">
    <![LOG[The command completed successfully.]LOG]!><time="08:40:40.017+480" date="02-14-2014" component="TSBootShell" context="" type="1" thread="688" file="bootshell.cpp:942">
    <![LOG[Starting DNS client service.]LOG]!><time="08:40:40.017+480" date="02-14-2014" component="TSBootShell" context="" type="1" thread="688" file="bootshell.cpp:666">
    <![LOG[Executing command line: X:\sms\bin\x64\TsmBootstrap.exe /env:WinPE /configpath:X:\sms\data\]LOG]!><time="08:40:40.526+480" date="02-14-2014" component="TSBootShell" context="" type="1" thread="688" file="bootshell.cpp:860">
    <![LOG[The command completed successfully.]LOG]!><time="08:40:40.526+480" date="02-14-2014" component="TSBootShell" context="" type="1" thread="688" file="bootshell.cpp:942">
    <![LOG[==============================[ TSMBootStrap.exe ]==============================]LOG]!><time="08:40:40.588+480" date="02-14-2014" component="TSMBootstrap" context="" type="1" thread="300" file="tsmbootstrap.cpp:1165">
    <![LOG[Command line: X:\sms\bin\x64\TsmBootstrap.exe /env:WinPE /configpath:X:\sms\data\]LOG]!><time="08:40:40.588+480" date="02-14-2014" component="TSMBootstrap" context="" type="0" thread="300" file="tsmbootstrap.cpp:1166">
    <![LOG[Succeeded loading resource DLL 'X:\sms\bin\x64\1033\TSRES.DLL']LOG]!><time="08:40:40.604+480" date="02-14-2014" component="TSMBootstrap" context="" type="1" thread="300" file="util.cpp:964">
    <![LOG[Succeeded loading resource DLL 'X:\sms\bin\x64\TSRESNLC.DLL']LOG]!><time="08:40:40.604+480" date="02-14-2014" component="TSMBootstrap" context="" type="1" thread="300" file="resourceutils.cpp:169">
    <![LOG[Current OS version is 6.2.9200.0]LOG]!><time="08:40:40.604+480" date="02-14-2014" component="TSMBootstrap" context="" type="1" thread="300" file="util.cpp:3094">
    <![LOG[Adding SMS bin folder "X:\sms\bin\x64" to the system environment PATH]LOG]!><time="08:40:40.604+480" date="02-14-2014" component="TSMBootstrap" context="" type="0" thread="300" file="tsmbootstrap.cpp:963">
    <![LOG[PXE Boot with Root = X:\]LOG]!><time="08:40:40.604+480" date="02-14-2014" component="TSMBootstrap" context="" type="1" thread="300" file="tsmbootstrap.cpp:1062">
    <![LOG[Executing from PXE in WinPE]LOG]!><time="08:40:40.604+480" date="02-14-2014" component="TSMBootstrap" context="" type="1" thread="300" file="tsmbootstrap.cpp:1077">
    <![LOG[Loading TsPxe.dll from X:\sms\bin\x64\TsPxe.dll]LOG]!><time="08:40:40.604+480" date="02-14-2014" component="TSMBootstrap" context="" type="0" thread="300" file="tsmbootstraputil.cpp:1363">
    <![LOG[TsPxe.dll loaded]LOG]!><time="08:40:40.620+480" date="02-14-2014" component="TSPxe" context="" type="0" thread="300" file="tsmbootstraputil.cpp:1373">
    <![LOG[Device has PXE booted]LOG]!><time="08:40:40.620+480" date="02-14-2014" component="TSPxe" context="" type="0" thread="300" file="tspxe.cpp:122">
    <![LOG[Variable Path: \SMSTemp\2014.02.14.08.38.58.0001.{B9705FAA-6181-41F6-A267-9D7CFE2A3C0C}.boot.var]LOG]!><time="08:40:40.620+480" date="02-14-2014" component="TSPxe" context="" type="0" thread="300" file="tspxe.cpp:134">
    <![LOG[Succesfully added firewall rule for Tftp]LOG]!><time="08:40:40.620+480" date="02-14-2014" component="TSPxe" context="" type="0" thread="300" file="fwopen.cpp:123">
    <![LOG[Executing: X:\sms\bin\x64\smstftp.exe -i 10.10.21.11 get \SMSTemp\2014.02.14.08.38.58.0001.{B9705FAA-6181-41F6-A267-9D7CFE2A3C0C}.boot.var X:\sms\data\variables.dat]LOG]!><time="08:40:40.620+480" date="02-14-2014" component="TSPxe" context="" type="0" thread="300" file="tspxe.cpp:177">
    <![LOG[Command line for extension .exe is "%1" %*]LOG]!><time="08:40:40.682+480" date="02-14-2014" component="TSPxe" context="" type="0" thread="300" file="commandline.cpp:228">
    <![LOG[Set command line: "X:\sms\bin\x64\smstftp.exe" -i 10.10.21.11 get \SMSTemp\2014.02.14.08.38.58.0001.{B9705FAA-6181-41F6-A267-9D7CFE2A3C0C}.boot.var X:\sms\data\variables.dat]LOG]!><time="08:40:40.682+480" date="02-14-2014" component="TSPxe" context="" type="0" thread="300" file="commandline.cpp:731">
    <![LOG[Executing command line: "X:\sms\bin\x64\smstftp.exe" -i 10.10.21.11 get \SMSTemp\2014.02.14.08.38.58.0001.{B9705FAA-6181-41F6-A267-9D7CFE2A3C0C}.boot.var X:\sms\data\variables.dat]LOG]!><time="08:40:40.682+480" date="02-14-2014" component="TSPxe" context="" type="1" thread="300" file="commandline.cpp:827">
    <![LOG[Process completed with exit code 0]LOG]!><time="08:40:40.760+480" date="02-14-2014" component="TSPxe" context="" type="1" thread="300" file="commandline.cpp:1123">
    <![LOG[Succesfully removed firewall rule for Tftp]LOG]!><time="08:40:40.760+480" date="02-14-2014" component="TSPxe" context="" type="0" thread="300" file="fwopen.cpp:146">
    <![LOG[Successfully downloaded pxe variable file.]LOG]!><time="08:40:40.760+480" date="02-14-2014" component="TSPxe" context="" type="1" thread="300" file="tspxe.cpp:187">
    <![LOG[we are booted using PXE]LOG]!><time="08:40:40.760+480" date="02-14-2014" component="TSPxe" context="" type="1" thread="300" file="tsmediawizardcontrol.cpp:2673">
    <![LOG[we are booted using PXE and we don't use a password or the password is provided by the user]LOG]!><time="08:40:40.760+480" date="02-14-2014" component="TSPxe" context="" type="1" thread="300" file="tsmediawizardcontrol.cpp:2689">
    <![LOG[Found network adapter "Intel 21140-Based PCI Fast Ethernet Adapter (Emulated)" with IP Address 10.10.21.20.]LOG]!><time="08:40:40.760+480" date="02-14-2014" component="TSPxe" context="" type="0" thread="300" file="tsmbootstraputil.cpp:517">
    <![LOG[Run PXE Interactive]LOG]!><time="08:40:40.760+480" date="02-14-2014" component="TSPxe" context="" type="0" thread="300" file="tsmediawizardcontrol.cpp:2824">
    <![LOG[Running Wizard in Interactive mode]LOG]!><time="08:40:40.760+480" date="02-14-2014" component="TSPxe" context="" type="1" thread="300" file="tsmediawizardcontrol.cpp:2826">
    <![LOG[Loading Media Variables from "X:\sms\data\variables.dat"]LOG]!><time="08:40:40.776+480" date="02-14-2014" component="TSPxe" context="" type="1" thread="300" file="tsremovablemedia.cpp:322">
    <![LOG[CryptDecrypt (hKey, 0, 1, 0, pData, &dwDecryptedLen), HRESULT=80090005 (e:\nts_sccm_release\sms\framework\smscrypt\windes.cpp,165)]LOG]!><time="08:40:40.791+480" date="02-14-2014" component="TSPxe" context="" type="0" thread="300" file="windes.cpp:165">
    <![LOG[SMS::Crypto::DES::DecryptBuffer( (BYTE*)pszPassword, (DWORD)(wcslen(pszPassword)*sizeof(WCHAR)), encryptedBuffer.getBuffer(), (DWORD)encryptedBuffer.size(), pbDecryptedBuffer, dwDecryptedBufferSize ), HRESULT=80090005 (e:\nts_sccm_release\sms\framework\tscore\tsremovablemedia.cpp,387)]LOG]!><time="08:40:40.791+480" date="02-14-2014" component="TSPxe" context="" type="0" thread="300" file="tsremovablemedia.cpp:387">
    <![LOG[Activating Welcome Page.]LOG]!><time="08:40:40.791+480" date="02-14-2014" component="TSPxe" context="" type="0" thread="300" file="tsmediawelcomepage.cpp:131">
    <![LOG[Loading bitmap]LOG]!><time="08:40:40.791+480" date="02-14-2014" component="TSPxe" context="" type="1" thread="300" file="tsmbootstrap.cpp:1271">
    <![LOG[Executing command line: X:\WINDOWS\system32\cmd.exe /k]LOG]!><time="08:41:00.676+480" date="02-14-2014" component="TSBootShell" context="" type="1" thread="680" file="bootshell.cpp:860">
    <![LOG[The command completed successfully.]LOG]!><time="08:41:00.676+480" date="02-14-2014" component="TSBootShell" context="" type="1" thread="680" file="bootshell.cpp:942">
    <![LOG[Successfully launched command shell.]LOG]!><time="08:41:00.676+480" date="02-14-2014" component="TSBootShell" context="" type="1" thread="680" file="bootshell.cpp:432">
    <![LOG[WelcomePage::OnWizardNext()]LOG]!><time="08:41:05.780+480" date="02-14-2014" component="TSPxe" context="" type="0" thread="300" file="tsmediawelcomepage.cpp:340">
    <![LOG[Loading Media Variables from "X:\sms\data\variables.dat"]LOG]!><time="08:41:05.780+480" date="02-14-2014" component="TSPxe" context="" type="1" thread="300" file="tsremovablemedia.cpp:322">
    <![LOG[CryptDecrypt (hKey, 0, 1, 0, pData, &dwDecryptedLen), HRESULT=80090005 (e:\nts_sccm_release\sms\framework\smscrypt\windes.cpp,165)]LOG]!><time="08:41:05.780+480" date="02-14-2014" component="TSPxe" context="" type="0" thread="300" file="windes.cpp:165">
    <![LOG[SMS::Crypto::DES::DecryptBuffer( (BYTE*)pszPassword, (DWORD)(wcslen(pszPassword)*sizeof(WCHAR)), encryptedBuffer.getBuffer(), (DWORD)encryptedBuffer.size(), pbDecryptedBuffer, dwDecryptedBufferSize ), HRESULT=80090005 (e:\nts_sccm_release\sms\framework\tscore\tsremovablemedia.cpp,387)]LOG]!><time="08:41:05.780+480" date="02-14-2014" component="TSPxe" context="" type="0" thread="300" file="tsremovablemedia.cpp:387">
    <![LOG[Loading Media Variables from "X:\sms\data\variables.dat"]LOG]!><time="08:41:05.780+480" date="02-14-2014" component="TSPxe" context="" type="1" thread="300" file="tsremovablemedia.cpp:322">
    <![LOG[CryptDecrypt (hKey, 0, 1, 0, pData, &dwDecryptedLen), HRESULT=80090005 (e:\nts_sccm_release\sms\framework\smscrypt\windes.cpp,165)]LOG]!><time="08:41:05.780+480" date="02-14-2014" component="TSPxe" context="" type="0" thread="300" file="windes.cpp:165">
    <![LOG[SMS::Crypto::DES::DecryptBuffer( (BYTE*)pszPassword, (DWORD)(wcslen(pszPassword)*sizeof(WCHAR)), encryptedBuffer.getBuffer(), (DWORD)encryptedBuffer.size(), pbDecryptedBuffer, dwDecryptedBufferSize ), HRESULT=80090005 (e:\nts_sccm_release\sms\framework\tscore\tsremovablemedia.cpp,387)]LOG]!><time="08:41:05.780+480" date="02-14-2014" component="TSPxe" context="" type="0" thread="300" file="tsremovablemedia.cpp:387">
    <![LOG[Verifying media password.]LOG]!><time="08:41:05.780+480" date="02-14-2014" component="TSPxe" context="" type="1" thread="300" file="tsmediawizardcontrol.cpp:271">
    <![LOG[Loading Media Variables from "X:\sms\data\variables.dat"]LOG]!><time="08:41:05.780+480" date="02-14-2014" component="TSPxe" context="" type="1" thread="300" file="tsremovablemedia.cpp:322">
    <![LOG[Spawned thread 1016 to download policy.]LOG]!><time="08:41:05.796+480" date="02-14-2014" component="TSPxe" context="" type="1" thread="300" file="tsmediawelcomepage.cpp:405">
    <![LOG[Entering TSMediaWizardControl::GetPolicy.]LOG]!><time="08:41:05.796+480" date="02-14-2014" component="TSPxe" context="" type="0" thread="1016" file="tsmediawizardcontrol.cpp:527">
    <![LOG[Creating key 'Software\Microsoft\SMS\47006C006F00620061006C005C007B00350031004100300031003600420036002D0046003000440045002D0034003700350032002D0042003900370043002D003500340045003600460033003800360041003900310032007D00']LOG]!><time="08:41:05.796+480" date="02-14-2014" component="TSPxe" context="" type="1" thread="1016" file="environmentscope.cpp:263">
    <![LOG[Environment scope successfully created: Global\{51A016B6-F0DE-4752-B97C-54E6F386A912}]LOG]!><time="08:41:05.796+480" date="02-14-2014" component="TSPxe" context="" type="1" thread="1016" file="environmentscope.cpp:623">
    <![LOG[Creating key 'Software\Microsoft\SMS\47006C006F00620061006C005C007B00420041003300410033003900300030002D0043004100360044002D0034006100630031002D0038004300320038002D003500300037003300410046004300320032004200300033007D00']LOG]!><time="08:41:05.796+480" date="02-14-2014" component="TSPxe" context="" type="1" thread="1016" file="environmentscope.cpp:263">
    <![LOG[Environment scope successfully created: Global\{BA3A3900-CA6D-4ac1-8C28-5073AFC22B03}]LOG]!><time="08:41:05.796+480" date="02-14-2014" component="TSPxe" context="" type="1" thread="1016" file="environmentscope.cpp:623">
    <![LOG[Setting LogMaxSize to 1000000]LOG]!><time="08:41:05.796+480" date="02-14-2014" component="TSPxe" context="" type="1" thread="1016" file="tsmediawizardcontrol.cpp:555">
    <![LOG[Setting LogMaxHistory to 1]LOG]!><time="08:41:05.796+480" date="02-14-2014" component="TSPxe" context="" type="1" thread="1016" file="tsmediawizardcontrol.cpp:556">
    <![LOG[Setting LogLevel to 0]LOG]!><time="08:41:05.796+480" date="02-14-2014" component="TSPxe" context="" type="1" thread="1016" file="tsmediawizardcontrol.cpp:557">
    <![LOG[Setting LogEnabled to 1]LOG]!><time="08:41:05.796+480" date="02-14-2014" component="TSPxe" context="" type="1" thread="1016" file="tsmediawizardcontrol.cpp:558">
    <![LOG[Setting LogDebug to 1]LOG]!><time="08:41:05.796+480" date="02-14-2014" component="TSPxe" context="" type="1" thread="1016" file="tsmediawizardcontrol.cpp:559">
    <![LOG[UEFI: false]LOG]!><time="08:41:05.796+480" date="02-14-2014" component="TSPxe" context="" type="1" thread="1016" file="tsmediawizardcontrol.cpp:569">
    <![LOG[Loading variables from the Task Sequencing Removable Media.]LOG]!><time="08:41:05.796+480" date="02-14-2014" component="TSPxe" context="" type="1" thread="1016" file="tsmediawizardcontrol.cpp:584">
    <![LOG[Loading Media Variables from "X:\sms\data\variables.dat"]LOG]!><time="08:41:05.796+480" date="02-14-2014" component="TSPxe" context="" type="1" thread="1016" file="tsremovablemedia.cpp:322">
    <![LOG[Succeeded loading resource DLL 'X:\sms\bin\x64\1033\TSRES.DLL']LOG]!><time="08:41:05.796+480" date="02-14-2014" component="TSPxe" context="" type="1" thread="1016" file="util.cpp:964">
    <![LOG[Setting SMSTSMP TS environment variable]LOG]!><time="08:41:05.796+480" date="02-14-2014" component="TSPxe" context="" type="1" thread="1016" file="tsmediawizardcontrol.cpp:604">
    <![LOG[Setting _SMSMediaGuid TS environment variable]LOG]!><time="08:41:05.811+480" date="02-14-2014" component="TSPxe" context="" type="1" thread="1016" file="tsmediawizardcontrol.cpp:604">
    <![LOG[Setting _SMSTSBootMediaPackageID TS environment variable]LOG]!><time="08:41:05.811+480" date="02-14-2014" component="TSPxe" context="" type="1" thread="1016" file="tsmediawizardcontrol.cpp:604">
    <![LOG[Setting _SMSTSHTTPPort TS environment variable]LOG]!><time="08:41:05.811+480" date="02-14-2014" component="TSPxe" context="" type="1" thread="1016" file="tsmediawizardcontrol.cpp:604">
    <![LOG[Setting _SMSTSHTTPSPort TS environment variable]LOG]!><time="08:41:05.811+480" date="02-14-2014" component="TSPxe" context="" type="1" thread="1016" file="tsmediawizardcontrol.cpp:604">
    <![LOG[Setting _SMSTSIISSSLState TS environment variable]LOG]!><time="08:41:05.811+480" date="02-14-2014" component="TSPxe" context="" type="1" thread="1016" file="tsmediawizardcontrol.cpp:604">
    <![LOG[Setting _SMSTSLaunchMode TS environment variable]LOG]!><time="08:41:05.811+480" date="02-14-2014" component="TSPxe" context="" type="1" thread="1016" file="tsmediawizardcontrol.cpp:604">
    <![LOG[Setting _SMSTSMediaPFX TS environment variable]LOG]!><time="08:41:05.811+480" date="02-14-2014" component="TSPxe" context="" type="1" thread="1016" file="tsmediawizardcontrol.cpp:604">
    <![LOG[Setting _SMSTSPublicRootKey TS environment variable]LOG]!><time="08:41:05.811+480" date="02-14-2014" component="TSPxe" context="" type="1" thread="1016" file="tsmediawizardcontrol.cpp:604">
    <![LOG[Setting _SMSTSSiteCode TS environment variable]LOG]!><time="08:41:05.811+480" date="02-14-2014" component="TSPxe" context="" type="1" thread="1016" file="tsmediawizardcontrol.cpp:604">
    <![LOG[Setting _SMSTSSiteSigningCertificate TS environment variable]LOG]!><time="08:41:05.811+480" date="02-14-2014" component="TSPxe" context="" type="1" thread="1016" file="tsmediawizardcontrol.cpp:604">
    <![LOG[Setting _SMSTSUseFirstCert TS environment variable]LOG]!><time="08:41:05.811+480" date="02-14-2014" component="TSPxe" context="" type="1" thread="1016" file="tsmediawizardcontrol.cpp:604">
    <![LOG[Setting _SMSTSx64UnknownMachineGUID TS environment variable]LOG]!><time="08:41:05.811+480" date="02-14-2014" component="TSPxe" context="" type="1" thread="1016" file="tsmediawizardcontrol.cpp:604">
    <![LOG[Setting _SMSTSx86UnknownMachineGUID TS environment variable]LOG]!><time="08:41:05.811+480" date="02-14-2014" component="TSPxe" context="" type="1" thread="1016" file="tsmediawizardcontrol.cpp:604">
    <![LOG[Root CA Public Certs=]LOG]!><time="08:41:05.811+480" date="02-14-2014" component="TSPxe" context="" type="1" thread="1016" file="tsmediawizardcontrol.cpp:615">
    <![LOG[Missing root CA environment variable from variables file]LOG]!><time="08:41:05.811+480" date="02-14-2014" component="TSPxe" context="" type="1" thread="1016" file="tsmediawizardcontrol.cpp:621">
    <![LOG[Support Unknown Machines: 0]LOG]!><time="08:41:05.811+480" date="02-14-2014" component="TSPxe" context="" type="1" thread="1016" file="tsmediawizardcontrol.cpp:632">
    <![LOG[Custom hook from X:\\TSConfig.INI is ]LOG]!><time="08:41:05.811+480" date="02-14-2014" component="TSPxe" context="" type="1" thread="1016" file="tsmediawizardcontrol.cpp:675">
    <![LOG[No hook is found to be executed before downloading policy]LOG]!><time="08:41:05.811+480" date="02-14-2014" component="TSPxe" context="" type="1" thread="1016" file="tsmediawizardcontrol.cpp:699">
    <![LOG[Authenticator from the environment is empty.]LOG]!><time="08:41:05.811+480" date="02-14-2014" component="TSPxe" context="" type="1" thread="1016" file="tsmediawizardcontrol.cpp:838">
    <![LOG[Need to create Authenticator Info using PFX]LOG]!><time="08:41:05.811+480" date="02-14-2014" component="TSPxe" context="" type="1" thread="1016" file="tsmediawizardcontrol.cpp:850">
    <![LOG[Initialized CStringStream object with string: {B7DB3B7B-11F3-4D5F-A3D1-52932726549F};2014-02-14T16:41:05Z.]LOG]!><time="08:41:05.827+480" date="02-14-2014" component="TSPxe" context="" type="0" thread="1016" file="stringstream.cpp:101">
    <![LOG[Set media certificate in transport]LOG]!><time="08:41:05.842+480" date="02-14-2014" component="TSPxe" context="" type="0" thread="1016" file="libsmsmessaging.cpp:9401">
    <![LOG[Set authenticator in transport]LOG]!><time="08:41:05.842+480" date="02-14-2014" component="TSPxe" context="" type="0" thread="1016" file="libsmsmessaging.cpp:7734">
    <![LOG[CLibSMSMessageWinHttpTransport::Send: URL: SCCM2012-P01.SCCM2012.local:80 GET /SMS_MP/.sms_aut?MPKEYINFORMATIONMEDIA]LOG]!><time="08:41:05.842+480" date="02-14-2014" component="TSPxe" context="" type="1" thread="1016" file="libsmsmessaging.cpp:8604">
    <![LOG[Request was successful.]LOG]!><time="08:41:06.411+480" date="02-14-2014" component="TSPxe" context="" type="0" thread="1016" file="libsmsmessaging.cpp:8939">
    <![LOG[Default CSP is Microsoft Enhanced RSA and AES Cryptographic Provider]LOG]!><time="08:41:06.411+480" date="02-14-2014" component="TSPxe" context="" type="0" thread="1016" file="libcrypt.cpp:1914">
    <![LOG[Default CSP Type is 24]LOG]!><time="08:41:06.411+480" date="02-14-2014" component="TSPxe" context="" type="0" thread="1016" file="libcrypt.cpp:1915">
    <![LOG[New settings:]LOG]!><time="08:41:06.411+480" date="02-14-2014" component="TSPxe" context="" type="1" thread="1016" file="tsmediawizardcontrol.cpp:935">
    <![LOG[ site=P01,P01, MP=http://SCCM2012-P01.SCCM2012.local, ports: http=80,https=443]LOG]!><time="08:41:06.411+480" date="02-14-2014" component="TSPxe" context="" type="1" thread="1016" file="tsmediawizardcontrol.cpp:937">
    <![LOG[ certificates are received from MP.]LOG]!><time="08:41:06.411+480" date="02-14-2014" component="TSPxe" context="" type="1" thread="1016" file="tsmediawizardcontrol.cpp:939">
    <![LOG[Unknown machine GUIDs: 9085e049-83e6-49cb-920c-8a422e5fcacb 53211c68-1ce8-432a-b8c3-569d21cbf8a6]LOG]!><time="08:41:06.411+480" date="02-14-2014" component="TSPxe" context="" type="1" thread="1016" file="tsmediawizardcontrol.cpp:1027">
    <![LOG[Getting MP time information]LOG]!><time="08:41:06.411+480" date="02-14-2014" component="TSPxe" context="" type="1" thread="1016" file="tsmediawizardcontrol.cpp:1062">
    <![LOG[Set authenticator in transport]LOG]!><time="08:41:06.411+480" date="02-14-2014" component="TSPxe" context="" type="0" thread="1016" file="libsmsmessaging.cpp:7734">
    <![LOG[Requesting client identity]LOG]!><time="08:41:06.427+480" date="02-14-2014" component="TSPxe" context="" type="1" thread="1016" file="libsmsmessaging.cpp:5760">
    <![LOG[Setting message signatures.]LOG]!><time="08:41:06.427+480" date="02-14-2014" component="TSPxe" context="" type="0" thread="1016" file="libsmsmessaging.cpp:1295">
    <![LOG[Setting the authenticator.]LOG]!><time="08:41:06.427+480" date="02-14-2014" component="TSPxe" context="" type="0" thread="1016" file="libsmsmessaging.cpp:1325">
    <![LOG[CLibSMSMessageWinHttpTransport::Send: URL: SCCM2012-P01.SCCM2012.local:80 CCM_POST /ccm_system/request]LOG]!><time="08:41:06.427+480" date="02-14-2014" component="TSPxe" context="" type="1" thread="1016" file="libsmsmessaging.cpp:8604">
    <![LOG[Request was successful.]LOG]!><time="08:41:06.599+480" date="02-14-2014" component="TSPxe" context="" type="0" thread="1016" file="libsmsmessaging.cpp:8939">
    <![LOG[::DecompressBuffer(65536)]LOG]!><time="08:41:06.599+480" date="02-14-2014" component="TSPxe" context="" type="0" thread="1016" file="ccmzlib.cpp:739">
    <![LOG[Decompression (zlib) succeeded: original size 416, uncompressed size 2456.]LOG]!><time="08:41:06.599+480" date="02-14-2014" component="TSPxe" context="" type="0" thread="1016" file="ccmzlib.cpp:651">
    <![LOG[-60 -60]LOG]!><time="08:41:06.599+480" date="02-14-2014" component="TSPxe" context="" type="1" thread="1016" file="libsmsmessaging.cpp:5956">
    <![LOG[Server time zone info: -60, , [0 10 0 5 3 0 0 0], 0, , [0 3 0 5 2 0 0 0], -60]LOG]!><time="08:41:06.599+480" date="02-14-2014" component="TSPxe" context="" type="1" thread="1016" file="libsmsmessaging.cpp:6055">
    <![LOG[Client Identity: ]LOG]!><time="08:41:06.599+480" date="02-14-2014" component="TSPxe" context="" type="1" thread="1016" file="libsmsmessaging.cpp:6125">
    <![LOG[Netbios name: ]LOG]!><time="08:41:06.599+480" date="02-14-2014" component="TSPxe" context="" type="1" thread="1016" file="libsmsmessaging.cpp:6141">
    <![LOG[Current time: 2014-02-14 16:41:06.599 TZ:Pacific Standard Time Bias:0480]LOG]!><time="08:41:06.599+480" date="02-14-2014" component="TSPxe" context="" type="1" thread="1016" file="tsmediawizardcontrol.cpp:1131">
    <![LOG[Current time zone info: 480, Pacific Standard Time, [0 0 0 0 0 0 0 0], 0, , [0 0 0 0 0 0 0 0], 0]LOG]!><time="08:41:06.599+480" date="02-14-2014" component="TSPxe" context="" type="1" thread="1016" file="tsmediawizardcontrol.cpp:1159">
    <![LOG[Adjusting the system time: -32398.802 seconds]LOG]!><time="08:41:06.599+480" date="02-14-2014" component="TSPxe" context="" type="1" thread="1016" file="tsmediawizardcontrol.cpp:1161">
    <![LOG[Time zone info set to: -60, , [0 10 0 5 3 0 0 0], 0, , [0 3 0 5 2 0 0 0], -60]LOG]!><time="17:41:06.599-60" date="02-14-2014" component="TSPxe" context="" type="1" thread="1016" file="tsmediawizardcontrol.cpp:1197">
    <![LOG[New time: 2014-02-14 07:41:07.796]LOG]!><time="08:41:07.787-60" date="02-14-2014" component="TSPxe" context="" type="1" thread="1016" file="tsmediawizardcontrol.cpp:1213">
    <![LOG[Current time: 2014-02-14 07:41:07.787 TZ: Bias:-060]LOG]!><time="08:41:07.787-60" date="02-14-2014" component="TSPxe" context="" type="1" thread="1016" file="tsmediawizardcontrol.cpp:1219">
    <![LOG[Downloading policy from http://SCCM2012-P01.SCCM2012.local.]LOG]!><time="08:41:07.794-60" date="02-14-2014" component="TSPxe" context="" type="1" thread="1016" file="tsmediawizardcontrol.cpp:1226">
    <![LOG[Initializing HTTP transport.]LOG]!><time="08:41:07.794-60" date="02-14-2014" component="TSPxe" context="" type="0" thread="1016" file="tspolicy.cpp:816">
    <![LOG[ Setting URL = http://SCCM2012-P01.SCCM2012.local.]LOG]!><time="08:41:07.794-60" date="02-14-2014" component="TSPxe" context="" type="0" thread="1016" file="tspolicy.cpp:817">
    <![LOG[ Setting Ports = 80,443.]LOG]!><time="08:41:07.794-60" date="02-14-2014" component="TSPxe" context="" type="0" thread="1016" file="tspolicy.cpp:820">
    <![LOG[ Setting CRL = false.]LOG]!><time="08:41:07.794-60" date="02-14-2014" component="TSPxe" context="" type="0" thread="1016" file="tspolicy.cpp:823">
    <![LOG[ Setting Server Certificates.]LOG]!><time="08:41:07.794-60" date="02-14-2014" component="TSPxe" context="" type="0" thread="1016" file="tspolicy.cpp:840">
    <![LOG[Set authenticator in transport]LOG]!><time="08:41:07.794-60" date="02-14-2014" component="TSPxe" context="" type="0" thread="1016" file="libsmsmessaging.cpp:7734">
    <![LOG[ Setting Media Certificate.]LOG]!><time="08:41:07.794-60" date="02-14-2014" component="TSPxe" context="" type="0" thread="1016" file="tspolicy.cpp:848">
    <![LOG[Preparing Client Identity Request.]LOG]!><time="08:41:07.794-60" date="02-14-2014" component="TSPxe" context="" type="0" thread="1016" file="tspolicy.cpp:582">
    <![LOG[ Setting transport.]LOG]!><time="08:41:07.794-60" date="02-14-2014" component="TSPxe" context="" type="0" thread="1016" file="tspolicy.cpp:585">
    <![LOG[ Setting SourceID = {B7DB3B7B-11F3-4D5F-A3D1-52932726549F}.]LOG]!><time="08:41:07.794-60" date="02-14-2014" component="TSPxe" context="" type="0" thread="1016" file="tspolicy.cpp:589">
    <![LOG[ Setting site code = P01.]LOG]!><time="08:41:07.794-60" date="02-14-2014" component="TSPxe" context="" type="0" thread="1016" file="tspolicy.cpp:594">
    <![LOG[Can not find DeploymentType in file TsmBootstrap.ini or the file doesn't exist. This is not running on Windows To Go.]LOG]!><time="08:41:07.794-60" date="02-14-2014" component="TSPxe" context="" type="1" thread="1016" file="utils.cpp:1897">
    <![LOG[ Setting SMBIOS GUID = D86A0BDF-B6C7-4FB5-A78A-CAB373B70AEB.]LOG]!><time="08:41:08.028-60" date="02-14-2014" component="TSPxe" context="" type="0" thread="1016" file="tspolicy.cpp:622">
    <![LOG[ Adding MAC Address 00:15:5D:0C:A5:80.]LOG]!><time="08:41:08.044-60" date="02-14-2014" component="TSPxe" context="" type="0" thread="1016" file="tspolicy.cpp:641">
    <![LOG[Executing Client Identity Request.]LOG]!><time="08:41:08.044-60" date="02-14-2014" component="TSPxe" context="" type="0" thread="1016" file="tspolicy.cpp:665">
    <![LOG[Requesting client identity]LOG]!><time="08:41:08.044-60" date="02-14-2014" component="TSPxe" context="" type="1" thread="1016" file="libsmsmessaging.cpp:5760">
    <![LOG[Setting message signatures.]LOG]!><time="08:41:08.044-60" date="02-14-2014" component="TSPxe" context="" type="0" thread="1016" file="libsmsmessaging.cpp:1295">
    <![LOG[Setting the authenticator.]LOG]!><time="08:41:08.044-60" date="02-14-2014" component="TSPxe" context="" type="0" thread="1016" file="libsmsmessaging.cpp:1325">
    <![LOG[CLibSMSMessageWinHttpTransport::Send: URL: SCCM2012-P01.SCCM2012.local:80 CCM_POST /ccm_system/request]LOG]!><time="08:41:08.044-60" date="02-14-2014" component="TSPxe" context="" type="1" thread="1016" file="libsmsmessaging.cpp:8604">
    <![LOG[Request was successful.]LOG]!><time="08:41:08.075-60" date="02-14-2014" component="TSPxe" context="" type="0" thread="1016" file="libsmsmessaging.cpp:8939">
    <![LOG[::DecompressBuffer(65536)]LOG]!><time="08:41:08.075-60" date="02-14-2014" component="TSPxe" context="" type="0" thread="1016" file="ccmzlib.cpp:739">
    <![LOG[Decompression (zlib) succeeded: original size 553, uncompressed size 2782.]LOG]!><time="08:41:08.075-60" date="02-14-2014" component="TSPxe" context="" type="0" thread="1016" file="ccmzlib.cpp:651">
    <![LOG[-60 -60]LOG]!><time="08:41:08.075-60" date="02-14-2014" component="TSPxe" context="" type="1" thread="1016" file="libsmsmessaging.cpp:5956">
    <![LOG[Server time zone info: -60, , [0 10 0 5 3 0 0 0], 0, , [0 3 0 5 2 0 0 0], -60]LOG]!><time="08:41:08.075-60" date="02-14-2014" component="TSPxe" context="" type="1" thread="1016" file="libsmsmessaging.cpp:6055">
    <![LOG[Client Identity: GUID:1A9CB4E2-A8A5-439E-8EAB-3595A40E9194]LOG]!><time="08:41:08.075-60" date="02-14-2014" component="TSPxe" context="" type="1" thread="1016" file="libsmsmessaging.cpp:6125">
    <![LOG[Netbios name: buildWin8x64]LOG]!><time="08:41:08.075-60" date="02-14-2014" component="TSPxe" context="" type="1" thread="1016" file="libsmsmessaging.cpp:6141">
    <![LOG[Client GUID = GUID:1A9CB4E2-A8A5-439E-8EAB-3595A40E9194, Netbios name = buildWin8x64, State = Known]LOG]!><time="08:41:08.075-60" date="02-14-2014" component="TSPxe" context="" type="0" thread="1016" file="tspolicy.cpp:685">
    <![LOG[Preparing Policy Assignment Request.]LOG]!><time="08:41:08.091-60" date="02-14-2014" component="TSPxe" context="" type="0" thread="1016" file="tspolicy.cpp:943">
    <![LOG[ Setting transport.]LOG]!><time="08:41:08.091-60" date="02-14-2014" component="TSPxe" context="" type="0" thread="1016" file="tspolicy.cpp:944">
    <![LOG[ Setting site code = P01.]LOG]!><time="08:41:08.091-60" date="02-14-2014" component="TSPxe" context="" type="0" thread="1016" file="tspolicy.cpp:947">
    <![LOG[ Setting client ID = GUID:1A9CB4E2-A8A5-439E-8EAB-3595A40E9194.]LOG]!><time="08:41:08.091-60" date="02-14-2014" component="TSPxe" context="" type="0" thread="1016" file="tspolicy.cpp:949">
    <![LOG[ Setting site signing Certificate.]LOG]!><time="08:41:08.091-60" date="02-14-2014" component="TSPxe" context="" type="0" thread="1016" file="tspolicy.cpp:954">
    <![LOG[Setting SiteSigningCertificateContext]LOG]!><time="08:41:08.091-60" date="02-14-2014" component="TSPxe" context="" type="1" thread="1016" file="libsmsmessaging.cpp:2514">
    <![LOG[Executing Policy Assignment Request.]LOG]!><time="08:41:08.091-60" date="02-14-2014" component="TSPxe" context="" type="0" thread="1016" file="tspolicy.cpp:966">
    <![LOG[Sending RequestAssignments]LOG]!><time="08:41:08.091-60" date="02-14-2014" component="TSPxe" context="" type="1" thread="1016" file="libsmsmessaging.cpp:2791">
    <![LOG[Setting message signatures.]LOG]!><time="08:41:08.091-60" date="02-14-2014" component="TSPxe" context="" type="0" thread="1016" file="libsmsmessaging.cpp:1295">
    <![LOG[Setting the authenticator.]LOG]!><time="08:41:08.091-60" date="02-14-2014" component="TSPxe" context="" type="0" thread="1016" file="libsmsmessaging.cpp:1325">
    <![LOG[CLibSMSMessageWinHttpTransport::Send: URL: SCCM2012-P01.SCCM2012.local:80 CCM_POST /ccm_system/request]LOG]!><time="08:41:08.091-60" date="02-14-2014" component="TSPxe" context="" type="1" thread="1016" file="libsmsmessaging.cpp:8604">
    <![LOG[Request was successful.]LOG]!><time="08:41:08.122-60" date="02-14-2014" component="TSPxe" context="" type="0" thread="1016" file="libsmsmessaging.cpp:8939">
    <![LOG[::DecompressBuffer(65536)]LOG]!><time="08:41:08.122-60" date="02-14-2014" component="TSPxe" context="" type="0" thread="1016" file="ccmzlib.cpp:739">
    <![LOG[Decompression (zlib) succeeded: original size 27684, uncompressed size 132108.]LOG]!><time="08:41:08.122-60" date="02-14-2014" component="TSPxe" context="" type="0" thread="1016" file="ccmzlib.cpp:651">
    <![LOG[Request client ID: GUID:1A9CB4E2-A8A5-439E-8EAB-3595A40E9194]LOG]!><time="08:41:08.122-60" date="02-14-2014" component="TSPxe" context="" type="1" thread="1016" file="libsmsmessaging.cpp:2845">
    <![LOG[Response client ID: GUID:1A9CB4E2-A8A5-439E-8EAB-3595A40E9194]LOG]!><time="08:41:08.122-60" date="02-14-2014" component="TSPxe" context="" type="1" thread="1016" file="libsmsmessaging.cpp:2846">
    <![LOG[Retrieving Policy Assignments:]LOG]!><time="08:41:08.138-60" date="02-14-2014" component="TSPxe" context="" type="0" thread="1016" file="tspolicy.cpp:970">
    <![LOG[ Processing Policy Assignment CAS20000-CAS00003-3B5BFFE2.]LOG]!><time="08:41:08.138-60" date="02-14-2014" component="TSPxe" context="" type="0" thread="1016" file="tspolicy.cpp:976">
    -----------------CUT-----------------------<![LOG[ Processing Policy Assignment {CDB41008-EDDE-4FD9-BAD4-801AE1FB0019}/13.]LOG]!><time="08:41:08.138-60" date="02-14-2014" component="TSPxe" context="" type="0" thread="1016" file="tspolicy.cpp:976">
    <![LOG[ Processing Policy Assignment {CDB41008-EDDE-4FD9-BAD4-801AE1FB0019}/25.]LOG]!><time="08:41:08.138-60" date="02-14-2014" component="TSPxe" context="" type="0" thread="1016" file="tspolicy.cpp:976">
    <![LOG[ Processing Policy Assignment {CDB41008-EDDE-4FD9-BAD4-801AE1FB0019}/26.]LOG]!><time="08:41:08.138-60" date="02-14-2014" component="TSPxe" context="" type="0" thread="1016" file="tspolicy.cpp:976">
    <![LOG[ Processing Policy Assignment {BA490404-DCF4-4ECE-B29E-A6F440B80868}/101.]LOG]!><time="08:41:08.138-60" date="02-14-2014" component="TSPxe" context="" type="0" thread="1016" file="tspolicy.cpp:976">
    <![LOG[ Processing Policy Assignment {BA490404-DCF4-4ECE-B29E-A6F440B80868}/200.]LOG]!><time="08:41:08.138-60" date="02-14-2014" component="TSPxe" context="" type="0" thread="1016" file="tspolicy.cpp:976">
    <![LOG[ Processing Policy Assignment P0120001-P0100001-6F6BCC28.]LOG]!><time="08:41:08.138-60" date="02-14-2014" component="TSPxe" context="" type="0" thread="1016" file="tspolicy.cpp:976">
    <![LOG[ Processing Policy Assignment DEP-P0120001-CAS00002-6F6BCC28.]LOG]!><time="08:41:08.138-60" date="02-14-2014" component="TSPxe" context="" type="0" thread="1016" file="tspolicy.cpp:976">
    <![LOG[ Processing Policy Assignment DEP-P0120001-CAS00005-6F6BCC28.]LOG]!><time="08:41:08.138-60" date="02-14-2014" component="TSPxe" context="" type="0" thread="1016" file="tspolicy.cpp:976">
    <![LOG[ Processing Policy Assignment DEP-P0120001-CAS00008-6F6BCC28.]LOG]!><time="08:41:08.138-60" date="02-14-2014" component="TSPxe" context="" type="0" thread="1016" file="tspolicy.cpp:976">
    <![LOG[Successfully read 47 policy assignments.]LOG]!><time="08:41:08.138-60" date="02-14-2014" component="TSPxe" context="" type="1" thread="1016" file="tspolicy.cpp:990">
    <![LOG[Downloading policy body P0120001-P0100001-6F6BCC28.]LOG]!><time="08:41:08.138-60" date="02-14-2014" component="TSPxe" context="" type="1" thread="1016" file="tspolicy.cpp:2103">
    <![LOG[Preparing Policy Body Request.]LOG]!><time="08:41:08.138-60" date="02-14-2014" component="TSPxe" context="" type="0" thread="1016" file="tspolicy.cpp:2106">
    <![LOG[ Setting transport.]LOG]!><time="08:41:08.138-60" date="02-14-2014" component="TSPxe" context="" type="0" thread="1016" file="tspolicy.cpp:2107">
    <![LOG[ Setting policy location = http://<mp>/SMS_MP/.sms_pol?P0120001-P0100001-6F6BCC28.1_00.]LOG]!><time="08:41:08.138-60" date="02-14-2014" component="TSPxe" context="" type="0" thread="1016" file="tspolicy.cpp:2109">
    <![LOG[Executing Policy Body Request.]LOG]!><time="08:41:08.138-60" date="02-14-2014" component="TSPxe" context="" type="0" thread="1016" file="tspolicy.cpp:2126">
    <![LOG[CLibSMSMessageWinHttpTransport::Send: URL: SCCM2012-P01.SCCM2012.local:80 GET /SMS_MP/.sms_pol?P0120001-P0100001-6F6BCC28.1_00]LOG]!><time="08:41:08.153-60" date="02-14-2014" component="TSPxe" context="" type="1" thread="1016" file="libsmsmessaging.cpp:8604">
    <![LOG[Request was successful.]LOG]!><time="08:41:09.325-60" date="02-14-2014" component="TSPxe" context="" type="0" thread="1016" file="libsmsmessaging.cpp:8939">
    <![LOG[Found a secure policy.]LOG]!><time="08:41:09.325-60" date="02-14-2014" component="TSPxe" context="" type="1" thread="1016" file="libsmsmessaging.cpp:4561">
    <![LOG[Trying to decode policy.]LOG]!><time="08:41:09.325-60" date="02-14-2014" component="TSPxe" context="" type="1" thread="1016" file="libsmsmessaging.cpp:4565">
    <![LOG[Policy decoded.]LOG]!><time="08:41:09.341-60" date="02-14-2014" component="TSPxe" context="" type="1" thread="1016" file="libsmsmessaging.cpp:4600">
    <![LOG[Hash computed from CSP: Microsoft Enhanced RSA and AES Cryptographic Provider, AlgID: 32780, HashSize: 32 ]LOG]!><time="08:41:09.341-60" date="02-14-2014" component="TSPxe" context="" type="0" thread="1016" file="libcrypt.cpp:700">
    <![LOG[Expected Hash size: 32, Computed Hash size: 32 ]LOG]!><time="08:41:09.341-60" date="02-14-2014" component="TSPxe" context="" type="0" thread="1016" file="libcrypt.cpp:747">
    <![LOG[cannot load XML reply]LOG]!><time="08:41:09.356-60" date="02-14-2014" component="TSPxe" context="" type="3" thread="1016" file="libsmsmessaging.cpp:4797">
    <![LOG[oPolicy.RequestPolicy((GetPolicyFlags() & POLICY_SECURE) != 0, (GetPolicyFlags() & POLICY_COMPRESS) != 0), HRESULT=80004005 (e:\nts_sccm_release\sms\framework\tscore\tspolicy.cpp,2130)]LOG]!><time="08:41:09.356-60" date="02-14-2014" component="TSPxe" context="" type="0" thread="1016" file="tspolicy.cpp:2130">
    <![LOG[Failed to download policy P0120001-P0100001-6F6BCC28 (Code 0x80004005).]LOG]!><time="08:41:09.356-60" date="02-14-2014" component="TSPxe" context="" type="3" thread="1016" file="tspolicy.cpp:2130">
    <![LOG[(*iTSPolicyAssignment)->GetObjects(pszClassName, aTSPolicyObjectArray ), HRESULT=80004005 (e:\nts_sccm_release\sms\framework\tscore\tspolicy.cpp,1223)]LOG]!><time="08:41:09.356-60" date="02-14-2014" component="TSPxe" context="" type="0" thread="1016" file="tspolicy.cpp:1223">
    <![LOG[m_pPolicyManager->GetObjects( TS::Policy::TaskSequence::GetClassNameW(), TS::Policy::TaskSequence::GetPolicyCategory(), TS::Policy::TSPolicyAssignment::POLICY_TS_FOR_CD_AND_PXE, aTSPolicyObjectArray ), HRESULT=80004005 (e:\nts_sccm_release\sms\client\tasksequence\tsmbootstrap\tsmediawizardcontrol.cpp,1246)]LOG]!><time="08:41:09.356-60" date="02-14-2014" component="TSPxe" context="" type="0" thread="1016" file="tsmediawizardcontrol.cpp:1246">
    <![LOG[Exiting TSMediaWizardControl::GetPolicy.]LOG]!><time="08:41:09.356-60" date="02-14-2014" component="TSPxe" context="" type="0" thread="1016" file="tsmediawizardcontrol.cpp:1419">
    <![LOG[pWelcomePage->m_pTSMediaWizardControl->GetPolicy(), HRESULT=80004005 (e:\nts_sccm_release\sms\client\tasksequence\tsmbootstrap\tsmediawelcomepage.cpp,303)]LOG]!><time="08:41:09.356-60" date="02-14-2014" component="TSPxe" context="" type="0" thread="1016" file="tsmediawelcomepage.cpp:303">
    <![LOG[Setting wizard error: An error occurred while retrieving policy for this computer (0x80004005). For more information, contact your system administrator or helpdesk operator.]LOG]!><time="08:41:09.372-60" date="02-14-2014" component="TSPxe" context="" type="0" thread="300" file="tsmediawizardcontrol.cpp:1588">
    <![LOG[WelcomePage::OnWizardNext()]LOG]!><time="08:41:09.372-60" date="02-14-2014" component="TSPxe" context="" type="0" thread="300" file="tsmediawelcomepage.cpp:340">
    <![LOG[Skipping Confirmation Page.]LOG]!><time="08:41:09.372-60" date="02-14-2014" component="TSPxe" context="" type="0" thread="300" file="tsmediaconfirmationpage.cpp:170">
    <![LOG[Skipping Task Sequence Selection Page.]LOG]!><time="08:41:09.372-60" date="02-14-2014" component="TSPxe" context="" type="0" thread="300" file="tsmediataskselectionpage.cpp:118">
    <![LOG[Skipping Variables Selection Page.]LOG]!><time="08:41:09.372-60" date="02-14-2014" component="TSPxe" context="" type="0" thread="300" file="tsmediavariablesselectionpage.cpp:155">
    <![LOG[Skipping Resolve Progress Page.]LOG]!><time="08:41:09.372-60" date="02-14-2014" component="TSPxe" context="" type="0" thread="300" file="tsmediaresolveprogresspage.cpp:96">
    <![LOG[Activating Finish Page.]LOG]!><time="08:41:09.372-60" date="02-14-2014" component="TSPxe" context="" type="0" thread="300" file="tsmediafinishpage.cpp:107">
    <![LOG[Initializing the countdown timer.]LOG]!><time="08:41:09.372-60" date="02-14-2014" component="TSPxe" context="" type="0" thread="300" file="tsmediafinishpage.cpp:197">
    <![LOG[Loading bitmap]LOG]!><time="08:41:09.372-60" date="02-14-2014" component="TSPxe" context="" type="1" thread="300" file="tsmbootstrap.cpp:1271">
    Regards
    Bjorn

  • ORA-19506:failed to create sequential file.

    RMAN offline full backup failed.
    We had setup of Oracle RMAN backup with TSM and it was working perfect but few days backup, our team did testing with RMAN-NetBackup on database server and after that our existing backup process started giving error.
    Our RMAN backup script is point to TSM but while executing, it shows to point NetBackup and not sure what dependencies are forcing them to point NetBackup.
    Oracle- 9i
    OS- AIX
    Error Message:-
    Starting backup at 04-SEP-12 09:21:51
    channel t1: starting full datafile backupset
    channel t1: specifying datafile(s) in backupset
    input datafile fno=00004 name=/u03/oradata/Test/datap_index01.dbf
    input datafile fno=00003 name=/u03/oradata/Test/datap_data01.dbf
    channel t1: starting piece 1 at 04-SEP-12 09:21:52
    released channel: t1
    RMAN-00571: ===========================================================
    RMAN-00569: =============== ERROR MESSAGE STACK FOLLOWS ===============
    RMAN-00571: ===========================================================
    RMAN-03009: failure of backup command on t1 channel at 09/04/2012 09:37:07
    ORA-19506: failed to create sequential file, name="Test_T_FULL_OFFLINE_set2057_piece1_20120904_09nkbf1g_1_1", parms=""
    ORA-27028: skgfqcre: sbtbackup returned error
    ORA-19511: Error received from media manager layer, error text:
    VxBSAValidateFeatureId: Failed with error:
    Server Status: cannot connect on socket

    Thanks for respond but issue is slightly different, we have RMAN backup setup with TSM and it was working fine earlier but last week one of our team installed and configured NetBackup with RMAN for testing oracle backup with RMAN-NetBackup and after testing they revert back the changes.
    After this testing mine RMAN-TSM backup started giving error and in error it seems to point to NetBackup instead of TSM, however I did check the RMAN script but there is no any changes that point to NetBackup.
    I am not sure what changes are causing to point backup to NetBackup instead of TSM.
    Please see the complete error message below-
    allocated channel: t1
    channel t1: sid=11 devtype=SBT_TAPE
    channel t1: Veritas NetBackup for Oracle - Release 7.5 (2012050906)*
    old RMAN configuration parameters:
    CONFIGURE CONTROLFILE AUTOBACKUP ON;
    new RMAN configuration parameters:
    CONFIGURE CONTROLFILE AUTOBACKUP ON;
    new RMAN configuration parameters are successfully stored
    starting full resync of recovery catalog
    full resync complete
    old RMAN configuration parameters:
    CONFIGURE CONTROLFILE AUTOBACKUP FORMAT FOR DEVICE TYPE 'SBT_TAPE' TO 'bk_ctl_%d_%F';
    new RMAN configuration parameters:
    CONFIGURE CONTROLFILE AUTOBACKUP FORMAT FOR DEVICE TYPE 'SBT_TAPE' TO 'bk_ctl_%d_%F';
    new RMAN configuration parameters are successfully stored
    starting full resync of recovery catalog
    full resync complete
    Starting backup at 04-SEP-12 09:21:51
    channel t1: starting full datafile backupset
    channel t1: specifying datafile(s) in backupset
    input datafile fno=00004 name=/u03/oradata/TEST_T/datap_index01.dbf
    input datafile fno=00003 name=/u03/oradata/TEST_T/datap_data01.dbf
    channel t1: starting piece 1 at 04-SEP-12 09:21:52
    released channel: t1
    RMAN-00571: ===========================================================
    RMAN-00569: =============== ERROR MESSAGE STACK FOLLOWS ===============
    RMAN-00571: ===========================================================
    RMAN-03009: failure of backup command on t1 channel at 09/04/2012 09:37:07
    ORA-19506: failed to create sequential file, name="TEST_T_FULL_OFFLINE_set2057_piece1_20120904_09nkbf1g_1_1", parms=""
    ORA-27028: skgfqcre: sbtbackup returned error
    ORA-19511: Error received from media manager layer, error text:
    VxBSAValidateFeatureId: Failed with error:
    Server Status:  cannot connect on socket
    RMAN>

  • VPD / ora-28112 during sql execution / where to find the error

    I got a ora-28112 after i activated a simple policy on a synonym. I would like to understand what the error is to correct it but i don't know where to search for a trace. I didn't find anything in alert log or in other trace files on the server. Does somebody know where the error logged ? Thanks a lot.

    not every error will generate a trace, but you can set tracing to catch every error.
    Try alter system set events '28112 trace name errorstack level 3'

  • [Solved] "slim: failed to execute login command" after awesomewm updat

    Hi,
    i updated some weeks ago via pacman -Syu, where also awesome wm was updated from 3.4.* to 3.5.* so I updated my rc.lua as it is told on their wiki, but i cant login with my rc.lua anymore i got the failed to execute login command error from slime. If i use the shipped efault rc.lua it works fine, can someone help me to figure out whats wrong with my rc.lua?
    -- Standard awesome library
    local gears = require("gears")
    local awful = require("awful")
    awful.rules = require("awful.rules")
    require("awful.autofocus")
    -- Widget and layout library
    local wibox = require("wibox")
    -- Theme handling library
    local beautiful = require("beautiful")
    -- Notification library
    local naughty = require("naughty")
    local menubar = require("menubar")
    local vicious = require("vicious")
    function fullscreens(c)
    awful.client.floating.toggle(c)
    if awful.client.floating.get(c) then
    local clientX = screen[1].workarea.x
    local clientY = screen[1].workarea.y
    local clientWidth = 0
    -- look at http://www.rpm.org/api/4.4.2.2/llimits_8h-source.html
    local clientHeight = 2147483640
    for s = 1, screen.count() do
    clientHeight = math.min(clientHeight, screen[s].workarea.height)
    clientWidth = clientWidth + screen[s].workarea.width
    end
    local t = c:geometry({x = clientX, y = clientY, width = clientWidth, height = clientHeight})
    else
    --apply the rules to this client so he can return to the right tag if there is a rule for that.
    awful.rules.apply(c)
    end
    -- focus our client
    client.focus = c
    end
    -- {{{ Error handling
    -- Check if awesome encountered an error during startup and fell back to
    -- another config (This code will only ever execute for the fallback config)
    if awesome.startup_errors then
    naughty.notify({ preset = naughty.config.presets.critical,
    title = "Oops, there were errors during startup!",
    text = awesome.startup_errors })
    end
    -- Handle runtime errors after startup
    do
    local in_error = false
    awesome.connect_signal("debug::error", function (err)
    -- Make sure we don't go into an endless error loop
    if in_error then return end
    in_error = true
    naughty.notify({ preset = naughty.config.presets.critical,
    title = "Oops, an error happened!",
    text = err })
    in_error = false
    end)
    end
    -- {{{ Variable definitions
    -- Themes define colours, icons, and wallpapers
    -- beautiful.init("/home/kili/Repositories/awesome-themes/arch/theme.lua")
    beautiful.init("/usr/share/awesome/themes/default/theme.lua")
    -- This is used later as the default terminal and editor to run.
    terminal = "urxvt"
    editor = os.getenv("EDITOR") or "nano"
    editor_cmd = terminal .. " -e " .. editor
    -- Default modkey.
    -- Usually, Mod4 is the key with a logo between Control and Alt.
    -- If you do not like this or do not have such a key,
    -- I suggest you to remap Mod4 to another key using xmodmap or other tools.
    -- However, you can use another modifier like Mod1, but it may interact with others.
    modkey = "Mod4"
    -- Table of layouts to cover with awful.layout.inc, order matters.
    layouts =
    awful.layout.suit.tile,
    awful.layout.suit.tile.left,
    awful.layout.suit.tile.bottom,
    awful.layout.suit.tile.top,
    awful.layout.suit.floating,
    awful.layout.suit.fair,
    awful.layout.suit.fair.horizontal,
    awful.layout.suit.spiral,
    awful.layout.suit.spiral.dwindle,
    awful.layout.suit.max,
    awful.layout.suit.max.fullscreen,
    awful.layout.suit.magnifier
    -- {{{ Tags
    -- Define a tag table which hold all screen tags.
    tags = {}
    for s = 1, screen.count() do
    -- Each screen has its own tag table.
    tags[s] = awful.tag({ 1, 2, 3, 4, 5}, s, layouts[1])
    end
    -- {{{ Menu
    -- Create a laucher widget and a main menu
    myawesomemenu = {
    { "manual", terminal .. " -e man awesome" },
    { "edit config", editor_cmd .. " " .. awesome.conffile },
    { "restart", awesome.restart },
    { "quit", awesome.quit }
    mymainmenu = awful.menu({ items = { { "awesome", myawesomemenu, beautiful.awesome_icon },
    { "open terminal", terminal }
    mylauncher = awful.widget.launcher({ image = beautiful.awesome_icon, menu = mymainmenu })
    -- {{{ Wibox
    -- Create a textclock widget
    batwidget = wibox.widget.textbox()
    vicious.register(batwidget, vicious.widgets.bat,
    function(widget,args)
    local formatstring = " Bat: "..args[1]..args[2] .."%".. " "..args[3] .. " "
    if args[2] <= 25 and args[1] == "-" then
    return "<span color=\"red\">".. formatstring .. "</span>"
    end
    return formatstring
    end, 60, "BAT0")
    netwidgetETH = wibox.widget.textbox()
    netwidgetWIFI = wibox.widget.textbox()
    vicious.register(netwidgetETH, vicious.widgets.net, ' eth0:<span color="#CC9393">${eth0 down_kb}</span> <span color="#7F9F7F">${eth0 up_kb}</span>', 3)
    vicious.register(netwidgetWIFI, vicious.widgets.net,' wlan0:<span color="#CC9393">${wlan0 down_kb}</span> <span color="#7F9F7F">${wlan0 up_kb}</span>', 3)
    menubar.utils.terminal = terminal
    mytextclock = awful.widget.textclock()--{ align = "right" })
    -- Create a systray
    mysystray = wibox.widget.systray()
    -- Create a wibox for each screen and add it
    mywibox = {}
    mypromptbox = {}
    mylayoutbox = {}
    mytaglist = {}
    mytaglist.buttons = awful.util.table.join(
    awful.button({ }, 1, awful.tag.viewonly),
    awful.button({ modkey }, 1, awful.client.movetotag),
    awful.button({ }, 3, awful.tag.viewtoggle),
    awful.button({ modkey }, 3, awful.client.toggletag),
    awful.button({ }, 4, function(t) awful.tag.viewnext(aweful.tag.getscreen(t)) end),
    awful.button({ }, 5, function(t) awful.tag.viewprev(aweful.tag.getscreen(t)) end)
    mytasklist = {}
    mytasklist.buttons = awful.util.table.join(
    awful.button({ }, 1, function (c)
    if c == client.focus then
    c.minimized = true
    else
    c.minimized = false
    if not c:isvisible() then
    awful.tag.viewonly(c:tags()[1])
    end
    -- This will also un-minimize
    -- the client, if needed
    client.focus = c
    c:raise()
    end
    end),
    awful.button({ }, 3, function ()
    if instance then
    instance:hide()
    instance = nil
    else
    instance = awful.menu.clients({ width=250 })
    end
    end),
    awful.button({ }, 4, function ()
    awful.client.focus.byidx(1)
    if client.focus then client.focus:raise() end
    end),
    awful.button({ }, 5, function ()
    awful.client.focus.byidx(-1)
    if client.focus then client.focus:raise() end
    end))
    for s = 1, screen.count() do
    -- Create a promptbox for each screen
    mypromptbox[s] = awful.widget.prompt()--{ layout = awful.widget.layout.horizontal.leftright })
    -- Create an imagebox widget which will contains an icon indicating which layout we're using.
    -- We need one layoutbox per screen.
    mylayoutbox[s] = awful.widget.layoutbox(s)
    mylayoutbox[s]:buttons(awful.util.table.join(
    awful.button({ }, 1, function () awful.layout.inc(layouts, 1) end),
    awful.button({ }, 3, function () awful.layout.inc(layouts, -1) end),
    awful.button({ }, 4, function () awful.layout.inc(layouts, 1) end),
    awful.button({ }, 5, function () awful.layout.inc(layouts, -1) end)))
    -- Create a taglist widget
    mytaglist[s] = awful.widget.taglist(s, awful.widget.taglist.filter.all, mytaglist.buttons)
    -- Create a tasklist widget
    mytasklist[s] = awful.widget.tasklist(s, awful.widget.tasklist.filter.currenttags, mytasklist.buttons)
    -- Create the wibox
    mywibox[s] = awful.wibox({ position = "top", screen = s })
    -- Widgets that are aligned to the left
    local left_layout = wibox.layout.fixed.horizontal()
    left_layout:add(mylauncher)
    left_layout:add(mytaglist[s])
    left_layout:add(mypromptbox[s])
    -- Widgets that are aligned to the right
    local right_layout = wibox.layout.fixed.horizontal()
    if s == 1 then right_layout:add(wibox.widget.systray()) end
    right_layout:add(netwidgetWIFI)
    right_layout:add(netwidgetETH)
    right_layout:add(batwidget)
    right_layout:add(mytextclock)
    right_layout:add(mylayoutbox[s])
    -- Now bring it all together (with the tasklist in the middle)
    local layout = wibox.layout.align.horizontal()
    layout:set_left(left_layout)
    layout:set_middle(mytasklist[s])
    layout:set_right(right_layout)
    mywibox[s]:set_widget(layout)
    -- Add widgets to the wibox - order matters
    --mywibox[s].widgets = {
    -- mylauncher,
    -- mytaglist[s],
    -- mypromptbox[s],
    --layout = awful.widget.layout.horizontal.leftright
    -- mylayoutbox[s],
    -- mytextclock,
    -- batwidget,
    -- netwidgetETH,
    -- netwidgetWIFI,
    -- s == 1 and mysystray or nil,
    -- mytasklist[s],
    -- layout = awful.widget.layout.horizontal.rightleft
    end
    -- {{{ Mouse bindings
    root.buttons(awful.util.table.join(
    awful.button({ }, 3, function () mymainmenu:toggle() end),
    awful.button({ }, 4, awful.tag.viewnext),
    awful.button({ }, 5, awful.tag.viewprev)
    -- {{{ Key bindings
    globalkeys = awful.util.table.join(
    awful.key({ modkey, }, "Left", awful.tag.viewprev ),
    awful.key({ modkey, }, "Right", awful.tag.viewnext ),
    awful.key({ modkey, }, "Escape", awful.tag.history.restore),
    awful.key({ modkey, }, "j",
    function ()
    awful.client.focus.byidx( 1)
    if client.focus then client.focus:raise() end
    end),
    awful.key({ modkey, }, "k",
    function ()
    awful.client.focus.byidx(-1)
    if client.focus then client.focus:raise() end
    end),
    awful.key({ modkey, }, "w", function () mymainmenu:show() end),
    -- Layout manipulation
    awful.key({ modkey, "Shift" }, "j", function () awful.client.swap.byidx( 1) end),
    awful.key({ modkey, "Shift" }, "k", function () awful.client.swap.byidx( -1) end),
    awful.key({ modkey, "Control" }, "j", function () awful.screen.focus_relative( 1) end),
    awful.key({ modkey, "Control" }, "k", function () awful.screen.focus_relative(-1) end),
    awful.key({ modkey, }, "u", awful.client.urgent.jumpto),
    awful.key({ modkey, }, "Tab",
    function ()
    awful.client.focus.history.previous()
    if client.focus then
    client.focus:raise()
    end
    end),
    -- Standard program
    awful.key({ modkey, }, "Return", function () awful.util.spawn(terminal) end),
    awful.key({ modkey, "Control" }, "r", awesome.restart),
    awful.key({ modkey, "Shift" }, "q", awesome.quit),
    awful.key({ modkey, }, "l", function () awful.tag.incmwfact( 0.05) end),
    awful.key({ modkey, }, "h", function () awful.tag.incmwfact(-0.05) end),
    awful.key({ modkey, "Shift" }, "h", function () awful.tag.incnmaster( 1) end),
    awful.key({ modkey, "Shift" }, "l", function () awful.tag.incnmaster(-1) end),
    awful.key({ modkey, "Control" }, "h", function () awful.tag.incncol( 1) end),
    awful.key({ modkey, "Control" }, "l", function () awful.tag.incncol(-1) end),
    awful.key({ modkey, }, "space", function () awful.layout.inc(layouts, 1) end),
    awful.key({ modkey, "Shift" }, "space", function () awful.layout.inc(layouts, -1) end),
    awful.key({ modkey, "Control" }, "n", awful.client.restore),
    -- Prompt
    awful.key({ modkey }, "r", function () mypromptbox[mouse.screen]:run() end),
    awful.key({ modkey }, "x",
    function ()
    awful.prompt.run({ prompt = "Run Lua code: " },
    mypromptbox[mouse.screen].widget,
    awful.util.eval, nil,
    awful.util.getdir("cache") .. "/history_eval")
    end),
    -- Multimedia
    awful.key({ }, "XF86AudioLowerVolume", function () awful.util.spawn("amixer -q sset Master 2dB-") end),
    awful.key({ }, "XF86AudioRaiseVolume", function () awful.util.spawn("amixer -q sset Master 2dB+") end),
    awful.key({ }, "XF86AudioNext",function () awful.util.spawn( "mocp -f" ) end),
    awful.key({ }, "XF86AudioPrev",function () awful.util.spawn( "mocp -r" ) end),
    awful.key({ }, "XF86AudioPlay",function () awful.util.spawn( "mocp -G" ) end),
    awful.key({ }, "Print", function () awful.util.spawn("ksnapshot") end),
    awful.key({ }, "", function () awful.util.spawn("slimlock") end)
    clientkeys = awful.util.table.join(
    awful.key({ modkey, }, "f", function (c) c.fullscreen = not c.fullscreen end),
    awful.key({ modkey, "Shift" }, "c", function (c) c:kill() end),
    awful.key({ modkey, "Control" }, "space", awful.client.floating.toggle ),
    awful.key({ modkey, "Control" }, "Return", function (c) c:swap(awful.client.getmaster()) end),
    awful.key({ modkey, }, "o", awful.client.movetoscreen ),
    -- awful.key({ modkey, "Shift" }, "r", function (c) c:redraw() end),
    awful.key({ modkey, }, "t", function (c) c.ontop = not c.ontop end),
    awful.key({ modkey, }, "n",
    function (c)
    -- The client currently has the input focus, so it cannot be
    -- minimized, since minimized clients can't have the focus.
    c.minimized = true
    end),
    awful.key({ modkey, }, "m",
    function (c)
    c.maximized_horizontal = not c.maximized_horizontal
    c.maximized_vertical = not c.maximized_vertical
    end),
    awful.key({ modkey, "Shift" }, "f", fullscreens)
    -- Compute the maximum number of digit we need, limited to 9
    keynumber = 0
    for s = 1, screen.count() do
    keynumber = math.min(9, math.max(#tags[s], keynumber))
    end
    -- Bind all key numbers to tags.
    -- Be careful: we use keycodes to make it works on any keyboard layout.
    -- This should map on the top row of your keyboard, usually 1 to 9.
    for i = 1, keynumber do
    globalkeys = awful.util.table.join(globalkeys,
    awful.key({ modkey }, "#" .. i + 9,
    function ()
    local screen = mouse.screen
    if tags[screen][i] then
    awful.tag.viewonly(tags[screen][i])
    end
    end),
    awful.key({ modkey, "Control" }, "#" .. i + 9,
    function ()
    local screen = mouse.screen
    if tags[screen][i] then
    awful.tag.viewtoggle(tags[screen][i])
    end
    end),
    awful.key({ modkey, "Shift" }, "#" .. i + 9,
    function ()
    if client.focus and tags[client.focus.screen][i] then
    awful.client.movetotag(tags[client.focus.screen][i])
    end
    end),
    awful.key({ modkey, "Control", "Shift" }, "#" .. i + 9,
    function ()
    if client.focus and tags[client.focus.screen][i] then
    awful.client.toggletag(tags[client.focus.screen][i])
    end
    end))
    end
    clientbuttons = awful.util.table.join(
    awful.button({ }, 1, function (c) client.focus = c; c:raise() end),
    awful.button({ modkey }, 1, awful.mouse.client.move),
    awful.button({ modkey }, 3, awful.mouse.client.resize))
    -- Set keys
    root.keys(globalkeys)
    -- Set Firefox to always map on tags number 2 of screen 1.
    -- { rule = { class = "Firefox" },
    -- properties = { tag = tags[1][2] } },
    -- {{{ Rules
    if screen.count() > 1 then
    awful.rules.rules = {
    -- All clients will match this rule.
    { rule = { },
    properties = { border_width = beautiful.border_width,
    -- border_color = beautiful.border_normal,
    focus = true,
    keys = clientkeys,
    buttons = clientbuttons } },
    { rule = { class = "MPlayer" },
    properties = { floating = true } },
    { rule = { class = "gimp" },
    properties = { floating = true } },
    { rule = { class = "Xdialog" },
    properties = { floating = true } },
    { rule = { class = "Firefox" },
    properties = { tag = tags[1][1] } },
    { rule = { name = "Thunderbird" },
    properties = { tag = tags[1][2] } },
    { rule = { instance = "plugin-container" },
    properties = { floating = true } },
    { rule = { class = "Luakit" },
    properties = { floating = true } }
    else
    awful.rules.rules = {
    -- All clients will match this rule.
    { rule = { },
    properties = { border_width = beautiful.border_width,
    -- border_color = beautiful.border_normal,
    focus = true,
    keys = clientkeys,
    buttons = clientbuttons } },
    { rule = { class = "MPlayer" },
    properties = { floating = true } },
    { rule = { class = "gimp" },
    properties = { floating = true } },
    { rule = { class = "Firefox" },
    properties = { tag = tags[1][2] } },
    { rule = { name = "Thunderbird" },
    properties = { tag = tags[1][3] } },
    { rule = { instance = "plugin-container" },
    properties = { floating = true, fullscreen = true } },
    { rule = { class = "Dolphin" },
    properties = { floating = false, fullscreen = false, tag = tags[1][4] } },
    { rule = { class = "Luakit" },
    properties = { floating = true } },
    { rule = { class = "Pidgin" },
    properties = { tag = tags[1][5] } }
    end
    -- {{{ Signals
    -- Signal function to execute when a new client appears.
    client.connect_signal("manage", function (c, startup)
    -- Add a titlebar
    -- awful.titlebar.add(c, { modkey = modkey })
    -- Enable sloppy focus
    c:connect_signal("mouse::enter", function(c)
    if awful.layout.get(c.screen) ~= awful.layout.suit.magnifier
    and awful.client.focus.filter(c) then
    client.focus = c
    end
    end)
    if not startup then
    -- Set the windows at the slave,
    -- i.e. put it at the end of others instead of setting it master.
    -- awful.client.setslave(c)
    -- Put windows in a smart way, only if they does not set an initial position.
    if not c.size_hints.user_position and not c.size_hints.program_position then
    awful.placement.no_overlap(c)
    awful.placement.no_offscreen(c)
    end
    end
    local titlebars_enabled = false
    if titlebars_enabled and (c.type == "normal" or c.type == "dialog") then
    -- Widgets that are aligned to the left
    local left_layout = wibox.layout.fixed.horizontal()
    left_layout:add(awful.titlebar.widget.iconwidget(c))
    -- Widgets that are aligned to the right
    local right_layout = wibox.layout.fixed.horizontal()
    right_layout:add(awful.titlebar.widget.floatingbutton(c))
    right_layout:add(awful.titlebar.widget.maximizedbutton(c))
    right_layout:add(awful.titlebar.widget.stickybutton(c))
    right_layout:add(awful.titlebar.widget.ontopbutton(c))
    right_layout:add(awful.titlebar.widget.closebutton(c))
    -- The title goes in the middle
    local title = awful.titlebar.widget.titlewidget(c)
    title:buttons(awful.util.table.join(
    awful.button({ }, 1, function()
    client.focus = c
    c:raise()
    awful.mouse.client.move(c)
    end),
    awful.button({ }, 3, function()
    client.focus = c
    c:raise()
    awful.mouse.client.resize(c)
    end)
    -- Now bring it all together
    local layout = wibox.layout.align.horizontal()
    layout:set_left(left_layout)
    layout:set_right(right_layout)
    layout:set_middle(title)
    awful.titlebar(c):set_widget(layout)
    end
    end)
    client.connect_signal("focus", function(c) c.border_color = beautiful.border_focus end)
    client.connect_signal("unfocus", function(c) c.border_color = beautiful.border_normal end)
    Here is also my slime config and my initrc
    ls -lisa .xinitrc
    3276814 4 -rwxr-xr-x ...
    #!/bin/sh
    xrdb -merge ~/.Xresources
    wicd-client --tray &
    exec awesome #>> ~/.cache/awesome/stdout 2>> ~/.cache/awesome/stderr
    # Path, X server and arguments (if needed)
    # Note: -xauth $authfile is automatically appended
    default_path /bin:/usr/bin:/usr/local/bin
    default_xserver /usr/bin/X
    xserver_arguments -nolisten tcp vt07
    # Commands for halt, login, etc.
    halt_cmd /sbin/shutdown -h now
    reboot_cmd /sbin/shutdown -r now
    console_cmd /usr/bin/xterm -C -fg white -bg black +sb -T "Console login" -e /bin/sh -c "/bin/cat /etc/issue; exec /bin/login"
    #suspend_cmd /usr/sbin/suspend
    # Full path to the xauth binary
    xauth_path /usr/bin/xauth
    # Xauth file for server
    authfile /var/run/slim.auth
    # Activate numlock when slim starts. Valid values: on|off
    numlock on
    # Hide the mouse cursor (note: does not work with some WMs).
    # Valid values: true|false
    # hidecursor false
    # This command is executed after a succesful login.
    # you can place the %session and %theme variables
    # to handle launching of specific commands in .xinitrc
    # depending of chosen session and slim theme
    # NOTE: if your system does not have bash you need
    # to adjust the command according to your preferred shell,
    # i.e. for freebsd use:
    # login_cmd exec /bin/sh - ~/.xinitrc %session
    login_cmd exec /bin/bash -login ~/.xinitrc %session
    # Commands executed when starting and exiting a session.
    # They can be used for registering a X11 session with
    # sessreg. You can use the %user variable
    # sessionstart_cmd some command
    # sessionstop_cmd some command
    # Start in daemon mode. Valid values: yes | no
    # Note that this can be overriden by the command line
    # options "-d" and "-nodaemon"
    # daemon yes
    # Available sessions (first one is the default).
    # The current chosen session name is replaced in the login_cmd
    # above, so your login command can handle different sessions.
    # see the xinitrc.sample file shipped with slim sources
    sessions awesome,xfce4,icewm-session,wmaker,blackbox
    # Executed when pressing F11 (requires imagemagick)
    screenshot_cmd import -window root /slim.png
    # welcome message. Available variables: %host, %domain
    welcome_msg Welcome to %host
    # Session message. Prepended to the session name when pressing F1
    # session_msg Session:
    # shutdown / reboot messages
    shutdown_msg The system is halting...
    reboot_msg The system is rebooting...
    # default user, leave blank or remove this line
    # for avoid pre-loading the username.
    default_user kili
    # Focus the password field on start when default_user is set
    # Set to "yes" to enable this feature
    focus_password yes
    # Automatically login the default user (without entering
    # the password. Set to "yes" to enable this feature
    #auto_login no
    # current theme, use comma separated list to specify a set to
    # randomly choose from
    current_theme archlinux-simplyblack
    # Lock file
    lockfile /var/lock/slim.lock
    # Log file
    logfile /var/log/slim.log
    Thanks in advance!
    Edit:
    Besides a lot of other errors the problem was the systray. It was created 2 times, now login works again. I figured that out via enabling logging for awesome in the xinitrc again.
    Last edited by stubb (2013-01-08 23:20:05)

    Hi,
    I have the same kind of issue after updated slim from v1.3.4-4 to v1.3.5-1.
    see my topic  here :
    https://bbs.archlinux.org/viewtopic.php?id=156792
    Last edited by cedricl (2013-01-24 17:16:42)

Maybe you are looking for

  • How do I completely wipe out old email account info?

    I periodically have problems with my ATT email account and it quits downloading incoming mail to MacMail. ATT swears it is not their problem even though it isn't happening with any other email account but ATT. I don't have problems sending mail. In t

  • How visualize a Indesign CC.idml in Indesign CS3?

    Hello. I need to view a document that has come to me in the format ".idml" that is created in Adobe Indesign CC.  When I make double click, get me a message that says "are a number of plugins missing". I have no way to open it. Any solution? Is there

  • How to create dropdown or drilldown in dashboard ?

    All i have this requirement to create a dashboard that has a drilldown or dropdown list for a list of reports Example -Sales Department     - sales by region        - U.S        - Asia        - Europe    - Sales Per Period       - Quarter       - mon

  • How to remove links from report in dashboards

    Hi All, In guided navigational reports how to delete links under the report that displays in the new window(like modify, refresh,print links) in dashboard. Example - Report - Col1 Col2 AB BV Links - Return Modify Refresh Print Download(want to remove

  • E2500 with multiple APs for guest access

    I got 5 E2500 routers and the main one has setup to IP address 192.168.1.254 and the rest APs are programmed into the bridge mode with the IP address 192.168.1.245 through 248. The secured wireless network  works fine when I roaming between these APs