doskey /history

반응형
Posted by She쥐포s

Windows에서 Unix which와 같은 명령어

where

반응형
Posted by She쥐포s

원격 데스크톱 연결을 사용할 경우 Ctrl+Alt+Del을 누를 경우

원격 PC가 아닌 내 PC에서 Ctrl + Alt + Del이 적용되는데

이럴 경우 사용하면 좋을 팁!!

 

Ctrl + Alt + End

 

 

출처 : http://www.mydigitallife.info/keyboard-shortcuts-in-remote-desktop-connection-rdc-for-navigation/

<2014.10.14 추가>

오른쪽의 키 조합은 무시

한글윈도우에서 Alt+Tab 효과(Up : 오른 쪽, Down 왼쪽)

  • ALT+PAGE UP: Switch between programs from left to right (CTRL+PAGE UP)
  • ALT+PAGE DOWN: Switch between programs from right to left (CTRL+PAGE DOWN)

최근 사용한 순서 대로 프로그램간 이동

  • ALT+INSERT: Cycle through the programs in most recently used order (ALT+TAB)
시작 메뉴 표시
  • ALT+HOME: Display the Start menu (CTRL+ESC)

윈도우 메뉴 표시(최소화, 최대화 등)

  • ALT+DELETE: Display the Windows menu


보류

  • CTRL+ALT+Minus sign (-): Place a snapshot of the entire client window area on the Terminal server clipboard and provide the same functionality as pressing ALT+PRINT SCREEN on a local computer (ALT+PRT SC)
  • CTRL+ALT+Plus sign (+): Place a snapshot of the active window in the client on the Terminal server clipboard and provide the same functionality as pressing PRINT SCREEN on a local computer (PRT SC)
  • CTRL+ALT+BREAK: Switch the client computer between a window and a full screen


반응형
Posted by She쥐포s

2010. 12. 20. 20:34 Windows

Apache+ASP.NET(퍼옴)

Mod_AspDotNet : http://sourceforge.net/projects/mod-aspdotnet/
Apache Homepage : http://www.apache.org/

이 문서는 WIndows XP에서 아파치 서버를 구동하는 경우를 기준으로 쓴다.
미완성 프로젝트라고는 하지만, 아직까지는 별다른 기능상의 제약을 만난적은 없다.

위의 Mod_AspDotNet의 링크에서 지원모듈을 다운받아서 설치하면 아파치 설정문서에 아래와 같은 항목이 추가된다.

# Use the asp.net handler for all common ASP.NET file types
AddHandler asp.net asax ascx ashx asmx aspx axd config cs csproj licx rem resources resx soap vb vbproj vsdisco webinfo

<IfModule mod_aspdotnet.cpp>

    # Mount the IBuySpy C# example application
    AspNetMount /WebApp "C:/webpubs/wwwroot/webapp"
    AspNetMount /WebApp "C:/webpubs/wwwroot/webapp/island"

    # Map all requests for /StoreCSVS to the IBuySpy application files
    Alias /WebApp "C:/webpubs/wwwroot/webapp"
    Alias /WebApp "C:/webpubs/wwwroot/webapp/island"

    # Allow asp.net scripts to be executed in the IBuySpy example
    <Directory "C:/webpubs/wwwroot/webapp">
        Options FollowSymlinks ExecCGI
        Order allow,deny
        Allow from all
        DirectoryIndex Default.htm Default.aspx
    </Directory>
    <Directory "C:/webpubs/wwwroot/webapp/island">
        Options FollowSymlinks ExecCGI
        Order allow,deny
        Allow from all
        DirectoryIndex Default.htm Default.aspx
    </Directory>

    # For all virtual ASP.NET webs, we need the aspnet_client files
    # to serve the client-side helper scripts.
    AliasMatch /aspnet_client/system_web/(\d+)_(\d+)_(\d+)_(\d+)/(.*) \
          "C:/Windows/Microsoft.NET/Framework/v$1.$2.$3/ASP.NETClientFiles/$4"
    <Directory \
          "C:/Windows/Microsoft.NET/Framework/v*/ASP.NETClientFiles">
        Options FollowSymlinks
        Order allow,deny
        Allow from all
    </Directory>

</IfModule>

빨간색으로 강조되어있는 부분처럼 디스크상의 절대경로를 수정하면 모든설정 완료.
제일 마지막 구문에서 알 수 있듯이, 컴퓨터상에 .NET FrameWork지원 모듈이 설치되어 있어야 이 모듈도 정상적으로 돌아간다.
위의 설정을 보면 알 수 있지만, 똑같은 구문이 경로만 다르게 2개 잡혀있는것을 알 수 있다.
ASP.NET을 지원하는 폴더를 더 늘리고싶다면 위와 같이, 각 구문을 복사해서 절대경로만 알맞게 수정해주면 된다.
아쉽게도 하위 디렉토리까지 모두 지원해주지는 않는다.

반응형
Posted by She쥐포s
ㅁ netsh interface ip set address "Local Area Connection" dhcp
지정한 Interface Adapter를 DHCP로 변경

ㅁ netsh interface ip show config
모든 Interface Adapter의 현재 IP 주소와 함께 표시

* 참고 : 날으는 물고기님의 블로그 : http://blog.naver.com/choibit?Redirect=Log&logNo=140034636583
반응형
Posted by She쥐포s
인터넷 익스플로러를 사용하다가 소스보기를 하게 되면 메모장(notepad.exe)을 이용하여
소스를 보여준다.
이 메모장을 vi등 자신에게 편한 편집기로 바꾸는 방법을 적어 본다.

1. 시작 -> 실행 -> regedit 입력

2. HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Internet Explorer 항목으로 이동


3. 오른 마우스 클릭 -> 새로 만들기 -> 키 선택


4. 이름 변경 : View Source Editor

5. 오른 마우스 클릭 -> 새로 만들기 -> 키 선택

6. 이름 변경 : Editor Name

7. 기본값 편집 : 편집기 경로 입력


8. 설정 완료

※ 확인

1. 소스를 보고자 하는 페이지에서 소스보기 선택


2. 결과화면


끝.

참고 : http://cafe.naver.com/ilmuhoe.cafe?iframe_url=/ArticleRead.nhn%3Farticleid=40
반응형
Posted by She쥐포s
1. Windows XP SP3 필요
2. HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Control\Lsa 에서
   Security Packages 값 수정 - tspkg 추가
  * 추가 전

   * 추가 후

3. HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Control\SecurityProviders\SecurityProviders
   수정 클릭 후 credssp.dll 추가

   * 추가 전

   * 추가 후

4. 터미널 서비스 사용

참조 : http://still.tistory.com/45

반응형
Posted by She쥐포s

2009. 9. 30. 13:33 Windows

Microsoft Certification

MS가 2008 제품군을 내 놓으면서 Licence의 종류가 변한 것 같다.
기존의 MCSE, MCDBA는 그대로 Windows 2003, MSSQL 2005 까지 진행되고..
2008 제품군부터는 MCITP로 이름이 변경된 것 같다(? 변경 되었다)
분야도 엄청나게 많이 불어난 것 같은데..(움 불어났는지 아닌지는 모르겠다..)

MCITP:Enterprise Administrator
MCITP:Server Administrator
MCITP:Database Administrator 2008
MCITP:Database Administrator <- 이건 MSSQL 2005를 위한 과정

- MCITP:Enterprise Administrator를 취득하기 위해서는
       70-640 : Configuring Windows Server 2008 Active Directory
       70-642 : Configuring Windows Server 2008 Network Infrastructure
       70-643 : Windows Server 2008 Applications Infrastructure, Configuring
       70-647 : Windows Server 2008, Enterprise Administrator
    4과목(필수)과
       70-620 : Configuring Microsoft Windows Vista Client
    또는
       70-624 : Deploying and Maintaining Windows Vista Client and 2007 Microsoft Office System Desktops
    두 과목중 한과목을 취득해야 한다.(5과목)

- MCITP:Server Administrator를 취득하기 위해서는
       70-640 : Configuring Windows Server 2008 Active Directory
       70-642 : Configuring Windows Server 2008 Network Infrastructure
       70-646 : Windows Server Administration
    3과목을 취득해야 한다.

- MCITP:Database Administrator 2008을 취득하기 위해서는
       70-432 : Microsoft SQL Server 2008, Implementation and Maintenance
       70-450 : Designing, Optimizing and Maintaining a Database Administrative Solution
                   Using Microsoft SQL Server 2008
    2과목을 취득해야 한다.

- MCITP:Database Administrator를 취득하기 위해서는
       70-431 : Microsoft SQL Server 2005 - Implementation and Maintenance
       70-443 : Designing a Database Server Infrastructure by Using Microsoft SQL Server 2005
       70-442 : Optimizing and Maintaining a Database Administration Solution by Using Microsoft SQL Server 2005
    3과목을 취득해야 한다.

MSSQL 시험은 아직 한글이 없는 듯하다 ㅡ.ㅡ 젠장..
Administrator는 한글 시험은 있다고 하는데.. 아직 국내엔 한글자료가 없나? 교육센터나 가야 있으려나 모르겠네..

MS Self-Paced 서적을 보니 거의 700-900 Page.. 죄다 영어 ㅡ.ㅡ
기왕하는거 Enterprise와 DBA하려면 9과목.. ㅡ.ㅡ 곱하기 900 = 8,100 페이지
돌았군 돌았어

아.. 먹고 살기 힘들다...

참고 : http://www.microsoft.com/learning/en/us/certification/mcitp.aspx#tab2
반응형
Posted by She쥐포s
IIS에서 어느날 부터인지 로그가 쌓이지 않는다.
인스턴스 별로 속성을 비교해봐도 별 차이점을 발견하지 못하겠다.
혹시나 싶어 탭을 전부 비교하기로 하고.. 비교작업에 들어갔다.

○ IIS 로깅사용
    로깅은 사용으로 체크 확인..

○ 홈 디렉토리 탭의 "방문 기록"
    찾았다.. "방문 기록"이 로그가 쌓이지 않는 인스턴스에서는 체크가 해제 되어 있었다.

이런.. 제길...
반응형
Posted by She쥐포s
2003까지는 boot.ini가 존재해서 거기에 PAE 옵션을 주었었는데
2008이 되니 boot.ini가 없다.. 젠장...
또한번 구글질..
음 DL580G5, DL785G5 설치할 땐 별다른 설정을 해준 것이 없었는데..
암튼 DL580G2에선 좀 다른 모냥이다..

8GB 메모리를 모두 인식을 못하고 3.x 정도 밖에 인식을 못한다..

bcdedit /set PAE ForceEnable

그리고 reboot

이제 7.x로 나온다..
저누무 메모리를 모두 표시하는 방법은 없나?
반응형
Posted by She쥐포s
이전버튼 1 2 이전버튼

블로그 이미지
She쥐포s
Yesterday
Today
Total

달력

 « |  » 2024.4
1 2 3 4 5 6
7 8 9 10 11 12 13
14 15 16 17 18 19 20
21 22 23 24 25 26 27
28 29 30

최근에 올라온 글

최근에 달린 댓글

글 보관함