Hacking .exe resources

Resource Hacker: http://www.angusj.com/resourcehacker/ XN Resource Editor: http://www.wilsonc.demon.co.uk/d10resourceeditor.htm

HowTo: Hide user accounts in Windows 7

HowTo: Hide user accounts from Windows 7 (or XP) welcome screen. This is useful when you created additional user accounts to share folders on a home network.  The users existing on the client computers need to exist on the server computer but you don’t want them to be able to login locally. Go to the following […]

Change windows 7 setup default keyboard without Autounattend file

Mount your boot.wim with imagex using the /mountrw option or DISM ex: imagex /mountrw c:\winpe\iso\sources\boot.wim 1 c:\winpe\mount or: DISM /Mount-Wim /Wimfile:h:\AIO\DVD\sources\boot.wim /index:2 /MountDir:H:\AIO\mnt Open regedit, highlight HKEY_LOCAL_MACHINE, go to the File Menu and select Load Hive… Browse to {boot.wim mount}\windows\system32\config and select the file DEFAULT. Name the hive WINPE_DEFAULT when prompted. Open HKLM\WINPE_DEFAULT\Keyboard Layout\Preload. Change […]

MBRWiz

Utility to manage Master Boot Records. http://www.mbrwizard.com/

MySQL commands useful for data transfer

mysql yourdatabase –user=youruser –password=yourpassword –default_character_set=utf8 < yourdata.sql mysqldump db1 –user=yourusername –password=yourpassword | mysql db2 –user=yourusername –password=yourpassword2

WordPress file permissions in Plesk

According to: http://codex.wordpress.org/Changing_File_Permissions [pullquote]All files should be owned by your user account on your web server, and should be writable by your username. Any file that needs write access from WordPress should be group-owned by the user account used by the webserver.[/pullquote] Related information: http://codex.wordpress.org/Updating_WordPress#Automatic_Update On plesk, “your user account” is set in the admin interface […]