Thursday, April 23, 2015

Access denied : get-childitem

i get access denied well running get-childitem (powershell) as administrator.
try many way not solve the problem.
RESTART computer solve my problem.

Wednesday, October 29, 2014

Godaddy.com is shit

godaddy service is shit. many people compliant.
and the support more damn. i will never go for it anymore.

Friday, June 06, 2014

如果雅虎还是雅虎

如果雅虎还是雅虎,会死得好男看。
今天的雅虎, 给我的感觉就好像一动不如一静。好像烂泥上不了墙,想帮他都帮不了。
那么多年我都还支持它,今天有点失望。
看他的新闻,常会收购那家公司什么的, 策列还不错。
以前都还有用它的搜索,电邮。
搜索少用了,还有用电邮。现在看来电邮也不行了。
之前有时不能用,还可换换别的浏览器. 现在换了几个,试了很多很多次。就是有问题, 越改越差的。

Monday, May 26, 2014

Comodo not allow the IP which allow.

When u set allow a host.in firewall. eg. hostname.no-ip.org
Once this host's ip is change.
Firewall possible will not allow the new IP. it will prompt to user. -_- !!
Suspect we not update the IP in time and firewall got the new IP without any rules. then after u update the host's IP. firewall very persistent , and stick to prompt to user.


Thursday, May 22, 2014

Allow Ping

To allow ping at comodo firewall, due to it automatic create some of the rules and blocking the ping.
Due to the rules "black all unmatch" at system process (application part)
just add a rules "allow ICMP echo request" at system process (application part) will do.

Friday, May 09, 2014

miui firmware

Yes, confirmed, there is no OFF button when press the power button. (v4.4.25)
and the import of contact, it only able to import vcard. and after import contact, all the row keep show at notification bar, due to  there is a row (probabbly last contact to import) is not done (well, actually it is imported, as i check)

update miui 4.4.25 already have OFF button. red color.

Wednesday, April 16, 2014

cyanogenmod

cyanogenmod v11.
the contact need to improve. poor of sync/management. merge/duplicate function.
the phone/sms need to improve. log/contact linkage very poor. call 1 app, sms 1 app.
language ....if u are single language user should be ok.
others, so far so good.

Friday, February 21, 2014

DDWRT to linksys E1200v2

update at 2014-02-20
currently DD-WRT for linksys E1200v2 only able to flash by mini (small) version only.
same to E1200v1

Thursday, February 20, 2014

DD-WRT broadcast problem

I found that there is many people facing DD-WRT wireless broadcast problem. here is some temp solution.
i put there command: wl up
as pic below.

Monday, September 23, 2013

Android Flash ROM

When flash a ROM, not simply delete/format the system folder (/system). it content all ROM/OS file, once delete it you can not access the OS.
How if accidentally deleted it when flashing a ROM.

1) Flash the ROM as normal flow. but most of time you are delete those ROM.zip file as well. then can go for second step.
2) Flash the ROM from ext-sdcard (memory stick). copy the file(ROM.zip) to ext-sdcard and flash the new ROM. but how if the file is not there and can not copy to there at that moment.
3)  adb command.
- go to recovery mode.
- command sample to copy the file (ROM.zip) to sdcard.
adb push D:\4\SuperNexus-3.0-i9500-BUILD1.zip /sdcard/0/SuperNexus-3.0-i9500-BUILD1.zip
adb push D:\4\gapps-jb-20130813-signed.zip /sdcard/0/gapps-jb-20130813-signed.zip
4) Try install sideload.

You can always backup the file to sdcard first.
** base on CWM recovery mode.

Saturday, August 31, 2013

Backup Wechat amr file

Remember not to click delete. else your amr file will physically remove.

Thursday, August 29, 2013

Add route success but not show at route print

When you try to add a route
eg. route add -4 192.168.10.0 MASK 255.255.255.0 192.168.20.0 METRIC 10 IF 10

Message show success added.
but when you route print it not show.
please check the interface is correct or wrong.
you might be add to wrong interface. or the interface is not active. that why it not show.

Sunday, August 25, 2013

Wechat 5.0

Wechat 5.0 can not delete personal (1 to 1) chat room.

update:
old version- press and hold the char room
5.0- strike/drag from left to right. there have delete button.

mircosoft bug kut

found that sp_trace_setfilter for NULL from sql2008R2 sp1 not work.

eg. EXEC sp_trace_setfilter @TraceID, 1, 0, 1, NULL

Thursday, August 01, 2013

system Database sample

You can download sql server 2008 R2 (ver: 10.50.2500 )system databases sample here.
with chinese_PRC_CI_AS.

link: https://docs.google.com/file/d/0B40y8vVrGmAnU0RSRkVjMjhXdFk

content: master.bak, model.bak, tempdb.mdf and tempdb.ldf

Wednesday, July 10, 2013

DATENAME not work

SQL server 2008 SP3 not work for this : select DATENAME(month, '2012-07-01')
it will show result 07 instead of JUL.
well, sql server 2008 R2 working fine.

Thursday, May 09, 2013

Permission problem

When Try Qwinsta to Windows Server 2008 R2, it Give error 5. Which not happen to others server.
After some Study, Can try the command below.

Psexec.exe \\123.123.123.123 qwinsta

OR

runas /netonly /user:administrator "qwinsta /server:123.123.123.123" 
* which will prompt for the server password.

And Windows Server 2008 not allow to remote to physical console anymore, no wonder how u connect it will not connect to session 0 (which reservce for service used).
But for your infor, for some of the purpose, you might need to use /admin (or /console) for the connection.

Wednesday, October 10, 2012

Interaction with SQL Studio

This is actually not recommend since SQL is not for user interaction purpose.
and my stupid way which actually is IN PROCESSING when waiting for user to feedback.
Here you go. (the example)
You need 2 interface.

first screen:
create table T1(a varchar(1))

-- run this 1 as main
declare @answer varchar(250)
while @answer is null
print 'Enter Yes or No'
select @answer=a from T1
if (select a from T1)='N'  and (select a from T1) is not null
print 'You reject'
else
print 'You Accept'
waitfor delay '0:0:5'
End

-- get interaction in second screen
second screen:
when after run the main script.
every 5 second it will track the table T1.
So you can insert 'N' into T1 (start with empty table) as reject.
else insert other as accept.



Wednesday, July 25, 2012

WebUIValidation.js Problem

IF you try re-register or copy the file with aspnet_regiis -c or other way not work.
Can try to change APP POOL for that website, when prompt for virtual direcorty just select the related row.
APPLY and OK. done.
Try again after restart the App Pool. Success, no more WebUIValidation.js Prompting.

Tuesday, July 17, 2012

Not too sure why sudden cant show the properties of IIS (when right click).
It stuck at process REGASM.EXE, after i kill it then the properties able to show (pop up).
Maybe after I update windows (with restart).

Situation, maybe will cause to NET1.1 in windows 2003 64bit.
but i fix it with double click to run the REGASM.EXE at the path ...NET\Framework\v1.1.4322\.