Get IP of  remote user.

Hi,
I need to get the IP of the remort user connecting to my servlet.
code i have tried is
String ip = request.getRemoteAddr();
String host = request.getRemoteHost();
but the problem is that it always gives me the IP of the web server. as my servlet is sitting on the app server and the call is always from the web server.
I want to get the IP of the user connecting to the web server calling my servlet in the app server.
Thanks
Rajnish

{noformat}Hi use this method from httpservletrequest then your issues get resolved
public java.lang.String getRemoteAddr(){noformat}<dl><dd>Returns the Internet Protocol (IP) address of the client that sent the request. For HTTP servlets, same as the value of the CGI variable <code>REMOTE_ADDR</code>. </dd><dd><dl><dt>Returns: </dt><dd>a <code>String</code> containing the IP address of the client that sent the request
Thanks,
Baskar Felix </dd></dl></dd></dl>

Similar Messages

  • How to get information on remote user?

              How does one get the remote user using WebLogic 6.1 and JSP. Normally, I'd use
              request.getRemoteUser(); - but testing that using WebLogic - I got 'system.'
              Is there any way to get the remote user information using CGI variables with WL?
              Thanks.
              

              request.getRemoteUser() works just fine for me. What sort of authentication does
              your web app use? If you don't use authentication, the user is 'system'.
              simon.
              "Amy" <[email protected]> wrote:
              >
              >How does one get the remote user using WebLogic 6.1 and JSP. Normally,
              >I'd use
              >request.getRemoteUser(); - but testing that using WebLogic - I got 'system.'
              >
              >Is there any way to get the remote user information using CGI variables
              >with WL?
              >
              >Thanks.
              

  • No "Remote-User" in HTTP header when HTTP request gets to WLS

    Hello Exprers,
    I have a customer, using 10.3.3 on Linux machine. Web server as Apache.
    He wants Remote-User in HTTP header, he used to get it when he used Tomcat. But when he transffered to Apache and 10.3.3, he is not getting the Remote-User in header, instead he is getting proxy-remote-user.
    He wants the Remote-user in HTTP header.
    Any clue, on why he is not getting it.

    Hi,
    We are facing error while doing openConnection
    When I tried with simple java file it worked as shown below
    import java.io.*;
    import javax.net.ssl.HttpsURLConnection;
    public class test
    public static void main(String[] args) throws Exception
    String httpsURL = "https://rcfe.aspac.citicorp.com:40054/servlet/Verify";
    URL myurl = new URL(httpsURL);
    HttpsURLConnection con = (HttpsURLConnection)myurl.openConnection();
    InputStream ins = con.getInputStream();
    InputStreamReader isr = new InputStreamReader(ins);
    BufferedReader in = new BufferedReader(isr);
    if (con!=null)
    System.out.println("con="+con);
    System.out.println(ins);
    Output*
    [rcrrgbg2@kauh0079:/rcrmap2/weblogic/bea/ORA_PFRD/forms/j2ee] java test
    con=com.ibm.net.ssl.www2.protocol.https.e:https://rcfe.aspac.citicorp.com:40054/servlet/Verify
    sun.net.www.protocol.http.HttpURLConnection$HttpInputStream@5f6c5f6c
    However when I tried with below program I am able to write upto Web CL URL but after that no log is written when it tries to do openConnection() for this line csConn=(HttpsURLConnection)new URL(webclURL).openConnection(); in the below code
    Some part of the code:_
    =======================================================================
    import java.io.*;
    import javax.servlet.http.*;
    import javax.servlet.*;
    import java.util.Hashtable;
    import java.io.File;
    import java.io.FileInputStream;
    import javax.servlet.ServletException;
    import javax.servlet.ServletOutputStream;
    import javax.servlet.http.HttpServlet;
    import javax.servlet.http.HttpServletRequest;
    import javax.servlet.http.HttpServletResponse;
    import javax.net.ssl.HttpsURLConnection;
    import java.net.URL;
    public class CRMSLogin extends HttpServlet
    private static final long serialVersionUID=-6294676216324813290L;
    public void doPost(HttpServletRequest request,HttpServletResponse response) throws ServletException,IOException
    String iniFile=request.getParameter("CRMS_INI_FILE_PATH");
    String sessionId=request.getParameter("SessionId");
    String applId=request.getParameter("apl_id");
    String userId=request.getParameter("userId");
    String clientIp=request.getRemoteAddr();
    Properties iniProp=this.getProperties(iniFile);
    String crmsAppServerContext=iniProp.getProperty("CRMS_APP_SERVER_CONTEXT");
    String appModule=iniProp.getProperty("CRMS_MODULE");
    String webclURL=iniProp.getProperty("WEBCL_URL");
    // HttpsURLConnection csConn=null;
    String crmsFormsTerm=null;
    crmsFormsTerm=getEntitlements(iniFile.trim(),sessionId,applId.trim(),clientIp.trim(),webclURL.trim());
    String baseContent=this.getBaseContent(iniProp);
    ServletOutputStream out=response.getOutputStream();
    baseContent=baseContent.replaceAll("<!APP_TITLE!>","Credit Risk Management System");
    baseContent=baseContent.replaceAll("<!APP_CONTEXT!>",crmsAppServerContext);
    baseContent=baseContent.replaceAll("<!APP_MODULE!>",appModule);
    baseContent=baseContent.replaceAll("<!APP_TRACE!>",crmsFormsTerm.replaceAll(" ", ""));
    baseContent=baseContent.replaceAll("<!USER_ID!>",userId);
    baseContent=baseContent.replaceAll("<!SESSION_ID!>",sessionId);
    baseContent=baseContent.replaceAll("<!APPL_ID!>",applId.trim());
    baseContent=baseContent.replaceAll("<!CLIENT_IP!>",clientIp.trim());
    baseContent=baseContent.replaceAll("<!INI_FILE!>",iniFile.trim());
    out.println(baseContent);
    out.flush();
    out.close();
    private synchronized Properties getProperties(String inifile)
    Properties iniProp=new Properties();
    FileInputStream iniFileStream=null;
    try
    iniFileStream=new FileInputStream(inifile);
    iniProp.load(iniFileStream);
    iniFileStream.close();
    catch(Exception e)
    finally
    try
    if(iniFileStream!=null)
    iniFileStream.close();
    catch(Exception e)
    return iniProp;
    public static synchronized String getEntitlements(String inifile,String sessionId,String applId,String clientIp,String webclURL)
         HttpsURLConnection csConn=null;
         OutputStreamWriter requestStream=null;
         BufferedReader responseStream=null;
         StringBuffer responseData=new StringBuffer();
         String csReturnString=null;
         //String webclURL=null;
         BufferedWriter traceLog=null;
         int csCount=6;
         Properties iniProp=new Properties();
         String traceFile=null;
         String entitlementData=null;
         try
         readIniProperties(inifile,iniProp);
         traceFile=getTraceFile(iniProp);
         traceLog=new BufferedWriter(new FileWriter(traceFile,true));
         if(traceFile!=null)
         traceLog.write("###########################");
         traceLog.write("P A R A M E T E R S");
         traceLog.write("###########################");
         traceLog.newLine();
         traceLog.write("INI_FILE:"+inifile);
         traceLog.newLine();
         traceLog.write("SESSION_ID:"+sessionId);
         traceLog.newLine();
         traceLog.write("APPL_ID:"+applId);
         traceLog.newLine();
         traceLog.write("CLIENT_IP:"+clientIp);
         traceLog.newLine();
         traceLog.write("count:"+csCount);
         traceLog.newLine();
         traceLog.write("###########################");
         traceLog.newLine();
         //webclURL=getWebclURL(traceLog,iniProp);
         if(webclURL!=null)
         traceLog.write("Web CL URL:"+webclURL);
              traceLog.newLine();
         csConn=(HttpsURLConnection)new URL(webclURL).openConnection();     
    traceLog.write("Open Connection - Completed!");
         traceLog.newLine();
         csConn.setRequestMethod("POST");
         csConn.setDoInput(true);
         csConn.setDoOutput(true);
         requestStream=new OutputStreamWriter(csConn.getOutputStream());
         traceLog.write("Open Request Stream - Completed!");
         traceLog.newLine();
         requestStream.write("SessionId="+sessionId+"&ClientIP="+clientIp+"&apl_id="+applId+"&count="+csCount);
         requestStream.flush();
         requestStream.close();
         traceLog.write("Write Params to Request Stream - Completed!");
         traceLog.newLine();
         responseStream=new BufferedReader(new InputStreamReader(csConn.getInputStream()));
         traceLog.write("Open Response Stream - Completed!");
         traceLog.newLine();
         while((csReturnString=responseStream.readLine())!=null)
         responseData.append(csReturnString);
         traceLog.write("Response Stream Reading - Completed!");
         traceLog.newLine();
         responseStream.close();
         csConn.disconnect();
         entitlementData=getEntitlementData(traceLog,responseData.toString(),iniProp);
         traceLog.write("responseData::"+responseData);
         traceLog.newLine();
         traceLog.newLine();
         traceLog.write("entitlementData::"+entitlementData);
         traceLog.newLine();
         traceLog.flush();
         traceLog.close();
         catch(Exception e)
         e.printStackTrace();
         finally
         try
         if(requestStream!=null)
         requestStream.close();
    =======================================================================
    output_
    ###########################P A R A M E T E R S###########################
    INI_FILE:/rcrmap1/rcrrgbg2/crms.ini
    SESSION_ID:%2526%253ASIGNED_TICKET%253D%2526PROVIDER_TICKET%253D002c6e4cH0tZy2Gj4JBCOiSL7uSlKisfsqgwP9KoRRn7e%252BY%253D%253AKRSERVER0006%252BA9A52AAE%252B4D1DC7AA%252B14400
    APPL_ID:RCRMKR
    CLIENT_IP:169.165.42.174
    count:6
    Web CL URL:https://rcfe.aspac.citicorp.com:40054/servlet/Verify
    Please help to guide us.
    Regards,
    Harish

  • Problem in Form submission after getting remote user

    Hi,
    I am using struts framework. I called the below code in action class in execute() method.
    From this, I can able to get the remote user name.
    But, after that I am facing a strange problem in Internet explorer. I am not able to submit a form in IE browser(works fine with mozilla)?
    {color:#3366ff}<%
    byte[] CHALLENGE_MESSAGE =
    {(byte)'N', (byte)'T', (byte)'L', (byte)'M', (byte)'S', (byte)'S', (byte)'P', 0,
    2, 0, 0, 0, 0, 0, 0, 0,
    40, 0, 0, 0, 1, (byte)130, 0, 0,
    0, 2, 2, 2, 0, 0, 0, 0, // nonce
    0, 0, 0, 0, 0, 0, 0, 0};
    String auth = request.getHeader("Authorization");
    if (auth == null)
    response.setContentLength(0);
    response.setStatus(response.SC_UNAUTHORIZED);
    response.setHeader("WWW-Authenticate", "NTLM");
    response.flushBuffer();
    byte[] msg = new sun.misc.BASE64Decoder().decodeBuffer(auth.substring(5));
    // Step 1: Negotiation message received
    if (msg[8] == 1)
    // Send challenge message (Step 2)
    response.setContentLength(2);
    response.setStatus(response.SC_UNAUTHORIZED);
    response.setHeader("WWW-Authenticate",
    "NTLM " + new sun.misc.BASE64Encoder().encodeBuffer(CHALLENGE_MESSAGE));
    out.println(" ");
    response.flushBuffer();
    return;
    // Step 3: Authentication message received
    if (msg[8] == 3)
    int off = 30;
    int length, offset;
    length = (msg[off+1]<<8) + msg[off];
    offset = (msg[off+3]<<8) + msg[off+2];
    String domain = new String(msg, offset, length);
    length = (msg[off+9]<<8) + msg[off+8];
    offset = (msg[off+11]<<8) + msg[off+10];
    String user = new String(msg, offset, length);
    length = (msg[off+17]<<8) + msg[off+16];
    offset = (msg[off+19]<<8) + msg[off+18];
    String ws = new String(msg, offset, length);
    response.setContentType("text/html");
    out.print(user);
    %>{color}

    Hi
    Try To drag and drop rollback operation from the data control.
    and bind it to a button say 'Cancel'
    When u press the create button it will create an empty record. After clicking crate button u can press the cancel button (bind to rollback operation)

  • How to get the remote user IP address if behind the proxy or firewall

    Hi
    How do i get the remote user Ip address who is invoking the servlet behind from a firewall.
    When i use getRemoteHostAddr it gives the proxy ip address not the actuall user host address... Kindly let me know how to get the actual user ip address
    satish

    There is no reliable way to determine the original IP, and such information is not useful to you if the original IP is behind a firewall. What do you propose to use it for? There is probably an alternative way to do things that does not require the remote IP.

  • Issue moving remote user from exchange 2007 to 2013

    have moved over 60 people so far from exchange 2007 to 2013, it was going well with no major problems.
    during migration I have created a DNS setting called legacy.mydomain.com, and it points to the old exchange server, while mail.mydomain.com points to the new exchange server.  
    outlook was working connecting to both servers, and OWA was working on both servers.
    couple of remote users who connect via SSL-VPN and outlook 2010 had issues connecting, but as soon as I moved them to 2013 exchange they connected without vpn using outlook anywhere.
    but - I have one remote user who even though the mailbox move to the new 2013 server was successful, their outlook still points to the 2007 exchange server.
    if I try creating a new profile in outlook 2013, it fails because it cannot contact exchange server, even when ssl-vpn is running.
    when I started troubleshooting I found lots of spyware on his laptop, symantec had been blocking some trojans, obviously he had downloaded something he shouldnt have.
    could this have caused my outlook connectivity issue?
    I ran malawarebytes, and it shows clean now, but still unable to get his outlook to connect.
    I had thought about moving his mailbox back to the old server, seeing if it works on outlook, then moving it to the new one again.
    any suggestions?

    I had thought about moving his mailbox back to the old server, seeing if it works on outlook, then moving it to the new one again.
    Hi,
    Have you done this step? Sometimes moving mailbox to another database can auto-fix problems.
    According to your description, I know that all migrated mailboxes work well except a specific user. I notice that the user's laptop has a lots of spyware, and symantec has been clocking some trojans.
    Please try to logon OWA to check whether this user works.
    If works in OWA, it seems that the mailbox has been migrated to 2013 successfully.
    Generally, re-creating profile can fix this issue. Unfortunately, you have tried it and failed.
    Please try to run Outlook under safe mode to avoid AVs and add-ins.
    Thanks
    Mavis Huang
    TechNet Community Support

  • Is it possible to have a remote user on your iphone if you never set on up?

    My Iphone over the last couple of months has been acting very weird- I can not turn it off, my battery dies in 2 hours, it switches screens on me in the middle of me doing something.
    i have both "user processes and root user processes running all of the time
    i have never set up a root user
    I live with my boyfriend who has a mac - ipad and iphone- we use the same wireless network
    He has vuze and bit torrent which both i cant seen to run properly as the way they are safed or locked i can not access the files - he also has vmware fusion- again i am unable to run it -
    I was told by a friend to turn on my data and watch it to see which programs or applications that I have could be possibly malfunctioning- since then I have notices in my data the following:
    there are ports on my connections  which i have looked up and are all associated with hacking - 5353-5433-6401-5223--80- so many more I cant bare to look through all the data I have saved- I am not technology savy - the whole process of trying to figure out if this is true or even possible is emotionally and mentally draining-
    in my data there are key logs some short some long- some private some public?
    key logs
    which have information such as -
    encodin=UTF-8"?><DOCTYPEplist PUBLIC"-aplle//dtdplist 1.0//EN
    key com.apple OTAcrashcopier.successfulSubmissionTime<\key>
    array
    after multiple list with temperature 1 through 8- which each have a list
    <real>a number<real>
    it says key com.apple.springboard.thermallevels key array
    <key> adlogcreation date</key>
    <key>metadata</key>
    <dict>
    <key>ADuserIntefaceLanguage<key/>
    <string> en </string>
    <key> adusersetregionformat<key/>
    <stiring> US </string>
    <dict/>
    then a list of
    <Key>ad scalars<key/>
    <dict>
    <key/> appActivationCount.com.apple.ApStore<key>
    integer 1 interger
    and it then does that for each one of my applications including
    count maps
    mobilesms
    preference
    mobilemail
    mobilephone
    mobilesafari
    key appbackgroundactive time
    integer 0 interger
    and goes through a list of keys associated with again each of my apps
    and so on and so on
    another key log-
    7deviceid- a bunch of letters and numbers
    then
    isAnonymous:True
    deviceConfigID:152
    trigertime: numbers
    trigger ID-655363
    profileld:152998
    investigation ID: 0
    location udatesession
    timestamp:numbers
    timestampend:numbers
    desired accuracy:-1
    cellavilable:true
    wifiavailable:true
    passcodeLocked:false
    airplanemode: false
    ttff:0
    ttffGPS:0
    accessoryused:false
    reachability: 1
    power : true
    there are bunch of key logs all different
    system data logs with the following
    JS:its.sf6.Bootstrap.init:initialize
    JS:its.defer.bootstrap._renderpage component render complete
    I have in data reports and connection the words :
    local remote peer 
    Hash
    my external IP changes constantly even at home -
    ROOT usr- (never mad one)
    keybagd running on my root user processes- PID 1455 PPID 1 priority : 17
    sandboxd- PID 1452 PPID 1
    filecoordination - PID 103 PPID 1
    networkd?privile PID 72 PPID 1
    Syslogd PID 18 PPID 1
    usereventagent PID 13 PPID 1
    kernal_task PID 0 PPID )
    launchd PID 1 PPID 0
    plenty more
    in routing tables internet (10)
    destination :127   gateway:127.0.0.1
    destination:192.168.1.1  gateway:0:18:39:7c:46:d9
    destination:default
    gateway - 192.186.1.1
    gateway pdp_ip0
    internet(6) which will have about 150 destinations and gateways listed at once sometimes -
    destinations can be fe80::f2dc:e2ff:fe20:e5e7%en0 flag- UHLWLi gateway f0:dc_e2:20:e5:e7 (these are always changing ) sometimes they say link7  sometimes fe80::1%Io0 or     98:d6:bb:751a:f3     or   b8:17:c2:28:d6:90   or 4c:b1:99e8:26:21  linl#1    0:26:8:a2:8:2f    c:77:1a:a5:4:2f    6c:c2:6d:b0:21:c2
    connections on my phone: I have the following categories-
    in each one the number of connections constantly changes - tcp4 running the most -
    udp6 and udp4 mostly look as typed below but occastionally if i check at the right time - there are multiple- and rarly have the remote port
    icmp66 - even more rare that i catch that
    never port numbers
    These change even while i have close all apps- and am doing absolutely nothing with my phone
    tcp4
    remote user 17.172.232.133.442
    remote user 173.194.74.121:80 -
    remote user- 17.172.232.166 : 5225
    udp4- local not list - *;*
    remote *:*
    hostname: n/a
    local: *:5353
    remote: *:*
    hostname: N/A
    udp6
    local *:5353
    remote *:*
    hostname- N/A
    local: *:55543
    remote:*:0
    icmp66 local *:0 and remote *:0
    with hostname N/A
    data logs -
    localpeer ID: mobile. 1FDC29D7-2B67-5231-9375-3BDC30E405F, store name:userdictionary, modelversionhash: SAIQVUhF7208e6_gvZx_zdKx1UAzKGem3HO2pLKjgY=ubiquityrootlocation: pfubiquitylocation: 0x1ed87c50 mobile documents/com-apple[textinput/dictionaries
    springboard
    bbbehavioroverride :transition date should be after provided date
    searrchd
    indexed all records
    searchd
    finished getting all applications 
    remote hostenames from akamaitechonlogies
    so much more crap but im not sure what would be more useful to get my answer- i know some of this suff is totally normal from all the research i did but i also found a lot which i am very uncomfortable- i have updated my phone and everything - it continues

    I have the same problem
    timestamp: 1357891261335
    crashReporterKey: "1ef5cea8811e9c5df888052b1c037fb9ed617261"
    isAnonymous: true
    deviceConfigId: 190
    investigationId: 0
    model: "iPhone4,1"
    softwareBuild: "10A523"
    firmwareVersion: "iBoot-1537.4.21"
    basebandVersion: "3.0.04"
    buildtype: "User"
    metriclogs {
      triggerTime: 1357915884434
      triggerId: 655363
      profileId: 190008
      locationUpdateSession {
        timestamp: 1357915884256
        timestampEnd: 1357915884389
        desiredAccuracy: 1000
        cellAvailable: true
        wifiAvailable: false
        passcodeLocked: false
        airplaneMode: false
        ttff: 0
        ttffGps: -1
        bundleid: "/System/Library/PrivateFrameworks/Weather.framework"
        achievedAccuracy: 1414
        achievedSpeed: -1
        accessoryUsed: false
        reachability: 1
        powered: false
        autoStopped: false
        deferredLocations: 0
        gpsCoexWifi: 0
        gpsCoexBt: 0
    metriclogs {
      triggerTime: 1357917095081
      triggerId: 655363
      profileId: 190008
      locationUpdateSession {
        timestamp: 1357917095076
        timestampEnd: 1357917095077
        desiredAccuracy: -1
        cellAvailable: true
        wifiAvailable: false
        passcodeLocked: false
        airplaneMode: false
        ttff: -1
        ttffGps: -1
        bundleid: "com.aol.mapquest"
        achievedAccuracy: -1
        achievedSpeed: -1
        accessoryUsed: false
        reachability: 1
        powered: false
        autoStopped: false
        deferredLocations: 0
        gpsCoexWifi: 0
        gpsCoexBt: 0
    metriclogs {
      triggerTime: 1357917208421
      triggerId: 655363
      profileId: 190008
      locationUpdateSession {
        timestamp: 1357917095139
        timestampEnd: 1357917208416
        desiredAccuracy: -1
        cellAvailable: true
        wifiAvailable: false
        passcodeLocked: false
        airplaneMode: false
        ttff: 0
        ttffGps: 12
        bundleid: "com.aol.mapquest"
        achievedAccuracy: 5
        achievedSpeed: 21
        accessoryUsed: false
        reachability: 1
        powered: false
        autoStopped: false
        deferredLocations: 0
        gpsCoexWifi: 0
        gpsCoexBt: 0
    metriclogs {
      triggerTime: 1357917208442
      triggerId: 655363
      profileId: 190008
      locationUpdateSession {
        timestamp: 1357917096642
        timestampEnd: 1357917208440
        desiredAccuracy: -1
        cellAvailable: true
        wifiAvailable: false
        passcodeLocked: false
        airplaneMode: false
        ttff: 0
        ttffGps: 10
        bundleid: "com.aol.mapquest"
        achievedAccuracy: 5
        achievedSpeed: 21
        accessoryUsed: false
        reachability: 1
        powered: false
        autoStopped: false
        deferredLocations: 0
        gpsCoexWifi: 0
        gpsCoexBt: 0
    metriclogs {
      triggerTime: 1357917368117
      triggerId: 655363
      profileId: 190008
      locationUpdateSession {
        timestamp: 1357917236131
        timestampEnd: 1357917368116
        desiredAccuracy: -1
        cellAvailable: true
        wifiAvailable: false
        passcodeLocked: false
        airplaneMode: false
        ttff: 0
        ttffGps: 3
        bundleid: "com.aol.mapquest"
        achievedAccuracy: 5
        achievedSpeed: 27
        accessoryUsed: false
        reachability: 1
        powered: false
        autoStopped: false
        deferredLocations: 0
        gpsCoexWifi: 0
        gpsCoexBt: 0
    metriclogs {
      triggerTime: 1357917374150
      triggerId: 655363
      profileId: 190008
      locationUpdateSession {
        timestamp: 1357917368165
        timestampEnd: 1357917374146
        desiredAccuracy: -1
        cellAvailable: true
        wifiAvailable: false
        passcodeLocked: false
        airplaneMode: false
        ttff: 0
        ttffGps: 0
        bundleid: "com.aol.mapquest"
        achievedAccuracy: 5
        achievedSpeed: 24
        accessoryUsed: false
        reachability: 1
        powered: false
        autoStopped: false
        deferredLocations: 0
        gpsCoexWifi: 0
        gpsCoexBt: 0
    metriclogs {
      triggerTime: 1357917388088
      triggerId: 655363
      profileId: 190008
      locationUpdateSession {
        timestamp: 1357917374195
        timestampEnd: 1357917388085
        desiredAccuracy: -1
        cellAvailable: true
        wifiAvailable: false
        passcodeLocked: false
        airplaneMode: false
        ttff: 0
        ttffGps: 0
        bundleid: "com.aol.mapquest"
        achievedAccuracy: 5
        achievedSpeed: 24
        accessoryUsed: false
        reachability: 1
        powered: false
        autoStopped: false
        deferredLocations: 0
        gpsCoexWifi: 0
        gpsCoexBt: 0
    metriclogs {
      triggerTime: 1357917388170
      triggerId: 655363
      profileId: 190008
      locationUpdateSession {
        timestamp: 1357917388137
        timestampEnd: 1357917388161
        desiredAccuracy: -1
        cellAvailable: true
        wifiAvailable: false
        passcodeLocked: false
        airplaneMode: false
        ttff: 0
        ttffGps: 0
        bundleid: "com.aol.mapquest"
        achievedAccuracy: 30
        achievedSpeed: 19
        accessoryUsed: false
        reachability: 1
        powered: false
        autoStopped: false
        deferredLocations: 0
        gpsCoexWifi: 0
        gpsCoexBt: 0
    metriclogs {
      triggerTime: 1357918270570
      triggerId: 655363
      profileId: 190008
      locationUpdateSession {
        timestamp: 1357917388222
        timestampEnd: 1357918270558
        desiredAccuracy: -1
        cellAvailable: true
        wifiAvailable: false
        passcodeLocked: false
        airplaneMode: false
        ttff: 0
        ttffGps: 0
        bundleid: "com.aol.mapquest"
        achievedAccuracy: 5
        achievedSpeed: 31
        accessoryUsed: false
        reachability: 1
        powered: false
        autoStopped: false
        deferredLocations: 0
        gpsCoexWifi: 0
        gpsCoexBt: 0
    metriclogs {
      triggerTime: 1357918271710
      triggerId: 655363
      profileId: 190008
      locationUpdateSession {
        timestamp: 1357918270579
        timestampEnd: 1357918271708
        desiredAccuracy: -1
        cellAvailable: true
        wifiAvailable: false
        passcodeLocked: false
        airplaneMode: false
        ttff: 0
        ttffGps: 0
        bundleid: "com.aol.mapquest"
        achievedAccuracy: 5
        achievedSpeed: 8
        accessoryUsed: false
        reachability: 1
        powered: false
        autoStopped: false
        deferredLocations: 0
        gpsCoexWifi: 0
        gpsCoexBt: 0
    metriclogs {
      triggerTime: 1357918272773
      triggerId: 655363
      profileId: 190008
      locationUpdateSession {
        timestamp: 1357918272754
        timestampEnd: 1357918272766
        desiredAccuracy: -1
        cellAvailable: true
        wifiAvailable: false
        passcodeLocked: false
        airplaneMode: false
        ttff: 0
        ttffGps: 0
        bundleid: "com.aol.mapquest"
        achievedAccuracy: 5
        achievedSpeed: 8
        accessoryUsed: false
        reachability: 1
        powered: false
        autoStopped: false
        deferredLocations: 0
        gpsCoexWifi: 0
        gpsCoexBt: 0
    metriclogs {
      triggerTime: 1357918285070
      triggerId: 655363
      profileId: 190008
      locationUpdateSession {
        timestamp: 1357918270583
        timestampEnd: 1357918285064
        desiredAccuracy: -1
        cellAvailable: true
        wifiAvailable: false
        passcodeLocked: false
        airplaneMode: false
        ttff: 0
        ttffGps: 3
        bundleid: "com.aol.mapquest"
        achievedAccuracy: 5
        achievedSpeed: 31
        accessoryUsed: false
        reachability: 1
        powered: false
        autoStopped: false
        deferredLocations: 0
        gpsCoexWifi: 0
        gpsCoexBt: 0
    metriclogs {
      triggerTime: 1357919898344
      triggerId: 655363
      profileId: 190008
      locationUpdateSession {
        timestamp: 1357919898106
        timestampEnd: 1357919898327
        desiredAccuracy: 1000
        cellAvailable: true
        wifiAvailable: false
        passcodeLocked: false
        airplaneMode: false
        ttff: 0
        ttffGps: -1
        bundleid: "/System/Library/PrivateFrameworks/Weather.framework"
        achievedAccuracy: 1144
        achievedSpeed: -1
        accessoryUsed: false
        reachability: 1
        powered: false
        autoStopped: false
        deferredLocations: 0
        gpsCoexWifi: 0
        gpsCoexBt: 0
    metriclogs {
      triggerTime: 1357921215463
      triggerId: 520198
      profileId: 190050
      iMessageDeliveredMessageHotship {
        timestamp: 1357920000000
        deliveryDuration: 1
    metriclogs {
      triggerTime: 1357922950230
      triggerId: 655365
      profileId: 190010
      compassSession {
        timestamp: 1357922945052
        timestampEnd: 1357922950193
        uncalibrations: 0
        bundleid: "com.apple.mobilesafari"
        achievedCalibration: 3
        magnitudeMin: 619
        magnitudeMax: 626
    metriclogs {
      triggerTime: 1357922955147
      triggerId: 655365
      profileId: 190010
      compassSession {
        timestamp: 1357922950840
        timestampEnd: 1357922955137
        uncalibrations: 0
        bundleid: "com.apple.mobilesafari"
        achievedCalibration: 3
        magnitudeMin: 615
        magnitudeMax: 624
    metriclogs {
      triggerTime: 1357923211748
      triggerId: 655362
      profileId: 190007
      locationServicesApproval {
        timestamp: 1357923211741
        bundleid: "com.apple.locationd"
        approved: false
        bundleidApproved: "com.trulia.Trulia"
    metriclogs {
      triggerTime: 1357924092226
      triggerId: 655363
      profileId: 190008
      locationUpdateSession {
        timestamp: 1357924092213
        timestampEnd: 1357924092213
        desiredAccuracy: -1
        cellAvailable: true
        wifiAvailable: false
        passcodeLocked: false
        airplaneMode: false
        ttff: -1
        ttffGps: -1
        bundleid: "com.aol.mapquest"
        achievedAccuracy: -1
        achievedSpeed: -1
        accessoryUsed: false
        reachability: 1
        powered: false
        autoStopped: false
        deferredLocations: 0
        gpsCoexWifi: 0
        gpsCoexBt: 0
    metriclogs {
      triggerTime: 1357924120195
      triggerId: 655363
      profileId: 190008
      locationUpdateSession {
        timestamp: 1357924120149
        timestampEnd: 1357924120181
        desiredAccuracy: -1
        cellAvailable: true
        wifiAvailable: false
        passcodeLocked: false
        airplaneMode: false
        ttff: 0
        ttffGps: 0
        bundleid: "com.aol.mapquest"
        achievedAccuracy: 5
        achievedSpeed: 0
        accessoryUsed: false
        reachability: 1
        powered: false
        autoStopped: false
        deferredLocations: 0
        gpsCoexWifi: 0
        gpsCoexBt: 0
    metriclogs {
      triggerTime: 1357924123019
      triggerId: 655363
      profileId: 190008
      locationUpdateSession {
        timestamp: 1357924120208
        timestampEnd: 1357924123015
        desiredAccuracy: -1
        cellAvailable: true
        wifiAvailable: false
        passcodeLocked: false
        airplaneMode: false
        ttff: 0
        ttffGps: 0
        bundleid: "com.aol.mapquest"
        achievedAccuracy: 5
        achievedSpeed: 0
        accessoryUsed: false
        reachability: 1
        powered: false
        autoStopped: false
        deferredLocations: 0
        gpsCoexWifi: 0
        gpsCoexBt: 0
    metriclogs {
      triggerTime: 1357924185292
      triggerId: 655363
      profileId: 190008
      locationUpdateSession {
        timestamp: 1357924123064
        timestampEnd: 1357924185289
        desiredAccuracy: -1
        cellAvailable: true
        wifiAvailable: false
        passcodeLocked: false
        airplaneMode: false
        ttff: 0
        ttffGps: 0
        bundleid: "com.aol.mapquest"
        achievedAccuracy: 5
        achievedSpeed: 0
        accessoryUsed: false
        reachability: 1
        powered: false
        autoStopped: false
        deferredLocations: 0
        gpsCoexWifi: 0
        gpsCoexBt: 0
    metriclogs {
      triggerTime: 1357924185319
      triggerId: 655363
      profileId: 190008
      locationUpdateSession {
        timestamp: 1357924185315
        timestampEnd: 1357924185316
        desiredAccuracy: -1
        cellAvailable: true
        wifiAvailable: false
        passcodeLocked: false
        airplaneMode: false
        ttff: -1
        ttffGps: -1
        bundleid: "com.aol.mapquest"
        achievedAccuracy: -1
        achievedSpeed: -1
        accessoryUsed: false
        reachability: 1
        powered: false
        autoStopped: false
        deferredLocations: 0
        gpsCoexWifi: 0
        gpsCoexBt: 0
    metriclogs {
      triggerTime: 1357924185348
      triggerId: 655363
      profileId: 190008
      locationUpdateSession {
        timestamp: 1357924185344
        timestampEnd: 1357924185346
        desiredAccuracy: -1
        cellAvailable: true
        wifiAvailable: false
        passcodeLocked: false
        airplaneMode: false
        ttff: -1
        ttffGps: -1
        bundleid: "com.aol.mapquest"
        achievedAccuracy: -1
        achievedSpeed: -1
        accessoryUsed: false
        reachability: 1
        powered: false
        autoStopped: false
        deferredLocations: 0
        gpsCoexWifi: 0
        gpsCoexBt: 0
    metriclogs {
      triggerTime: 1357924185384
      triggerId: 655363
      profileId: 190008
      locationUpdateSession {
        timestamp: 1357924185372
        timestampEnd: 1357924185380
        desiredAccuracy: -1
        cellAvailable: true
        wifiAvailable: false
        passcodeLocked: false
        airplaneMode: false
        ttff: 0
        ttffGps: 0
        bundleid: "com.aol.mapquest"
        achievedAccuracy: 5
        achievedSpeed: 0
        accessoryUsed: false
        reachability: 1
        powered: false
        autoStopped: false
        deferredLocations: 0
        gpsCoexWifi: 0
        gpsCoexBt: 0
    metriclogs {
      triggerTime: 1357924199834
      triggerId: 655363
      profileId: 190008
      locationUpdateSession {
        timestamp: 1357924092466
        timestampEnd: 1357924199832
        desiredAccuracy: -1
        cellAvailable: true
        wifiAvailable: false
        passcodeLocked: false
        airplaneMode: false
        ttff: 0
        ttffGps: 2
        bundleid: "com.aol.mapquest"
        achievedAccuracy: 5
        achievedSpeed: 0
        accessoryUsed: false
        reachability: 1
        powered: false
        autoStopped: false
        deferredLocations: 0
        gpsCoexWifi: 0
        gpsCoexBt: 0
    metriclogs {
      triggerTime: 1357924245444
      triggerId: 655363
      profileId: 190008
      locationUpdateSession {
        timestamp: 1357924185401
        timestampEnd: 1357924245443
        desiredAccuracy: -1
        cellAvailable: true
        wifiAvailable: false
        passcodeLocked: false
        airplaneMode: false
        ttff: 0
        ttffGps: 0
        bundleid: "com.aol.mapquest"
        achievedAccuracy: 5
        achievedSpeed: 0
        accessoryUsed: false
        reachability: 1
        powered: false
        autoStopped: false
        deferredLocations: 0
        gpsCoexWifi: 0
        gpsCoexBt: 0
    metriclogs {
      triggerTime: 1357924245727
      triggerId: 655363
      profileId: 190008
      locationUpdateSession {
        timestamp: 1357924245561
        timestampEnd: 1357924245726
        desiredAccuracy: -1
        cellAvailable: true
        wifiAvailable: false
        passcodeLocked: false
        airplaneMode: false
        ttff: 0
        ttffGps: 0
        bundleid: "com.aol.mapquest"
        achievedAccuracy: 5
        achievedSpeed: 0
        accessoryUsed: false
        reachability: 1
        powered: false
        autoStopped: false
        deferredLocations: 0
        gpsCoexWifi: 0
        gpsCoexBt: 0
    metriclogs {
      triggerTime: 1357924307986
      triggerId: 655363
      profileId: 190008
      locationUpdateSession {
        timestamp: 1357924245737
        timestampEnd: 1357924307959
        desiredAccuracy: -1
        cellAvailable: true
        wifiAvailable: false
        passcodeLocked: false
        airplaneMode: false
        ttff: 0
        ttffGps: 0
        bundleid: "com.aol.mapquest"
        achievedAccuracy: 5
        achievedSpeed: 0
        accessoryUsed: false
        reachability: 1
        powered: false
        autoStopped: false
        deferredLocations: 0
        gpsCoexWifi: 0
        gpsCoexBt: 0
    metriclogs {
      triggerTime: 1357924308153
      triggerId: 655363
      profileId: 190008
      locationUpdateSession {
        timestamp: 1357924308004
        timestampEnd: 1357924308152
        desiredAccuracy: -1
        cellAvailable: true
        wifiAvailable: false
        passcodeLocked: false
        airplaneMode: false
        ttff: 0
        ttffGps: 0
        bundleid: "com.aol.mapquest"
        achievedAccuracy: 5
        achievedSpeed: 0
        accessoryUsed: false
        reachability: 1
        powered: false
        autoStopped: false
        deferredLocations: 0
        gpsCoexWifi: 0
        gpsCoexBt: 0
    metriclogs {
      triggerTime: 1357924416953
      triggerId: 655363
      profileId: 190008
      locationUpdateSession {
        timestamp: 1357924308205
        timestampEnd: 1357924416924
        desiredAccuracy: -1
        cellAvailable: true
        wifiAvailable: false
        passcodeLocked: false
        airplaneMode: false
        ttff: 0
        ttffGps: 0
        bundleid: "com.aol.mapquest"
        achievedAccuracy: 5
        achievedSpeed: 0
        accessoryUsed: false
        reachability: 1
        powered: false
        autoStopped: false
        deferredLocations: 0
        gpsCoexWifi: 0
        gpsCoexBt: 0
    metriclogs {
      triggerTime: 1357924457238
      triggerId: 655363
      profileId: 190008
      locationUpdateSession {
        timestamp: 1357924417039
        timestampEnd: 1357924457228
        desiredAccuracy: -1
        cellAvailable: true
        wifiAvailable: false
        passcodeLocked: false
        airplaneMode: false
        ttff: 0
        ttffGps: 0
        bundleid: "com.aol.mapquest"
        achievedAccuracy: 5
        achievedSpeed: 0
        accessoryUsed: false
        reachability: 1
        powered: false
        autoStopped: false
        deferredLocations: 0
        gpsCoexWifi: 0
        gpsCoexBt: 0
    metriclogs {
      triggerTime: 1357924479313
      triggerId: 655363
      profileId: 190008
      locationUpdateSession {
        timestamp: 1357924457354
        timestampEnd: 1357924479311
        desiredAccuracy: -1
        cellAvailable: true
        wifiAvailable: false
        passcodeLocked: false
        airplaneMode: false
        ttff: 0
        ttffGps: 0
        bundleid: "com.aol.mapquest"
        achievedAccuracy: 5
        achievedSpeed: 2
        accessoryUsed: false
        reachability: 1
        powered: false
        autoStopped: false
        deferredLocations: 0
        gpsCoexWifi: 0
        gpsCoexBt: 0
    metriclogs {
      triggerTime: 1357924681802
      triggerId: 655365
      profileId: 190010
      compassSession {
        timestamp: 1357924680161
        timestampEnd: 1357924681765
        uncalibrations: 0
        bundleid: "com.apple.mobilesafari"
        achievedCalibration: 3
        magnitudeMin: 589
        magnitudeMax: 596
    metriclogs {
      triggerTime: 1357925433925
      triggerId: 655363
      profileId: 190008
      locationUpdateSession {
        timestamp: 1357924479408
        timestampEnd: 1357925433904
        desiredAccuracy: -1
        cellAvailable: true
        wifiAvailable: false
        passcodeLocked: false
        airplaneMode: false
        ttff: 0
        ttffGps: 0
        bundleid: "com.aol.mapquest"
        achievedAccuracy: 5
        achievedSpeed: 1
        accessoryUsed: false
        reachability: 1
        powered: false
        autoStopped: true
        deferredLocations: 0
        gpsCoexWifi: 0
        gpsCoexBt: 0
    metriclogs {
      triggerTime: 1357925928444
      triggerId: 655363
      profileId: 190008
      locationUpdateSession {
        timestamp: 1357925915836
        timestampEnd: 1357925928410
        desiredAccuracy: -1
        cellAvailable: true
        wifiAvailable: false
        passcodeLocked: false
        airplaneMode: false
        ttff: 0
        ttffGps: 2
        bundleid: "com.apple.mobilesafari"
        achievedAccuracy: 5
        achievedSpeed: 12
        accessoryUsed: false
        reachability: 1
        powered: true
        autoStopped: false
        deferredLocations: 0
        gpsCoexWifi: 0
        gpsCoexBt: 0
    metriclogs {
      triggerTime: 1357927849359
      triggerId: 655363
      profileId: 190008
      locationUpdateSession {
        timestamp: 1357927849209
        timestampEnd: 1357927849356
        desiredAccuracy: -1
        cellAvailable: true
        wifiAvailable: false
        passcodeLocked: false
        airplaneMode: false
        ttff: -1
        ttffGps: -1
        bundleid: "com.apple.Maps"
        achievedAccuracy: -1
        achievedSpeed: -1
        accessoryUsed: false
        reachability: 1
        powered: false
        autoStopped: false
        deferredLocations: 0
        gpsCoexWifi: 0
        gpsCoexBt: 0
    metriclogs {
      triggerTime: 1357927862825
      triggerId: 655363
      profileId: 190008
      locationUpdateSession {
        timestamp: 1357927862666
        timestampEnd: 1357927862818
        desiredAccuracy: 1000
        cellAvailable: true
        wifiAvailable: false
        passcodeLocked: false
        airplaneMode: false
        ttff: 0
        ttffGps: 0
        bundleid: "/System/Library/PrivateFrameworks/Weather.framework"
        achievedAccuracy: 5
        achievedSpeed: 0
        accessoryUsed: false
        reachability: 1
        powered: false
        autoStopped: false
        deferredLocations: 0
        gpsCoexWifi: 0
        gpsCoexBt: 0
    metriclogs {
      triggerTime: 1357927951887
      triggerId: 655363
      profileId: 190008
      locationUpdateSession {
        timestamp: 1357927870225
        timestampEnd: 1357927951885
        desiredAccuracy: -1
        cellAvailable: true
        wifiAvailable: false
        passcodeLocked: false
        airplaneMode: false
        ttff: 0
        ttffGps: 0
        bundleid: "com.apple.Maps"
        achievedAccuracy: 5
        achievedSpeed: 0
        accessoryUsed: false
        reachability: 1
        powered: false
        autoStopped: false
        deferredLocations: 0
        gpsCoexWifi: 0
        gpsCoexBt: 0
    metriclogs {
      triggerTime: 1357928105500
      triggerId: 655363
      profileId: 190008
      locationUpdateSession {
        timestamp: 1357928092945
        timestampEnd: 1357928105496
        desiredAccuracy: -1
        cellAvailable: true
        wifiAvailable: false
        passcodeLocked: false
        airplaneMode: false
        ttff: 0
        ttffGps: 4
        bundleid: "com.apple.Maps"
        achievedAccuracy: 5
        achievedSpeed: 0
        accessoryUsed: false
        reachability: 1
        powered: false
        autoStopped: false
        deferredLocations: 0
        gpsCoexWifi: 0
        gpsCoexBt: 0
    metriclogs {
      triggerTime: 1357928962757
      triggerId: 655363
      profileId: 190008
      locationUpdateSession {
        timestamp: 1357928681479
        timestampEnd: 1357928962733
        desiredAccuracy: -2
        cellAvailable: true
        wifiAvailable: false
        passcodeLocked: false
        airplaneMode: false
        ttff: 0
        ttffGps: 3
        bundleid: "com.apple.Maps"
        achievedAccuracy: 5
        achievedSpeed: 15
        accessoryUsed: false
        reachability: 1
        powered: false
        autoStopped: false
        deferredLocations: 0
        gpsCoexWifi: 0
        gpsCoexBt: 0
    metriclogs {
      triggerTime: 1357929889244
      triggerId: 655363
      profileId: 190008
      locationUpdateSession {
        timestamp: 1357929163524
        timestampEnd: 1357929889200
        desiredAccuracy: -2
        cellAvailable: true
        wifiAvailable: false
        passcodeLocked: false
        airplaneMode: false
        ttff: 0
        ttffGps: 1
        bundleid: "com.apple.Maps"
        achievedAccuracy: 5
        achievedSpeed: 22
        accessoryUsed: false
        reachability: 1
        powered: false
        autoStopped: false
        deferredLocations: 0
        gpsCoexWifi: 0
        gpsCoexBt: 0
    metriclogs {
      triggerTime: 1357930547666
      triggerId: 655363
      profileId: 190008
      locationUpdateSession {
        timestamp: 1357930543524
        timestampEnd: 1357930547665
        desiredAccuracy: -2
        cellAvailable: true
        wifiAvailable: false
        passcodeLocked: false
        airplaneMode: false
        ttff: 0
        ttffGps: 3
        bundleid: "com.apple.Maps"
        achievedAccuracy: 5
        achievedSpeed: 2
        accessoryUsed: false
        reachability: 1
        powered: true
        autoStopped: false
        deferredLocations: 0
        gpsCoexWifi: 0
        gpsCoexBt: 0
    metriclogs {
      triggerTime: 1357931495898
      triggerId: 655363
      profileId: 190008
      locationUpdateSession {
        timestamp: 1357931136061
        timestampEnd: 1357931495786
        desiredAccuracy: -2
        cellAvailable: true
        wifiAvailable: false
        passcodeLocked: false
        airplaneMode: false
        ttff: 0
        ttffGps: 2
        bundleid: "com.apple.Maps"
        achievedAccuracy: 5
        achievedSpeed: 18
        accessoryUsed: false
        reachability: 1
        powered: true
        autoStopped: false
        deferredLocations: 0
        gpsCoexWifi: 0
        gpsCoexBt: 0
    metriclogs {
      triggerTime: 1357932336558
      triggerId: 655363
      profileId: 190008
      locationUpdateSession {
        timestamp: 1357932331931
        timestampEnd: 1357932336548
        desiredAccuracy: -2
        cellAvailable: true
        wifiAvailable: false
        passcodeLocked: false
        airplaneMode: false
        ttff: 0
        ttffGps: 2
        bundleid: "com.apple.Maps"
        achievedAccuracy: 5
        achievedSpeed: 18
        accessoryUsed: false
        reachability: 1
        powered: true
        autoStopped: false
        deferredLocations: 0
        gpsCoexWifi: 0
        gpsCoexBt: 0
    metriclogs {
      triggerTime: 1357934177202
      triggerId: 655363
      profileId: 190008
      locationUpdateSession {
        timestamp: 1357934174674
        timestampEnd: 1357934177195
        desiredAccuracy: -1
        cellAvailable: true
        wifiAvailable: false
        passcodeLocked: false
        airplaneMode: false
        ttff: 0
        ttffGps: -1
        bundleid: "com.apple.mobilesafari"
        achievedAccuracy: 1060
        achievedSpeed: -1
        accessoryUsed: false
        reachability: 1
        powered: false
        autoStopped: false
        deferredLocations: 0
        gpsCoexWifi: 0
        gpsCoexBt: 0
    metriclogs {
      triggerTime: 1357934186594
      triggerId: 655363
      profileId: 190008
      locationUpdateSession {
        timestamp: 1357934184708
        timestampEnd: 1357934186593
        desiredAccuracy: -1
        cellAvailable: true
        wifiAvailable: false
        passcodeLocked: false
        airplaneMode: false
        ttff: 0
        ttffGps: 0
        bundleid: "com.apple.mobilesafari"
        achievedAccuracy: 30
        achievedSpeed: 0
        accessoryUsed: false
        reachability: 1
        powered: false
        autoStopped: false
        deferredLocations: 0
        gpsCoexWifi: 0
        gpsCoexBt: 0
    metriclogs {
      triggerTime: 1357934248245
      triggerId: 655363
      profileId: 190008
      locationUpdateSession {
        timestamp: 1357934248244
        timestampEnd: 1357934248245
        desiredAccuracy: -1
        cellAvailable: true
        wifiAvailable: false
        passcodeLocked: false
        airplaneMode: false
        ttff: -1
        ttffGps: -1
        bundleid: "com.apple.mobilesafari"
        achievedAccuracy: -1
        achievedSpeed: -1
        accessoryUsed: false
        reachability: 1
        powered: false
        autoStopped: false
        deferredLocations: 0
        gpsCoexWifi: 0
        gpsCoexBt: 0
    metriclogs {
      triggerTime: 1357936168522
      triggerId: 655363
      profileId: 190008
      locationUpdateSession {
        timestamp: 1357936165578
        timestampEnd: 1357936168503
        desiredAccuracy: -2
        cellAvailable: true
        wifiAvailable: false
        passcodeLocked: false
        airplaneMode: false
        ttff: 0
        ttffGps: -1
        bundleid: "com.apple.Maps"
        achievedAccuracy: 583
        achievedSpeed: -1
        accessoryUsed: false
        reachability: 1
        powered: false
        autoStopped: false
        deferredLocations: 0
        gpsCoexWifi: 0
        gpsCoexBt: 0
    metriclogs {
      triggerTime: 1357936594397
      triggerId: 520198
      profileId: 190049
      pushReceivedHotship {
        timestamp: 1357923600000
        connectionType: 1
        linkQuality: 100
        receiveOffset: 0
        payloadSize: 505
        isFromStorage: 0
    metriclogs {
      triggerTime: 1357939255970
      triggerId: 655365
      profileId: 190010
      compassSession {
        timestamp: 1357938955882
        timestampEnd: 1357939255927
        uncalibrations: 0
        bundleid: "com.apple.camera"
        achievedCalibration: 5
        magnitudeMin: 543
        magnitudeMax: 636
    metriclogs {
      triggerTime: 1357952376025
      triggerId: 655363
      profileId: 190008
      locationUpdateSession {
        timestamp: 1357952376011
        timestampEnd: 1357952376014
        desiredAccuracy: -1
        cellAvailable: true
        wifiAvailable: false
        passcodeLocked: false
        airplaneMode: false
        ttff: -1
        ttffGps: -1
        bundleid: "com.aol.mapquest"
        achievedAccuracy: -1
        achievedSpeed: -1
        accessoryUsed: false
        reachability: 1
        powered: true
        autoStopped: false
        deferredLocations: 0
        gpsCoexWifi: 0
        gpsCoexBt: 0
    metriclogs {
      triggerTime: 1357952405801
      triggerId: 655363
      profileId: 190008
      locationUpdateSession {
        timestamp: 1357952376062
        timestampEnd: 1357952405800
        desiredAccuracy: -1
        cellAvailable: true
        wifiAvailable: false
        passcodeLocked: false
        airplaneMode: false
        ttff: 0
        ttffGps: 0
        bundleid: "com.aol.mapquest"
        achievedAccuracy: 5
        achievedSpeed: 5
        accessoryUsed: false
        reachability: 1
        powered: true
        autoStopped: false
        deferredLocations: 0
        gpsCoexWifi: 0
        gpsCoexBt: 0
    metriclogs {
      triggerTime: 1357952424622
      triggerId: 655363
      profileId: 190008
      locationUpdateSession {
        timestamp: 1357952405879
        timestampEnd: 1357952424620
        desiredAccuracy: -1
        cellAvailable: true
        wifiAvailable: false
        passcodeLocked: false
        airplaneMode: false
        ttff: 0
        ttffGps: 0
        bundleid: "com.aol.mapquest"
        achievedAccuracy: 5
        achievedSpeed: 7
        accessoryUsed: false
        reachability: 1
        powered: true
        autoStopped: false
        deferredLocations: 0
        gpsCoexWifi: 0
        gpsCoexBt: 0
    metriclogs {
      triggerTime: 1357952432533
      triggerId: 655363
      profileId: 190008
      locationUpdateSession {
        timestamp: 1357952424723
        timestampEnd: 1357952432533
        desiredAccuracy: -1
        cellAvailable: true
        wifiAvailable: false
        passcodeLocked: false
        airplaneMode: false
        ttff: 0
        ttffGps: 0
        bundleid: "com.aol.mapquest"
        achievedAccuracy: 5
        achievedSpeed: 0
        accessoryUsed: false
        reachability: 1
        powered: true
        autoStopped: false
        deferredLocations: 0
        gpsCoexWifi: 0
        gpsCoexBt: 0
    metriclogs {
      triggerTime: 1357952558077
      triggerId: 655363
      profileId: 190008
      locationUpdateSession {
        timestamp: 1357952432587
        timestampEnd: 1357952558076
        desiredAccuracy: -1
        cellAvailable: true
        wifiAvailable: false
        passcodeLocked: false
        airplaneMode: false
        ttff: 0
        ttffGps: 0
        bundleid: "com.aol.mapquest"
        achievedAccuracy: 5
        achievedSpeed: 5
        accessoryUsed: false
        reachability: 1
        powered: true
        autoStopped: false
        deferredLocations: 0
        gpsCoexWifi: 0
        gpsCoexBt: 0
    metriclogs {
      triggerTime: 1357953139952
      triggerId: 655363
      profileId: 190008
      locationUpdateSession {
        timestamp: 1357952558170
        timestampEnd: 1357953139950
        desiredAccuracy: -1
        cellAvailable: true
        wifiAvailable: false
        passcodeLocked: false
        airplaneMode: false
        ttff: 0
        ttffGps: 0
        bundleid: "com.aol.mapquest"
        achievedAccuracy: 5
        achievedSpeed: 19
        accessoryUsed: false
        reachability: 1
        powered: true
        autoStopped: false
        deferredLocations: 0
        gpsCoexWifi: 0
        gpsCoexBt: 0
    metriclogs {
      triggerTime: 1357953206954
      triggerId: 655363
      profileId: 190008
      locationUpdateSession {
        timestamp: 1357953139958
        timestampEnd: 1357953206952
        desiredAccuracy: -1
        cellAvailable: true
        wifiAvailable: false
        passcodeLocked: false
        airplaneMode: false
        ttff: 0
        ttffGps: 0
        bundleid: "com.aol.mapquest"
        achievedAccuracy: 5
        achievedSpeed: 5
        accessoryUsed: false
        reachability: 1
        powered: true
        autoStopped: false
        deferredLocations: 0
        gpsCoexWifi: 0
        gpsCoexBt: 0
    metriclogs {
      triggerTime: 1357953212425
      triggerId: 655363
      profileId: 190008
      locationUpdateSession {
        timestamp: 1357953207033
        timestampEnd: 1357953212422
        desiredAccuracy: -1
        cellAvailable: true
        wifiAvailable: false
        passcodeLocked: false
        airplaneMode: false
        ttff: 0
        ttffGps: 0
        bundleid: "com.aol.mapquest"
        achievedAccuracy: 5
        achievedSpeed: 3
        accessoryUsed: false
        reachability: 1
        powered: true
        autoStopped: false
        deferredLocations: 0
        gpsCoexWifi: 0
        gpsCoexBt: 0
    metriclogs {
      triggerTime: 1357953213363
      triggerId: 655363
      profileId: 190008
      locationUpdateSession {
        timestamp: 1357953213342
        timestampEnd: 1357953213359
        desiredAccuracy: -1
        cellAvailable: true
        wifiAvailable: false
        passcodeLocked: false
        airplaneMode: false
        ttff: 0
        ttffGps: 0
        bundleid: "com.aol.mapquest"
        achievedAccuracy: 5
        achievedSpeed: 1
        accessoryUsed: false
        reachability: 1
        powered: true
        autoStopped: false
        deferredLocations: 0
        gpsCoexWifi: 0
        gpsCoexBt: 0
    metriclogs {
      triggerTime: 1357953394824
      triggerId: 655363
      profileId: 190008
      locationUpdateSession {
        timestamp: 1357953383295
        timestampEnd: 1357953394820
        desiredAccuracy: -1
        cellAvailable: true
        wifiAvailable: false
        passcodeLocked: false
        airplaneMode: false
        ttff: 0
        ttffGps: 0
        bundleid: "com.aol.mapquest"
        achievedAccuracy: 5
        achievedSpeed: 9
        accessoryUsed: false
        reachability: 1
        powered: true
        autoStopped: false
        deferredLocations: 0
        gpsCoexWifi: 0
        gpsCoexBt: 0
    metriclogs {
      triggerTime: 1357953537585
      triggerId: 655363
      profileId: 190008
      locationUpdateSession {
        timestamp: 1357953534102
        timestampEnd: 1357953537579
        desiredAccuracy: -1
        cellAvailable: true
        wifiAvailable: false
        passcodeLocked: false
        airplaneMode: false
        ttff: 0
        ttffGps: 0
        bundleid: "com.aol.mapquest"
        achievedAccuracy: 5
        achievedSpeed: 25
        accessoryUsed: false
        reachability: 1
        powered: true
        autoStopped: false
        deferredLocations: 0
        gpsCoexWifi: 0
        gpsCoexBt: 0
    metriclogs {
      triggerTime: 1357959169342
      triggerId: 655363
      profileId: 190008
      locationUpdateSession {
        timestamp: 1357959124751
        timestampEnd: 1357959169290
        desiredAccuracy: -1
        cellAvailable: true
        wifiAvailable: false
        passcodeLocked: false
        airplaneMode: false
        ttff: 0
        ttffGps: 3
        bundleid: "com.apple.Maps"
        achievedAccuracy: 5
        achievedSpeed: 2
        accessoryUsed: false
        reachability: 1
        powered: false
        autoStopped: false
        deferredLocations: 0
        gpsCoexWifi: 0
        gpsCoexBt: 0
    metriclogs {
      triggerTime: 1357959358674
      triggerId: 655365
      profileId: 190010
      compassSession {
        timestamp: 1357959355220
        timestampEnd: 1357959358604
        uncalibrations: 0
        bundleid: "com.apple.mobilesafari"
        achievedCalibration: 5
        magnitudeMin: 577
        magnitudeMax: 587
    metriclogs {
      triggerTime: 1357959368238
      triggerId: 655365
      profileId: 190010
      compassSession {
        timestamp: 1357959359049
        timestampEnd: 1357959368222
        uncalibrations: 0
        bundleid: "com.apple.mobilesafari"
        achievedCalibration: 5
        magnitudeMin: 580
        magnitudeMax: 590
    metriclogs {
      triggerTime: 1357959371889
      triggerId: 655365
      profileId: 190010
      compassSession {
        timestamp: 1357959369291
        timestampEnd: 1357959371877
        uncalibrations: 0
        bundleid: "com.apple.mobilesafari"
        achievedCalibration: 5
        magnitudeMin: 580
        magnitudeMax: 586
    metriclogs {
      triggerTime: 1357959374035
      triggerId: 655365
      profileId: 190010
      compassSession {
        timestamp: 1357959373483
        timestampEnd: 1357959374026
        uncalibrations: 0
        bundleid: "com.apple.mobilesafari"
        achievedCalibration: 5
        magnitudeMin: 579
        magnitudeMax: 583
    metriclogs {
      triggerTime: 1357959376214
      triggerId: 655365
      profileId: 190010
      compassSession {
        timestamp: 1357959375526
        timestampEnd: 1357959376202
        uncalibrations: 0
        bundleid: "com.apple.mobilesafari"
        achievedCalibration: 5
        magnitudeMin: 576
        magnitudeMax: 582
    metriclogs {
      triggerTime: 1357959380767
      triggerId: 655365
      profileId: 190010
      compassSession {
        timestamp: 1357959377509
        timestampEnd: 1357959380759
        uncalibrations: 0
        bundleid: "com.apple.mobilesafari"
        achievedCalibration: 3
        magnitudeMin: 577
        magnitudeMax: 587
    metriclogs {
      triggerTime: 1357959385995
      triggerId: 655365
      profileId: 190010
      compassSession {
        timestamp: 1357959381281
        timestampEnd: 1357959385984
        uncalibrations: 0
        bundleid: "com.apple.mobilesafari"
        achievedCalibration: 5
        magnitudeMin: 580
        magnitudeMax: 586
    metriclogs {
      triggerTime: 1357959391780
      triggerId: 655365
      profileId: 190010
      compassSession {
        timestamp: 1357959386610
        timestampEnd: 1357959391766
        uncalibrations: 0
        bundleid: "com.apple.mobilesafari"
        achievedCalibration: 5
        magnitudeMin: 580
        magnitudeMax: 586
    metriclogs {
      triggerTime: 1357959393763
      triggerId: 655365
      profileId: 190010
      compassSession {
        timestamp: 1357959392823
        timestampEnd: 1357959393741
        uncalibrations: 0
        bundleid: "com.apple.mobilesafari"
        achievedCalibration: 5
        magnitudeMin: 578
        magnitudeMax: 584
    metriclogs {
      triggerTime: 1357959395345
      triggerId: 655365
      profileId: 190010
      compassSession {
        timestamp: 1357959394192
        timestampEnd: 1357959395333
        uncalibrations: 0
        bundleid: "com.apple.mobilesafari"
        achievedCalibration: 0
        magnitudeMin: 578
        magnitudeMax: 584
    metriclogs {
      triggerTime: 1357959396323
      triggerId: 655365
      profileId: 190010
      compassSession {
        timestamp: 1357959395744
        timestampEnd: 1357959396311
        uncalibrations: 0
        bundleid: "com.apple.mobilesafari"
        achievedCalibration: 5
        magnitudeMin: 578
        magnitudeMax: 583
    metriclogs {
      triggerTime: 1357959397264
      triggerId: 655365
      profileId: 190010
      compassSession {
        timestamp: 1357959396343
        timestampEnd: 1357959397253
        uncalibrations: 0
        bundleid: "com.apple.mobilesafari"
        achievedCalibration: 5
        magnitudeMin: 579
        magnitudeMax: 584
    metriclogs {
      triggerTime: 1357959399785
      triggerId: 655365
      profileId: 190010
      compassSession {
        timestamp: 1357959397609
        timestampEnd: 1357959399769
        uncalibrations: 0
        bundleid: "com.apple.mobilesafari"
        achievedCalibration: 5
        magnitudeMin: 579
        magnitudeMax: 584
    metriclogs {
      triggerTime: 1357959402867
      triggerId: 655365
      profileId: 190010
      compassSession {
        timestamp: 1357959400209
        timestampEnd: 1357959402850
        uncalibrations: 0
        bundleid: "com.apple.mobilesafari"
        achievedCalibration: 5
        magnitudeMin: 580
        magnitudeMax: 593
    metriclogs {
      triggerTime: 1357959404846
      triggerId: 655365
      profileId: 190010
      compassSession {
        timestamp: 1357959403643
        timestampEnd: 1357959404832
        uncalibrations: 0
        bundleid: "com.apple.mobilesafari"
        achievedCalibration: 5
        magnitudeMin: 580
        magnitudeMax: 586
    metriclogs {
      triggerTime: 1357959405577
      triggerId: 655365
      profileId: 190010
      compassSession {
        timestamp: 1357959405361
        timestampEnd: 1357959405561
        uncalibrations: 0
        bundleid: "com.apple.mobilesafari"
        achievedCalibration: 0
        magnitudeMin: 581
        magnitudeMax: 587
    metriclogs {
      triggerTime: 1357959406366
      triggerId: 655365
      profileId: 190010
      compassSession {
        timestamp: 1357959406112
        timestampEnd: 1357959406352
        uncalibrations: 0
        bundleid: "com.apple.mobilesafari"
        achievedCalibration: 0
        magnitudeMin: 583
        magnitudeMax: 586
    metriclogs {
      triggerTime: 1357959407473
      triggerId: 655365
      profileId: 190010
      compassSession {
        timestamp: 1357959406893
        timestampEnd: 1357959407461
        uncalibrations: 0
        bundleid: "com.apple.mobilesafari"
        achievedCalibration: 0
        magnitudeMin: 580
        magnitudeMax: 584
    metriclogs {
      triggerTime: 1357959410031
      triggerId: 655365
      profileId: 190010
      compassSession {
        timestamp: 1357959407707
        timestampEnd: 1357959410017
        uncalibrations: 0
        bundleid: "com.apple.mobilesafari"
        achievedCalibration: 5
        magnitudeMin: 580
        magnitudeMax: 586
    metriclogs {
      triggerTime: 1357959410990
      triggerId: 655365
      profileId: 190010
      compassSession {
        timestamp: 1357959410095
        timestampEnd: 1357959410976
        uncalibrations: 0
        bundleid: "com.apple.mobilesafari"
        achievedCalibration: 5
        magnitudeMin: 581
        magnitudeMax: 584
    metriclogs {
      triggerTime: 1357959412076
      triggerId: 655365
      profileId: 190010
      compassSession {
        timestamp: 1357959411773
        timestampEnd: 1357959412065
        uncalibrations: 0
        bundleid: "com.apple.mobilesafari"
        achievedCalibration: 0
        magnitudeMin: 579
        magnitudeMax: 583
    metriclogs {
      triggerTime: 1357959412637
      triggerId: 655365
      profileId: 190010
      compassSession {
        timestamp: 1357959412442
        timestampEnd: 1357959412625
        uncalibrations: 0
        bundleid: "com.apple.mobilesafari"
        achievedCalibration: 0
        magnitudeMin: 581
        magnitudeMax: 584
    metriclogs {
      triggerTime: 1357959413785
      triggerId: 655365
      profileId: 190010
      compassSession {
        timestamp: 1357959413145
        timestampEnd: 1357959413773
        uncalibrations: 0
        bundleid: "com.apple.mobilesafari"
        achievedCalibration: 0
        magnitudeMin: 581
        magnitudeMax: 585
    metriclogs {
      triggerTime: 1357959416065
      triggerId: 655365
      profileId: 190010
      compassSession {
        timestamp: 1357959413949
        timestampEnd: 1357959416056
        uncalibrations: 0
        bundleid: "com.apple.mobilesafari"
        achievedCalibration: 5
        magnitudeMin: 578
        magnitudeMax: 587
    metriclogs {
      triggerTime: 1357959445993
      triggerId: 655365
      profileId: 190010
      compassSession {
        timestamp: 1357959445380
        timestampEnd: 1357959445978
        uncalibrations: 0
        bundleid: "com.apple.mobilesafari"
        achievedCalibration: 0
        magnitudeMin: 586
        magnitudeMax: 591
    metriclogs {
      triggerTime: 1357959449933
      triggerId: 655365
      profileId: 190010
      compassSession {
        timestamp: 1357959447094
        timestampEnd: 1357959449919
        uncalibrations: 0
        bundleid: "com.apple.mobilesafari"
        achievedCalibration: 3
        magnitudeMin: 580
        magnitudeMax: 586
    metriclogs {
      triggerTime: 1357959450684
      triggerId: 655365
      profileId: 190010
      compassSession {
        timestamp: 1357959450530
        timestampEnd: 1357959450673
        uncalibrations: 0
        bundleid: "com.apple.mobilesafari"
        achievedCalibration: 0
        magnitudeMin: 580
        magnitudeMax: 584
    metriclogs {
      triggerTime: 1357959452186
      triggerId: 655365
      profileId: 190010
      compassSession {
        timestamp: 1357959451310
        timestampEnd: 1357959452173
        uncalibrations: 0
        bundleid: "com.apple.mobilesafari"
        achievedCalibration: 5
        magnitudeMin: 580
        magnitudeMax: 585
    metriclogs {
      triggerTime: 1357959453841
      triggerId: 655365
      profileId: 190010
      compassSession {
        timestamp: 1357959453148
        timestampEnd: 1357959453830
        uncalibrations: 0
        bundleid: "com.apple.mobilesafari"
        achievedCalibration: 0
        magnitudeMin: 580
        magnitudeMax: 584
    metriclogs {
      triggerTime: 1357959456849
      triggerId: 655365
      profileId: 190010
      compassSession {
        timestamp: 1357959454924
        timestampEnd: 1357959456840
        uncalibrations: 0
        bundleid: "com.apple.mobilesafari"
        achievedCalibration: 5
        magnitudeMin: 581
        magnitudeMax: 590
    metriclogs {
      triggerTime: 1357959468809
      triggerId: 655365
      profileId: 190010
      compassSession {
        timestamp: 1357959468789
        timestampEnd: 1357959468796
        uncalibrations: 0
        bundleid: "com.apple.mobilesafari"
        achievedCalibration: 0
        magnitudeMin: 2147483647
        magnitudeMax: -2147483648
    metriclogs {
      triggerTime: 1357959470127
      triggerId: 655365
      profileId: 190010
      compassSession {
        timestamp: 1357959468797
        timestampEnd: 1357959470115
        uncalibrations: 0
        bundleid: "com.apple.mobilesafari"
        achievedCalibration: 3
        magnitudeMin: 583
        magnitudeMax: 592
    metriclogs {
      triggerTime: 1357959471035
      triggerId: 655365
      profileId: 190010
      compassSession {
        timestamp: 1357959470709
        timestampEnd: 1357959471024
        uncalibrations: 0
        bundleid: "com.apple.mobilesafari"
        achievedCalibration: 0
        magnitudeMin: 584
        magnitudeMax: 587
    metriclogs {
      triggerTime: 1357959471548
      triggerId: 655365
      profileId: 190010
      compassSession {
        timestamp: 1357959471409
        timestampEnd: 1357959471534
        uncalibrations: 0
        bundleid: "com.apple.mobilesafari"
        achievedCalibration: 0
        magnitudeMin: 582
        magnitudeMax: 586
    metriclogs {
      triggerTime: 1357959472178
      triggerId: 655365
      profileId: 190010
      compassSession {
        timestamp: 1357959472042
        timestampEnd: 1357959472163
        uncalibrations: 0
        bundleid: "com.apple.mobilesafari"
        achievedCalibration: 0
        magnitudeMin: 584
        magnitudeMax: 586
    metriclogs {
      triggerTime: 1357959473790
      triggerId: 655365
      profileId: 190010
      compassSession {
        timestamp: 1357959472792
        timestampEnd: 1357959473777
        uncalibrations: 0
        bundleid: "com.apple.mobilesafari"
        achievedCalibration: 3
        magnitudeMin: 582
        magnitudeMax: 590
    metriclogs {
      triggerTime: 1357959475662
      triggerId: 655365
      profileId: 190010
      compassSession {
        timestamp: 1357959475576
        timestampEnd: 1357959475648
        uncalibrations: 0
        bundleid: "com.apple.mobilesafari"
        achievedCalibration: 0
        magnitudeMin: 582
        magnitudeMax: 584
    metriclogs {
      triggerTime: 1357959476845
      triggerId: 655365
      profileId: 190010
      compassSession {
        timestamp: 1357959476729
        timestampEnd: 1357959476829
        uncalibrations: 0
        bundleid: "com.apple.mobilesafari"
        achievedCalibration: 0
        magnitudeMin: 583
        magnitudeMax: 585
    metriclogs {
      triggerTime: 1357959484335
      triggerId: 655365
      profileId: 190010
      compassSession {
        timestamp: 1357959477425
        timestampEnd: 1357959484320
        uncalibrations: 0
        bundleid: "com.apple.mobilesafari"
        achievedCalibration: 5
        magnitudeMin: 580
        magnitudeMax: 597
    metriclogs {
      triggerTime: 1357959484714
      triggerId: 655365
      profileId: 190010
      compassSession {
        timestamp: 1357959484334
        timestampEnd: 1357959484705
        uncalibrations: 0
        bundleid: "com.apple.mobilesafari"
        achievedCalibration: 0
        magnitudeMin: 578
        magnitudeMax: 582
    metriclogs {
      triggerTime: 1357959499472
      triggerId: 655365
      profileId: 190010
      compassSession {
        timestamp: 1357959496601
        timestampEnd: 1357959499459
        uncalibrations: 0
        bundleid: "com.apple.mobilesafari"
        achievedCalibration: 5
        magnitudeMin: 585
        magnitudeMax: 592
    metriclogs {
      triggerTime: 1357959504098
      triggerId: 655365
      profileId: 190010
      compassSession {
        timestamp: 1357959499848
        timestampEnd: 1357959504084
        uncalibrations: 0
        bundleid: "com.apple.mobilesafari"
        achievedCalibration: 3
        magnitudeMin: 585
        magnitudeMax: 595
    metriclogs {
      triggerTime: 1357959505720
      triggerId: 655365
      profileId: 190010
      compassSession {
        timestamp: 1357959504501
        timestampEnd: 1357959505702
        uncalibrations: 0
        bundleid: "com.apple.mobilesafari"
        achievedCalibration: 5
        magnitudeMin: 586
        magnitudeMax: 591
    metriclogs {
      triggerTime: 1357959509456
      triggerId: 655365
      profileId: 190010
      compassSession {
        timestamp: 1357959506752
        timestampEnd: 1357959509445
       

  • Remote users cannot log on to a computer that is using cached credentials following password policy expiration

    Hi, we are currently having issues with remote users when their AD account flags that their password needs to be changed.
    This happens when GPO enforces the user to change their password whilst they are not connected via a 3rd party VPN (OVPN Connect) which relies upon LDAP Authentication. When they next login, LDAP authentication knows that the password should have been changed
    and therefore will not allow users to connect securely. Because they cannot connect, they cannot get the Windows prompt to tell them that they need to change their password.
    Bit of a vicious circle. Can anyone suggest a work around or tweak for this?
    Thanks in advance
    I did come across an article but it applies to Windows 2000 http://support.microsoft.com/kb/818088/en-gb any updated versions of this for Windows 7?

    > they are not connected via a 3rd party VPN (OVPN Connect) which relies
    > upon LDAP Authentication. When they next login, LDAP authentication
    > knows that the password should have been changed and therefore will not
    You need to use a solution that can handle this situation within the VPN
    client (wich yours seemingly cannot)...
    Martin
    Mal ein
    GUTES Buch über GPOs lesen?
    NO THEY ARE NOT EVIL, if you know what you are doing:
    Good or bad GPOs?
    And if IT bothers me - coke bottle design refreshment :))

  • TS3112 I tried using sudo rm to get rid of remote desktops but the terminal responded as needing password and yet would not let me type in anything.  help please.

    I tried to type in details but unable to do so.  we lived in a gated apt buildings in Hi with 24-hour security guards and cameras.  This false sense of security led us to foolishly leave the computer on all the time, not log off even when out shopping.  Never expect people would open our locks (three locks) and walked into our apt while we were out.  We have dishes, clothes and corning vision cookwares missing.  We have all our important docs including computer serial numbers.  We noticed our computer not respond and files and applications move around.  We know they are not done by themselves and looked into console log list.  The person who remotely logs or links with our computer thought that we are old folks and knew little about how to discover their act. Tried many times to get rid of it but was not successful.  Finally today we hauled our  imac to the apple store and explained the need to get rid of remote desktop.  All went well and we thought our computer is at a factory installed state.   We forgot to start firewall, probably did not disconnect third party help status (apple store third party).  Forgot to write down cable provider IP and resulted in using wi fi.  Look into system log list and other diagnostics messages and found an mac book pro and went back to see if I can write down the entire message but this time it went blank.  system log blank, library logs blank and /var/logs blank and so is user log.  Activity monitor froze would not open.  We had it clean up in apple store today november 18, 2013.  We have an Imac and don't know anyone who owns mac book pro with log message dated on oct 22.  The question is how it still hangs around after reset at the apple store and how to get rid of it and if it is possible?  greatly appreciated. 

    The Terminal is letting you type it in. It just doesn't display anything when you do.
    (92983)

  • Report on remote users mapped drives

    After a very thorough search, I can't find anyone else who has had this question answered.
    I have a need to on-the-fly report on the mapped drives and their letters of users on remote computers. Running "Get-WmiObject -Class Win32_MappedLogicalDisk | select Name, ProviderName" only returns my drives under my credentials, not the remote user. Looking
    at HKU:\sid\network apparently only reports persisent mapped drives or drives mapped by the customer and not drives mapped by logon script that are not persistent.
    There doesn't seem to be a way to do this on-the-fly which is dissapointing, so I'm hoping you'll have a trick up your sleeve!
    The only way I can figure to get the information, but not on the fly, is to have a logon script run as the user and grab the info and save it somewhere. I'm really hoping not to resort to that. All of that becomes historical info and won't reflect changes
    that happen after logon, so it's not going to always be a true reflection of reality.
    The key seems to be running a wmi query as someone else that you don't have credentials for. Is that possible? Or do you have another suggestion?
    Ian

    I believe this post may already be closed.  I, however, would like to add my findings:  When I run this against different pc's with different users logged on:  Get-WmiObject
    -Class Win32_MappedLogicalDisk -ComputerName <remote computer> | select Name, ProviderName
    (Keep in mind that I'm a local admin on my pc as well as the destination pc's
    as well.)
    1. The logged on user is non-admin on their pc.
    Mapped drives are not retrieved
    2. The logged on user is admin on their pc.
    Mapped drives are retrieved
    3. I'm logged on to the remote pc (local admin)
    Mapped drives are retrieved
    Conclusion:  As long as the target pc logged on user is local admin on that pc then the
    mapped network drives will be pulled by the previously mentioned command.  Otherwise, it will come back empty.
    A question posted previously was:  "I'm
    curious why you need to know mapped drives??" In my case, I am trying to back up mapped network drives for all domain users.  However, logon or logoff scripts are not
    an option.
    The real question should be: Why is the previously mentioned command not pulling the mapped network drives when the logged on user is not a local admin on the target pc?
    I believe the answer is that the drives are not mapped to the remote computer per se, but to the user's process on the remote computer. And while an admin on that computer has significant power over the hardware and operating system, it cannot take control
    of the process, which is locked by the user's credentials.
    Consider remote control. My regular account is logged onto another computer. I run mstsc to establish a remote control session on that remote system under the same credentials. The effect is to disconnect the other remote session and lock the system on its
    console, and for the new session to inherit the original process, seeing the same desktop with the same apps open.
    I then run mstsc to establish another remote control session, this time using an account that is an administrator on that system. It tells me my regular account is already logged on, and gives me two options, abort my new session, or log the user out. using
    my admin credentials, I cannot take over the user's session and see what applications he has open or what drives he may have mapped.
    Al Dunbar -- remember to 'mark or propose as answer' or 'vote as helpful' as appropriate.

  • SCCM 2012 usage report for remote users

    Hi,
    Can someone help to get the SCCM  usage report for all remote users who accessed particular application remotely on windows 7 workstation
    Regards,
    Madhan

    If the application is something and executable that the users have to start, you can use Software Metering.
    My Blog: http://www.petervanderwoude.nl/
    Follow me on twitter: pvanderwoude

  • Will remote users be impacted by password complexity in AD?

    How does Password Complexity affect remote user once the password has expired? When they attempt to
    connect via Windows 7 Remote Desktop Connection to our shared drives, they will get the notification but how to change it since the machine is not connected to the domain? Since we also use MS Exchange, I read one workaround was to change the password via
    the Exchange Webmail. Would that be accurate? Thanks!

    Hi
    We have just rolled out a new MDM platform which uses Active Sync in our Exchange 2010 environment. We've had a number of issues when users change their AD password on their desktop computer. 
    The most alarming one however is some users are experiencing delays of over a week before their phone prompts them to update their e-mail account password to match their new AD password.
    I understand from the research I've done that Exchange Active Sync is designed in this manner, such that it holds the session keys open for up to 24 hours, but usually resets within an hour or two, so that the old and new passwords are both accepted for
    a short time.
    But a week is excessive. In fact, I had one user who was NEVER prompted to update their password, and was still receiving e-mail 9 days after changing their AD pass. As a test, I did an IISRESET on both our Exchange CAS-role servers, and his phone immediately
    prompted him to update his pass and denied email delivery until he did so.
    Clearly there is something wrong with our IIS configuration, this can't be by design, can it? Are there some specific settings in IIS that is causing the sessions to stay open for weeks? Or do I need to setup a scheduled task to reset IIS every 8 hours (that
    seems a tad ridiculous). This must be a security concern?
    Same issue before you starting using the MDM product?
    Twitter!: Please Note: My Posts are provided “AS IS” without warranty of any kind, either expressed or implied.

  • Remote User IP Address Function Problem

    I am using the APEX listener for weblogic with Apache in front. When I use owa_util.get_cgi_env ('REMOTE_ADDR'), I am not receiving the IP of the remote user but instead I am getting the application server IP. Does anyone have any ideas on how I can fix this?

    There is no reliable way to determine the original IP, and such information is not useful to you if the original IP is behind a firewall. What do you propose to use it for? There is probably an alternative way to do things that does not require the remote IP.

  • RFx is getting created by PI User

    Dear Experts,
    PI instance is required to get data related to PR from ECC to create an RFx in SRM
    And we activated the required Sourcing enhancements in PI  and we are using XI adapter.
    Everything is fine, we are able to create RFx in SRM(CPPR Scenario) without any error.
    But the issue is it is showing that as it is getting created by PI user as it is a dialog user required for PI instance.
    How can we change this to purchaser userid?
    Thanks in Advance
    Rgrds,
    Sravan

    Hello,
    By SAP standard SOA communication happens via generic XI user.
    However, if you want to change this, what is needed is the Principal Propagation in PI to make sure that same user context is carried throughout.
    You should follow the instructions in SAP Help http://help.sap.com/saphelp_nw04/helpdata/DE/45/345d11a7993446e10000000a
    155369/frameset.htm which will make Principal Propagation to work.
    Then you need to make one customizing entry which will make sure that communication uses the created by user instead genric XI user.
    Go SPRO  >Integration with Other mySAP.com Components  > Supplier Relationship Management  >Message Control  > Activate Outbound Messages through qRFC. Next screen make below entries.
    Object Type   Event                                  Tech.
    BUS2105       RFXREQUESTED                queued Remote Function call (qRFC)
    BUS2105       SOURCINGREQUESTED     queued Remote Function call (qRFC)
    Add 2nd entry only if you want same behavior with transferring PR also to shopping cart.
    Regards,
    Ricardo

  • Error message "user is not a member of the remote users group"

    user is member of the remote users group on PC, I did not think about adding domain remote users to local pc remote group I will try that, yes domain login works fine locally and also remotely using vnc over Pertino, just not through rdp over Pertino

    I have a user that win 7 pro PC died replaced with win 7 pro PC, user uses RDP from home Win 7 PC over Pertino to access work PC.
    User is a member of domain Remote users group, user was added to PC remote settings as an authorized user, user gets error everytime not a member. This was working fine with old computer for several months until motherboard died, cannot understand how new computer setup same way now has issue. User is not an admin of local PC. I am pretty sure this would fix the problem but would like to avoid since he is "one of those users" that love to get into a mess. 
    This topic first appeared in the Spiceworks Community

Maybe you are looking for

  • Unable to type in boby of email.

    Help! I'm able to type in To:, Cc: and Subject:. When I enter text into the body of the email I'm able to type a maybe 8 lettersor numbers and it starts the 'thumping'. Can't Send, Attach. I'm able to QUit but nothing happens. Very strange. Tried rei

  • How to use a function

    Hi I want to determine the variance for a column of numerical values.  I gather I should use 'insert function' in a new cell for this.  I'll get a display like this: =VAR(num-date,num-date...).  What do I enter to calculate the variance for, say, the

  • Need help with preserving quality, please!

    I am new to this, but learning. I have old 8mm footage that I paid to have converted to DVD. First I copied the .vob files from the disk to my hard drive then converted to DV with mpeg streamclip. I then chose the Deinterlace option to remove artifac

  • Hibernate - createQuery problems

    Hi! I'm getting this exception and can't locate what is wrong: org.hibernate.QueryException: ClassNotFoundException: org.hibernate.hql.ast.HqlToken [from com.test.model.User where userId = ?]      org.hibernate.hql.ast.HqlLexer.panic(HqlLexer.java:57

  • Fiscalvariant Issue in 2LIS_03_UM

    Hi, I have instlled 0IC_C03 and everything is in active.But when I am loading UM data I am getting the issue Detailed Fiscalvariant not Processed. And in details tab message was as mentione d below. Error Location: Object Type    TRFN Error Location: