Excel 2013 Second Window Location Problem

 
Now that I have been upgraded to Office 2013 I have problems with opening more than one file at a time.
I use 3 monitors for working on multiple spreadsheets. Usually I display the files across two monitors and use the third for VBA window, or reading email, or other work. I often open multiple
files from the Windows Explorer.
If I open one file it will open to the size and location I closed the last Excel file, but if I open multiple files only the first opens correctly the remaining files always open on the far
right monitor (correctly sized) with half of each new window beyond the edge of the viewable desktop.

Hi FGauthier,
Have you ever try to save Document ,PPT file or Text file to the NAS? Does this issue only occurs with excel file?
what will happen if you copy the file to NAS instead of use the 'save as' feature within excel?
When you open the excel file, if it flagged as read-only, try to right-click the file, check if the read-only option is ticked. Also you can try to save the file as different file format to test this issue.
Also please check if you enable the preview pane, try to disable it . 
a) Open File Explorer.
b) Click on View Tab.
c) Click on Preview Pane to view\hide it.
Wind Zhang
TechNet Community Support

Similar Messages

  • Opening excel file n window location

    I have an application that tests three products at a time.  When a product is put on test, the user enters the serial number of the product, which pulls up the Excel datasheet for that product serial number.  The datasheet always comes up in the last saved location within the Excel window. I would like to control if this file appeared on the left side (where it currently is), center position, or right positon.  Please see the attached screen shot.  Is there a way I can force the datasheet to come up in a certain location in the window?
    I am using New Report VI from the Report Generation VI Toolkit and have the window state set at normal. 
    metzler CLAD
    Attachments:
    Excel file screen location.docx ‏365 KB

    Metzler:
    There isn't currently a method for controlling the sub-window size/position for a file within Excel. It might be possible through ActiveX, but I'm not entirely sure.
    That would, however, make an excellent product suggestion for the LabVIEW Idea Exchange.
    Caleb Harris
    National Instruments | Mechanical Engineer | http://www.ni.com/support

  • Excel 2013 - Locked file when trying to save

    After a user opens an excel file from a personal network share (EMC/ISILON storage) and make changes to the file, the user get a FILE LOCKED BY <USER> (Same user that is currently editing the file).
    We have also had issues where a user goes to open a file and it says it is currently in use by <USER> same user trying to open the file.
    Couple of notes of interest:
    These files are on personal network shares, only the 1 user has access to the files
    We have had the user completely reboot their machine when they try to open a file and get the file is locked message - Same message
    Does not happen with any other Office 2013 application
    Are there any special "quick View" features in Excel 2013 or Windows 7 that may be locking the file?  I have seen reference to this in older versions of Windows, but nothing for Windows 7.
    Thanks for the help.

    Hi TE2011,
    In regarding of the issue, please provide us more information to assist you better.
    Did this issue only occur with the special user? Or some others had the same issue.
    Did the issue only the special file?
    This issue may be caused by some factors, please try the following methods and check they are helpful:
    Method one:
    Turn off the Preview Pane, Details Pane and pop ups that show information about file and desktop items
    1. Right click on the Start Button.
    2. Click 'Open Windows Explorer'.
    3. At the top left click Organize > Layout 
    4. Uncheck Details Pane and Preview Pane.
    5. On a Windows menu, click on Tools > Folder Options.  In the box that opens up, click on the View tab.  Scroll down the list to
    “Show pop-up description for folder and desktop items” and clear the checkbox and then click OK. 
    In Excel:
    1. Click File > Open
    2. Click Organize > Layout
    3. Uncheck 'Details Pane' and 'Preview Pane'
    Reference:
    http://blogs.technet.com/b/the_microsoft_excel_support_team_blog/archive/2012/05/14/the-definitive-locked-file-post.aspx
    We also try the other methods provided with the blog.
    Method Two:
    The issue also may be caused by the file itself, please try to recreated it and add it to trusted location.
    If this issue still exists, please try to upload the screenshot about the error message. I'll appreciate for it.
    Hope it's helpful.
    Regards,
    George Zhao
    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 click "[email protected]"

  • Javascript with window.location.href no longer working in Content Editor in Sharepoint 2010 where users have IE8

    I have recently found that when using a Sharepoint 2010 Content Editor web part to house some Javascript that the window.location.href (or window.location) is not working when the end users have IE8 installed on their PC's.  We have confirmed
    that the window.location.href is working if the users are on IE7 or Google Chrome with the same Javascript.  In addition, we added alert() to the javascript to ensure that it was infact running, which the alerts appeared on the screen with no issues. 
    The result that I am receiving in IE8 is that when the window.location.href is set to the url that the user should be directed to, it simply refreshes the current page and leaves the user where they originally were.
    I have seen the posts to have my site setup as a Trusted Site, but this is not an option for our company as they defined all internal Sharepoint sites as trusted already.  Besides this, having all users go into their Internet Options is not really a
    solution but a means to annoy your users.
    What I am looking for is a permanent solution that I can make within my javascript that will work for both IE7 and IE8 users within a Sharepoint 2010 environment.  If anyone has any suggestions, please let me know.  Thanks in advance.
    Below is a snipet from my javascript code for review:
    <script type="text/javascript">
    function RedirectUrl() {
    alert('button pressed');
    var tb = document.getElementById("tbSearch").value;
    var cs = document.getElementById("sfield").value;
    var url = "";
    if (tb != "") {
    url = "FilterName=" + cs + "&FilterMultiValue=*" + tb + "*";
    if (cs == "Request%5Fx0020%5FID1"){
    alert("Request%20ID%20Search.aspx?" + url)
    window.location.href = "Request%20ID%20Search.aspx?" + url;
    else {
    window.location.href = "All%20Requests.aspx?" + url;
    else {
    return false;
    function ClearUrl() {
    window.location.href = "All%20Requests.aspx";
    </script>
    <br/>
    <span style="font-family: calibri; color: #000066; font-size: 14pt; font-weight: bold">Search</span>
    <br/>
    <span style="font-family: calibri; color: black">Search Field: </span>
    <select id="sfield" style="font-family: calibri; font-size: 10pt">
    <option value="Request%5Fx0020%5FID1">Request ID</option>
    </select> &#160;
    <span style="font-family: calibri; color: black">Search Text: </span>
    <input id="tbSearch" onkeypress="if (event.keyCode == 13) document.getElementById(&#39;btnSearch&#39;).click()" style="font-family: calibri"/>
    <button id="btnSearch" onclick="return RedirectUrl();" type="submit" style="font-family: calibri">Search</button>
    <button id="btnClear" onclick="return ClearUrl();" type="submit" style="font-family: calibri">Clear Search</button>
    <br/>
    <br/>
    <span style="font-family: calibri; color: #000066; font-size: 14pt; font-weight: bold">Search Results - All Requests</span>
    <br/>

    Hi,
    According to your post, my understanding is that the window.location.href not worked in IE 8.
    I think the issue
    is likely due to the value of your variables. If they contain special or invalid characters, those needs to be passed through
    encodeURIComponent before being assigned to window.location.href.
    http://stackoverflow.com/questions/18278777/window-location-href-not-working-on-ie
    http://stackoverflow.com/questions/6297291/window-location-problem-in-ie
    You can also use the following methods to check whether it works.
    Window.navigate();
    Winodw.history.back();
    Self.location.href;
    Top.location;
    Thanks & Regards,
    Jason
    Jason Guo
    TechNet Community Support

  • Power View in Excel 2013 not staying visible

    hello,
    i have only been using power view (and power query) for a little while, but noticed that when i open a workbook that has power view sheets, power view is not automatically opened. when i first open the workbook, i see a large blue square on a worksheet
    in order to use power view, i have to click on the  power view tab, then click the power view button.
    is this the way the software is suppose to work?
    if it helps, i am running office professional pro plus, excel 2013, with windows 8.1
    i don't know if this matters, but i checked to make sure that power view is installed and it is.
    any help would be greatly appreciated.
    thank you
    tracy

    hi ed and will,
    i think you guys are spying on me  -    of course, i am right-clicking on the excel icon on the task bar and selecting the workbook that i want to use. isn't that why the files are there - LOL
    okay, so i took the loooooooooooooong way, i opened excel, by clicking on the icon on the task bar. a blank workbook opened.
    then i opened the workbook that i wanted to use
    that power view window with the red circle appeared.
    i opened the add-ins screen and power view is installed/enabled.
    hmmm, if this hasn't been logged as an issue by someone else already, could there be something wrong with my workbook files or worse, my laptop.
    i don't see a frown/smile button in excel - where is it?
    this isn't looking so good.
    what do you guys think is going on?

  • Losing formatting when Share/Un-share Excel 2013

    Hello all
    We're using Excel 2013 on Windows 8 32 bit.
    We are having major concerns with the formatting of these files. It’s sort of hard to explain but we get it all set the way we want it and then if we share or un-share it we lose all our formatting.

    Hi,
    Did this issue occurred with a particular file? Which type of formatting did lost? Generally speaking, If we are saving it in the older Excel 97-2003 format, then it is possible that the losses you are seeing are due to the formatting not being supported
    in the older format. This is particularly true with colors and conditional formatting. Please try to save it as Excel 2013 format.
    If this issue still exists, do you mind sending us a sample file? Email:
    [email protected]? So I can test it from my side. Please use thread link or the subject of this post as mail subject.
    Regards,
    George Zhao
    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 click "[email protected]"

  • SAP Office Integration Excel 2013 problem - dummy window pops up with inplace

    Hi experts all around the globe,
    we are facing a strange problem by some of our users since they have installed Excel 2013 on their PCs. An annoying Excel sheet pops up while generating an excel file in the background.
    They are working with several Y (or Z if you like it better so) transactions, and create multiple Excel files (Excel.Sheet.8 -> .xls) in the background. The programs are using Office Integration (interfaces I_OI_CONTAINER_CONTROL and I_OI_DOCUMENT_PROXY) to create the files.
    Method OPEN_DOCUMENT is called with the parameter OPEN_INPLACE, modified, and then closed with the CLOSE_DOCUMENT method, then saved with SAVE_DOCUMENT_TO_URL. The document gets only assigned to a dummy container, this means under normal circumstances the user shouldn't see anything - the file gets created, modified and stored in the background - end of the story. The programs are like 10 years old, and have been doing good since then.
    Now some of our users reported, that they have an issue when generating Excel files with those programs. We have investigated / debugged, and here is the thing: in several cases when the method OPEN_DOCUMENT is called, an empty worksheet pops up (see attached screenshot). It also gets in focus, and then in 1 sec is it closing again (as the CLOSE_DOCUMENT is called). This is really annoying when the user has to generate hundreds of Excel sheets (it is quite often the case). The window gets opened and closed with every single file that gets created.
    We have tried to identify the problem, but it is user independent, the SAP GUI, Office and Windows versions seem to be all the same - though it appears by some users. The most of us work with SAP GUI 730 Patch level 4, but upgrade to Patch level 9 has also not solved the problem. We have found the notes 1908528 and 1804535. They address similar problems but not exactly the same. We think it has something to do with incompatibility of the releases, or simply an Office / SAP setting we could not think of.
    Has someone encountered the same? Any ideas?
    Your help is greatly appreciated.
    Boldi

    Hello Daniel,
    thank you very much for your reply, it is really appreciated.
    We have SAP GUI 7.30 Version 7300.3.9.1084 Build 1496147 Patch Level 9 on the test machine. This one should be the latest available version, am I right?
    The issue is a little bit different from the ones described in the SAP notes you suggested. The data is getting "correctly" displayed inplace, but Excel is also getting called up in the same time, and an additional emtpy sheet is displayed, which gets in the focus, disturbing the user. It is just like described in the SAP notes 1425448 and 1567380
    To 1425448 (Solution Point 2 below): this is our standard setting, and it does not help us.
    To 1567380 (Prerequisites): there is no macro in our sheet.
    We could reproduce the issue with the standard report SAPRDEMO_SPREADSHEET_INTERFACE (this is the one suggested in SAP note 1908528 - "Verifying that Excel inplace functionality is working correctly"). The SAP GUI overtakes the focus after a while, as described in the SAP note 1567380, but the empty sheet is active at first, and it is a little bit more than annoying.
    How is it on your side, could you please run the standard report (EXCEL, checkbox for inplace set, then Enter) to confirm that the problem exists?
    Thanks a lot in advance and have a nice day!
    Boldi

  • SBS 2011 GPO for changing the default save location for Word/Excel 2013 not working

    So this is a strange one. I've got an SBS 2011 server that's the only domain controller in the org. I've created a GPO to change the default save location for Excel 2013 and Word 2013 using the Office 2013 ADMX files which were installed to the PolicyDefinitions
    folder.
    The GPO (U-Office2013 Default Save Location) only contains:
    1. User Configuration - Microsoft Excel 2013/Excel Options/Save - Default file location - Enabled - Z:\
    2. User Configuration - Microsoft Word 2013/Word Options/Advanced/File Locations - Default file location - Enabled - Z:\
    The GPO is linked at the OU that contains my users for my SBS organization.
    When I do a gpupdate /force on a windows 7 system with office2013 installed, and then run a gpresult/rsop, the policy appears to be applied successfully as it lists my GPO under the Applied GPOs list on the workstation:
    Applied GPOs
    Default Domain Policy dyndns.local AD (24), Sysvol (24)
    U-Office2013 Default Save Location domain.local/SBSusers AD (6), Sysvol (6)
    In the gpresult report, the applied settings appear under:
    Administrative Templates
    Extra Registry Settings
    software\policies\microsoft\office\15.0\excel\options\defaultpath Z:\ U-Office2013 Default Save Location
    software\policies\microsoft\office\15.0\word\options\doc-path Z:\ U-Office2013 Default Save Location
    BUT, when I go to the workstation, and check office->options-Save-default file path, the path has not been changed to what the GPO is pushing.
    The strange thing is that in my test environment running 2008R2 server and Win7 with Office 2013 and identical settings the default save location is applied and works as expected.
    Any ideas?
    I've already tried re-installing the ADMX templates and re-created the GPO's several times.
    I should also note that other GPO's on the SBS2011 server such as the folder redirection GPO work as expected on the same windows 7 system. It just appears to be an issue with the default save location in office2013 and other Office 2013 related GPOs which
    utilize the recently added ADMX template that don't seem to be working for me.
    Thanks in advance.

    Hi Justin,
    Thanks for your reply. I have tried several different user accounts (all have local admin privileges to the workstation) with the same issue. The default save path does not get applied from the GPO to any of the users i've tried. Here's the steps I took
    per your suggestion:
    1. log on as a user who has never logged onto the workstation before.
    2. run gpupdate /force (entered y for yes when prompted to log off).
    3. Log back in as the user and open Office and check the default save path. It has not been changed to match the GPO setting.
    4. Check rsop to see if the policy was applied. Rsop states the gpo was applied successfully.
    I have attached the gpsvc.log file from a the session described above. The GPO Guid in question is: {DC3C93EC-7C28-48E9-BA38-FCA1E275A207}. Its common name is: U-Word 2013 Default Save Location. It's only setting is:
    Policies\Administrative Templates\Policy definitions(admx files retrieved from central store\Microsoft Word 2013\Word Options\Advanced\File Locations\Default File Location = Enabled\Documents = F:\
    -------gpsvc.log sections containing the aforementioned GUID start---------
    GPSVC(410.1730) 09:10:51:186 ProcessGPO:  ==============================
    GPSVC(410.df0) 09:10:51:186 GetGPOInfo:  ********************************
    GPSVC(410.1730) 09:10:51:186 ProcessGPO:  Searching <cn={DC3C93EC-7C28-48E9-BA38-FCA1E275A207},cn=policies,cn=system,DC=gc,DC=local>
    GPSVC(410.1730) 09:10:51:186 ProcessGPO:  User has access to this GPO.
    GPSVC(410.1730) 09:10:51:186 ProcessGPO:  GPO passes the filter check.
    GPSVC(410.1730) 09:10:51:186 ProcessGPO:  Found functionality version of:  2
    GPSVC(410.1730) 09:10:51:186 ProcessGPO:  Found file system path of:  <\\gc.local\SysVol\gc.local\Policies\{DC3C93EC-7C28-48E9-BA38-FCA1E275A207}>
    GPSVC(410.1730) 09:10:51:186 ProcessGPO:  Found common name of:  <{DC3C93EC-7C28-48E9-BA38-FCA1E275A207}>
    GPSVC(410.1730) 09:10:51:186 ProcessGPO:  Found display name of:  <U-Word 2013 Default Save Location>
    GPSVC(410.1730) 09:10:51:191 ProcessGPO:  Found user version of:  GPC is 3, GPT is 3
    GPSVC(410.1730) 09:10:51:191 ProcessGPO:  Found flags of:  0
    GPSVC(410.1730) 09:10:51:191 ProcessGPO:  Found extensions:  [{35378EAC-683F-11D2-A89A-00C04FBBCFA2}{D02B1F73-3407-48AE-BA88-E8213C6761F1}]
    GPSVC(410.1730) 09:10:51:191 ProcessGPO:  ==============================
    GPSVC(410.1730) 09:10:51:191 ProcessLocalGPO:  Local GPO's gpt.ini is not accessible, assuming default state.
    GPSVC(410.1730) 09:10:51:191 ProcessLocalGPO:  GPO Local Group Policy doesn't contain any data since the version number is 0.  It will be skipped.
    GPSVC(410.1730) 09:10:51:191 GetGPOInfo:  Leaving with 1
    GPSVC(410.1730) 09:10:51:191 GetGPOInfo:  ********************************
    -------gpsvc.log start---------
    -------output of gpresult /r-------
    Microsoft (R) Windows (R) Operating System Group Policy Result tool v2.0
    Copyright (C) Microsoft Corp. 1981-2001
    Created On 5/30/2014 at 9:24:08 AM
    RSOP data for GC\ssanders on OPTI9020-01 : Logging Mode
    OS Configuration:            Member Workstation
    OS Version:                  6.1.7601
    Site Name:                   Default-First-Site-Name
    Roaming Profile:             N/A
    Local Profile:               C:\Users\ssanders
    Connected over a slow link?: No
    COMPUTER SETTINGS
        CN=OPTI9020-01,OU=SBSComputers,OU=Computers,OU=MyBusiness,DC=gc,DC=local
        Last time Group Policy was applied: 5/30/2014 at 9:10:47 AM
        Group Policy was applied from:      GCSBS.gc.local
        Group Policy slow link threshold:   500 kbps
        Domain Name:                        GC
        Domain Type:                        Windows 2000
        Applied Group Policy Objects
            Windows SBS CSE Policy
            Windows SBS Client - Windows Vista Policy
            Windows SBS Client Policy
            Update Services Client Computers Policy
            C-Create Syntiro Root Folders
            Default Domain Policy
        The following GPOs were not applied because they were filtered out
            Local Group Policy
                Filtering:  Not Applied (Empty)
            Windows SBS Client - Windows XP Policy
                Filtering:  Denied (WMI Filter)
                WMI Filter: Windows SBS Client - Windows XP
        The computer is a part of the following security groups
            BUILTIN\Administrators
            Everyone
            BUILTIN\Users
            NT AUTHORITY\NETWORK
            NT AUTHORITY\Authenticated Users
            This Organization
            OPTI9020-01$
            Domain Computers
            System Mandatory Level
    USER SETTINGS
        CN=Stephen Sanders,OU=SBSUsers,OU=Users,OU=MyBusiness,DC=gc,DC=local
        Last time Group Policy was applied: 5/30/2014 at 9:13:17 AM
        Group Policy was applied from:      GCSBS.gc.local
        Group Policy slow link threshold:   500 kbps
        Domain Name:                        GC
        Domain Type:                        Windows 2000
        Applied Group Policy Objects
            Windows SBS User Policy
            Windows SBS CSE Policy
            Small Business Server Folder Redirection Policy
            U-Word 2013 Default Save Location
            U-Office 2013 Disable Backstage
            U-Office Disable Start Screen
            U-Office Trust Center Settings
            U-Word Autorecover Location
            U-Word Autosave Interval
            U-Word Disable Capitalization First Word
            U-Word Set Arial Default Font
            U-Word UI Customizations
            U-Power Plan Settings
            Default Domain Policy
        The following GPOs were not applied because they were filtered out
            Local Group Policy
                Filtering:  Not Applied (Empty)
        The user is a part of the following security groups
            Domain Users
            Everyone
            BUILTIN\Administrators
            BUILTIN\Users
            NT AUTHORITY\INTERACTIVE
            CONSOLE LOGON
            NT AUTHORITY\Authenticated Users
            This Organization
            LOCAL
            Windows SBS Link Users
            Windows SBS Fax Users
            Windows SBS SharePoint_MembersGroup
            Windows SBS Folder Redirection Accounts
            Windows SBS Remote Web Workplace Users
            High Mandatory Level
    -------end gpresult output-------       
    Thanks in advance for any help. I also have a pps ticket open with Microsoft, but they're dragging their feet.

  • Excel 2013 BeforeRightClick Event fails on Windows 8.1 Tablet (it's an Excel 2013 tablet touch screen interface bug)

    I have developed customized table context menus in an Excel 2013 workbook on my Laptop. They work just fine on my laptop and my work desktop. But when I try to run them on my tablet PC the Worksheet_BeforeRightClick event in Excel 2013 never fires. Other
    worksheet events appear to work okay. I have fully reinstalled Office 2013 Pro and that does not make any difference.
    I have read other comments regarding this same problem going back to 2013, but have never seen Microsoft respond to this issue. Nor have I been able to find a resolution. Has anyone else run into this and found a solution?
    Additional Discoveries: Testing on my tablet shows that adding one custom CommandBarButton to either the top or the bottom of the default "List Range Popup" context menu causes the Worksheet_BeforeRightClick event to fail.  The basic context
    menu commands still show up, but the default dropdown button for additional context menu commands disappears. The event is perhaps firing, but any customized code for the context menu is not being handled properly by Excel. This does appear to be a bug and
    not a question of coding error. Perhaps someone else with a tablet PC running WIndows 8.1 could test this.
    Based on comments
    here this bug was introduced in Excel 2013 because others find the problem does not exist when using Excel 2010 on a tablet PC. Note that all the commenters on the linked thread that are experiencing this problem are using tablet PCs.
    Update 3-13-15: I stand corrected. The Worksheet_BeforeRightClick does work on Excel 2013 Windows 8.1 tablets. I happen to own an Asus VivoTab Note 8, which comes with a Wacom stylus. If I use the Wacom sylus to right click on an Excel 2013 worksheet cell,
    the Worksheet_BeforeRightClick event fires and modified context menu code runs just fine. But the code will not run if one uses their finger to right click a worksheet cell. This explains why this problem only shows up on tablet PCs. So the "bug"
    introduced in Excel 2013 is a general user touch screen interface bug and not an Excel events programming bug.
    Update 3-21-15: Switched to a  Toshiba Protege laptop with touch screen. Same issue with finger touch screen interface on the Toshiba touch screen as with the Asus VivoTab touch screen.
    Laptop: Toshiba Protege (with touch screen), Windows 8.1 64bit and MSOffice 2013 Pro 32bit
    Tablet: Asus VivoTab Note 8, Windows 8.1 32bit and MSOffice 2013 Pro 32 bit
    Desktop: Generic, Windows 7 64bit and MSOffice 2013 Pro 64bit
    phillfri

    Hello Phil,
    Command bars were deprecated and shouldn't be used any longer. Instead, you need to use the Fluent UI (aka Ribbon UI) instead. You can read more about the new UI in the following series of articles in MSDN:
    Customizing Context Menus in Office 2010
    Customizing the 2007 Office Fluent Ribbon for Developers (Part 1 of 3)
    Customizing the 2007 Office Fluent Ribbon for Developers (Part 2 of 3)
    Customizing the 2007 Office Fluent Ribbon for Developers (Part 3 of 3)
    As a workaround you can add a custom control to the context
    menu with the getEnabled or getVisible callback which will be invoked before the context menu is shown.

  • Update to Excel 2013 causing a problem with Sage 500 ERP import feature

    I work in an accounting office that relies heavily on importing data from Excel into Sage 500 ERP accounting software.  We recently began updating from Office 2007 to Office 2013.  Now we are running into a
    huge hurdle as we find Excel 2013 no longer supports MDI, and has moved exclusively to SDI.  This is a problem for us, and here's why.
    Sage 500 has a "Data Porter" command which launches Excel, but opens a blank workbook in Excel.  After triggering the Data Porter, we open a previously saved Excel workbook containing our data, select the "Add-Ins"
    tab, and click the appropriate button to begin the import.  In Excel 2007 this works because the workbook with the data opens in the same "window" as the blank workbook.
    In Excel 2013, the workbook containing the data can only be opened in it's own new window which has not established the line of communication with Sage 500's Data Porter, and the import function is not available.
    So far the only workaround we have found is to right-click on a tab in the file containing the data, click "Select All Sheets," then "Move or Copy" them to the new blank workbook.  The import into Sage 500 is successful when
    we do that.  However, we need to save the workbook with the updated import information returned by Sage 500, so we must also do a "Save As" for the new workbook, assigning the same file name as the original data file, overwriting
    it.  This makes what used to be a simple procedure quite cumbersome, and we fear the risk of data loss may be significant.
    Is there any way to make this process work the way it does in earlier versions of Excel that support MDI (Multiple Document Interface)?

    Is there any way to make this process work the way it does in earlier versions of Excel that support MDI (Multiple Document Interface)?
    At a glance, it seems the answer might be...No.
    Note                  
    There is no MDI compatibility option in Excel 2013.
    From: http://msdn.microsoft.com/en-us/library/office/dn251093.aspx
    You should contact Sage, to see if they have solutions/suggestions, but I think it will require Sage to re-develop the Dataporter Add-in ?
    Don
    (Please take a moment to "Vote as Helpful" and/or "Mark as Answer", where applicable.
    This helps the community, keeps the forums tidy, and recognises useful contributions. Thanks!)

  • G700 f4 problem with Excel 2013

    I have a g700 laptop and wants to know why F4 & F2 doesn't work as usually with Excel 2013
    Is there any possibility to find the same functionnality as I had with Excel 2010 before ?
    Thanks for your quick answer 
    Regards
    Alain
    Moderator Note; subject edited.

    some more information:
    There was a web-site: 
    http://download.lenovo.com/consumer/hnt/7acn89ww.exe 
    to find the 7acn89ww.exe directly. 
    The information came from:
    http://support.lenovo.com/en_US/research/hints-or-tips/detail.page?DocID=HT080432
    The content of this site was: 
    Function Key "F4" Cannot be Implemented with Customized Function - IdeaPad S500, Lenovo G700
    SymptomFor IdeaPad S500 and Lenovo G700, customer defined special function for “F4” when playing games, but when “F4” or combination “Fn+F4” was pressed, it implemented the original windows function "close current window", no matter "Hotkey Mode" is switched to Enable or Disable.
     Affected configurationsThe above symptom may occur to the following systems:
    Ideapad S500, Lenovo G700
    The above symptom may occur to the following software:
    S500 BIOS version lower or equal 7ECN21WW 
    G700 BIOS version lower or equal 7ACN89WW
     SolutionFor S500:
    Updateing BIOS to version 7ECN23WW can solve problem.
    For G700:
    Updating BIOS to version 7ACN89WW can solve problem.
    If you are unable to find what you are looking for, please do try the following options:
    1. Lenovo Assisted Search 
    2. Product usage and general troubleshooting tips 
    3. Lenovo Support Forum 
    4. Technical Support Call Centre 
    Country Availability
    Available
    Worldwide
    Alias ID : IN20131126-004
    Document ID : HT080432
    Legacy Document ID : IN20131126-004
    Last Updated : 29 Dec 2013
    Copyright © Lenovo 2013, all rights reserved

  • On Excel 2013 (64 bit), I can't use the Analysis ToolPack add-ins without a problem and plot the residuals.

    On Excel 2013 (64 bit), I can't use the Analysis ToolPack add-ins without a problem and plot the residuals. It went crash.

    Hi,
    In regarding of the issue, please provide us more information to assist you better.
    Do you mind telling us the Excel version number? Like 15.0.XXXX.1000
    Would you like to collect the Event Log and App Crash dump file to do further troubleshooting?
    As far as I know, if Excel crashes when using Analysis ToolPack add-ins, it usually causes by the >>Faulting module name: mso.dll<<, Please try the following method and check if it is helpful:
    1.Copy/paste the Mso.dll from another PC.
    2.Click "Start" and "Computer."
    3.Double-click "C: Drive," "Windows" and "System32." The System32 folder opens.
    4.Drag the Mso.dll file on your desktop into the System32 folder.
    5.Click "Start," type "cmd" into the search field and press "Enter" to open the Command Prompt.
    6.Type "regsvr32 mso.dll" (without the quotation marks) into the Command Prompt and press "Enter."
    7.Close the Command Prompt and restart your computer.
    Then, if the Faulting module name is not MSO.Dll, you also can upload(Or send to us via email
    [email protected])  the Event Log/App Crash dump file. We'd like to do further troubleshooting.
    Regards,
    George Zhao
    TechNet Community Support
    It's recommended to download and install
    Configuration Analyzer Tool (OffCAT), which is developed by Microsoft Support teams. Once the tool is installed, you can run it at any time to scan for hundreds of known issues in Office
    programs.

  • Problem installing sharepoint foundation 2013 on windows server 2008 r2

    anybody has experience installing sharepoint 2013 on windows server 2008 r2? I failed to install it even if I have all the latest patches installed and the sql server 2012 express installed.  it keeps failing to install the prerequisites.
    • Microsoft .NET Framework 4.5: equivalent products already installed (no action taken)
    • Windows Management Framework 3.0: was already installed (no action taken)
    • Application Server Role, Web Server (IIS) Role: configuration error
    • Microsoft SQL Server 2008 R2 SP1 Native Client: Installation skipped
    • Windows Identity Foundation (KB974405): Installation skipped
    • Microsoft Sync Framework Runtime v1.0 SP1 (x64): Installation skipped
    • Windows Server AppFabric: Installation skipped
    • Microsoft Identity Extensions: Installation skipped
    • Microsoft Information Protection and Control Client: Installation skipped
    • Microsoft WCF Data Services 5.0: Installation skipped
    • Cumulative Update Package 1 for Microsoft AppFabric 1.1 for Windows Server (KB2671763): Installation skipped
    log file:
    2014-04-30 17:32:32 - Processor architecture is (9)
    2014-04-30 17:32:32 - Reading the following string value/name...
    2014-04-30 17:32:32 - Common Startup
    2014-04-30 17:32:32 - from the following registry location...
    2014-04-30 17:32:32 - SOFTWARE\Microsoft\Windows\CurrentVersion\Explorer\Shell Folders
    2014-04-30 17:32:32 - The value is... 
    2014-04-30 17:32:32 - C:\ProgramData\Microsoft\Windows\Start Menu\Programs\Startup
    2014-04-30 17:32:32 - Trying to remove the startup task if there is any.
    2014-04-30 17:32:32 - C:\ProgramData\Microsoft\Windows\Start Menu\Programs\Startup\SharePointServerPreparationToolStartup_0FF1CE14-0000-0000-0000-000000000000.cmd
    2014-04-30 17:32:32 - Error: Startup task doesn't exist. This is not a continuation after a restart.
    2014-04-30 17:32:32 - Locating the following command line arguments file:
    2014-04-30 17:32:32 - C:\Program Files (x86)\MSECache\SharePoint2010\PrerequisiteInstaller.Arguments.txt
    2014-04-30 17:32:32 - Error: This file does not exist
    2014-04-30 17:32:32 - Details of the current operating system: 
    2014-04-30 17:32:32 - Major version number of the operating system:  (6)
    2014-04-30 17:32:32 - Minor version number of the operating system:  (1)
    2014-04-30 17:32:32 - Build number of the operating system:  (0X1DB1=7601)
    2014-04-30 17:32:32 - Major version number of the latest Service Pack:  (1)
    2014-04-30 17:32:32 - Minor version number of the latest Service Pack:  (0)
    2014-04-30 17:32:32 - Platform ID of the operating system:  (2)
    2014-04-30 17:32:32 - Product suites available on the operating system:  (0X10=16)
    2014-04-30 17:32:32 - Product type of the operating system: VER_NT_DOMAIN_CONROLLER
    2014-04-30 17:32:32 - Product type:  (0X21=33)
    2014-04-30 17:32:32 - OS type:  (0)
    2014-04-30 17:32:32 - Configuring the application's property sheet...
    2014-04-30 17:32:32 - Check whether the following prerequisite is installed:
    2014-04-30 17:32:32 - Windows Management Framework 3.0
    2014-04-30 17:32:32 - Reading the following string value/name...
    2014-04-30 17:32:32 - PowerShellVersion
    2014-04-30 17:32:32 - from the following registry location...
    2014-04-30 17:32:32 - SOFTWARE\Microsoft\PowerShell\3\PowerShellEngine
    2014-04-30 17:32:32 - The value is... 
    2014-04-30 17:32:32 - 3.0
    2014-04-30 17:32:32 - Reading the following string value/name...
    2014-04-30 17:32:32 - CTPVersion
    2014-04-30 17:32:32 - from the following registry location...
    2014-04-30 17:32:32 - SOFTWARE\Microsoft\PowerShell\3\PowerShellEngine
    2014-04-30 17:32:32 - Could not find or unable to read CTPVersion key
    2014-04-30 17:32:32 - The prerequisite above is already installed
    2014-04-30 17:32:32 - Check whether the following prerequisite is installed:
    2014-04-30 17:32:32 - Microsoft .NET Framework 4.5
    2014-04-30 17:32:32 - Reading the following DWORD value/name...
    2014-04-30 17:32:32 - Install
    2014-04-30 17:32:32 - from the following registry location...
    2014-04-30 17:32:32 - SOFTWARE\Microsoft\Net Framework Setup\NDP\V4\full
    2014-04-30 17:32:32 - The value is (1)
    2014-04-30 17:32:32 - Reading the following string value/name...
    2014-04-30 17:32:32 - Version
    2014-04-30 17:32:32 - from the following registry location...
    2014-04-30 17:32:32 - SOFTWARE\Microsoft\Net Framework Setup\NDP\V4\full
    2014-04-30 17:32:32 - The value is... 
    2014-04-30 17:32:32 - 4.5.50938
    2014-04-30 17:32:32 - A post release .NET 4.5 is installed
    2014-04-30 17:32:32 - Check whether the following prerequisite is installed:
    2014-04-30 17:32:32 - Windows Identity Foundation (KB974405)
    2014-04-30 17:32:32 - Reading the following string value/name...
    2014-04-30 17:32:32 - 
    2014-04-30 17:32:32 - from the following registry location...
    2014-04-30 17:32:32 - SOFTWARE\Microsoft\Windows Identity Foundation\Setup\v3.5
    2014-04-30 17:32:32 - Check whether the following prerequisite is installed:
    2014-04-30 17:32:32 - Microsoft Sync Framework Runtime v1.0 SP1 (x64)
    2014-04-30 17:32:32 - Reading version of the following file...
    2014-04-30 17:32:32 - C:\Windows\assembly\GAC_MSIL\Microsoft.Synchronization\1.0.0.0__89845dcd8080cc91\Microsoft.Synchronization.dll
    2014-04-30 17:32:32 - GetFileVersionInfoSize failed (-2147024894)
    2014-04-30 17:32:32 - Check whether the following prerequisite is installed:
    2014-04-30 17:32:32 - Microsoft SQL Server 2008 R2 SP1 Native Client
    2014-04-30 17:32:32 - Reading the following string value/name...
    2014-04-30 17:32:32 - Version
    2014-04-30 17:32:32 - from the following registry location...
    2014-04-30 17:32:32 - SOFTWARE\Microsoft\Microsoft SQL Server\SQLNCLI10\CurrentVersion
    2014-04-30 17:32:32 - Check whether the following prerequisite is installed:
    2014-04-30 17:32:32 - Windows Server AppFabric
    2014-04-30 17:32:32 - Reading the following string value/name...
    2014-04-30 17:32:32 - ProductVersion
    2014-04-30 17:32:32 - from the following registry location...
    2014-04-30 17:32:32 - SOFTWARE\Microsoft\AppFabric\V1.0
    2014-04-30 17:32:32 - Check whether the following prerequisite is installed:
    2014-04-30 17:32:32 - Windows Identity Foundation (KB974405)
    2014-04-30 17:32:32 - Reading the following string value/name...
    2014-04-30 17:32:32 - 
    2014-04-30 17:32:32 - from the following registry location...
    2014-04-30 17:32:32 - SOFTWARE\Microsoft\Microsoft Identity Extensions\Setup\1.0
    2014-04-30 17:32:32 - Check whether the following prerequisite is installed:
    2014-04-30 17:32:32 - Microsoft Information Protection and Control Client
    2014-04-30 17:32:32 - Reading the following string value/name...
    2014-04-30 17:32:32 - 
    2014-04-30 17:32:32 - from the following registry location...
    2014-04-30 17:32:32 - SOFTWARE\Microsoft\MSIPC\CurrentVersion
    2014-04-30 17:32:32 - Check whether the following prerequisite is installed:
    2014-04-30 17:32:32 - Microsoft WCF Data Services 5.0
    2014-04-30 17:32:32 - Reading the following string value/name...
    2014-04-30 17:32:32 - Version
    2014-04-30 17:32:32 - from the following registry location...
    2014-04-30 17:32:32 - SOFTWARE\Wow6432Node\Microsoft\Microsoft WCF Data Services\5.0
    2014-04-30 17:32:32 - Check whether the following prerequisite is installed:
    2014-04-30 17:32:32 - Cumulative Update Package 1 for Microsoft AppFabric 1.1 for Windows Server (KB2671763)
    2014-04-30 17:32:32 - Reading the following DWORD value/name...
    2014-04-30 17:32:32 - IsInstalled
    2014-04-30 17:32:32 - from the following registry location...
    2014-04-30 17:32:32 - SOFTWARE\Wow6432Node\Microsoft\Updates\AppFabric 1.1 for Windows Server\KB2671763
    2014-04-30 17:32:38 - Beginning download/installation
    2014-04-30 17:32:38 - Created thread for installer
    2014-04-30 17:32:38 - "C:\Windows\system32\ServerManagerCmd.exe" -inputpath "C:\Users\ADMINI~1\AppData\Local\Temp\1\Pre2AD9.tmp.XML"
    2014-04-30 17:32:38 - Install process returned (0X3EB=1003)
    2014-04-30 17:32:38 - [In HRESULT format] (0X800703EB=-2147023893)
    2014-04-30 17:32:38 - "C:\Windows\Microsoft.NET\Framework64\v4.0.30319\aspnet_regiis.exe" -i
    2014-04-30 17:32:39 - Request for install time of Application Server Role, Web Server (IIS) Role
    2014-04-30 17:32:40 - Request for install time of Application Server Role, Web Server (IIS) Role
    2014-04-30 17:32:41 - Request for install time of Application Server Role, Web Server (IIS) Role
    2014-04-30 17:32:42 - Request for install time of Application Server Role, Web Server (IIS) Role
    2014-04-30 17:32:43 - Request for install time of Application Server Role, Web Server (IIS) Role
    2014-04-30 17:32:44 - Request for install time of Application Server Role, Web Server (IIS) Role
    2014-04-30 17:32:45 - Request for install time of Application Server Role, Web Server (IIS) Role
    2014-04-30 17:32:46 - Request for install time of Application Server Role, Web Server (IIS) Role
    2014-04-30 17:32:47 - Request for install time of Application Server Role, Web Server (IIS) Role
    2014-04-30 17:32:48 - Request for install time of Application Server Role, Web Server (IIS) Role
    2014-04-30 17:32:49 - Request for install time of Application Server Role, Web Server (IIS) Role
    2014-04-30 17:32:50 - Request for install time of Application Server Role, Web Server (IIS) Role
    2014-04-30 17:32:51 - Request for install time of Application Server Role, Web Server (IIS) Role
    2014-04-30 17:32:52 - Request for install time of Application Server Role, Web Server (IIS) Role
    2014-04-30 17:32:53 - Request for install time of Application Server Role, Web Server (IIS) Role
    2014-04-30 17:32:53 - Install process returned (0)
    2014-04-30 17:32:53 - [In HRESULT format] (0)
    2014-04-30 17:32:53 - "C:\Windows\system32\cscript.exe" "C:\Windows\system32\iisext.vbs" /enext "ASP.NET v4.0.30319"
    2014-04-30 17:32:54 - Request for install time of Application Server Role, Web Server (IIS) Role
    2014-04-30 17:32:55 - Request for install time of Application Server Role, Web Server (IIS) Role
    2014-04-30 17:32:56 - Request for install time of Application Server Role, Web Server (IIS) Role
    2014-04-30 17:32:57 - Install process returned (-2146646015)
    2014-04-30 17:32:57 - [In HRESULT format] (-2146646015)
    2014-04-30 17:32:57 - Error when enabling ASP.NET v4.0.30319
    2014-04-30 17:32:57 - Last return code (-2146646015)
    2014-04-30 17:32:57 - Reading the following DWORD value/name...
    2014-04-30 17:32:57 - Flags
    2014-04-30 17:32:57 - from the following registry location...
    2014-04-30 17:32:57 - SOFTWARE\Microsoft\Updates\UpdateExeVolatile
    2014-04-30 17:32:57 - Reading the following string value/name...
    2014-04-30 17:32:57 - PendingFileRenameOperations
    2014-04-30 17:32:57 - from the following registry location...
    2014-04-30 17:32:57 - SYSTEM\CurrentControlSet\Control\Session Manager
    2014-04-30 17:32:57 - Reading the following registry location...
    2014-04-30 17:32:57 - SOFTWARE\Microsoft\Windows\CurrentVersion\WindowsUpdate\Auto Update\RebootRequired
    2014-04-30 17:32:57 - Error: The tool was unable to install Application Server Role, Web Server (IIS) Role.
    2014-04-30 17:32:57 - Last return code (-2146646015)
    2014-04-30 17:32:57 - Options for further diagnostics: 1. Look up the return code value 2. Download the prerequisite manually and verify size downloaded by the prerequisite installer. 3. Install the prerequisite manually from the given location without any
    command line options.
    2014-04-30 17:32:57 - Cannot retry
    2014-04-30 17:32:57 - Check whether the following prerequisite is installed:
    2014-04-30 17:32:57 - Windows Management Framework 3.0
    2014-04-30 17:32:57 - Reading the following string value/name...
    2014-04-30 17:32:57 - PowerShellVersion
    2014-04-30 17:32:57 - from the following registry location...
    2014-04-30 17:32:57 - SOFTWARE\Microsoft\PowerShell\3\PowerShellEngine
    2014-04-30 17:32:57 - The value is... 
    2014-04-30 17:32:57 - 3.0
    2014-04-30 17:32:57 - Reading the following string value/name...
    2014-04-30 17:32:57 - CTPVersion
    2014-04-30 17:32:57 - from the following registry location...
    2014-04-30 17:32:57 - SOFTWARE\Microsoft\PowerShell\3\PowerShellEngine
    2014-04-30 17:32:57 - Could not find or unable to read CTPVersion key
    2014-04-30 17:32:57 - The prerequisite above is already installed
    2014-04-30 17:32:57 - Check whether the following prerequisite is installed:
    2014-04-30 17:32:57 - Microsoft .NET Framework 4.5
    2014-04-30 17:32:57 - Reading the following DWORD value/name...
    2014-04-30 17:32:57 - Install
    2014-04-30 17:32:57 - from the following registry location...
    2014-04-30 17:32:57 - SOFTWARE\Microsoft\Net Framework Setup\NDP\V4\full
    2014-04-30 17:32:57 - The value is (1)
    2014-04-30 17:32:57 - Reading the following string value/name...
    2014-04-30 17:32:57 - Version
    2014-04-30 17:32:57 - from the following registry location...
    2014-04-30 17:32:57 - SOFTWARE\Microsoft\Net Framework Setup\NDP\V4\full
    2014-04-30 17:32:57 - The value is... 
    2014-04-30 17:32:57 - 4.5.50938
    2014-04-30 17:32:57 - A post release .NET 4.5 is installed
    2014-04-30 17:32:57 - Check whether the following prerequisite is installed:
    2014-04-30 17:32:57 - Windows Identity Foundation (KB974405)
    2014-04-30 17:32:57 - Reading the following string value/name...
    2014-04-30 17:32:57 - 
    2014-04-30 17:32:57 - from the following registry location...
    2014-04-30 17:32:57 - SOFTWARE\Microsoft\Windows Identity Foundation\Setup\v3.5
    2014-04-30 17:32:57 - Check whether the following prerequisite is installed:
    2014-04-30 17:32:57 - Microsoft Sync Framework Runtime v1.0 SP1 (x64)
    2014-04-30 17:32:57 - Reading version of the following file...
    2014-04-30 17:32:57 - C:\Windows\assembly\GAC_MSIL\Microsoft.Synchronization\1.0.0.0__89845dcd8080cc91\Microsoft.Synchronization.dll
    2014-04-30 17:32:57 - GetFileVersionInfoSize failed (-2147024894)
    2014-04-30 17:32:57 - Check whether the following prerequisite is installed:
    2014-04-30 17:32:57 - Microsoft SQL Server 2008 R2 SP1 Native Client
    2014-04-30 17:32:57 - Reading the following string value/name...
    2014-04-30 17:32:57 - Version
    2014-04-30 17:32:57 - from the following registry location...
    2014-04-30 17:32:57 - SOFTWARE\Microsoft\Microsoft SQL Server\SQLNCLI10\CurrentVersion
    2014-04-30 17:32:57 - Check whether the following prerequisite is installed:
    2014-04-30 17:32:57 - Windows Server AppFabric
    2014-04-30 17:32:57 - Reading the following string value/name...
    2014-04-30 17:32:57 - ProductVersion
    2014-04-30 17:32:57 - from the following registry location...
    2014-04-30 17:32:57 - SOFTWARE\Microsoft\AppFabric\V1.0
    2014-04-30 17:32:57 - Check whether the following prerequisite is installed:
    2014-04-30 17:32:57 - Windows Identity Foundation (KB974405)
    2014-04-30 17:32:57 - Reading the following string value/name...
    2014-04-30 17:32:57 - 
    2014-04-30 17:32:57 - from the following registry location...
    2014-04-30 17:32:57 - SOFTWARE\Microsoft\Microsoft Identity Extensions\Setup\1.0
    2014-04-30 17:32:57 - Check whether the following prerequisite is installed:
    2014-04-30 17:32:57 - Microsoft Information Protection and Control Client
    2014-04-30 17:32:57 - Reading the following string value/name...
    2014-04-30 17:32:57 - 
    2014-04-30 17:32:57 - from the following registry location...
    2014-04-30 17:32:57 - SOFTWARE\Microsoft\MSIPC\CurrentVersion
    2014-04-30 17:32:57 - Check whether the following prerequisite is installed:
    2014-04-30 17:32:57 - Microsoft WCF Data Services 5.0
    2014-04-30 17:32:57 - Reading the following string value/name...
    2014-04-30 17:32:57 - Version
    2014-04-30 17:32:57 - from the following registry location...
    2014-04-30 17:32:57 - SOFTWARE\Wow6432Node\Microsoft\Microsoft WCF Data Services\5.0
    2014-04-30 17:32:57 - Check whether the following prerequisite is installed:
    2014-04-30 17:32:57 - Cumulative Update Package 1 for Microsoft AppFabric 1.1 for Windows Server (KB2671763)
    2014-04-30 17:32:57 - Reading the following DWORD value/name...
    2014-04-30 17:32:57 - IsInstalled
    2014-04-30 17:32:57 - from the following registry location...
    2014-04-30 17:32:57 - SOFTWARE\Wow6432Node\Microsoft\Updates\AppFabric 1.1 for Windows Server\KB2671763
    2014-04-30 17:33:21 - Opening log file
    2014-04-30 17:33:21 - Opened action for user
    2014-04-30 17:33:21 - C:\Users\ADMINI~1\AppData\Local\Temp\1\prerequisiteinstaller.2014.04.30-17.32.32.log

    2014-06-20 08:18:39 - Processor architecture is (9)
    2014-06-20 08:18:39 - Reading the following string value/name...
    2014-06-20 08:18:39 - Common Startup
    2014-06-20 08:18:39 - from the following registry location...
    2014-06-20 08:18:39 - SOFTWARE\Microsoft\Windows\CurrentVersion\Explorer\Shell Folders
    2014-06-20 08:18:39 - The value is... 
    2014-06-20 08:18:39 - C:\ProgramData\Microsoft\Windows\Start Menu\Programs\Startup
    2014-06-20 08:18:39 - Trying to remove the startup task if there is any.
    2014-06-20 08:18:39 - C:\ProgramData\Microsoft\Windows\Start Menu\Programs\Startup\SharePointServerPreparationToolStartup_0FF1CE14-0000-0000-0000-000000000000.cmd
    2014-06-20 08:18:39 - Error: Startup task doesn't exist. This is not a continuation after a restart.
    2014-06-20 08:18:39 - Locating the following command line arguments file:
    2014-06-20 08:18:39 - C:\Program Files (x86)\MSECache\SharePoint2010\PrerequisiteInstaller.Arguments.txt
    2014-06-20 08:18:39 - Error: This file does not exist
    2014-06-20 08:18:39 - Details of the current operating system: 
    2014-06-20 08:18:39 - Major version number of the operating system:  (6)
    2014-06-20 08:18:39 - Minor version number of the operating system:  (1)
    2014-06-20 08:18:39 - Build number of the operating system:  (0X1DB1=7601)
    2014-06-20 08:18:39 - Major version number of the latest Service Pack:  (1)
    2014-06-20 08:18:39 - Minor version number of the latest Service Pack:  (0)
    2014-06-20 08:18:39 - Platform ID of the operating system:  (2)
    2014-06-20 08:18:39 - Product suites available on the operating system:  (0X10=16)
    2014-06-20 08:18:39 - Product type of the operating system: VER_NT_DOMAIN_CONROLLER
    2014-06-20 08:18:39 - Product type:  (0X21=33)
    2014-06-20 08:18:39 - OS type:  (0)
    2014-06-20 08:18:39 - Configuring the application's property sheet...
    2014-06-20 08:18:39 - Check whether the following prerequisite is installed:
    2014-06-20 08:18:39 - Windows Management Framework 3.0
    2014-06-20 08:18:39 - Reading the following string value/name...
    2014-06-20 08:18:39 - PowerShellVersion
    2014-06-20 08:18:39 - from the following registry location...
    2014-06-20 08:18:39 - SOFTWARE\Microsoft\PowerShell\3\PowerShellEngine
    2014-06-20 08:18:39 - The value is... 
    2014-06-20 08:18:39 - 4.0
    2014-06-20 08:18:39 - A higher version of the prerequisite above is already installed
    2014-06-20 08:18:39 - Check whether the following prerequisite is installed:
    2014-06-20 08:18:39 - Microsoft .NET Framework 4.5
    2014-06-20 08:18:39 - Reading the following DWORD value/name...
    2014-06-20 08:18:39 - Install
    2014-06-20 08:18:39 - from the following registry location...
    2014-06-20 08:18:39 - SOFTWARE\Microsoft\Net Framework Setup\NDP\V4\full
    2014-06-20 08:18:39 - The value is (1)
    2014-06-20 08:18:39 - Reading the following string value/name...
    2014-06-20 08:18:39 - Version
    2014-06-20 08:18:39 - from the following registry location...
    2014-06-20 08:18:39 - SOFTWARE\Microsoft\Net Framework Setup\NDP\V4\full
    2014-06-20 08:18:39 - The value is... 
    2014-06-20 08:18:39 - 4.5.50938
    2014-06-20 08:18:39 - A post release .NET 4.5 is installed
    2014-06-20 08:18:39 - Check whether the following prerequisite is installed:
    2014-06-20 08:18:39 - Windows Identity Foundation (KB974405)
    2014-06-20 08:18:39 - Reading the following string value/name...
    2014-06-20 08:18:39 - 
    2014-06-20 08:18:39 - from the following registry location...
    2014-06-20 08:18:39 - SOFTWARE\Microsoft\Windows Identity Foundation\Setup\v3.5
    2014-06-20 08:18:39 - The value is... 
    2014-06-20 08:18:39 - 6.1.7600.0
    2014-06-20 08:18:39 - The prerequisite above is already installed
    2014-06-20 08:18:39 - Check whether the following prerequisite is installed:
    2014-06-20 08:18:39 - Microsoft Sync Framework Runtime v1.0 SP1 (x64)
    2014-06-20 08:18:39 - Reading version of the following file...
    2014-06-20 08:18:39 - C:\Windows\assembly\GAC_MSIL\Microsoft.Synchronization\1.0.0.0__89845dcd8080cc91\Microsoft.Synchronization.dll
    2014-06-20 08:18:39 - The version is...
    2014-06-20 08:18:39 - 1.0.1215.0
    2014-06-20 08:18:39 - Check whether the following prerequisite is installed:
    2014-06-20 08:18:39 - Microsoft SQL Server 2008 R2 SP1 Native Client
    2014-06-20 08:18:39 - Reading the following string value/name...
    2014-06-20 08:18:39 - Version
    2014-06-20 08:18:39 - from the following registry location...
    2014-06-20 08:18:39 - SOFTWARE\Microsoft\Microsoft SQL Server\SQLNCLI10\CurrentVersion
    2014-06-20 08:18:39 - The value is... 
    2014-06-20 08:18:39 - 10.0.1600.22
    2014-06-20 08:18:39 - Check whether the following prerequisite is installed:
    2014-06-20 08:18:39 - Windows Server AppFabric
    2014-06-20 08:18:39 - Reading the following string value/name...
    2014-06-20 08:18:40 - ProductVersion
    2014-06-20 08:18:40 - from the following registry location...
    2014-06-20 08:18:40 - SOFTWARE\Microsoft\AppFabric\V1.0
    2014-06-20 08:18:40 - Check whether the following prerequisite is installed:
    2014-06-20 08:18:40 - Windows Identity Foundation (KB974405)
    2014-06-20 08:18:40 - Reading the following string value/name...
    2014-06-20 08:18:40 - 
    2014-06-20 08:18:40 - from the following registry location...
    2014-06-20 08:18:40 - SOFTWARE\Microsoft\Microsoft Identity Extensions\Setup\1.0
    2014-06-20 08:18:40 - Check whether the following prerequisite is installed:
    2014-06-20 08:18:40 - Microsoft Information Protection and Control Client
    2014-06-20 08:18:40 - Reading the following string value/name...
    2014-06-20 08:18:40 - 
    2014-06-20 08:18:40 - from the following registry location...
    2014-06-20 08:18:40 - SOFTWARE\Microsoft\MSIPC\CurrentVersion
    2014-06-20 08:18:40 - Check whether the following prerequisite is installed:
    2014-06-20 08:18:40 - Microsoft WCF Data Services 5.0
    2014-06-20 08:18:40 - Reading the following string value/name...
    2014-06-20 08:18:40 - Version
    2014-06-20 08:18:40 - from the following registry location...
    2014-06-20 08:18:40 - SOFTWARE\Wow6432Node\Microsoft\Microsoft WCF Data Services\5.0
    2014-06-20 08:18:40 - Check whether the following prerequisite is installed:
    2014-06-20 08:18:40 - Cumulative Update Package 1 for Microsoft AppFabric 1.1 for Windows Server (KB2671763)
    2014-06-20 08:18:40 - Reading the following DWORD value/name...
    2014-06-20 08:18:40 - IsInstalled
    2014-06-20 08:18:40 - from the following registry location...
    2014-06-20 08:18:40 - SOFTWARE\Wow6432Node\Microsoft\Updates\AppFabric 1.1 for Windows Server\KB2671763
    2014-06-20 08:18:44 - Beginning download/installation
    2014-06-20 08:18:44 - Created thread for installer
    2014-06-20 08:18:44 - "C:\Windows\system32\ServerManagerCmd.exe" -inputpath "C:\Users\ADMINI~1\AppData\Local\Temp\2\Pre6515.tmp.XML"
    2014-06-20 08:18:45 - Install process returned (0X3EB=1003)
    2014-06-20 08:18:45 - [In HRESULT format] (0X800703EB=-2147023893)
    2014-06-20 08:18:45 - "C:\Windows\Microsoft.NET\Framework64\v4.0.30319\aspnet_regiis.exe" -i
    2014-06-20 08:18:45 - Request for install time of Application Server Role, Web Server (IIS) Role
    2014-06-20 08:18:46 - Request for install time of Application Server Role, Web Server (IIS) Role
    2014-06-20 08:18:47 - Request for install time of Application Server Role, Web Server (IIS) Role
    2014-06-20 08:18:48 - Request for install time of Application Server Role, Web Server (IIS) Role
    2014-06-20 08:18:49 - Request for install time of Application Server Role, Web Server (IIS) Role
    2014-06-20 08:18:50 - Request for install time of Application Server Role, Web Server (IIS) Role
    2014-06-20 08:18:51 - Request for install time of Application Server Role, Web Server (IIS) Role
    2014-06-20 08:18:52 - Request for install time of Application Server Role, Web Server (IIS) Role
    2014-06-20 08:18:53 - Request for install time of Application Server Role, Web Server (IIS) Role
    2014-06-20 08:18:54 - Request for install time of Application Server Role, Web Server (IIS) Role
    2014-06-20 08:18:55 - Request for install time of Application Server Role, Web Server (IIS) Role
    2014-06-20 08:18:56 - Request for install time of Application Server Role, Web Server (IIS) Role
    2014-06-20 08:18:57 - Request for install time of Application Server Role, Web Server (IIS) Role
    2014-06-20 08:18:58 - Request for install time of Application Server Role, Web Server (IIS) Role
    2014-06-20 08:18:59 - Request for install time of Application Server Role, Web Server (IIS) Role
    2014-06-20 08:19:00 - Request for install time of Application Server Role, Web Server (IIS) Role
    2014-06-20 08:19:01 - Request for install time of Application Server Role, Web Server (IIS) Role
    2014-06-20 08:19:02 - Install process returned (0)
    2014-06-20 08:19:02 - [In HRESULT format] (0)
    2014-06-20 08:19:02 - "C:\Windows\system32\cscript.exe" "C:\Windows\system32\iisext.vbs" /enext "ASP.NET v4.0.30319"
    2014-06-20 08:19:02 - Request for install time of Application Server Role, Web Server (IIS) Role
    2014-06-20 08:19:03 - Request for install time of Application Server Role, Web Server (IIS) Role
    2014-06-20 08:19:04 - Install process returned (-2146646015)
    2014-06-20 08:19:04 - [In HRESULT format] (-2146646015)
    2014-06-20 08:19:04 - Error when enabling ASP.NET v4.0.30319
    2014-06-20 08:19:04 - Last return code (-2146646015)
    2014-06-20 08:19:04 - Reading the following DWORD value/name...
    2014-06-20 08:19:04 - Flags
    2014-06-20 08:19:04 - from the following registry location...
    2014-06-20 08:19:04 - SOFTWARE\Microsoft\Updates\UpdateExeVolatile
    2014-06-20 08:19:04 - Reading the following string value/name...
    2014-06-20 08:19:04 - PendingFileRenameOperations
    2014-06-20 08:19:04 - from the following registry location...
    2014-06-20 08:19:04 - SYSTEM\CurrentControlSet\Control\Session Manager
    2014-06-20 08:19:04 - Reading the following registry location...
    2014-06-20 08:19:04 - SOFTWARE\Microsoft\Windows\CurrentVersion\WindowsUpdate\Auto Update\RebootRequired
    2014-06-20 08:19:04 - Error: The tool was unable to install Application Server Role, Web Server (IIS) Role.
    2014-06-20 08:19:04 - Last return code (-2146646015)
    2014-06-20 08:19:04 - Options for further diagnostics: 1. Look up the return code value 2. Download the prerequisite manually and verify size downloaded by the prerequisite installer. 3. Install the prerequisite manually from the given location without any
    command line options.
    2014-06-20 08:19:04 - Cannot retry
    2014-06-20 08:19:04 - Check whether the following prerequisite is installed:
    2014-06-20 08:19:04 - Windows Management Framework 3.0
    2014-06-20 08:19:04 - Reading the following string value/name...
    2014-06-20 08:19:04 - PowerShellVersion
    2014-06-20 08:19:04 - from the following registry location...
    2014-06-20 08:19:04 - SOFTWARE\Microsoft\PowerShell\3\PowerShellEngine
    2014-06-20 08:19:04 - The value is... 
    2014-06-20 08:19:04 - 4.0
    2014-06-20 08:19:04 - A higher version of the prerequisite above is already installed
    2014-06-20 08:19:04 - Check whether the following prerequisite is installed:
    2014-06-20 08:19:04 - Microsoft .NET Framework 4.5
    2014-06-20 08:19:04 - Reading the following DWORD value/name...
    2014-06-20 08:19:04 - Install
    2014-06-20 08:19:04 - from the following registry location...
    2014-06-20 08:19:04 - SOFTWARE\Microsoft\Net Framework Setup\NDP\V4\full
    2014-06-20 08:19:04 - The value is (1)
    2014-06-20 08:19:04 - Reading the following string value/name...
    2014-06-20 08:19:04 - Version
    2014-06-20 08:19:04 - from the following registry location...
    2014-06-20 08:19:04 - SOFTWARE\Microsoft\Net Framework Setup\NDP\V4\full
    2014-06-20 08:19:04 - The value is... 
    2014-06-20 08:19:04 - 4.5.50938
    2014-06-20 08:19:04 - A post release .NET 4.5 is installed
    2014-06-20 08:19:04 - Check whether the following prerequisite is installed:
    2014-06-20 08:19:04 - Windows Identity Foundation (KB974405)
    2014-06-20 08:19:04 - Reading the following string value/name...
    2014-06-20 08:19:04 - 
    2014-06-20 08:19:04 - from the following registry location...
    2014-06-20 08:19:04 - SOFTWARE\Microsoft\Windows Identity Foundation\Setup\v3.5
    2014-06-20 08:19:04 - The value is... 
    2014-06-20 08:19:04 - 6.1.7600.0
    2014-06-20 08:19:04 - The prerequisite above is already installed
    2014-06-20 08:19:04 - Check whether the following prerequisite is installed:
    2014-06-20 08:19:04 - Microsoft Sync Framework Runtime v1.0 SP1 (x64)
    2014-06-20 08:19:04 - Reading version of the following file...
    2014-06-20 08:19:04 - C:\Windows\assembly\GAC_MSIL\Microsoft.Synchronization\1.0.0.0__89845dcd8080cc91\Microsoft.Synchronization.dll
    2014-06-20 08:19:04 - The version is...
    2014-06-20 08:19:04 - 1.0.1215.0
    2014-06-20 08:19:04 - Check whether the following prerequisite is installed:
    2014-06-20 08:19:04 - Microsoft SQL Server 2008 R2 SP1 Native Client
    2014-06-20 08:19:04 - Reading the following string value/name...
    2014-06-20 08:19:04 - Version
    2014-06-20 08:19:04 - from the following registry location...
    2014-06-20 08:19:04 - SOFTWARE\Microsoft\Microsoft SQL Server\SQLNCLI10\CurrentVersion
    2014-06-20 08:19:04 - The value is... 
    2014-06-20 08:19:04 - 10.0.1600.22
    2014-06-20 08:19:04 - Check whether the following prerequisite is installed:
    2014-06-20 08:19:04 - Windows Server AppFabric
    2014-06-20 08:19:04 - Reading the following string value/name...
    2014-06-20 08:19:04 - ProductVersion
    2014-06-20 08:19:04 - from the following registry location...
    2014-06-20 08:19:04 - SOFTWARE\Microsoft\AppFabric\V1.0
    2014-06-20 08:19:04 - Check whether the following prerequisite is installed:
    2014-06-20 08:19:04 - Windows Identity Foundation (KB974405)
    2014-06-20 08:19:04 - Reading the following string value/name...
    2014-06-20 08:19:04 - 
    2014-06-20 08:19:04 - from the following registry location...
    2014-06-20 08:19:04 - SOFTWARE\Microsoft\Microsoft Identity Extensions\Setup\1.0
    2014-06-20 08:19:04 - Check whether the following prerequisite is installed:
    2014-06-20 08:19:04 - Microsoft Information Protection and Control Client
    2014-06-20 08:19:04 - Reading the following string value/name...
    2014-06-20 08:19:04 - 
    2014-06-20 08:19:04 - from the following registry location...
    2014-06-20 08:19:04 - SOFTWARE\Microsoft\MSIPC\CurrentVersion
    2014-06-20 08:19:04 - Check whether the following prerequisite is installed:
    2014-06-20 08:19:04 - Microsoft WCF Data Services 5.0
    2014-06-20 08:19:04 - Reading the following string value/name...
    2014-06-20 08:19:04 - Version
    2014-06-20 08:19:04 - from the following registry location...
    2014-06-20 08:19:04 - SOFTWARE\Wow6432Node\Microsoft\Microsoft WCF Data Services\5.0
    2014-06-20 08:19:04 - Check whether the following prerequisite is installed:
    2014-06-20 08:19:04 - Cumulative Update Package 1 for Microsoft AppFabric 1.1 for Windows Server (KB2671763)
    2014-06-20 08:19:04 - Reading the following DWORD value/name...
    2014-06-20 08:19:04 - IsInstalled
    2014-06-20 08:19:04 - from the following registry location...
    2014-06-20 08:19:04 - SOFTWARE\Wow6432Node\Microsoft\Updates\AppFabric 1.1 for Windows Server\KB2671763
    2014-06-20 08:19:45 - Opening log file
    2014-06-20 08:19:45 - Opened action for user
    2014-06-20 08:19:45 - C:\Users\ADMINI~1\AppData\Local\Temp\2\prerequisiteinstaller.2014.06.20-08.18.39.log

  • Firefox 4 is freezing on GMail tab at frequent intervals on Windows 7, resulting in a message "Program not responding". Remains open but becomes unresponsive for a fill minutes or seconds. And problem repeat, repeat...

    Firefox 4 is freezing on GMail tab at frequent intervals on Windows 7, resulting in a message "Program not responding".
    Remains open but becomes unresponsive for a fill minutes or seconds. And problem repeat, repeat...

    Check this out;
    http://www.clamxav.com/ free malware scanner for Mac OS X
    https://discussions.apple.com/docs/DOC-3291

  • Creation of PDF from Excel 2013 - problem with black color

    Hi,
    I am a publisher of crossword magazine and I use Excel to write crosswords. Then I create PDF's and import them into InDesign.  
    In past I used Adobe printer and it works fine with Excel 2000 and 2010 (only these two versions I used in past) Now I switched to Excel 2013 and when I use Adobe printer to print crosswords into PDF problem occurs with lines done in Excel (insert - shapes - line). I use black color for these lines but in PDF they appears as rich black (TIC 300%). Why it is not 100% black? I know that Excel works in RGB but in past I was always able to change settings in printer profiles (Adobe printer) to reach 100 % black without CMY colors. Now I have no idea. I attached picture of pdf how it looks in Adobe Acrobat in Outpur preview.
    Thank you in advance for any advice

    These are tough issues I suspect and the answer you need is probably trivial (it is finding it). I will make some suggestions, but I have no idea if any will work.
    -  In the printer under the Properties>Layout>Advanced>print quality, I use 300 dpi (default is 1200).
    - Under the printer preferences>settings>edit the settings file, I use again 300 dpi (default is 1200 dpi).
    These may not fix your issue, but migth be worth a try. You could also try using the preflight script to change to gray-scale. It may not make any changes, but again may be worth a try.
    All I am trying to suggest are the things I would be looking at. Maybe they will lead you someplace. Others may be by with better suggestions in time.

Maybe you are looking for

  • Reading records from excel

    hi all, i am using Forms [32 Bit] Version 6.0.8.24.1 (Production). i am uploading data from excel to form(record wise)and saving. now i am reading the data from 2nd row by assuming that 1st row followed with columns titles.But, my question is we cann

  • IPhoto Locks Up

    Here is what happens (iPhoto 6.02 and OS 10.4.6): 1) iPhoto starts and organizes itself, then after a few seconds it send up the "Alert...the movie x or photo y could not be opened, because the original item cannot be found." 2) I find the photo. It

  • How do you reset your autolock password?

    my phone has been disabled for an hour and i recently changed my password so how do you reset it

  • OWSM Policy - how to access subject from within protected service

    I am setting up a new instance of SOA Suite 11g for integration purposes at my organization. I am planning to use predefined WSM policies to protect the services (see http://download.oracle.com/docs/cd/E12839_01/web.1111/b32511/policies.htm). Most co

  • Htaccess configuration

    Hello I have been trying to configure .htaccess properly but for some reason the redirect which i am giving in .htaccess is not working. i have configured as per the instruction in SUN. Can any one help me on this one. further the instance which i wa