금융권 사이트에서 엑티브 엑스의 한 종류인 nprotect를 사용하게 하는데, 금융권 사이트를 방문하지 않아도 프로세스에는 nprotect가 떠있다.

프로세스 리스트에는 npkcmsvc.exe라는 이름으로 떠있다.

http://www.liutilities.com/products/wintaskspro/processlibrary/npkcmsvc/

위의 사이트에서는 크리티컬한 컴포넌트가 아니라고는 하지만, 신경 쓰이는 것일수 없다.

http://blog.daum.net/toupto/6649817 에서 나오듯이

가령 npkcmsvc제한.vbs 라는 파일을 메모장으로 만들고

------------------------------------------------------------------------------
Dim Shell

Set Shell = WScript.CreateObject("WScript.Shell")

Shell.run "sc config npkcmsvc start= auto", 0 ,true
Shell.run "sc stop npkcmsvc", 0 ,true
Shell.run "sc config npkcmsvc start= disabled", 0 ,true
------------------------------------------------------------------------------

이렇게 만들어서 시작프로그램에 넣으면 끝.


the end.

'tech' 카테고리의 다른 글

램 구별법  (0) 2010.11.28
이클립스(eclipse)가 JVM 생성 실패라고 나올 때  (0) 2010.11.10
Microsoft AppLocale  (0) 2010.11.06
그 유명한 지돌 스타님이 오신다는 이 곳  (0) 2009.04.11
ccc.exe  (0) 2008.11.29

친구네집 컴퓨터의 windows 작업 관리자 - 프로세스탭에
ccc.exe라는 프로세스가 떠있는 것이 보였다.

처음에는 바이러스인것 같았다.

각종 포탈의 스폰서, 파워링크등에서 악성코드, 바이러스 치료 광고하라고 나오니까.

그런데, 역시 구글 ^^*

Catalyst Control Center 라고 한다.
즉 ati 비디오 카드 설치시 실행되는 프로세스.

'tech' 카테고리의 다른 글

램 구별법  (0) 2010.11.28
이클립스(eclipse)가 JVM 생성 실패라고 나올 때  (0) 2010.11.10
Microsoft AppLocale  (0) 2010.11.06
그 유명한 지돌 스타님이 오신다는 이 곳  (0) 2009.04.11
꼴보기 싫은 nprotect!  (0) 2008.12.11
참고 URL : http://forum.uniformserver.com/index.php?showtopic=1316



Not sure why you would want to change the MySQL port!
OK this is what you can try:
To change the default port 3306 to 3400

Steps:
1) Open file my-small located in folder:
*\Uniform Server\udrive\usr\local\mysql\bin

Change these lines :
[client]
#password=my_password
#port=3306
port=3400
#socket=MySQL

[mysqld]

#port=3306
port=3400

Moves the MySQL Server to port 3400

2) Open file php.ini located in folder:
*\Uniform Server\udrive\usr\local\php
(about line 669) --- I think this is the default (3306) you seeing
; at MYSQL_PORT.
;mysql.default_port =
mysql.default_port = 3400

(about line 704)
; at MYSQL_PORT.
;mysqli.default_port = 3306
mysqli.default_port = 3400

3) Open file config.inc.php located in folder:
*\Uniform Server\udrive\home\admin\www\phpMyAdmin
(about line 37)

$i++;
$cfg['Servers'][$i]['host'] = 'localhost'; // MySQL hostname or IP address
#$cfg['Servers'][$i]['port'] = ''; // MySQL port - leave blank for default port
$cfg['Servers'][$i]['port'] = '3400'; // MySQL port - leave blank for default port

4) I think like I said
phpMyBackupPro picks up the default from php.ini
Hence shouldnot be a problem:

Note: If you need to do something like this:
define('DB_HOST', 'localhost:3400');
There is a serious problem with one of your set-up.

---------------

Note: If you need to do something like this: define('DB_HOST', 'localhost:3400');
There is a serious problem with one of your set-up.


'tech > SQL' 카테고리의 다른 글

sqlite  (0) 2010.11.16
[mysql] 문자 개수 만큼인것 만 보여줘~  (0) 2009.03.03
SQL injection prevent  (0) 2009.01.14
sql injection 확인  (0) 2009.01.14
mssql에서 8자리 날짜 구하기  (0) 2009.01.07

urlXML = new XML();
urlXML.onLoad = convertXML;
urlXML.load("company.xml");

'tech > FLASH' 카테고리의 다른 글

1180:call to a possibly undefined method addChild.  (0) 2010.12.07
flash oop 구조 정리 잘 된 곳~  (0) 2010.12.03
flash : if(stage) init();  (0) 2010.11.24
rewind  (0) 2008.09.23
html과 연계하지 않은 flash 만의 새 창 띄우기  (0) 2008.09.23


on(release){
    _root.onEnterFrame = function(){
        trace(_root._currentframe);
        if(_root._currentframe == 1){
            _root.gotoAndStop(_root._totalframes);
        }else{
            _root.gotoAndStop(_root._currentframe - 1);
        }
    }
}

----

_root.onEnterFrame = null;

or

on(release){
    _root.onEnterFrame = null;
}

'tech > FLASH' 카테고리의 다른 글

1180:call to a possibly undefined method addChild.  (0) 2010.12.07
flash oop 구조 정리 잘 된 곳~  (0) 2010.12.03
flash : if(stage) init();  (0) 2010.11.24
xml loading  (0) 2008.09.23
html과 연계하지 않은 flash 만의 새 창 띄우기  (0) 2008.09.23

1. function openWin(url, name, wd, ht, f, s, r) {
getURL("javascript:void(window.open('"+url+"','"+name+"','width="+wd+",height="+ht+",fullscreen="+f+",scrollbars="+s+",resizable="+r+"'))");
}


2. on (release) {
openWin(http://empas.com, "customwin", 400, 400, 0, 0, 0);
}

'tech > FLASH' 카테고리의 다른 글

1180:call to a possibly undefined method addChild.  (0) 2010.12.07
flash oop 구조 정리 잘 된 곳~  (0) 2010.12.03
flash : if(stage) init();  (0) 2010.11.24
xml loading  (0) 2008.09.23
rewind  (0) 2008.09.23

+ Recent posts