Lily the Elder

A book of spells for the discerning techcubus

Misc Windows XP Notes For Desperate People

These notes are historical. You would be foolish to assume anything here works after Windows XP, and really I can’t guarantee this stuff actually works in Windows XP itself. Most is with XP SP3 in mind, but if you’re here you’re not concerned with my faith in my notes being useful.

IE6 Notes

netsh notes

Registry Notes

[!IMPORTANT]
Note the space in “Current Version”

[!NOTE]
This is a bitmask which the explanation of is beyond the scope here, but quickly, in case I do forget: these 32-bit hex numbers represent each of the 32 bits in the DWORD that is the SID State. Each digit represents four bits (a nybble, yes really) and each individual bit’s binary values. The desired options are all bitwise-ORed together into a single 32-bit number.

    #define PROFILE_MANDATORY       0x00000001
    #define PROFILE_USE_CACHE       0x00000002
    #define PROFILE_NEW_LOCAL       0x00000004
    #define PROFILE_NEW_CENTRAL     0x00000008
    #define PROFILE_UPDATE_CENTRAL  0x00000010
    #define PROFILE_DELETE_CACHE    0x00000020
    // do not define bit 40 because NT4 has this defined as Run_SyncApps.
    #define PROFILE_GUEST_USER      0x00000080
    #define PROFILE_ADMIN_USER      0x00000100
    #define DEFAULT_NET_READY       0x00000200
    #define PROFILE_SLOW_LINK       0x00000400
    #define PROFILE_TEMP_ASSIGNED   0x00000800
    // do not define bit 1000, this was used briefly 2009, 2010 before
    #define PROFILE_PARTLY_LOADED   0x00002000
    #define PROFILE_BACKUP_EXISTS   0x00004000
    #define PROFILE_THIS_IS_BAK     0x00008000

Miscellaneous

Command Applet
Access.cpl Accessibility Options
Appwiz.cpl Add/Remove Programs
Desk.cpl Display Options
Hdwwiz.cpl Add New Hardware Wizard (Win 7 - Device Manager)
Inetcpl.cpl Internet Options
Main.cpl Mouse Properties
Mmsys.cpl Sound control panel
Ncpa.cpl Network Connections (will not work under runas correctly)
Powercfg.cpl Power Options
Sysdm.cpl System Properties (computer name, vm file size, remote, etc)
Odbccp32.cpl ODCB Data Source Administration (Win32)
%windir%\system32\Odbcad32.exe ODCB Data Source Administrator for 64 bit applications (Win64)
%windir%\SysWOW64\odbcad32.exe ODBC Data Source Administrator for 32 bit applications (Win64)
Certmgr.msc Certificate Manager
Ciadv.msc Indexing Service

EMERGENCY SHUTDOWN!

Handy for when you don’t want the computer to write anything to the user’s (generally “roaming”) hive/profile before reboot. Otherwise, don’t use this if a normal shutdown is possible!

  1. Control+Alt+Delete
  2. Control click on “Shut Down…”
  3. Click “OK”

Screenshot of the dire emergency shutdown dialog.