Friday, May 25, 2007

charmap.exe

Having trouble with foreign characters on a remote machine ?: charmap.exe

Saturday, April 21, 2007

Vista UAC (User Account Control)

  • On Vista, I tried to copy a zip files from a shared folder of XP, in a regular Vista folder. A dialog box showed up and say "You need permission to perform this action".

    I tried to play around with UAC. I disabled it by doing:

    Control Panel/User Accounts

    and then "Turn User Account Control on or off". I change all the permissions of the folder. I tried to rename the file. It still didn't work. It was working with an mpeg file though.

    The only way I could eventually copy this zip file was to go on XP, and copy the zip file in a shared folder of Vista, and after that, copy it in the target Vista folder.

  • Also, sometimes, I cannot install things on Program Files because of Vista privileges nightmare, so I created a C:\MyProgramFiles where I put stuff I cannot install to other places
  • Monday, March 19, 2007

    Change keyboard from English to French

    Paneau de configuration / Options Regionales / onglets "Langues" / Details

    Thursday, March 1, 2007

    Upload files to free.fr

    The nice thing is they give 1GB disk space for free. They will send you back your confirmation/log-in/pw by regular mail, believe it or not. You need to use an ftp client though, as opposed to geocities which has a web ftp interface. One last thing: file transfer through ssh will not work. So here we go:

    * hostname: ftpperso.free.fr
    * login sans le suffixe "@free.fr"
    * port: 21

    To survive, you need this too:

    assistancefree.fr
    aduf.org


    To upload/download from your FreeBoxHD:
    * hostname: hd1.freebox.fr
    * un: freebox

    Thursday, February 15, 2007

    Where to look in the registry for exe started after boot

    HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Run

    HKCU\Software\Microsoft\Windows\CurrentVersion\Run
    HKLM\Software\Microsoft\Windows\CurrentVersion\RunOnce
    HKCU\Software\Microsoft\Windows\CurrentVersion\RunOnce
    HKLM\Software\Microsoft\Windows\CurrentVersion\Reinstall

    Wednesday, February 7, 2007

    _asm int 3 and __debugbreak() and DebugBreak();

    C++ hardcoded debug breakpoints on Windows:

  • _asm int 3
    Not supported on Windows 64 bits architecture


  • __debugbreak(); or DebugBreak();
    Use this on Windows 64 bits


  • .