Log on - Windows XP

I just got my X300 and put on Windows XP because the Vista took up too much space on an already small hard drive. (Also wanted to get rid of bloatware and didn't like comfirming every move I made on Vista).
I then wanted to get rid of the Welcome screen asking for my fingerprint and confirming that I was the administrator (user?) every time I started up. Instead of accomplishing this I now have to press cntl-alt-del and then click OK to get on! Argggh...
I have gone to "Change the way users log on and off" and unchecked the welcome screen, but I am getting a messsage:
"A recently installed program has disabled the welcome screen and fast user switching. To restore these features you must uninstall the program. The following name might help you identify the program that made the change. vrlogon.dll."
I am the ONLY person using this computer and don't want passwords to sign on....just want to open and go. Any ideas on how to fix this or should I just reinstall?  I tried a restore, but couldn't get the restore to go back.
Thanks, Jill
Solved!
Go to Solution.

Thanks again, I did get Tweak IU open and followed instructions. Nothing happened so I rebooted and then my welcome screen reverted back to factory installed screen and some icons were missing, but I was in without a password.  Then when I closed the lid and reopened the message  was back. ...  "This computer is in use and has been locked. Please logon to enroll your fingerprints or press ctrl-alt-delete to logon using a password"
So I still have to press ctrl-alt-del end then click OK  every time I open the laptop. Not a terrible thing but a nusiance since it takes two hands and two steps! 
I am just trying to be at the welcome screen without clicking on the administrator icon, but looks like that would be better than what I am doing now.  Jill

Similar Messages

  • CryptAcquireContext failing with ERROR_FILE_NOT_FOUND (2L) when user not logged on Windows 8.1

    I am having a hard time migrating a C++ CryptoAPI-based application that currently runs on Windows Server 2008 to Windows 8.1. The scenario is:
    This application is eventually triggered by WatchDog.exe, which in its turn is triggered when the computer is started by Windows' Task Scheduler.
    Task Scheduler uses the following rules to start the WatchDog.exe:
    A Administrator User Account;
    Run Whether user is logged on or not;
    UNCHECKED: Do not store password. The task will only have access to local resources;
    Run with Highest Privileges;
    Configure for Win 8.1;
    Triggered at system startup.
    The server sits there, nobody logged, until in a given scenario WatchDog.exe starts the application. Application log confirms that the owner of the process (GetUserName)
    is the very same user Task Scheduler used to trigger WatchDog.exe.
    It turns out that this application works fine in Windows Server 2008, but in windows 8.1 a call to CryptAcquireContext fails
    with return code ERROR_FILE_NOT_FOUND (2L). The odd thing is that the application will NOT fail if, when started, the user is physically logged
    on the machine, although it was not the user who started the application manually.
    I took a look at the documentation and
    found:
    "The profile of the user is not loaded and cannot be found. This happens when the application impersonates a user, for example, the IUSR_ComputerName account."
    I had never heard of impersonification, so I made a research and found the APIs LogonUser,ImpersonateLoggedOnUser and RevertToSelf.
    I then updated the application in this way:
    HANDLE hToken;
    if (! LogonUser(L"admin", L".", L"XXXXXXXX", LOGON32_LOGON_BATCH, LOGON32_PROVIDER_DEFAULT, &hToken))
    logger->log (_T("Error logging on."));
    else
    logger->log (PMLOG_LEVEL_TRACE, _T("Logged on."));
    if (! ImpersonateLoggedOnUser(hToken))
    logger->log (_T("Error impersonating."));
    else
    logger->log (_T("Impersonated."));
    err = XXXXXXXXX(); // calls function which will execute CryptAcquireContext
    if (! RevertToSelf())
    logger->log (_T("Error reverting."));
    else
    logger->log (_T("Reverted."));
    Excerpt with the call to CryptAcquireContext:
    // Get the handle to the default provider.
    if(! CryptAcquireContext(&hCryptProv, cryptContainerName, MS_ENHANCED_PROV, PROV_RSA_FULL, 0))
    DWORD e = GetLastError();
    _stprintf_s (logMsg, 1000, _T("Error %ld acquiring cryptographic provider."), e);
    cRSALogger->log (logMsg);
    return ERR_CCRYPT_NO_KEY_CONTAINER;
    cRSALogger->log (_T("Cryptographic provider acquired."));
    As the result, I got the log:
    [2015/01/08 20:53:25-TRACE] Logged on.
    [2015/01/08 20:53:25-TRACE] Impersonated.
    [2015/01/08 20:53:26-ERROR] Error 2 acquiring cryptographic provider.
    [2015/01/08 20:53:26-TRACE] Reverted.
    That seems to show that impersonation is working properly, but still I get Error 2 (ERROR_FILE_NOT_FOUND) on CryptAcquireContext.
    Summary:
    On Windows Server 2008, the very same application runs properly even without the calls to LogonUser/Impersonate/Revert.
    On Windows 8.1, the application, with or without the calls to LogonUser/Impersonate/Revert, will only work properly if the user is logged on (which
    is not acceptable).
    Any thoughts where I can run to in order to get this working on windows 8.1?
    Thank in advance,
    Dan

    There are a couple of issues.
    Based on the parameters being used in CryptAcquireContext().  A profile needs to be loaded and your app has to be running as the same user who created the keyset. (which is why it works when a user is logged on Windows 8.1) Also, impersonation
    does not load your user profile, you need to call LoadUserProfile().  It seems like you should be using a machine keyset for your scenario if you want to do this when nobody is logged on.
    Take a look at the following KB article for more information.
    https://support.microsoft.com/kb/238187?wa=wsignin1.0
    thanks
    Frank K [MSFT]

  • Get current logged in Windows user name

    Hi
    Is it possible to retrieve the current logged in Windows user name into a text field automatically?
    Thank you in advance for the help.

    Hi,
    This is a security issue and you will need a javascript file in the Acrobat folder. This will contain a trusted function allowing access to the login name.
    Here is a thread that looked at this:
    http://forums.adobe.com/message/2198084#2198084
    However read to the end, because if you are Reader Enabling the form (at least through Acrobat) then you may run into problems.
    Good luck,
    Niall

  • Tracking oracle database activities in security/system logs of windows server

    Can database activity like create or drop tables and packages be tracked in the security/system logs of windows 2003 server for the oracle database 10.2.0.4?
    Can purging of oracle log, n case the file has become big or even tempered be tracked in the security/system logs of windows 2003 server for the oracle database 10.2.0.4?
    dhomya

    Hi Dhomya,
    I am not familiar with Oracle database, though you may try to enable file system auditing:
    Audit object access
    https://technet.microsoft.com/en-us/library/cc776774(v=ws.10).aspx
    Apply or modify auditing policy settings for an object using Group Policy
    https://technet.microsoft.com/en-us/library/cc757864(v=ws.10).aspx
    Best Regards,
    Amy
    Please remember to mark the replies as answers if they help and un-mark them if they provide no help. If you have feedback for TechNet Subscriber Support, contact [email protected]

  • Blue screen when logging into windows server 2008 r2

    when logging into windows server 2008 r2, all I have is a blue screen and the mouse. 
    I tried looking for solutions on the internet, then I found a microsoft hotfix "http://support.microsoft.com/kb/2590550" I run the hotfix in command line but it gave me nothing, no error or success messages.
    I tried to reboot but I still have the same problem. 
    Is there any solution to this problem ?? 

    Hi,
    Thank you for posting in Windows Server Forum.
    Did you face this issue during remote session or console session?
    In addition, have you try to change or install any driver\software which cause this problem?
    Have you use any debugging tools from Microsoft to find respective error cause?
    You can refer following article for memory dump.
    How to read the small memory dump file that is created by Windows if a crash occurs
    http://support.microsoft.com/kb/315263/en-us
    Hope it helps!
    Thanks.
    Dharmesh Solanki

  • When deleting an e-mail on Gmail, the display reverts to the Gmail log-in window

    When deleting an e-mail on Gmail, the display reverts to the Gmail log-in window. Internet Explorer does not have this problem. Firefox did not have this problem until a few weeks ago.
    Firefox version 1.9.2 3855

    Ernie,
    The OP appears to be concerned about sent messages in particular, which, as you know, wouldn’t be on the server no matter what the settings and would certainly be lost as a result of deleting the account.
    <hr>
    thesameage,
    Deleting a POP account only deletes the messages stored in the account’s mailboxes. If you move those messages to custom “On My Mac” mailboxes or to the mailboxes of another account, you won’t lose them. It’s not that Mail goes after your mail trying to delete as much as it can. It’s just that if a mail account is deleted, then its mailboxes cannot exist anymore...
    Here’s the title of some Mail Help articles that explain how to create “On My Mac” mailboxes and organize your mail there however you wish:
    Creating a mailbox
    Organizing your email
    Alternatively, a quick and simple procedure to create a duplicate of the account’s mailbox structure as “On My Mac” mailboxes would be importing them doing File > Import Mailboxes, choosing Mail for Mac OS X as the data format, and selecting the ~/Library/Mail/POP-username@mailserver account folder.
    That said, instead of deleting the account right away, you can just disable it (i.e. turn OFF Preferences > Accounts > Advanced > Enable this account), leave it that way for some time, and delete it only after making sure you didn’t miss anything while the account was disabled.
    BTW, if you back up your data, and the ~/Library/Mail folder in particular, you won’t have to worry about accidentally losing anything as a result of doing something like that...
    Note: For those not familiarized with the ~/ notation, it refers to the user’s home folder. That is, ~/Library is the Library folder within the user’s home folder, i.e. /Users/username/Library.

  • Does anyone know how to turn of the pop-up iCloud log-in window on iPhone. I have no desire to use iCloud. I have turned off iCloud in settings but the pesky little critter is not deterred.

    Does anyone know how to turn off the pop-up iCloud log-in window on iPhone 5c. I have no desire to use iCloud. I have turned off iCloud in settings but that does not seem to deter the pesky little pop-up from continually asking me to log-in
    Thanks

    Pop up usually meant that icloud activation lock is still on on Apple servers. In order to deactivate you need to turn icloud back on by signing in and then sign out properly. For your sake I hope that you know the password.

  • Setting Markers in Log & Transfer window

    Hi All
    Anyone know a trick/plug-in that will enable me to set markers while I am setting my In's and Out's in the Log & Transfer Window before I 'Add Clip to Queue'? I would like to set markers indicating the interesting moments in the footage.
    cheers
    -j-

    Only notes, no markers in log and transfer.

  • My document will only print using wireless once I log off windows.

    I recently purchased the HP officejet wireless 4500 printer.  I am able to send documents to print, but then get an error message.  They will only print once I log off windows.  PLEASE HELP!

    Terry101
    Welcome to the HP Community Forum.
    To a large extent, the difficultly can be related to the type of document you are trying to print -- and the application you are using to print that document.
    PDF documents can be tricky -- sometimes, especially if you are trying to print these from the Internet, PDF files can be stupid-hard to print because the format is messed up.
    You can take a look at the following - no garantees -- it might help you find something that will help nail down what is going wrong or maybe help you figure out a way to get what you need.  For example, if all else fails, you can perhaps take a Snip of the document on the screen, save the Image, and print that.  It is a sorry excuse for a workaround - but at least you end up with something on paper.
    Manage Print Output with Print Preview
    Click the Kudos Thumbs-Up to say Thank You!
    And...Click Accept as Solution when my Answer provides a Fix or Workaround!
    I am pleased to provide assistance on behalf of HP. I do not work for HP. 
    Kind Regards,
    Dragon-Fur

  • How do I restart my computer for updates without having it reset because the log in window, suddenly, now appears?

    How do I restart my macbook for updates without having it reset because the log in window, suddenly, now appears? I've never had this issue until a few days ago when there were updates available. Somewhere the settings were changed. I may have inadvertently changed a log in preference but can't trace it back.

    That usually doesn't happen (unless you do not use automatic login) unless you boot into Safe Mode. When prompted do you enter your admin password? What happens when you do that?

  • I have a mac pro for work and they made it log on windows at start up.  how can i switch back to Mac as well so i will use the i cloud fetures ?

    I have a mac pro for work and they made it log on windows at start up.  how can i switch back to Mac as well so i will use the i cloud fetures ?

    Is a version of Mac OS running on this Mac? Reboot and hold down the option key.

  • How to view the login log in window NPS after login cisco switch and without SQL server database

    how to view the login log in window NPS after login cisco switch and without SQL server database
    in summary 
    there is only log with event id 4400
    A LDAP connection with domain controller XCPAWS20.cyberport.noc for domain NOC2 is established.

    Hi adil,
    For your issue, you can create a custom security token service (STS) and then set up a trust relationship between a SharePoint 2010 farm and the custom STS.
    For more information, you can refer to the articles:
    http://forums.asp.net/t/1335229.aspx?Sharing+Authentication+Ticket+Between+ASP+NET+and+Sharepoint
    https://msdn.microsoft.com/en-us/library/office/ff955607(v=office.14).aspx
    http://www.paraesthesia.com/archive/2011/02/01/working-with-windows-identity-foundation-in-asp-net-mvc.aspx/
    Best Regards,
    Eric
    Eric Tao
    TechNet Community Support

  • Schedule to Purge Event Logs in Windows

    Hi,
    How to schedule to purge event logs in windows 2003/2007.
    Thanks in advance.
    Regards,
    Saurabh

    This is obviously not an Oracle problem, but native Windows handling.
    Control panel ==> Administrative Tasks ==> Event Log ==> Properties has several settings, whether and when to delete event log contents.
    Werner

  • Can't get past Log-In window--Safe Boot

    I'll try and keep this easy/short: My iMac g-5(first Gen i-sight), when upon startup, the wheel would just spin and then the fans would blow turbo while stuck on the spinning wheel. Was running on Tiger but was able to salvage the h/d and all on it, no damage to it. So we erased all on my iMac and tried booting from disc. No good. Tried starting from another laptop; No good. Then cloned from working Leopard laptop, did basic install and got to the Log-in widow--in Safe Boot mode and cannot get past the Log-in window. I get a dialogue box w/an applications icon that says, " You are unable to log in to the user account "..." at this time. Logging in to the account failed because an error occurred." I hit okay and the dialogue box shakes a frustrating no at me.
    What do I do now?
    Any ideas? Thanx to all.

    Try an Archive and Install now, it will put a fresh copy of the OS but keep, your data and preferences. Cloning from a different system is not a very good idea, you run into the problems you have, and probably other ones as well.
    If the A&I doesn't work, you may have to wipe your drive and perform a clean install of Leopard.

  • Logged in windows username cant be searched in LDAP tree on Windows 2000 AD

    That is my active directory of my TEST Windows 2000 server:
    http://img248.imageshack.us/img248/918/adwn6.gif
    On the image yu will find 4 schools with shortcut names called:
    OU=ASR
    OU=EDS
    OU=EKS (EK school for example)
    OU=THS (TH school for example)
    Under every OU="shortcut of schoolname" you will find also the
    OU=Klassen (Klassen = classes in english)
    OU=Lehrer (Lehrer = teacher in english)
    again under every OU="class" and OU="teacher" you will find also the
    pupils and teachers.
    the teacher "verena bit" is located in:
    "CN=verena bit,OU=Lehrer,OU=ASR,DC=Bodensee,DC=DE"
    On the REAL Windows 2000 server used in production i have about 17 schools like OU=ASR or OU=EDS and so on...
    My part aim for the first...:
    With Java code: String Lehrer = System.getProperty("user.name");
    I can retrieve the name of the teacher (Lehrer = teacher) who has logged into the Windows client. The problem is i get for example a String like
    "verenabit" but in the ldap hierarchy all common names are for example like this: cn="verena bit" they have always a " " gap between the forename and the lastname so I can not use the String "verenabit" to search for it in the ldap tree as she would not exist right?
    What i finally want is to find out the OU="shortcut of schoolname" (see above) by searching for the logged in teacher. So when i have OU="shortcut of schoolname" of the teacher i am able to read ONLY the usernames(teachers+pupils) of that specific school and not all teacher+pupils of all 17 schools what would be about 8000 users :-D
    Can someone help me please how can i use the username of the logged in windows user and search him effectively in the ldap tree on my test windows 2000 server.
    Steven you want all my points? ROFL ;-)

    Here's a hint.
    Use a generic ldap tool (for example ldp.exe which is
    included in Windows Server, or whatever your
    favourite ldap browser is, and find the object in the
    Active Directory that corresponds to the user named
    Verna Bit.
    Believe it or not, you will find an attribute which
    has matching value to that returned from
    System.getProperty("user.name");Then you just need to construct the relevant LDAP
    Query Filter.
    It ain't rocket science !
    Good luck.Yes i already use ldp.exe i installed it from the win2k server CD its a great tool :)
    hm your hint is odd or how can i say dont know wether you really understood me, because what you suggested to me is actually what i doubted that it could work. Seems you have more faith??
    The problem is (not sure wether you really understood me...) that when i search the whole Directory having 8000 user, I could search for teachers only which are in OU=Lehrer (Lehrer = teacher) and just go one childnode down but "verena bit" IS NOT "verenabit". I cannot search for the username verenatbit as i wont get any result as it does not exist.

  • Automatically return to the log in window ...

    Hi ...   Can I automatically return to the log in window just before my computer goes to sleep ?

    No, but you can require a password to wake from sleep. See the settings in the General pane of System Preferences -> Security &amp; Privacy.

Maybe you are looking for

  • My ipad  wont let me download java it keep saying unable

     

  • Transfer Itunes from G5 to Mac Pro

    What is the quickest, easiest, most succesfull and painless way to transfer my Itunes to my new computer, info appreciated

  • Desktop connects to WRT300N, but no internet

    I have a Dell Dimension 8800 with a 2.4 GHz Wireless-N PCI adapter talking to a Linksys WRT300-N Wireless router.  The Linksys software says that the connection has been established and that the signal and strength are excellent. However, when I laun

  • Safari, iPhoto & iCal not finding Mail

    For some strange reason Safari cannot "see" Mail to "send a link" or "contents" of a web page. I get a message saying that I meed to install Mail first. In iPhoto the button to "email" a picture is generic (grey oblong and not iconic) and now only as

  • Elements 4.0 - printable manual / user guide?

    Just bought PS Elements 4.0 (pc) as a downloadble upgrade for Photoshop LE. Would like to have the manual in hard copy but can't seem to find the option for printing the whole text from within the program's help features. Is there any way to get arou