Window size issues after migrating for 15 to 13

I have moved from a 15 inch MBP to a 13 and some of applications have kept the same settings from the previous computer. For the most part this is great but some windows are too big for the display eg itunes. I cannot get at the resize bit on the window and the green + is not helping. Is there a shortcut or menu that will help me get the window the right size.

Head to the "Windows" menu in iTunes and click on "Zoom", Will. The same applies in most other properly written applications for the Mac.
Cheers
Rod

Similar Messages

  • Issue after Migration: ID and Content-ID are different in SOAP Payload

    Hi Experts,
    I am facing a strange issue in the PI landscape after the migration from XI 3.0 to PI 7.1.
    The scenario is from R/3 system to TIBCO System (Proxy-to-SOAP). The TIBCO system receives the file in SOAP Format. The message is sent from PI via SOAP adapter to TIBCO System.
    There is a attachment coming from the R/3 System along with the main message and the main payload/message has a "attachment-ID" as a field. Earlier what used to happen in XI 3.0 that the "Attachment-ID" used to equal to the "Content-ID" when the SOAP payload was generated at the TIBCO end. Now after migration, in PI 7.1 the "Attachment-ID" and "Content-ID" are different. We have control over the "Attachment-ID" as it is coming from the source payload but we do not have any control over the "Content-ID" as we are not creating it.
    Can anyone of you please let me know how the SOAP Payload is created and how the content-ID gets populated in the Header of the SOAP Envelope? Also, can anyone help me to fix this issue? Is it something which needs to be handled by us or the BASIS Team?
    Thanks,
    Arkesh
    Edited by: Arkesh Sharma on Dec 16, 2011 12:53 PM

    Hi Ramesh,
    Thank You for the very Helpful Answer. Before I proceed and close this thread, I have one more question which comes to my mind:
    I create my own SOAP Header if I apply the solution provided by you then will the rest of the details in the SOAP Header payload will change or do I need to customize it for myself? For e.g., there is a field named MessageId in the SOAP Header. If I write a Java Mapping, do I need to manually populate the MessageId field in the SOAP Header of my java code or will it be automatically populated?
    My requirement is to change only the content ID of the SOAP Header Payload and the rest of the fields should remain the same as it is. Is it possible with the approach that you mentioned above?
    Thanks,
    Arkesh

  • Mail Enabled Public Folder Issues after migration online

    Hi
    We have recently migrated our Legacy (Exchange 2010) Public Folder Infrastructure to Exchange Online - we have a hybrid setup, SSO and DirSync.
    We initially had an issue where some of our mail enabled public folders had lost their link with the associated MailPublicFolder objects and as such could not receive email. 
    We resolved this issue ourselves however we are now experiencing a different issue which i believe should be easily resolvable however this isn't the case at the minute.
    The issue is that when a user emails a Mail Enabled Public folder Exchange online is attempting to relay the email back to our onPrem servers.  This is occuring for the bulk of our Mail Enabled Public Folders - we have ~1200 of these.  The only
    folders that are working as expected are those that had the initial issue above and for which we had to remove and re mail enable these folders.  We also had to recreate any secondary smtp address for these folders.  This accounts for 88 of our total
    MEPFs.
    I have checked the attributes on the MailPublicFolder objects for those that are not working and those that are functioning as expected.  The only difference in these that I can see is that the MEPFs with the issue have a value set in the ExternalEmailAddressAttribute.
    I have tried to programatically set this value to $Null however i receive the following error:
    The external e-mail address $null is not an SMTP e-mail address.
    I have also tried the following : set-mailpublicfolder -Identity "MEPF"-ExternalEmailAddress "<not set>"
    with the same resultAttempting to use the following syntax -externalemailaddress @{remove=$oldAddress} returns the following error:
    Cannot process argument transformation on parameter 'ExternalEmailAddress'.Cannot convert the "System.Collections.Hashtable" value of type"System.Collections.Hashtable" to type "Microsoft.Exchange.Data.ProxyAddress".
    At present the only fix that I have for this is to take a copy of the email addresses for an affected public folder, Mail disable it, wait for the object to be cleared, re-enable the public folder as a mail public folder and then re-add the email addresses. 
    This is ok on an adhoc basis but not for the ~1200 folders that are affected.  Especially when from what i can see it should be relatively straightforward to resolve this with a simple PowerShell script.
    I do have a case open with MS for this but I am hoping that somebody here can help also.
    Thanks
    Joe

    Ok so i fixed it myself.
    The thinking here is that the ExternalEmailAddress was set using the Primary SMTP address while the Public Folders were on premises.
    In order to get the required information we ran a script to export all the MailPublicFolder objects which had a value in the ExternalEmailAddress attribute.  We exported the Name, ExternalEmailAddress and GUID
    We then ran a second script to export the Identity, MailRecipientGuid from Get-PublicFolder -recurse. 
    The MailRecipientGUID is what ties the Mail Enabled Public folder to the MailPublicFolder object.
    Using Excel I then matched the two up and created a csv file with the Identity Attribute from the get-PublicFolder command and the ExternalEmailAddress Attribute from Get-MailPublicFolder.
    The following script then used this csv file to first Mail Disable the Public Folder, then Mail Enable the Public Folder.
    Once these steps have been completed the final stage is to add the SMTP address back in to the Public folder.
    To do this it is necessary to retrieve the new MailRecipientGUID and use it to return the MailPublicFolder for the Set-MailPublicFolder command.
    I was happy to use this script after i tested with a small subset of the data.  It is provided as is with no guarantee that it will be suitable for you to use and any use of this script is at your own risk.
    Script to Automatically fix brokenn Public Folder Objects
    Created By: Joe McGrath
    Created On: 18/02/2014
    $Path = "C:\PublicFolders.csv"
    import-csv -Path $Path | ForEach-Object `
        Disable-MailPublicFolder -identity $_.Identity -Confirm:$False
    Write-Host "Broken Public Folders Now Mail Disabled"
    Write-Host "Waiting for commands to be fully processed online - the script will continue in 5 minutes"
    Start-Sleep 300
    Write-Host "Re MailEnabling Public Folders"
    import-csv -Path $Path | ForEach-Object `
        Enable-MailPublicFolder -identity $_.Identity
    Write-host "Broken Public Folders now enabled"
    Write-Host "Now waiting to allow online service to catch up - script will continute in 5 minutes"
    Start-Sleep 300
    Write-Host "Updating email addresses for broken public folders"
    import-csv -Path $Path | ForEach-Object `
        $NewPF = get-publicfolder -identity $_.Identity
        Write-Host $NewPF.Identity
        Write-host $newPF.MailRecipientGuid
        $EmailAddresses = $_.AdditionalEMailAddresses
        $NewMailPF = get-MailPublicFolder -resultsize unlimited | Where-Object {$_.Guid -eq $NewPF.MailRecipientGuid}
        Set-MailPublicFolder -identity $NewMailPF.identity -EmailAddressPolicyEnabled:$FALSE
        Set-MailPublicFolder -identity $NewMailPF.identity -EmailAddresses $EmailAddresses -EmailAddressPolicyEnabled:$FALSE
        Set-MailPublicFolder -identity $NewMailPF.identity -EmailAddressPolicyEnabled:$TRUE
        $EmailAddresses = ""
    Write-Host "Completed!"

  • ITunes 11.0.1 window size issue

    The window size on my copy of iTunes 11.0.1 has stretched beyond the bottom of the screen.  I am no longer able to resize the window except in width.  This came about when I lowered the window until only the top of the menu bar was exposed at the bottom of my screen.  I did not bring iTunes back up for a few days during which time I had watched a few movies on my Apple TV.
    When I brought it back up, the lower edge of the iTunes window stretched below the bottom of my display (Samsung 24 inch 1900x1280).  I have shut down my system and brought it all back up.  When I restart iTunes, the window size problem remains.  Even when I maximize the window, the bottom is still below the edge of the display.
    Any suggestions?
    Charlie

    Can you resize from the top down then drag the whole window up?

  • Form "window"  Menu changed after  Migration

    Hi All,
    I have migrated form 6i to 10g.After migration the forms WINDOW menu contain a menu item (which is a radio button ) called FILLER_WINDOW.
    Client wants to disable this menu item.
    Can i disable it?
    Thanks in advance.

    Hi,
    Can you please let me know how as i'm not able to find this menu item in .MMB.
    Thanks,
    DK

  • Printing Issue after Migrating to Windows 7

    I just migrated to Windows 7 and have received the below issue in only SAP
    I have granted all users access in the securities tab.
    (12:06:17 PM) Number of processors: 4
    (12:06:17 PM) Icon DLL loaded.
    (12:06:17 PM)
    (12:06:17 PM) Network Communication via SAP-NiLib
    (12:06:17 PM) Hostname:
    (12:06:17 PM) IP Address:
    (12:06:17 PM)
    (12:06:17 PM) SAPLPD Version 6.29 for Windows/NT (OPT) is listening
    (12:06:17 PM) OS-Info: version = 6.1, build = 0/7601, text = Service Pack 1
    (12:06:17 PM) Copyright © 1992-2001 SAP AG
    (12:06:17 PM)
    (12:06:28 PM)
    (12:06:28 PM) Receive job for printer __DEFAULT (Berkeley LPD protocol / RFC1179)
    (12:06:28 PM) send_status called
    (12:06:28 PM) send_status called
    (12:06:29 PM) send_status called
    (12:06:30 PM) send_status called
    (12:06:31 PM) send_status called
    (12:06:31 PM) Job 00PSLhcf.PN1 for user ######### queued.
    (12:06:31 PM) Start printing job 00PSLhcf.PN1 on printer HP PHOTOSMART C5200 SERIES
    (12:06:31 PM) Error: Error -1 from NEWFRAME. Disk full?
    (12:06:31 PM) Error: put_block failed at new_page()
    (12:06:31 PM) Error: BG: saplpd_close_dc failed, msg = 808 SAPLPD:Windows Problem, siehe SAPLPD Protokoll
    When I close this window, the paper will spool up in the printer like it is about to print, but never does.
    Thanks in advance!

    Hello Alyssa,
    You can use the link below:
    [821519 |http://service.sap.com/sap/support/notes/821519 ]
    and
    [128105 |http://service.sap.com/sap/support/notes/128105]
    BR,
    Jude
    Edited by: Jude Bradley on Dec 7, 2011 3:49 PM
    Edited by: Jude Bradley on Dec 7, 2011 3:51 PM
    Edited by: Jude Bradley on Dec 7, 2011 3:52 PM
    Edited by: Jude Bradley on Dec 7, 2011 3:52 PM

  • Issues after migrating from 3.0.6.6.5 to 3.0.9.8.3A

    G'day All,
    Over the last week or so I have performed some test migrations using copies
    of our production Portal environment and here are some of the issues that I have encountered.
    ISSUE 1 - Performance
    Using a stopwatch (primitive, I know) I visited a few parts of our Portal and recorded timings
    Performance did not improve dramatically. In fact, after the 3.0.9.8.3A patch, some things slowed right down.
    I tested using a Sun Ultra 80 (2 x 450MHz CPUs) our Development host.
    (I also tested using a spare Ultra 10 (1 x 333MHz) This was MUCH slower than the numbers seen below)
    In all the timings below, I did the following:
    1.Logged on as PORTAL30 this takes me to the Portal Home page showing the Build tab
    2. Clicked on the Navigator icon
    3. From the Navigator Pages section, I clicked on our company homepage
    4. From the Main tab on the company homepage, I clicked on our Customer Service tab (one of many that we have)
    5. Click on the Ops & Security tab (another one of ours)
    6. Click on Logout
    Timings are in SECONDS. I ran thru the process at least 3 times and recorded
    the final 2 timings to allow for the first time thru populating caches etc.
    Pre migration - Portal 3.0.6.6.5 iAS 1.0.2.0.1
    Log in          4     3
    Navigator     3     3
    Homepage     3     3
    First tab     4     3
    Second tab     3     3
    Logout          1     1
    Post iAS migration - Portal 3.0.6.6.5 iAS 1.0.2.2.0
    Log in          4     3
    Navigator     3     3
    Homepage     3     3
    First tab     4     4
    Second tab     3     4
    Logout          1     1
    ** No significant difference
    Post Portal migration - Portal 3.0.9.8.2 iAS 1.0.2.2.0
    Log in          3     3
    Navigator     3     3
    Homepage     3     4
    First tab     4     4
    Second tab     3     3
    Logout          1     1
    ** No significant difference
    Post iAS Patch 1866039 Required by Portal 3.0.9.8.3A
    Log in          3     3
    Navigator     3     3
    Homepage     4     4
    First tab     4     4
    Second tab     3     3
    Logout          1     1
    ** No significant difference
    Post Portal migration - Portal 3.0.9.8.3A iAS 1.0.2.2.0
    Log in          3     3
    Navigator     19     19 !!!!!!!!
    Homepage     20     21 !!!!!!!!
    First tab     3     3
    Second tab     3     3
    Logout          1     1
    ** Bringing up Navigator and the first page from Navigator now takes ages.
    Analysing PORTAL30 objects using wwsbr_stats.gather_stats made no difference
    to the above timings.
    Anyone have any ideas about this???
    Bear in mind that this slow down probably only affects me as the
    developer since end users pretty much stick to the tabs on the homepage
    and never need to use Navigator.
    And end user login and presentation of the company homepages takes about 4 seconds.
    ISSUE 2 - Fonts
    During the migration, many of our developed forms/reports now contain headings/labels that
    are so small as to be unreadable (eg 1 point in size)
    This seems to be due to the fact that originally the fonts were sized as (-3, -2, -1, 0, +1, +2, +3)
    relative sizing. This has been screwed up during migration and has ended up as fonts
    being sized 1, 2, 3 points in size.
    I will have to visit each form and report and set sizes accordingly.
    The PEOPLE_APP application supplied by Oracle also suffers from this problem and is a little harder
    to fix. (Check Metalink)
    ISSUE 3 - Menu permissions
    I have a couple of menus that are only viewable by certain groups.
    This permission disappeared along the way leaving the menu NOT visible to anyone.
    I will have to visited each menu and set permissions once again.
    I hope this list may help others embarking on the same migration path.
    I would highly recommend copying your production environment and practising on the copy first.
    Regards,
    Tony Cook
    eSign Australia
    [email protected]

    Further to the performance problem above, I found the following bug on Metalink:
    Bug Number: 2391402
    PERFOMANCE DEGRADATION WITH 3.0.9.8.3 ON IE
    Funnily enough, this bug was meant to be addressed by the 3.0.9.8.3A patch that I had already applied.
    After reading the bug report I added the following line to httpd.conf
    BrowserMatch "MSIE" nokeepalive downgrade-1.0 force-response-1.0
    I am now seeing the following timings
    Log in          3     3
    Navigator     3     3 !!!!!!!!
    Homepage     3     3 !!!!!!!!
    First tab     3     3
    Second tab     3     3
    Logout          1     1
    There is a 15 second timeout that was adding to the response times I was seeing prior
    to making the change to the httpd.conf file eg. 19 seconds down to 3ish
    Regards,
    Tony Cook
    eSign Australia
    [email protected]

  • Serious issue after Migration Assistant

    Hi all-
    Looking for feedback as to what in **** might be going on with my MacBook Pro and how to proceed with it.
    Last weekend I bought a 27" iMac for my home office. For various reasons I did not transfer data from my laptop at the time of setup, but the next night.
    When I went to use Migration Assistant (after reading a bit on here about it), everything went fine until I actually entered the code the network code the iMac gave me and tried to start the transfer. The MacBook Pro wouldn't respond; the iMac told me it wasn't responding, and the MBP wouldn't quit Migration Assistant. Even after waiting an hour, Migration Assistant was still frozen, so I did a "hard" power off with the power button.
    When I went to restart, the drive started, startup chimed, but the screen stayed black. I had to leave for work, so hard-turned it off again and left it alone. When I returned to it last night, I got past the black screen but it would stay in grey screen for around 7-8 minutes, then alternated every 10-15 seconds between a light blue screen with the spinning spokes wheel (not rainbow) and a slightly darker blue window with no spokes. It went back and forth like this for maybe 5 minutes, so I shut the MBP off again and went through the whole process a second time with the same result.
    Since I live almost 4 hours from the nearest Apple Store, and Support was closed, I used my Snow Leopard disk to repair permissions - there were a lot of repairs. I then repaired disk, and was told the disk was fine. I restarted, same grey-light blue-dark blue issues, so reinstalled Snow Leopard.
    After the OS reinstall, everything restarted and worked fine! I did a software update, then on the second software update (which as I recall was just java and iTunes) things went south again. When I restarted after the second software update the screen did the black thing again. Keys are lighting up, chime happens, but no screen.
    The other thing that is different this time is that the green light on the power cable is not lighting up and I cannot seem to boot to the Snow Leopard disk, so I can't even get back to the post-OS-reinstall-pre-software-update stage again to get my data off the machine.
    Not sure what to do next! This sound like a clear-cut issue of the X or the Y to anyone? Any feedback is appreciated.
    With blessings,
    Matthew

    Did you use Setup Assistant when your new Mac first started up, or skip that, create a user account, then use the Migration Assistant app in your Applications/Utilties folder?
    If you used Setup Assistant, when you started your first backup you should have gotten the message in #B5 of Time Machine - Troubleshooting.  It sounds like you didn't (or chose Start New Backup).  And no, the Leopard procedure doesn't work on Snow Leopard.  That's what #B5 is for.
    Usually, if you use Setup Assistant, Time Machine will still say it's going to do a full backup, and make room for it, but actually do an incremental backup (very, very slowly).
    Either way, it usually deletes a lot of old backups.    We're hoping that will be fixed in Lion.
    Once it's decide to make a new backup, there's no known way to prevent it.

  • Permissions issues after migration

    I've just got hold of a new retina MBP, and have had a number of issues since using setup assistant to transfer everything over from my old MBP to my new MBP.
    I suspect these are all permissions based - but would appreciate some help from an expert.  My conviction that they are all permissions related is because initially I had an issue with not being able to access certain folders and applications (including Mail), which was resolved by my adding my user name to the Sharing and Permissions info section of the Home and Applications folders, and applying changes to all contents.
    However these issues still remain:
    TopSites in Safari not updating to show that the websites have changed.
         - This despite me trashing the TopSites plist from library, and emptying the cache.
    My Epson scanner won't open.
         - When I plug it in and open the application it tells me it cannot 'write to file', and then shuts itself down.
    When I open iPhoto I always get the welcome message, and I can't find an option not to show this on start-up.
         - It's like the MBP doesn't register that I'm not using iPhoto for the first time, even though everything else works fine.
    I always get a file - cache.db - sitting on the top of my Home file.
         - I can trash it but it always pops back.
    My Address Book won't update.
         - iCal updates fine, and my updates are changed on iCloud but I can't get the Address Book to pick up changes on my MBP.
    When I reboot and open Mail it always opens the latest email at the time of my original migration
         - and not the latest or the unread at the top.
    I'd be grateful if any experts out there could offer up any solutions to these riddles.

    The procedure below will reset the permissions of a home folder in OS X 10.7.4 or later. If you're running an earlier version of 10.7, update to the current version first. This procedure should not be used in OS X versions older than 10.7.4.
    Back up all data.
    Click the Finder icon in the Dock, then press the following key combinations, in the order given:
    Command-3
    Shift-command-H
    Command-I
    The Info window of your home folder will open. Click the lock icon in the lower right corner and authenticate with the name and login password of an administrator on the system. If you have only one user account, you are the administrator.
    In the Sharing & Permissions section of the window, verify that you have "Read & Write" privileges. If not, use the "+" and "-" buttons in the lower left corner to make the necessary changes.
    By default, the groups "staff" and "everyone" have "Read Only" privileges. With those settings, the files at the top level of your home folder will be readable by other local users. You can change the privileges to "No Access" if you wish, but then your Public and Drop Box folders will be inaccessible to others, and Personal Web Sharing won't work. Most likely, you don't need to change these settings.
    If there are entries in the Sharing & Permissions list for users or groups besides "me," "staff," and "everyone," delete them.
    Click the gear icon at the bottom of the Info window and select Apply to enclosed items... from the drop-down menu. Confirm. The operation may take several minutes to complete. When it does, close the Info window.

  • Amd64 file error; Windows Update issue after most recent Microsoft update, can you please assist?

    received this error after running error report.  Got this error from my sfcdetail report:  Cannot repair member file [l:36{18}]"Amd64\CNBJ2530.DPB" of prncacla.inf, Version = 6.3.9600.16384, pA = PROCESSOR_ARCHITECTURE_AMD64 (9), Culture
    neutral, VersionScope = 1 nonSxS, PublicKeyToken = {l:8 b:31bf3856ad364e35}, Type = [l:24{12}]"driverUpdate", TypeName neutral, PublicKey neutral in the store, hash mismatch
    2014-12-22 19:31:46, Info                  CSI    000008cb [SR] Cannot repair member file [l:36{18}]"Amd64\CNBJ2530.DPB" of prncacla.inf, Version =
    6.3.9600.16384, pA = PROCESSOR_ARCHITECTURE_AMD64 (9), Culture neutral, VersionScope = 1 nonSxS, PublicKeyToken = {l:8 b:31bf3856ad364e35}, Type = [l:24{12}]"driverUpdate", TypeName neutral, PublicKey neutral in the store, hash mismatch            
    HAVE NO IDEA WHERE TO GET A GOOD COPY OF THIS FILE.  I TRIED TO DO AS MUCH TROUBLE SHOOTING AS POSSIBLE.       ***UNDER CONTRACT****

    This issue still exists!  My issue has not been resolved and is only getting worse.  I'm now receiving a windows update standalone installer- installed encountered error 08x00704c7 server execution error.  In addition, I am unable to attach
    to Microsoft's server?????  I received nothing that would have helped me to answer my question in my inbox and I did make additional comments on this page for this issue.  
    It was stated that I was unable to run the dism command!!!!!!!!! Rights issue?  Windows update is not functioning either (see above)
    Thanks for you help thus far I am still trying  to copy some data into this problem to include with the issue.
    s.hamel

  • SQL Performance Issues after migrating to 10.2.0.3 from 9i

    Hi,
    We recently migrated our database from 9i (9.2.0.8) to 10.2.0.3 (Test Environment), we have Windows 32 bit server on RAC+ASM, we have noticed several of our SQL which ran prettry efficiently in 9i are just taking hours to complete. I opened a SR with Oracle support and it is still WIP, but I would like to ask if anyone has similar kind of experience and what they did to resolve it ? Any feedback is appreciated.
    Regards
    Mansoor

    The first thing to do would be to take a SQL Trace of the same SQL from both 9i and 10g installations and compare the results. That should give you the clue as to where to look for.
    Also, it is always recommended to gather the statistics after an upgrade in major version. I hope it is done already.

  • Constant Outlook Sync Issues After Migrating Mailbox 2003- 2010

    Hi all,
    I am trekking along with my Exchange 2010 implementation and yesterday I went ahead and migrated my mailbox from 2003 to 2010.  I am able to send/receive without issue, but I am having a lot of Sync Issues. 
    Some of the issues (conflicts) seemed to be resolved by removing and recreating my Mail profile within Control Panel, but I still get Sync Issues when sending mail.  The logs look as follows:
    11:03:51 Synchronizer Version 14.0.4760
    11:03:51 Synchronizing Mailbox 'Paul Newell'
    11:03:51 Synchronizing local changes in folder 'Drafts'
    11:03:51 Uploading to server 'CAS-HUB.domain.local'
    11:03:51 Synchronization of some deletions failed.
    11:03:51
     [0-130]
    11:03:51
       1 item(s) deleted in online folder
    11:03:51 Done
    Any ideas on what is going on and how to remedy this?  The only thing that I see that is a little odd is that the "Updating server" section has the name of my CAS/HT server, not my Mailbox server. 
    Thanks in advance! 

    Hi Andy,
    Thanks for the link.  I actually found
    this one which told how to create them via Exchange Shell.  That article also said you cannot manage Managed Folders through the EMC in 2010 SP1.  Furthermore, in my EMC (Retention Policies tab) I have an option to "Port from Managed
    Folder to Tag", which leads me to believe that the "Retention Policies" and "Retention Policy Tags" are replacing "Managed Folders".  Heck, even pressing F1 in the EMC while viewing the "Retention Policy Tags" I get a "Content cannot be found" page. 
    :p 
    I venture to believe these are the same thing though (just a different verbiage or an update to the Managed Folders) as I have a ton of default tags created that have actions such as "Delete and Allow Recovery" with an Age Limit for Retention of various
    day-lengths.  I was also able to create one here to delete items in the "Sync Issues" folder after 30 days. 
    Is this new with 2010 SP1 or did I get some crazy version that no one knows about yet?  ;) 
    Thanks again! 

  • SCEP install and policy issue (after migration SCCM 2007 to 2012)

    Hi,
    We have some terminal services which were connected to SCCM 2007.
    I migrated 3 of them (via "install client" in SCCM 2012), what worked fine. Since they become member of the Windows server group + terminal services group, they get the scep-client as well as a specific policy.
    Now we have 1 terminal server which did not install the scep client.
    Logfile:
    Failed to get EP event code under registry key SOFTWARE\Microsoft\CCM\EPAgent    EndpointProtectionAgent    21/08/2014 11:19:42    43640 (0xAA78)
    Failed to get EP event message under registry key SOFTWARE\Microsoft\CCM\EPAgent    EndpointProtectionAgent    21/08/2014 11:19:42    43640 (0xAA78)
    State 1, error code 0 and detail message are not changed, skip updating registry value    EndpointProtectionAgent    21/08/2014 11:19:42    43640 (0xAA78)
    File C:\Windows\ccmsetup\SCEPInstall.exe version is 4.5.216.0.    EndpointProtectionAgent    21/08/2014 11:19:42    43640 (0xAA78)
    Sleep 10 seconds and retry read ProductName of the AM solution    EndpointProtectionAgent    21/08/2014 11:19:42    43640 (0xAA78)
    Sleep 10 seconds and retry read ProductName of the AM solution    EndpointProtectionAgent    21/08/2014 11:19:52    43640 (0xAA78)
    Sleep 10 seconds and retry read ProductName of the AM solution    EndpointProtectionAgent    21/08/2014 11:20:02    43640 (0xAA78)
    Sleep 10 seconds and retry read ProductName of the AM solution    EndpointProtectionAgent    21/08/2014 11:20:12    43640 (0xAA78)
    Sleep 10 seconds and retry read ProductName of the AM solution    EndpointProtectionAgent    21/08/2014 11:20:22    43640 (0xAA78)
    Unable to query registry value (ProductName), return (0x80070002) means EP client is NOT installed successfully.    EndpointProtectionAgent    21/08/2014 11:20:32    43640 (0xAA78)
    So I installed the client manually via "SCEPInstall.exe /policy z:\client\ep_defaultpolicy.xml" (after a pushd \\sccmserver\c$\...client\).
    2 things:
    1.any idea why it wouldn't install "failed to get EP event code under reigstry key" ..?
    2.specific scep terminal server policy will be applied afterwards (file exclusions etc), right (don't see it yet and refreshed policy several times)?
    J.
    Jan Hoedt

    Hi,
    I have seen a temporary solution, created a package with the command line: REG add “HKLM\SOFTWARE\Microsoft\Microsoft Security Client” and deployed this program to the Client.
    We
    are trying to better understand customer views on social support experience, so your participation in this
    interview project would be greatly appreciated if you have time.
    Thanks for helping make community forums a great place.

  • SAP GUI with SNC logon and Hummingbird Exceed - SAP GUI window size issue

    We have discovered an issue when SAP GUI 7.10 is used to logon via SNC and Hummingbird Exceed is used on the same workstation to logon to a UNIX system either via x-windows or telnet.
    When the user logs onto a UNIX system using Hummingbird Exceed, then uses SAP GUI to logon to a SAP system with SNC authentication, the SAP GUI authentication works, but the favourites list is not fully displayed and has to be resized before any of the entries are available.
    Has anybody else seen this issue, and do they know if there is a fix available ? We wondered if there might be an issue with fonts or some other sort of conflict between Exceed and SAP GUI, but it is strange that the problem only occurs if SNC authentication is being used, and when userid+password is used to logon to SAP the problem does not occur.
    Cheers,
    Tim

    Hello Tim and Wolfgang,
    I was curious too as I found it interesting... so I tested a few combinations, but could not reproduce what Tim has described, at least not before my CPU reached 100% and the applications stopped responding (~2GHz processor, 1GB RAM, 48 kbps connection, latency ~ 2 x width of the Pacific Ocean, but Backend 7.00!).
    However I did notice some indications which might be a help (based on 7.00!):
    Back in 4.?? there was a problem in that large menus could not be searched(!). Sorry, I don't have access to SAP now, but from memory the note # was 444043 (or very similar) and introduced a form routine for large menus - from a printscreen I still have the message number which led me to the note - 'I476(S#)'.
    The system certainly distinguishes between MENU_TYPEs and the above note corrections could be found in several locations relating to the SAP menu 'S', the role menu 'A' etc, but I could only see that for favourites 'F' this is implemented for the menu search (when searching, not when loading).
    @ Tim: Ask you customer to create a favourites menu which only has 1 node or max 2 (certainly not more than 4!) and ~ 20 executable objects in it (not more than 30!)? Can they under any conditions achieve the described problem with such a menu?
    If not possible to reproduce, then the closest I could guess is a maximum limit of 4 nodes and max 30 objects for a 'F'avourite menu, before it is a minimum candidate for "performance problems" and consideration to be converted to a role ('A'ctivity group) menu instead.
    Sorry that I can only help by speculating, because I could not reproduce what you have described.
    Hopefully this problem will not happen to me in the New Year, and hope you will solve it for the rest of the year
    Cheers,
    Julius
    Updated memory (not RAM) by: Julius Bussche on Jan 3, 2008 9:07 AM

  • Multiple problems: can't open two windows, browser doesn't close although window disappears, and after working for a while I loose my ability to cut and paste or use drop down arrows

    Maybe two weeks ago I discovered that I could no longer open two windows at a time (I can still open multiple tabs). I am also having problems with cutting and pasting, which is crucial to my on-line job. Plus, when I exit Firefox, it doesn't always shut down, so then when you go to re-open, of course, it won't (unless you go into process and turn it off). I have re-installed multiple times and I have also used restore. Nothing seems to be fixing this and I really, really don't want to use IE, especially for work.

    Start Firefox in [[Safe Mode]] to check if one of your add-ons is causing your problem (switch to the DEFAULT theme: Tools > Add-ons > Themes).
    * Don't make any changes on the Safe mode start window.
    See
    * [[Troubleshooting extensions and themes]]
    * [[Troubleshooting plugins]]
    If it does work in Safe-mode then disable all your extensions and then try to find which is causing it by enabling one at a time until the problem reappears.
    * Use "Disable all add-ons" on the [[Safe mode]] start window to disable all extensions.
    * Close and restart Firefox after each change via "File > Exit" (Mac: "Firefox > Quit"; Linux: "File > Quit")
    See also "Hang at exit":
    * http://kb.mozillazine.org/Firefox_hangs
    * [[Firefox hangs]]
    Maybe also do a malware check with a few malware scan programs.<br />
    You need to use all programs because each detects different malware.<br />
    Make sure that you update each program to get the latest version of the database before doing a scan.<br />
    * http://www.malwarebytes.org/mbam.php - Malwarebytes' Anti-Malware
    * http://www.superantispyware.com/ - SuperAntispyware
    * http://www.safer-networking.org/en/index.html - Spybot Search & Destroy
    * http://www.lavasoft.com/products/ad_aware_free.php - Ad-Aware Free
    * http://www.microsoft.com/windows/products/winfamily/defender/default.mspx - Windows Defender: Home Page
    See also "Spyware on Windows": http://kb.mozillazine.org/Popups_not_blocked and [[Searches are redirected to another site]]

Maybe you are looking for