Access Denied Error Messages When Accessing Hidden Shares in Windows 7

March 19th, 2013

1. Start Registry Editor (Regedit.exe). If you get the UAC prompt, acknowledge it.

2. Locate and then click the following registry subkey:

HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Policies\System

3. On the Edit menu, select New and then click DWORD (32-bit) Value.

4. Type LocalAccountTokenFilterPolicy to name the new entry, and then press Enter.

5. Right-click LocalAccountTokenFilterPolicy, and then click Modify.

6. In the Value data box, type 1, and then click OK.

7. Exit Registry Editor. There is no need to reboot the machine.

Disable Google Contacts Sync & Force Store Contacts Locally on Android

March 19th, 2013

Delete GoogleContactsSyncAdapter.apk file in /system/app directory.

Google Real Link for greasemonkey

August 25th, 2012

This UserScript may disable the Google search rewrite, always showing and using the real, original, direct link URLs, to stop being tracked, also to prevent from using redirected pages that might be temporarily unavailable in some area.

http://userscripts.org/scripts/show/125473

 

A véletlen leállítások megakadályozása windows7 -ben | A shutdown event tracker engedélyezése windows7 -ben.

August 9th, 2012

Windows7 start menüben véletlen a shutdown-ra kattintva azonnal leáll a gép, mert nem kér semmilyen megerősítést.

Ez nagyon zavaró lehet, ezért most megmutatom, hogyan lehet bekapcsolni a shutdown event tracker -t, amivel elkerülhetőek a véletlen leállítások.

A shutdown event tracker engedélyezését a group policy editorban tudjuk elvégezni. A group policy editor -t a gpedit.msc -vel tudjuk elindítani.

Ezután a képen látható helyen engedélyezzük a shutdown event tracker -t.

Miután engedélyeztük, a kilépést az alábbi ablakban kell megerősítenünk, így elkerülhetjük a véletlen leállítást:

FAR Manager | FAR Manager SFTP Plugin | FAR Manager compatible sftp server for Android

August 9th, 2012

far manager
winscp: scp, sftp plugin for far manager 1.75
netbox: scp, sftp plugin for far manager 2.0
FAR Manager compatible SFTP server for Android

Enable the built-in Administrator account in windows7

August 8th, 2012
net user administrator /active:yes

How to install Certification authority (CA) certificates on Android.

August 6th, 2012

- Download http://bouncycastle.org/download/bcprov-jdk16-141.jar and place it on $JAVA_HOME/jre/lib/ext/
- download cacerts.bks from android
- import certificates to cacerts.bks
- upload to android

cd /usr/lib/jvm/java-6-openjdk/jre/lib/ext/
wget 'http://bouncycastle.org/download/bcprov-jdk16-141.jar'

cd /tmp
adb pull /system/etc/security/cacerts.bks cacerts.bks

keytool -keystore cacerts.bks -storetype BKS -provider org.bouncycastle.jce.provider.BouncyCastleProvider -storepass changeit -importcert -trustcacerts -alias CACERT -file root.crt

adb shell mount -o remount,rw /system
adb push cacerts.bks /system/etc/security/
adb shell mount -o remount,ro /system

more details: http://wiki.cacert.org/FAQ/ImportRootCert#Way_1:_Android_SDK

change the title of terminal window with escape sequence

July 29th, 2012

ESC]0;stringBEL — Set icon name and window title to string

echo -ne '\e]0;Hello Girls!\007'

http://tldp.org/HOWTO/Xterm-Title-3.html

mount yaffs2 image with nandsim

December 27th, 2011

# download yaffs2 kernel module from http://yaffs.net/using-git

git clone git://www.aleph1.co.uk/yaffs2

# compile & install yaffs kernel module

# load yaffs kernel module

modprobe yaffs.ko

# create 512M NAND with nandsim. more info: http://ggow.wikidot.com/using-mtd

modprobe nandsim first_id_byte=0×20 second_id_byte=0xac third_id_byte=0×00 fourth_id_byte=0×15

# write image to mtd

nandwrite -o /dev/mtd0 partition-readed-by-nandread.img

mount -o tags-ecc-off -t yaffs2 /dev/mtdblock0 /mnt/tmp

create bootable kernel image for htc wildfire

September 23rd, 2011
./mkbootimg --kernel boot.img-kernel --ramdisk boot.img-ramdisk.gz  --base 0x02e08000 --cmdline 'no_console_suspend=1 console=null' -o boot.img