Is the DA view in the console application dynamically updated?

Hi
Is the DiagramView on Distributed Applications in the console application, updated automatically if a new event occur, or does it just show the-point-in-time status when we right-clicked a system from the DA list and chose DiagramView?
If its not auto-refreshed, is there another option, besides the WebConsole, to achive this?
Env.: OpsManager 2012R2
Thanks.
/Peter

Hi
Fixed it myself by creating a vbs-script that refreshes the console view every N milliseconds.
A created a scheduled task that start the script when the server is started
This way, I don't have to run the Web Console to achieve this functionality.
set shell = wscript.CreateObject("Wscript.Shell")
While 1 = 1
Window = "The heading of your view"
shell.appActivate(Window)
wscript.sleep(30000)
shell.SendKeys "{F5}"
Wend

Similar Messages

  • Access current user's manager name in the console application ( through Client object model)

    Hi Guys,
    Is there any way to retrieve current logged-in user's Manager name in the console application.
    As I don't have access to the server where SharePoint 2010 is installed so I wanted to access through client object model.
    arun singh

    Unfortunately, you can't use CSOM to do this in SharePoint 2010 (you can in SharePoint 2013!), but you CAN use the User Profile Service .asmx web service to accomplish this. You need to call the
    GetUserProfileByName method exposed
    in the http://<yourServerName>/_vti_bin/UserProfileService.asmx web service. Pass in the user name for the current user and Manager will be one of the properties that is returned.
    Here is a link to a blog post with example code.
    Please mark my reply as helpful (the up arrow) if it was useful to you and please mark it an answer (the check box) if it answered your question! Thank you!
    Danny Jessee | MCPD - SharePoint Developer 2010 | MCTS - SharePoint 2010, Configuring
    Blog: http://dannyjessee.com/blog | Twitter: @dannyjessee

  • Console Application not updating the database

    Dear all,
    I am new to c# development. I have a console application front end in program.cs
    I have a local database on visual studio.
    When I execute the stored procedure locally on the database the data is getting updated in the database.
    When I update the same through Console Application - the data is not appearing in the database.
    Can somebody throw light on this? Where I am missing
    using System;
    using System.Collections.Generic;
    using System.Linq;
    using System.Text;
    using System.Data;
    using System.Data.SqlClient;
    namespace AssetApp
    class Program
    static void Main(string[] args)
    bool value = true;
    while (value)
    value = getdisplay();
    //Console.ReadLine();
    //value = false;
    private static bool getdisplay()
    Console.WriteLine("-------------------------------------- ");
    Console.WriteLine("---------------------------------------");
    Console.Clear();
    Console.WriteLine("----------Asset Application------------");
    Console.WriteLine(" 1 Company Asset ");
    Console.WriteLine(" 2 Standby Laptop Register ");
    Console.WriteLine(" 3 Scrap Register ");
    Console.WriteLine(" 4 Purchase Register ");
    Console.WriteLine(" 5 Service Call Report ");
    Console.WriteLine(" 6 IT Helpdesk ");
    Console.WriteLine(" 7 Exit ");
    Console.WriteLine("---------------------------------------");
    string input = Console.ReadLine();
    switch (input)
    case "1":
    CompanyAsset();
    break;
    case "2":
    Console.WriteLine("Standy Laptop Register");
    break;
    case "3":
    Console.WriteLine("Scrap Register");
    break;
    case "4":
    Console.WriteLine("Purchase Register");
    break;
    case "5":
    Console.WriteLine("Service call Report");
    break;
    case "6":
    Console.WriteLine("IT Helpdesk");
    break;
    case "7":
    return false;
    default:
    break;
    return true;
    private static void CompanyAsset()
    Console.WriteLine("------Company Asset------------------------");
    Console.WriteLine("Type the Department Name");
    string departmentName = Console.ReadLine();
    Console.WriteLine("Type the First Name");
    string firstName = Console.ReadLine();
    Console.WriteLine("Type the Last Name");
    string lastName = Console.ReadLine();
    Console.WriteLine("Type the User Name");
    string userName = Console.ReadLine();
    Console.WriteLine("Type the Model Number");
    string modelNumber = Console.ReadLine();
    Console.WriteLine("Type the AssetTypeID");
    string assetTypeID = Console.ReadLine();
    Console.WriteLine("Type the SerialNumber");
    string serialNumber = Console.ReadLine();
    Console.WriteLine("Type the WarrantyStartDate");
    DateTime warrantyStartDate = Convert.ToDateTime(Console.ReadLine());
    Console.WriteLine("Type the WarrantyEndDate");
    DateTime warrantyEndDate = Convert.ToDateTime(Console.ReadLine());
    Console.WriteLine("Company");
    string company = Console.ReadLine();
    Console.WriteLine("EngineerID");
    string engineerID = Console.ReadLine();
    Console.WriteLine("ITHelpdeskID");
    string itHelpdeskID = Console.ReadLine();
    Console.WriteLine("EmpID");
    string empID = Console.ReadLine();
    //Handshake
    SqlConnection myNewConnection = new SqlConnection("Data Source=.\\SQLEXPRESS;AttachDbFilename=|DataDirectory|\\AssetApp.mdf;Integrated Security=True");
    //open the database
    myNewConnection.Open();
    //create command
    SqlCommand myCommand = myNewConnection.CreateCommand();
    //using the stored procedue to update the database using parameters add
    myCommand.CommandText = "InsertAsset";
    myCommand.CommandType = CommandType.StoredProcedure;
    myCommand.Parameters.Add(new SqlParameter("@DepartmentName", departmentName));
    myCommand.Parameters.Add(new SqlParameter("@FirstName", firstName));
    myCommand.Parameters.Add(new SqlParameter("@LastName", lastName));
    myCommand.Parameters.Add(new SqlParameter("@UserName", userName));
    myCommand.Parameters.Add(new SqlParameter("@ModelNumber", modelNumber));
    myCommand.Parameters.Add(new SqlParameter("@AssetTypeID", int.Parse(assetTypeID)));
    myCommand.Parameters.Add(new SqlParameter("@SerialNumber", serialNumber));
    myCommand.Parameters.Add(new SqlParameter("@WarrantyStartDate", warrantyStartDate));
    myCommand.Parameters.Add(new SqlParameter("@WarrantyEndDate", warrantyEndDate));
    myCommand.Parameters.Add(new SqlParameter("@Company", company));
    myCommand.Parameters.Add(new SqlParameter("@EngineerID", int.Parse(engineerID)));
    myCommand.Parameters.Add(new SqlParameter("@ITHelpdeskID", int.Parse(itHelpdeskID)));
    myCommand.Parameters.Add(new SqlParameter("@EmpID", int.Parse(empID)));
    int recordsAffected = myCommand.ExecuteNonQuery();
    if (recordsAffected == 1)
    Console.WriteLine("Successful your entry");
    else
    Console.WriteLine("Your entry is not successful");
    myNewConnection.Close();
    Console.WriteLine("");
    Console.WriteLine("Press Enter to continue");
    Console.ReadLine();
    public static void StandbyLaptopRegister()
    Console.WriteLine("-------------------------------");
    Console.WriteLine("Select the Date & Time");
    string DateTime = Console.ReadLine();
    Console.WriteLine("");
    ALTER PROCEDURE dbo.InsertAsset
    @DepartmentName NVARCHAR(50),
    @FirstName NVARCHAR(50),
    @LastName NVARCHAR(50),
    @UserName NVARCHAR(50),
    @ModelNumber NVARCHAR(50),
    @AssetTypeID INT,
    @SerialNumber NVARCHAR(50),
    @WarrantyStartDate SMALLDATETIME,
    @WarrantyEndDate SMALLDATETIME,
    @Company NVARCHAR(50),
    @EngineerID INT,
    @ITHelpdeskID INT,
    @EmpID INT
    @parameter1 int = 5,
    @parameter2 datatype OUTPUT
    AS
    /* SET NOCOUNT ON */
    BEGIN
    INSERT CompanyAsset(DepartmentName,
    FirstName,
    LastName,
    UserName,
    ModelNumber,
    AssetTypeID,
    SerialNumber,
    WarrantyStartDate,
    WarrantyEndDate,
    Company,
    EngineerID,
    ITHelpdeskID,
    EmpID)
    VALUES(@DepartmentName,
    @FirstName,
    @LastName,
    @UserName,
    @ModelNumber,
    @AssetTypeID,
    @SerialNumber,
    @WarrantyStartDate,
    @WarrantyEndDate,
    @Company,
    @EngineerID,
    @ITHelpdeskID,
    @EmpID)
    /*RETURN @@IDENTITY*/
    END
    Cheers
    Sathya

    Hello,
    Usually when I see
    AttachDbFilename=|DataDirectory| ...
    The database was added into the project via the IDE add new data source and if so make sure under the property window for the database that "Copy to Output Directory" is set to either the first or last option as the default "Copy always"
    copies the database each time you build the project thus overwrites the last time you ran the project.
    I would recommend the "Copy if Newer" which means the database is only copied if you make changes to the database. Set "Copy if newer", build run check results.
    Of course this may not be the issue but may very well be too.
    Please remember to mark the replies as answers if they help and unmark them if they provide no help, this will help others who are looking for solutions to the same or similar problem.

  • Can't open the mail application since updating to 10.6.6

    Hi,
    Since I updated to 10.6.6 I can no longer open my mail application. I get a message stating that "You have version 4.3 (1081/1082) of mail. It can not be used with the Mac OS X Version 10.6.6."
    When I was updating my mail was not in the application folder but within a separate folder in the app folder, so it may not have been updated.
    Now my question is how do I solve this, I can't work properly without the mail application!
    Thank you!
    Svanton

    Hi Svanton,
    One suggestion would be to take the Mail App out of the folder you put it in and then download and install the 10 6 6 Combo Update…
    Available Here...
    http://support.apple.com/kb/DL1349
    I would also recommend doing a Permissions Repair both Before and After running the Update…
    Hope this Helps,
    Cheers

  • Resizing the flash application dynamically...

    Is it possible to change the size of the flash application so
    it takes up more or less space? Mainly in the realm of making it
    taller vs. shorter vertically, and thus the size of the webpage
    that holds that flash application will also change. Generally, the
    page that contains it will be of less size than the app itself and
    thus the size of the page will depend on the app. Can one resize an
    app and how so?

    My research on the web leads me to believe it's not possible
    to resize the flash application once it's loaded on the user's
    browser. I found one page with a cheat that requires a ton of code
    and counts as a kludge. There must be some other way though.

  • How to get the link of the WDA application dynamically

    Hi,
       I have created one web dynpro application. when it is saved the approver get a work item in his inbox.The work item should have the link to the web dynpro application.So that when the user clicks the link,He should able to view the web dynpro screen.
       My question is how to get the link of the web dynpro application dynamicaly . I want to know whether it is stored in any DB tables or is there any function modules to call the web dynpro application ?
    Regards,
    Charumathi.B

    Hi,
    use
    cl_wd_utilities=>construct_wd_url(
    EXPORTING  application_name = <name_of_your_application>
    IMPORTING  out_absolute_url = lv_url.
    Best Regards,
    Anika

  • R2 CU2 Software/Hardware Inventory updates taking very long to show up in the console after CU2 update

    I have recently updated my ConfigMgr 2012 R2 infrastructure from CU1 to CU2 prior to a large migration from 2007 R3. I ran a bunch of tests prior to the migration with the CU1 update and didn't notice any major issues with clients reporting in initially. 
    I am noticing with CU2 that the initial hardware and software inventory coming from the clients is significantly delayed.  I am seeing processing take 2-3 days to show up and register in the admin console.  I have a colleague at a consulting company
    that is noticing the same thing after applying CU2.  I depend on some file information and OS inventory (x86-based PC/x64-based PC) information that is gathered for collections and this post-CU2 delay is causing some frustration.
    I am migrating my 2007 R3 clients via WSUS/SUP migration via site level group policy and all of them are getting the RTM 5.00.7958.1000 client with no issues at all and I am trying to ensure they get the CU2 client 5.00.7958.1303 update afterwards via the
    join to the collection based on hardware/software inventory but again, this delay is obscene.
    I am running one primary parent server and a bunch of secondary servers in local offices, all running on Windows 2012 R2, SQL Standard 2012 SP1 CU8 (primary parent server) and SQL Express 2012 SP1 CU8 (secondary site servers).
    What is interesting is that the workstations and servers are getting the appropriate policies (client and Endpoint) from the ConfigMgr infrastructure and the UI on the workstations/servers reflects this but the Admin Console is not reflecting these
    updates/changes as they get applied, the delay mentioned above.
    Has anyone noticed the same thing with CU2?  If so, any suggestions?  Any help would be appreciated.

    I see it successfully process in a normal amount of time in InventoryAgent.log.  It is taking it's time from the MP to the primary.  Right now, I have 1712 machines migrated and only 91 of them have processed hardware/software inventory and is
    reflecting in the admin console on the primary site server since I started migrating Monday evening. Something is up or has changed with CU2. I never saw this much of a delay with CU1. 

  • Would someone provide a link to the CS5 Application Manager Update?

    I've been getting this error code for quite some time:  U43M1D207 I'm finally getting around to addressing it but the current link is for CC.  I keep going around in circles, trying to find the old CS5 Application Manger...

    I just want the full version of whatever Adobe application will allow me to perform the functions mentioned above.
    I tried clicking on the Adobe - Acrobat : For Windows link and it gave a lot of options so I clicked on here:
    FULL DOWNLOAD
    Name
    Size
    Date
    PDF iFilter 64 11.0.01
    19.6 MB
    1/8/2013
    I downloaded that...and it said it had successfully installed but no application appeared, I didn't have to pay anything...I don't know how to get the application.
    I tried downloading:
    Version 11.0.10
    Adobe Acrobat 11.0.10 Pro and Standard update - All languages
    227MB
    12/9/2014
    This and it said there was an error and my computer did not support it...I have a Window 8 laptop.
    For Adobe DC - if I download this again I would like to know all the programs or whatever that I need for all of its functions to work.  All i want to do is save a file, that seems ridiculous that they would not include it in the application when it is so integral to its function.
    Thank you for your help.

  • Aperture writing to the console log

    The Console application receives a lot of messages from Aperture, whenever I am doing anything.
    The Console entry usually looks like (95%)
    +1/26/11 5:45:29 PM [0x0-0x495495].com.apple.Aperture[30958] Wed Jan 26 17:45:29 mymachine.local Aperture[30958] <Error>: CGBitmapContextGetBitsPerComponent: invalid context 0x13d5f68b0+
    or I intermittently receive (5%)
    +1/26/11 5:41:49 PM [0x0-0x495495].com.apple.Aperture[30958] This isn't a bitmap context. Forcing destination format to ARGB_8 for CGContext.+
    There can be anywhere from 8 to 20 entries per second. It makes trying to update faces slow to a crawl.
    I have Aperture 3.1.1.
    My Aperture library is on an internal soft RAID, composed of three disks (I left the primary disk as the OS/application disk).
    Any suggestions would be appreciated.
    Message was edited by: GateGuy

    Try System.out.println("\033[32mTest\033[0m"); If it works, google for Ansi control codes.

  • Register startup classes in 6.0 without using the console

    how do you register startup classes in 6.0 without using the console application?
    thanks

    Config.xml DTD
    http://e-docs.bea.com/wls/docs60///////adminguide/config_xml.html
    "Mark Griffith" <[email protected]> wrote in message
    news:[email protected]..
    | You can edit the config.xml when the server is not running.
    |
    | You will need to know the DTD, which I can't seem to find online right
    this
    | second.
    |
    | Either way you are better off using the console.
    |
    |
    http://e-docs.bea.com/wls/docs60/ConsoleHelp/server.html#deploy_startup_shut
    | down_classes_on_server
    |
    | mbg
    |
    | "Bjorn Wennerstrom" <[email protected]> wrote in message
    | news:3a68e39e$[email protected]..
    | >
    | > how do you register startup classes in 6.0 without using the console
    | application?
    | >
    | > thanks
    |
    |

  • The console starts when I run my mac

    Hi! someone knows why evertimes I open my imac the console starts? I don't know if it's a leopard bug but I'm really disapointed with leopard... so much troubles...

    Hi! someone knows why evertimes I open my imac the console starts? I don't know if it's a leopard bug but I'm really disapointed with leopard... so much troubles...
    Do you mean once logged into your desktop the console application launches from the dock? or do you mean you dont get to the login screen your just presented with the unix login?

  • Patching - How to update the console product version when installing Update Rollup 5

    Hi,
    I just completed a patch to upgrade Service Manager to Update Rollup 5. I updated the data warehouse servers and management servers.
    When looking at installed programs in Windows it shows that Service Manager has the latest version 7.5.3079.315:
    However, when I look in the About Service Manager option in the console it shows a product version of 7.5.3079.0:
    How do I update the console product version so that it shows the 7.5.3079.315 version?

    Hi,
    This behaviour is expected. Unfortunately, Microsoft does not update the About Info screen of the SCSM console. Add remove programs shows version .315, which means the console was also updated.
    Make sure to also update consoles that your users are running on their computers.
    BR,
    Dieter

  • Adding Report Viewer Webpart through console app Throws UpdatePanel Error

    Hi,
        I had created a console application in Visual Studio 2012, to add Report Viewer Webpart into the team site page in sharepoint 2013. I wrote a code to add the Report Viewer webpart into the sharepoint site. I followed some links to successfully
    execute the console application to add the Report Viewer webpart.
        After successful execution of the console application, if i navigate to the sharepoint site where i had added the webpart through console application, it throws the following error.
    "Cannot unregister UpdatePanel with ID 'ViewerAreaUpdatePanel' since it was not registered with the ScriptManager. This might occur if the UpdatePanel was removed from the control tree and later added again, which is not supported".
        In my console application i didn't use any UpdatePanel. Just add the webpart into the default sitepage in sharepoint. Hope it was in the default page on the sharepoint site.
       I had googled the rootcause for the error, but i end up with all the answers pointing to ScriptManager into the aspx page. But i didn't find the SafeScriptManager .dll file. I followed the steps, in some other sites to create the ScriptManager
    dll file, but that .cs project was not in compatible mode with VS 2012/2010.
    I had attached the full executing code of the console application.
    using System;
    using System.Collections.Generic;
    using System.Globalization;
    using System.Linq;
    using System.Text;
    using System.Threading.Tasks;
    using System.Web;
    using System.Web.UI;
    using System.Web.UI.WebControls.WebParts;
    using System.Xml;
    using Microsoft.ReportingServices.SharePoint.UI.WebParts;
    using Microsoft.SharePoint;
    using Microsoft.SharePoint.Client.WebParts;
    using Microsoft.SharePoint.WebPartPages;
    using PersonalizationScope = System.Web.UI.WebControls.WebParts.PersonalizationScope;
    using WebPart = Microsoft.SharePoint.WebPartPages.WebPart;
    namespace SampleSite.Accessor
    public class WebPartGalleryAccessor
    private readonly string _rootSiteUrl = "http://<server>/sites/testsite";
    private readonly string _pageUrl = "http://<server>/sites/testsite/test1/SitePages/Home.aspx";
    private const string PageName = "home.aspx";
    private const string SubSiteUrl = "test1";
    private void AddReportViewer()
    const int zoneIndex = 0;
    var reportViewerWebPart = new ReportViewerWebPart();
    AddReportViewerWebPartToSitePage(_rootSiteUrl, SubSiteUrl, _pageUrl, reportViewerWebPart, zoneIndex);
    public void AddReportViewerWebPartToSitePage(string rootSiteUrl, string subSiteUrl, string pageUrl, ReportViewerWebPart webPart, int zoneIndex)
    try
    SPSecurity.RunWithElevatedPrivileges(delegate()
    using (var pageLoadSite = new SPSite(rootSiteUrl))
    pageLoadSite.AllowUnsafeUpdates = true;
    using (var pageLoadWeb = pageLoadSite.OpenWeb(subSiteUrl))
    pageLoadWeb.AllowUnsafeUpdates = true;
    AddReportViewerWebPartToPage(pageLoadWeb, pageUrl, webPart, zoneIndex);
    pageLoadWeb.AllowUnsafeUpdates = false;
    pageLoadSite.AllowUnsafeUpdates = false;
    catch (Exception exception)
    throw new Exception("Unable to Add WebPart To Site Page: " + pageUrl + " Webpart title: " + webPart.Title + "Error: " + exception.Message);
    private string AddReportViewerWebPartToPage(SPWeb web, string pageUrl, ReportViewerWebPart webPart, int zoneIndex)
    try
    HttpRequest request = new HttpRequest("", web.Url, "");
    HttpResponse response = new HttpResponse(null);
    HttpContext.Current = new HttpContext(request, response);
    HttpContext.Current.Request.Browser = new HttpBrowserCapabilities();
    HttpContext.Current.Request.Browser.Capabilities = new System.Collections.Generic.Dictionary<string, string>();
    HttpContext.Current.Request.Browser.Capabilities["type"] = "IE7";
    HttpContext.Current.Request.Browser.Capabilities["majorversion"] = "7";
    HttpContext.Current.Request.Browser.Capabilities["minrversion"] = "0";
    HttpContext.Current.Items["HttpHandlerSPWeb"] = web;
    webPart.Title = "My Report Viewer";
    webPart.ZoneID = "Top";
    webPart.ReportPath = "/sites/testsite/Shared Documents/RemoteSalesRepor.rdl";
    webPart.AsyncRendering = false;
    webPart.DockToolBar = DockToolBarLocation.Top;
    SPFile file = web.GetFile(pageUrl);
    if (file.CheckOutType == SPFile.SPCheckOutType.None)
    file.CheckOut();
    using (SPLimitedWebPartManager manager = file.GetLimitedWebPartManager((PersonalizationScope)Microsoft.SharePoint.Client.WebParts.PersonalizationScope.Shared))
    manager.AddWebPart(webPart, webPart.ZoneID, zoneIndex);
    file.CheckIn("Webpart Added.");
    return webPart.ID;
    catch (Exception exception)
    throw new Exception("Unable to Add WebPart To Page: " + pageUrl + " Webpart title: " + webPart.Title + "Error: " + exception.Message);
       Could anyone have the solution to overcome the above issue. I was knocking my head to resolve this error.
     Note:
        I am using,
        1. sharepoint 2013
        2. SQLServer 2012R2
        3. Windows2008R2 server
     I can able to create the ReportViewer webpart in the site manually.
    Thanks
    Jaibabu
       

    Hi Jai,
    Did you find a workaround to this issue. I have the exact same issue with SharePoint foundation 2010. I am adding report viewer webpart through HTML5 web page hosted in SharePoint site.
    Regards,
    Ojas Maru ( My blog )

  • Console Application update with JNLP?

    Hello!
    I want to do create an update package with Java Web Start. But I recognized that it maybe doesn't work as I want.
    My Application is a Java application which runs in a console. It consists of more jar Files and it will be started with a shell script file (under windows with a command file and under unix with a as script).
    So some of these jar Files changes irregular and some people use this application.
    The update method today is E-Mail.
    The future should be an automatic update at every start of this application.
    My problem is that I don't know if I can realize my project with Java Web Start. Because I understand Java Web Start as an environment of which can start only one jar file from the web and keep them up to date.
    Or is my project also possible with this Java Web Start?
    When yes, then can you tell me some references or how I can do this?
    Thank you
    user0009

    Hi
    I am now facing some trouble with the console application deployed with ClickOnce. I am getting the following error
    "Unhandled Exception: System.IO.FileNotFoundException: Retrieving the COM class factory for component with CLSID (6DA215C2-D80D-42F2-A514-B44A16DCBAAA) failed due to the following error:8007007e The specified module could not be found. (Exception from
    HRESULT: 0x8007007E).
         at Microsoft.VisualStudio.TestTools.UItest.Payback.creenElement.InitPlayback()
         at Microsoft.VisualStudio.TestTools.UItesting.Playback.ScreenElement.Initialize()
         at ConsoleNP.Program>main(String[] args)"
    My target system in not having VS installed in it. Can anyone tell me why I am getting this error and how to overcome this problem. Am I missing to add any dll? should I make any specific changes while publishing the application.
    Thanks and Regards,
    Hello,
    To narrow down this issue, I would recommend you check whether these dlls for that method have been registered successfully.
    Honestly, I am not a VS test expert, maybe you could just install this anget instead, you could switch to the other version for the one you are using.
    #Agents for Visual Studio 2012 Update 4
    http://www.microsoft.com/en-us/download/details.aspx?id=38186 .
    Regards,
    Carl
    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.
    Click
    HERE to participate the survey.

  • HT1338 I clicked update since yesterday but the system refused to update

    I clicked update since yesterday but the system refused to update. The massage I got is: (Use of this software is subject to the original software License Agreements that accompanied the software being updated) Now what can I do to stop/terminate the updating?

    If you have more than one user account, these instructions must be carried out as an administrator.
    Launch the Console application in any of the following ways:
    ☞ Enter the first few letters of its name into a Spotlight search. Select it in the results (it should be at the top.)
    ☞ In the Finder, select Go ▹ Utilities from the menu bar, or press the key combination shift-command-U. The application is in the folder that opens.
    ☞ Open LaunchPad. Click Utilities, then Console in the icon grid.
    Select "/var/log/install.log" from the file list on the left. If you don't see that list, select
    View ▹ Show Log List
    from the menu bar. Then select the messages from the last installation or update attempt, starting from the time when you initiated it. If you're not sure when that was, start over and note the time. Copy them to the Clipboard (command-C). Paste into a reply to this message (command-V).
    If there are runs of repeated messages, post only one example of each. Don’t post many repetitions of the same message.
    When posting a log extract, be selective. Don't post more than is requested.
    Please do not indiscriminately dump thousands of lines from the log into this discussion.
    Important: Some private information, such as your name, may appear in the log. Edit it out by search-and-replace in a text editor before posting.

Maybe you are looking for

  • Multiple phone hookup question.

    How do I hook up multiple phones to a new digital voice installation?Can i just plug into my old phone system input bus?

  • Is there a way of selecting one colour in an image?

    I have a 4 colour image and I need to do alternative colourways. Is there a quick way of selecting all of one colour so I don't have to select each area individually? Thanks for helping, it will save me a lot of time!!

  • MOV to Screen Caps??

    Is there a way that I can use QTP to produce screen caps (jpg, png or whatever image format) of a .mov file? Every so many frames. Or is there another program that will do a better job of this? Thanks for any help

  • Dns server issues with business catalyst, website not loading

    Hi there, Trying to upload a new website and it has disappeared saying that the DNS lookup failed. Have checked settings under site management and all looks correct but its still not working any help would be great.

  • Can I remap the fn key on a Powerbook?

    Extraordinarily, Apple designed the keyboard layout for laptops so that the function key (fn) is on the opposite side of the keyboard to the cursor keys. So if you want to use Home, End, PageUp, or PageDown, as most of us do, then you have to use two