Wednesday, April 8, 2009

XP Immediately Logs Off

After cleaning out a virus-infected computer, the system would immediately log off after logging into any profile. It did this in Safe Mode, too. The same thing happened with the Administrator login.

The cause of the problem was that systemroot/system32/userinit.exe (for most systems: windows/system32/userinit.exe) had been deleted. The fix was to temporarily install the hard drive as the second drive in a computer with the same version of Windows XP. Then, I copied userinit.exe to windows/system32/ in the afflicted PC.

###

www.COMPUTERCRAFT.com

Thursday, March 5, 2009

Thursday, February 5, 2009

Removing unwanted email accounts from a Blackberry

If a Blackberry still receives unwanted email after a wipe:
Options > Advanced Options > Service Books

Delete any service books associated with the unwanted email addresses

###

www.COMPUTERCRAFT.com

Friday, January 16, 2009

Blackberry Trackball does not work

Here's something to try if the trackball on a Blackberry stops working:
  1. Place flat piece of corrugated cardboard from a packing box on a table or desk.
  2. Put a sheet of white paper on top of the cardboard.
  3. To not scuff the screen, hold a piece of soft cloth over the Blackberry display. Do make sure that the trackball is not covered.
  4. Place the Blackberry face down on the paper.
  5. With light pressure, roll the Blackberry around on the paper in figure eights using the trackball as the "wheel."
This procedure often will free up the trackball and fix the Blackberry.

###

www.COMPUTERCRAFT.com

Saturday, December 13, 2008

The security log on this system is full. Only administrators can log on to fix the problem.

In XP or in Windows Server 2003 when a user who is not a member of the Administrator Group tries to login, they receive this error message: The security log on this system is full. Only administrators can log on to fix the problem.

To solve this problem:
  1. Login to the local machine as the Administrator or as a user who is a member of the Administrator Group.

  2. START > CONTROL PANEL > ADMINISTRATIVE TOOLS > EVENT MANAGER
    (To see ADMINISTRATIVE TOOLS, you might need to click on SWITCH TO CLASSIC VIEW in the upper left of CONTROL PANEL.)

  3. In the left pane, right click on SECURITY and then select CLEAR ALL EVENTS.
    (SAVE only if you want a copy of the logs.)


To prevent the problem from happening :
  1. In the left paneof EVENT VIEWER, right click on SECURITY and then select PROPERTIES.

  2. Change WHEN MAXIMUM LOG SIZE IS REACHED to OVERWRITE EVENTS AS NEEDED.






    ###

    www.COMPUTERCRAFT.com

    Thursday, November 6, 2008

    Access to the path is denied error for ASP Page on Windows 2003 Server

    An ASP Page on a 2003 server got an Access to the path is denied when it tried to write to a file. I gave user ASPNET write permission, but that didn't solve the problem.

    I posted this code as a Page named identity.aspx in the troubled directory. It seemed that the identity of the ASP user was
    NT AUTHORITY\NETWORK SERVICE

    In IIs, I navigated to the particular Web Site, and then to the directory. I right clicked on the folder and then selected PERMISSIONS > ADVANCED > ADD > ADVANCED > FIND NOW. I added NETWORK SERVICE as a user and then provided write access. That solved the problem.

    - - -

    identity.aspx

    <%@ Page Language="VB" %>
    <%@ Import NameSpace = System.Security.Principal %>
    <script runat="server">
    Sub Page_Load()
    Dim tmp As String = WindowsIdentity.GetCurrent.Name()
    Label1.Text = tmp
    End Sub
    </script>
    <html>
    <head>
    <title>WindowsIdentity.GetCurrent.Name()</title>
    </head>
    <body>
    <form id="form1" runat="server">
    <div>
    <asp:Label ID="Label1" Runat="server" Text="Label"></asp:Label>
    </div>
    </form>
    </body>
    </html>

    ###

    www.COMPUTERCRAFT.com

    Monday, November 3, 2008

    Installing XP on a computer with a smart card reader

    I installed XP on an Hewlett Packard Pavilion a450n. This HP has a built-in smart card reader for 4 different sizes of cards. On the first try, XP installed the boot drive as the I: drive.

    Disk Manager can't change the letter of the boot drive. When I tried changing the boot drive to C: by editing the Registry, I wound up with an OS that wouldn't start.

    I removed the power cord and discharged the motherboard by pressing the on/off button. Then, I disconnected the smart card reader cable from the motherboard. The XP install then configured the boot hard drive as the C: drive. After the XP install completed, I again removed the power cord and re-attached the smart card cable. When XP restarted, the boot drive was still the C: drive.

    ###

    www.COMPUTERCRAFT.com