The Wichita Computer Guy's Contribution Blog
Windows Explorer Slow to Open or Slow to Load using WinKey+E
The Problem: Windows Explorer Slow to Load
Working on a lab full of computers, I ran into an issue where the Win+E key would take anywhere from 10 seconds to 90 seconds to bring up windows explorer and in the process, the taskbar would completely freeze up, becoming unresponsive until Windows Explorer got done with it's coffey and donut break and finally decided to open.
DOS Command Line Stuff Worth Remembering
This is an ongoing collection of dos command line tips and tricks I've run across over the years. I tend to forget what I did 5 min ago, let alone a bunch of DOS commands, so I'm collecting the stuff I've found here as a place of reference. Much of what you will find here is probably posted on the internet somewhere (which is where I got it from) or, I've created a few little tricks myself to help me along the way.
Append to New File - This will create OR overwrite the existing file.
dos-program.exe > file.txtCreate a Local User on XP by Command Line
I recently had the need to create a local user account on an XP Pro machine that would need local administrative permissions for performing scheduled tasks on a machine. I wanted an automated approach to the setup so I set out and decided to make a little batch file that would utilize the various command line options of Windows XP. I don't really have anything to compare it to, such as a .vbs script so I can't say whether it's crude or polished, but it gets the job done and that's all I really care about.
Shutdown Button missing from Logon Screen
If you are running Windows XP and the shutdown button is missing from the login screen, the first thing to check is whether or not the local security policy has it disabled. If you are working in a company environment, this might be a policy that is pushed down from the system administrators through a Group Policy and you might not have access to change the local setting.
If you are receiving an error that the "polstore.dll" file is missing or corrupt, go to the Error Fix section first and follow the steps to attempt fixing it.
Password Never Expires on Local Account XP Command Line
I searched all over the place for about an hour before finally running across the EASIEST solution to setting a local user account "Password Never Expires" checkbox for Windows XP. If you've tried NET USER (user) /EXPIRES:NEVER You will find that this does not work... the reason is because that is applied to the account never expiring, not the password...
So, for the easy fix to setting "Password Never Expires" on a local account in XP, open the trusty ol' command prompt and enter:
WMIC USERACCOUNT WHERE "Name='username_here'" SET PasswordExpires=FALSE