Styles being applied automatically

I have a document with a fair number of object, character and paragraph styles set up.
All of a sudden, whenever I grab the Type Tool and draw a text box, a particular set of styles is being applied where I don't want it. I need to reset the default to no style, but I can't see where.

Virtually all defaults -- strokes, fills, styles, text attributes... are set this way. Done with a doc open they affect that document only, with no documents open they affect anything new.

Similar Messages

  • Updating an App-v 5 package in SCCM 2012, update not applying automatically

    Hello, just doing some testing of updating an App-v 5 package in SCCM. The application has been deployed and  run on a client pc. I've gone back and opened the package in the sequencer and made some changes and saved it as a new package.
    In SCCM I've updated the content and pointed it at the new package. That all looks fine. It's showing the new files in the content.
    The application deployment settings are set to required and set to install outside maintenance windows. The client has received the update, I can see it in the software center but it's not being applied automatically.
    I've waited over 12 hours so the client has also had its maintenance window but it still has not updated. I've also tried launching the application to see if that would bring in the update but still no joy.
    Just wondered what experience other people have had with this? 

    Firstly, just because you mentioned saving as a new package, if you select that option it will create a brand new v0.0.0.1 package and users settings will not transfer to the new version, so just use save or save as in most cases.
    Have you tried logging the user off and on again? And if the app is published globally, rebooting?
    If the application is in use, then the update will be delayed until either of these events occur, depending on how it was published. Also, if the app has certain integration points such as shell extensions or browser plugins, these can create a lock on the
    package even though you don't have the application running. You can run a powershell command to stop the package and speed things up if you wish, although this runs the risk of terminating explorer.exe or iexplore.exe:
    Get-AppvClientPackage *name* | Stop-AppvClientPackage   (and add -global to the end if it was globally published)
    Dan Gough - UK App-V MVP
    Blog: packageology.com
    Twitter: @packageologist
    LinkedIn

  • Divs being removed from parent div when a float style is applied

    Divs being removed from parent div when a float style is applied
    Hi All,
    I hope someone is able to help me with the below issue.
    I apologise if the questions I have been asking lately are really basic, I’m just teaching myself web design.
    I really do appreciate the help you guys offer, so a big thank you in advance.
    I am confused as to why I am not getting my desired effect for the below code. I am creating a website for someone and have structured the website in the following way:
    <body>
    <div id="wrap">
    <div id="title"></div><!-- end #title -->
    <div id="shopping_cart"></div><!-- end #shopping_cart -->
    <div id="content_wrap">
    <h2 class="header">Header goes here</span></h2>
    <div id="nav_bar">
    <table>table goes here</table>
    </div><!-- end #nav_bar -->
    <div id="side_bar">
    <h1>text here</h1>
    <table>table goes here</table>
    </div><!-- end #side_bar -->
    <div id="content">
    <p>text here</p>
    <div id="content_image"></div>
    </div><!-- end #content -->
    <div id="footer">
    <div id="logo"></div>
    <div id="flags"></div>
    <div id="v_wd"></div>
    </div><!-- end #footer -->
    </div><!-- end #content_wrap -->
    </div><!-- end #wrap -->
    </body>
    Now I don't know if I am structuring my website the right way this is just the way that makes sense to me. It might not even be the source code that’s the issue and may be the CSS so I have also pasted that in below.
    Now the problems I am having are as follows:
    I want to have my whole site wrapped in one big div #wrap so I can centre the whole site. Within that div I want all my other divs (which some have divs inside those as well).
    To start #title seems to fit inside #wrap without a problem but #shopping_cart gets push outside of #wrap even though it is inside the opening and closing #wrap tag.
    My next div #content_wrap, it seems to be inside #wrap however the margin-top I have applied to #content_wrap pushes it down from #title not #shopping_cart even though #content_wrap is below #shopping_cart not #title.
    The second problems seem to be with the divs that are or supposed to be inside #content_wrap.
    h2 .header seems to fit inside #content_wrap without any problems. Now it gets really confusing, for me anyway. Any div I put below h2 .header which is inside #content_wrap doesn’t seem to actually go inside #content_wrap or #wrap they get pushed below #wrap even though in the source code they are inside the opening and closing div tags.
    Also #side_bar and #content together equal 860px which is the width of their surrounding div #content_wrap so they should fit perfectly side by side. This I know ties into a previous discussion I raised in discussion (http://forums.adobe.com/message/4501038#4501038). I have taken Murry’s advice on board from this discussion and tried floating just #side bar to the left and left enough margin for #content to clear, I also tried floating both to the left. Nothing worked.
    As I have been writing this I’ve gone through my code, all the above issues only occur if I float a div. If I float a div for some reason it removes that div from any div surrounding it and pushes it below every single div. I don’t know how to position my divs in the exact place I want without floating them but if I float they get moved out of their parent div and therefore aren’t in the position I want them in either.
    If you are able to help me resolve this issue it will help me with all future projects. I really do appreciate any help you can give.
    Kind Regards
    Elliot
    CSS
    I have marked out where I would float a particular div */style*/ which I know would cancel that style. Therefore the problems I am having are with divs #shopping_cart, #side_bar and #content.
    body {
    background:url(images/body_bg.png) no-repeat center center fixed;
    -webkit-background-size: cover;
    -moz-background-size: cover;
    -o-background-size: cover;
    background-size: cover;}
    #wrap {
    height:auto;
    width:895px;
    margin:0 auto;}
    #title {
    Background-image:url(images/title.png);
    height:67px;
    width:895px;
    margin-top:50px;
    margin-left:auto;
    margin-right:auto;}
    #shopping_cart {
    background: url(images/shopping_cart.jpg);
    height:46px;
    width:142px;
    margin-top:15px;
    margin-right:25px;
    /*float:right;*/}
    #content_wrap {
    background:url(images/content_bg.png) repeat;
    border:2px solid #666;
    height: auto;
    width:862px;
    margin-top:15px;
    margin-left:auto;
    margin-right:auto;}
    #nav_bar {
    width:809px;
    height:59px;
    margin-left:26px;}
    #side_bar {
    height:auto;
    width:285px;
    margin-top:20px;
    border-right:1px solid #666;
    /*float:left;*/}
    #content {
    height:auto;
    width:575px;
    margin-top:20px;
    /*float:left;*/}
    #content_image {
    background-image:url(images/couple.jpg);
    height:184px;
    width:271px;
    margin:0 auto;}
    #footer {
    background-color:#0F0;
    width:860px;
    height:200px;}
    #kejo_logo {
    background-image:url(images/kejo.png);
    height:100px;
    width:227px;}
    #flags {}
    #viscari_wd {}
    #copyright {}
    #pp_tu {}
    .header {
    color: #FFF;
    font-size:44px;
    font-family:"Trebuchet MS", Arial, Helvetica, sans-serif;
    margin-left:10px;}
    .header_small {
    color: #FFF;
    font-family:"Trebuchet MS", Arial, Helvetica, sans-serif;
    font-size: 25px;
    margin-left:10px;}
    #content_wrap #side_bar h1 {
    font-family:"Trebuchet MS", Arial, Helvetica, sans-serif;
    color: #4b4a4a;
    font-size:20px;
    padding-left:15px;}
    #content_wrap #content p {
    color: #484747;
    text-align:center;
    font-family:"Trebuchet MS", Arial, Helvetica, sans-serif;
    font-size:20px;
    padding-right:15px;}

    Hi guys,
    Thanks for your help but still having a few problems;
    In design view the code you advised I should add seems to have placed #shopping_cart back into #wrap under #title and above #content_wrap but hasn't when previewed in browser as there is no margin between #content_wrap & #shopping_cart.
    #side_bar and #content now seem to sit side by side each other fine in design view and in the browser, however #footer which is in #content_wrap but under #side_bar and #content is behind #side_bar and #content. How do I get #footer to position under #side_bar and #content?
    I have added a green background to #footer to make it stand out. I have also added two images one of the site in design view and one previewed in the browser so you can see the difference. I've also pasted the amended code.
    Again thanks for your continued help and advice.
    <body>
    <div id="wrap">
    <div id="title"></div><!-- end #title -->
    <div id="shopping_cart"></div><!-- end #shopping_cart -->
    <div id="content_wrap">
    <h2 class="header">Header goes here</span></h2>
    <div id="nav_bar">
    <table>table goes here</table>
    </div><!-- end #nav_bar -->
    <div id="side_bar">
    <h1>text here</h1>
    <table>table goes here</table>
    </div><!-- end #side_bar -->
    <div id="content">
    <p>text here</p>
    <div id="content_image"></div>
    </div><!-- end #content -->
    <div id="footer">
    <div id="logo"></div>
    <div id="flags"></div>
    <div id="v_wd"></div>
    </div><!-- end #footer -->
    </div><!-- end #content_wrap -->
    </div><!-- end #wrap -->
    </body>
    CSS
    body {
    background:url(images/body_bg.png) no-repeat center center fixed;
    -webkit-background-size: cover;
    -moz-background-size: cover;
    -o-background-size: cover;
    background-size: cover;}
    #wrap {
    width:895px;
    margin:0 auto;
    overflow:hidden;}
    #title {
    background:url(images/title.png);
    height:67px;
    width:895px;
    margin-top:50px;
    margin-left:auto;
    margin-right:auto;}
    #shopping_cart {
    background: url(images/shopping_cart.jpg);
    height:46px;
    width:142px;
    margin-top:15px;
    margin-right:25px;
    float:right;}
    #content_wrap {
    background:url(images/content_bg.png) repeat;
    border:2px solid #666;
    width:862px;
    margin-top:15px;
    margin-left:auto;
    margin-right:auto;
    overflow: hidden;
    clear: both;}
    #nav_bar {
    width:809px;
    height:59px;
    margin-left:26px;}
    #side_bar {
    height:auto;
    width:285px;
    margin-top:20px;
    border-right:1px solid #666;
    float:left;}
    #content {
    height:auto;
    width:575px;
    margin-top:20px;
    float:right;}
    #content_image {
    background-image:url(images/couple.jpg);
    height:184px;
    width:271px;
    margin:0 auto;}
    #footer {
    background-color:#0F0;
    width:860px;
    height:200px;}
    #kejo_logo {
    background-image:url(images/kejo.png);
    height:100px;
    width:227px;}
    #flags {}
    #viscari_wd {}
    #copyright {}
    #pp_tu {}
    .header {
    color: #FFF;
    font-size:44px;
    font-family:"Trebuchet MS", Arial, Helvetica, sans-serif;
    margin-left:10px;}
    .header_small {
    color: #FFF;
    font-family:"Trebuchet MS", Arial, Helvetica, sans-serif;
    font-size: 25px;
    margin-left:10px;}
    #content_wrap #side_bar h1 {
    font-family:"Trebuchet MS", Arial, Helvetica, sans-serif;
    color: #4b4a4a;
    font-size:20px;
    padding-left:15px;}
    #content_wrap #content p {
    color: #484747;
    text-align:center;
    font-family:"Trebuchet MS", Arial, Helvetica, sans-serif;
    font-size:20px;
    padding-right:15px;}

  • Weird problems with CSS being applied to JSF pages

    I have this really weird problem with my CSS rules being applied to my JSF pages. My CSS rules don't get applied unless one of the following two things happen:
    - A page is reloaded (by redirecting to itself, or if there were validation errors)
    - The previous page in the history had the same relative reference to the same CSS file.
    If a page is newly loaded, and the previous page did not have that same CSS reference, the CSS styles will not show up. Also, if the above is true, and the page is reloaded by JSF, the CSS styles show up.
    Now, my problem could be solved if I put all JSP files in the same level, but the display of the first page would still be without the CSS style applied.
    Is this known behaviour? And if it is, does it have anything to do do with the way JSF handles URLs (always one level back)? Help and input is kindly appreciated!

    Dude,
    I tried the same
    <link rel="stylesheet" href="<h:outputText value="#{facesContext.externalContext.requestContextPath}"/pages/css/default.css" />
    and I got the following Jasper exception.... pointers plz ??
    =============================================================
    2005-08-24 14:18:55,937 [http-8080-Processor25] ERROR org.apache.catalina.core.ContainerBase.[Catalina].[localhost].[mydemo].[FacesServlet] - Servlet.service() for servlet FacesServlet threw exception
    org.apache.jasper.JasperException: /myproj/eventCrit.jsp(8,78) Unterminated <h:outputText tag
         at org.apache.jasper.compiler.DefaultErrorHandler.jspError(DefaultErrorHandler.java:39)
         at org.apache.jasper.compiler.ErrorDispatcher.dispatch(ErrorDispatcher.java:405)
         at org.apache.jasper.compiler.ErrorDispatcher.jspError(ErrorDispatcher.java:130)
         at org.apache.jasper.compiler.Parser.parseOptionalBody(Parser.java:1049)
         at org.apache.jasper.compiler.Parser.parseCustomTag(Parser.java:1367)
         at org.apache.jasper.compiler.Parser.parseElements(Parser.java:1564)
         at org.apache.jasper.compiler.Parser.parseBody(Parser.java:1793)
         at org.apache.jasper.compiler.Parser.parseOptionalBody(Parser.java:1060)
         at org.apache.jasper.compiler.Parser.parseCustomTag(Parser.java:1367)
         at org.apache.jasper.compiler.Parser.parseElements(Parser.java:1564)
         at org.apache.jasper.compiler.Parser.parse(Parser.java:126)
         at org.apache.jasper.compiler.ParserController.doParse(ParserController.java:211)
         at org.apache.jasper.compiler.ParserController.parse(ParserController.java:100)
         at org.apache.jasper.compiler.Compiler.generateJava(Compiler.java:146)
         at org.apache.jasper.compiler.Compiler.compile(Compiler.java:286)
         at org.apache.jasper.compiler.Compiler.compile(Compiler.java:267)
         at org.apache.jasper.compiler.Compiler.compile(Compiler.java:255)
         at org.apache.jasper.JspCompilationContext.compile(JspCompilationContext.java:556)
         at org.apache.jasper.servlet.JspServletWrapper.service(JspServletWrapper.java:293)
         at org.apache.jasper.servlet.JspServlet.serviceJspFile(JspServlet.java:291)
         at org.apache.jasper.servlet.JspServlet.service(JspServlet.java:241)
    =========================================================

  • How do we permanently stop MASS_CRM_* and R3AD_* locks from being applied??

    Good afternoon Experts,
    How do we permanently stop MASS_CRM_* and R3AD_* locks from being applied in CRM? We have several jobs that run weekly to download information from R/3 to CRM. The information only takes a few minutes to download into CRM, however the blocks are applied during the middle of the night, and cause backups within our system.
    Queue name R3AD_SCE also becomes blocked as well during these downloads.
    How do we stop these from being applied, without manually having to go into R/3 to remove during the middle of the night?
    We currently are on CRM 4.0. The only notes that I found regarding this problem was for 3.0 - 3.5.
    Thank you for your help!
    Jami
    Edited by: Jami Shircel on May 27, 2009 8:00 PM

    Thank you very much for your reply.
    We are running a job created to download all materials from R/3 into CRM, using SAP program SMOF_DOWNLOAD with variant of material. I believe the locks are coming on as this is a load. However, the job only takes about 15 seconds to run and take the information from R/3. CRM takes longer to process that information. However, the lock does not come off when the job is complete. We have to manually remove the lock the next time someone from the team logs into CRM. This causes problems as nothing from R/3 to CRM is passing through while the locks are on. As soon as the lock is removed, the systems begin communicating again. The job is not impacted as it takes less than 15 seconds to run.
    How do we either stop the lock from coming on, or have it automatically come off when the job is complete?
    I reviewed the note suggested, but it was for account life cycles. Perhaps the wrong number was written?

  • Why are presets being applied to my photos?

    When I used to import my photos into LR5, I could click develop and go through and make any changes I wanted to enhance the photo.  Now any photo that comes in seems to have all the features of developing already chosen and it is really messing up my photos.  How do I get all those presets off so I can edit/develop my own photos??
    Per suggestions from other posts, I have already reset to Adobe developer defaults, deleted my saved preferences, and confirmed that there are no "develop settings" being applied during import.  I can still manually apply the "reset" button to every picture, but these used to import automatically set to the default settings (all 0s).
    Any suggestions?  Thanks in advance for your help.

    Do you have "Apply auto tone adjustments" checked in your preferences?

  • Styles not applied [was: Help for DW Dunce]

    Just a little advice on css pls, i have a created a new css style and  named it "list", the colour of the font is set to #807e7e.  When i  upload the saved page to my server, the list is there but the text is  black, ive tried creating a new class, id and tag and applying the  settings, but nothing seems to change the text colour and the font style even though its  set in the rule definitions?
    Im sure its very simple but Im stumped ?
    The page is here
    http://www.craftypixel.co.uk/takeaway.html
    its the bullet list on the right
    Please keep answers simple

    I see this is your first post. Welcome to the forum. When posting questions, please use a meaningful subject line as it helps others identify problems where they might be able to help. It also helps others who might be suffering a similar problem identify threads that have been marked as answered.
    Now, to your particular problem. I have looked at the page you linked to, and the reason for the style not being applied is very simple. There is no style rule called .list in your style sheet. Moreover, you don't have a class applied to the list.
    I also noticed that your naming conventions are rather odd. The main content on the left has been given a class called right, and the sidebar on the right is in a class called left. I presume you must have changed your mind about the relative positions, which is why they're now reversed. But it's always a good idea to avoid class names that describe position or colour. It's better to use something like main and sidebar. Then it doesn't matter which side of the page you put them on. With your current naming, it's going to be a nightmare to maintain.

  • Color applied for #s4-bodyContainer is being applied as background

    HI All,
              I have used CEW for applying background color and as well as color for body width, Below is the code that I had written .  
               Below I have applied blue color as background instead that gray color is being applying as background color .
    Can any one help me how can I do solve this
     <style type="text/css">
    #s4-workspace { Background-color: #Gray;}
    #s4-bodyContainer{ Background-color: #Blue;}
    </style>
    Thanks,
    Quality Communication Provides
    Quality Work.
    Siddiqali Mohammad .

    trant3 wrote:
    Ok so I applied for freedom 7/1, denied for various reasons, understood. I received denial letter today outlining EX score decision based on was 656 calculated as of 06/06. As of 07/01, my experian was over 700 after paying off massive balances. I called recon back stating the same but they only blamed it on EX which can not be true. I assume that is because I have an existing slate card, similar to Amex with the one month lag. The senior analyst offered another hp due to my claim, but I declined as it may very well be the same June report.
    I'm ok with being denied, but being denied for a report that is not even up to date does not sit right with me, especially when I'm hit with a July HP. Thoughts or suggestions?Wait 90 days and reapply if you really want it. Perhaps wait until the bonus is $200 again.

  • Security constraints not being applied after using custom login module

    I am using form based authentication and I applied the custom login module - DBProcLoginModule to work with the embedded OC4J (JDeveloper 10.1.3.2). I have specified two security contraints in web.xml. The authentication is working correctly, however the security contraints are not being applied. All users are able to access all url resources. The security constraints were working properly before applying the custom login module. Pls help.
    Leena

    Hi,
    if "All users are able to access all url resources" then this indicates that the RL isn't properly protected. If the authorization would fail then noone would have access and you would see error code 401
    Make sure the role names in web.xml are the same as added by the LoginModule. Also make sure you set the dynamic.role property and the custom security provider property in the orion-application.xml
    <jazn provider="XML">
         <property name="custom.loginmodule.provider" value="true"/>
         <property name="role.mapping.dynamic" value="true"/>
    </jazn>
    Note that the above is not required (because done automatically) if the custom LoginModule configuration is deployed through the orion-application.xml file
    Frank

  • Null offset from calibration not being applied to output

    I am measuring some load cells using a I 9237.  I am setting the null offset using Device > Bridge Calibration in the DAQ Assistant.  I measure the offet and hit calibrate.  It says "Calibration successful" and I hit finish, but the offset value is not applied to the data.
    How do I get this to work?

    Hello IamRubber,
    How can you see the calibration not being applied?  Are you running the same DAQ Assistant to see the offset?  If possible, please attach a screenshot from before/after running bridge calibration.
    Patrick W.
    Applications Engineer
    National Instruments

  • LOV not being applied to a column

    Problem: The first query runs quite fast as it is soft parsed, but the LOV values are not applied to the resulting values in the column CHECK_MARK. The second query is hard parsed (and slow due to that) but has its LOV value properly realized. The LOV being applied changes 0/NULL to white space and the 1 is a graphical checkmark.
    For this situation an LOV is being applied to a column named "CHECK_MARK'. The column will have a value of 0/NULL or 1 if the row (employee) is in the source table (SCHEMA.EMPLOYEE_V) has its primary id (EMP_ID) in a collection named 'SELECTED_EMP_IDS'. The only values inside the collection is C001 storing the EMP_ID value of every employee selected.
    --Works fast, but the report renders with 0/NULL and 1's instead of nothing for 0/NULL and an IMG tag for a value of 1.
    SELECT
    EMP_ID,
    NVL((SELECT 1 FROM HTMLDB_COLLECTIONS WHERE C001 = EMPLOYEE_ID AND COLLECTION_NAME = ''SELECTED_EMP_IDS''),0) AS CHECK_MARK FROM SCHEMA.EMPLOYEE_V;
    --Slow, but the img tag is properly output from the LOV.
    SELECT
    EMP_ID
    0 CHECK_MARK FROM SHEMA.EMPLOYEE_V
    LEFT JOIN (SELECT 1 CHECK_MARK FROM DUAL) ON (EMP_ID) IN (SELECT C001 FROM HTMLDB_COLLECTIONS WHERE COLLECTION_NAME = 'SELECTED_EMP_IDS';
    Any reason for this or is there another way to format the query so it is both soft parsed and have the LOV properly output?

    There is a collection, with C001 having some number of EMP_ID’s in it.
    COLLECTION_NAME = ‘SELECTED_EMP_IDS’
    C001
    27
    32
    52
    70Both of the following queries will return the same data:
    (Query 1)
    SELECT
    EMP_ID,
    NVL((SELECT 1 FROM HTMLDB_COLLECTIONS WHERE C001 = EMPLOYEE_ID AND COLLECTION_NAME = ''SELECTED_EMP_IDS''),0) AS CHECK_MARK FROM SCHEMA.EMPLOYEE_V;
    (Query 2)
    SELECT
    EMP_ID
    0 CHECK_MARK FROM SHEMA.EMPLOYEE_V
    LEFT JOIN (SELECT 1 CHECK_MARK FROM DUAL) ON (EMP_ID) IN (SELECT C001 FROM HTMLDB_COLLECTIONS WHERE COLLECTION_NAME = 'SELECTED_EMP_IDS';
    EMP_ID         |       CHECK_MARK         |     ...
      10               0
      15               0
      27               1
      32               1
      52               1
      70               1
    110               0Where all the 1's in the checkmark column are also contained within the collection above. This query is used to render a report. The CHECK_MARK column in the report has a static LOV applied to it.
    CHECK_MARK_LOV:
         Return Value     Display Value
         0                
         1          &lt;img src="/i/check_small_black.gif"&gt;When the page is run using Query 1, the CHECK_MARK column will display 0's and 1's. When running the page with the report having the source of Query 2, the LOV will be properly applied and the 0's will become white space and 1's will become &lt;img src="/i/check_small_black.gif"&gt;..
    I am just trying to figure out why Query 1 makes it so the CHECK_MARK column is rendered with the return value of the LOV while Query 2 renders the CHECK_MARK column with the proper LOV display value.

  • Policy not being applied to users

    I have a group policy that used to work, but now has decided it does not want to be applied to the workstations anymore. I don't know what may have happened to make is stop working.
    It's a pretty restrictive policy for students. I have the exact same policy for two other groups of students that still work. All three policies were copied from the same set of files. In other words, I make a change to one, then copy the files to the other two because they reside on different servers. Yes, I do open each one in C1 to update the timestamp.
    When I run wmsched, the policy is there in the list, but the settings are not applied. I can log in to the PC with one of the other student accounts and their policy is applied.
    The login I'm using to test with has R rights to the policy location - the same rights that the other users have to their policies. I have also tried more rights with no different results.
    The DLU part of the policy runs, and I have turned off the windows firewall. I have also created a brand new policy from scratch to rule out any corruption in the old policy and I get the same results.
    Apparantly, my workstation policy for this group is not being applied either. The other two groups' policies apply like they are supposed to. So this means that neither policy assigned to this group of students/workstations is working.
    Any ideas?
    Thanks

    FishEggStew,
    It appears that in the past few days you have not received a response to your
    posting. That concerns us, and has triggered this automated reply.
    Has your problem been resolved? If not, you might try one of the following options:
    - Visit http://support.novell.com and search the knowledgebase and/or check all
    the other self support options and support programs available.
    - You could also try posting your message again. Make sure it is posted in the
    correct newsgroup. (http://forums.novell.com)
    Be sure to read the forum FAQ about what to expect in the way of responses:
    http://forums.novell.com/faq.php
    If this is a reply to a duplicate posting, please ignore and accept our apologies
    and rest assured we will issue a stern reprimand to our posting bot.
    Good luck!
    Your Novell Product Support Forums Team
    http://forums.novell.com/

  • Office 365 pro plus 2013 update won't apply automatically

    Hi
    We have started to use office 365 pro plus 2013 click to run. The issue / problem we have is that the updates are installing but does not apply. The version of word,excel.. Is old
    and i need to manually go to example word and account to apply the updates. I want the updates to automatically apply.
    In the config file i have enabled updates. <Updates Enabled="TRUE" />. I have also enabled updates thru group policy and checked that the policy is applying.
    In the registry under HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Office\15.0\ClickToRun\propertyBag i have the following keys:
    updatesenabled = 1
    UpdatesDiscoveryPeriodComplete = 1
    updatesreadytoapply = 15.0.4535.1511,en-us
    UpdatesDiscoveryPeriodStartTime = 13026393682226
    updatesthrottlevalue = 313
    version = 15.0.4535.1004
    Does anyone have this problem and know how to make the updates apply automatically. I know that if there are office applications open it won’t apply or update but i have a test
    computer with no office applications running in the process list and still it won’t apply the updates.
    Joakim Tomren

    Please make sure that the necessary port isn't blocked in your environment.
    http://technet.microsoft.com/en-us/library/jj219420.aspx#BKMK_C2RUpdates
    Then, try to download the Office Deployment Tool and create an XML file with the instructions to deploy the Office 365 update, please refer to the link below:
    http://blogs.technet.com/b/office_resource_kit/archive/2013/08/08/how-to-deploy-office-365-proplus-from-an-on-premises-web-portal.aspx
    The following article may also help you:
    http://technet.microsoft.com/en-us/library/gg998766.aspx
    We may also post the thread to the forum for Office 365:
    http://community.office365.com/en-us/forums/default.aspx
    Cheers,
    Tony Chen
    Forum Support
    Come back and mark the replies as answers if they help and unmark them if they provide no help.
    If you have any feedback on our support, please contact
    [email protected]

  • Driver Pack No Longer Being Applied During Task Sequence

    Hi all,
    So... this week a really strange issue manifested itself. I've been trawling through logs for the last day and I don't seem to be getting anywhere.
    A task sequence, which has been working for months and hasn't been changed, all of a sudden decided to start throwing error code 0x87D00269 yesterday. It was at the stage where applications that are installed during the task sequence started to
    install.
    So after a looking into the error, it seems the machines are unable to download the packages, possibly through not being joined to the domain. At this stage in the task sequence, the machine should definitely be joined to the domain. We have
    the command support console enabled, so I hit F8 and tried to ping the MP and the DP. Nothing. Ran ipconfig, nothing listed under the adapter. Very odd. So I checked the NIC on the back of the machine and it was up, so I booted from the task sequence
    media USB stick again and hit f8. Ran ipconfig and the machine had picked up an address from DHCP no problem and shortly after, the task sequences available to the machine loaded. So I started the task sequence again and it started fine, formatted
    the disk, downloaded the W7 pro x86 image, applied it, downloaded the driver pack and seemingly applied the drivers (according to the task sequence), then the machine rebooted. It started to go through the installing drivers phase (the black screen
    with the sunrise), which seemed to take a longer than normal. The machine rebooted and sat at the applying settings stage for a long while, which also seemed odd and I remarked the graphics drivers didn't seem to be installed because the screen resolution
    was set really low. Of course at this stage, F8 doesn't work so I waited until just before the applications started to install again. Pressed F8, ran ipconfig and no IP address. So rather than wait for the task sequence to fail again, I manually powered off
    the machine and powered it back on.
    So the machine boots, still with the low resolution, comes to the login screen and at this point, it's clear the machine hasn't joined the domain. I logged in with local admin account and it became clear none of the drivers had installed from the driver
    pack. This is a driver pack that has run absolutely fine for months and as far as I'm aware, nothing has changed so I'm a little bit confused as to why it would just stop working.
    I can't see anything in the smsts log that would explain what's happening and I've looked through the dism log but I can't find anything relevant in there.
    Any ideas on where to go? This is happening on multiple machines of the same type.

    Hi,
    0x87D00269  CCM_E_REQ_MP_NOTFOUND
    Ran ipconfig, nothing listed under the adapter.
    These evidence indicate that no network driver in boot image. Is this a customized boot image? Is the machine a new model?
    Press F8, run wpeinit to initialize network. If this is not working, re-add driver to boot image and try again.
    Please remember to mark the replies as answers if they help and unmark them if they provide no help. If you have feedback for TechNet Subscriber Support, contact [email protected]
    Hi Daniel,
    The boot image hasn't been modified and this machine is the exact same model as one built just a few weeks ago, with the exact same hardware. I know this because I've compared the hardware IDs of the devices side by side and they're identical.
    I'm sorry but I don't follow. This issue only occurs after the driver pack downloads and (allegedly) applies. Up to that point, the machine has connectivity to the DP/MP and downloads and runs the first sections of the task sequence without issue. If I hit
    F8 prior to the drivers being applied, I have my adapter listed and, of course, an IP address. That to me suggests the generic drivers already in the boot image work fine and don't need to be altered.

  • Output Message for Purchase order not being created Automatically

    Hi all,
    I created a Condition type for Purchase order in MN04 with key combination "Doc.Type/Purch.Org/Vendor". The problem arises when i delete this condition record. After deletion when i create purchase order in me21n for that condition type, the system gives an error.
    Message no. 06261 - No message generated for output of purchasing document.
    Is there anyway the purchase order message is created automatically again when its condition type has been deleted from MN04.
    - Regards
    Sahar Khalid

    Before creating the entry in MN04 the message was being created automatically. I want the system to create the same output message as it was creating before the creation of the entry in MN04.

Maybe you are looking for

  • How to Use DLL correctly in LV ?

    I'm trying to use a DLL from former S/W written in C++. The DLL is using other DLLs. The LV doesn't find the other DLLs although they are in the same directory . Can you direct me how to pass this issue ? Thanks Edo

  • How can I get an AP out of OfficeExtend mode?

    I was setting a group of access points to a certain block of settings and I used a template to apply it.  I have one access point that keeps giving me an error about the AP mode. I set this AP back to factory defaults, rebooted it, and it still joins

  • Accessing local XML as data source

    Are there any instruction on how to do this.  the Xcelsius 2008 user guide shows instructions for server side where a script is required.  I can't imagine that this would be required for a local XML file. thanks

  • How to manage wait time in between pages loading

    Hi, Could you please help me "How to manage wait time in between pages loading while playback script using etester? Thanks, RJ.

  • Photoshop CC gets stuck on scanning for plugins

    Windows 8.1    i7   256Gb SSHD  Photoshop Creative Cloud newly updated On clicking photoshop icon task manager show photoshop stuck in Background Process doesn't move up to Apps if photoshop later starts  after many minutes then it gets stuck for min