2016. 9. 17. 11:37 Windows/Script
'Windows'에 해당되는 글 19건
- 2016.09.17 dos 명령어 history 확인
- 2015.10.15 command 'which' equivalent in Windows
- 2012.08.07 [원격 데스크톱 연결]에서의 Ctrl+Alt+Del 4
- 2010.12.20 Apache+ASP.NET(퍼옴) 1
- 2010.07.27 netsh 명령어 정리
- 2010.07.17 Internet Explorer 소스보기 프로그램 변경
- 2010.05.18 Windows XP 원격데스크탑 연결 NLA(네트워크 수준 인증) 설정
- 2009.09.30 Microsoft Certification 2
- 2009.09.04 IIS에서 로그가 쌓이지 않는 경우
- 2009.08.26 windows server 2008에서 4GB 이상 메모리 사용..
2015. 10. 15. 09:02 Windows
command 'which' equivalent in Windows
2012. 8. 7. 21:42 Windows
[원격 데스크톱 연결]에서의 Ctrl+Alt+Del
원격 데스크톱 연결을 사용할 경우 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
2010. 12. 20. 20:34 Windows
Apache+ASP.NET(퍼옴)
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을 지원하는 폴더를 더 늘리고싶다면 위와 같이, 각 구문을 복사해서 절대경로만 알맞게 수정해주면 된다.
아쉽게도 하위 디렉토리까지 모두 지원해주지는 않는다.
2010. 7. 27. 10:20 Windows/Script
netsh 명령어 정리
지정한 Interface Adapter를 DHCP로 변경
ㅁ netsh interface ip show config
모든 Interface Adapter의 현재 IP 주소와 함께 표시
* 참고 : 날으는 물고기님의 블로그 : http://blog.naver.com/choibit?Redirect=Log&logNo=140034636583
2010. 7. 17. 22:43 Windows
Internet Explorer 소스보기 프로그램 변경
소스를 보여준다.
이 메모장을 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
2010. 5. 18. 11:53 Windows/System
Windows XP 원격데스크탑 연결 NLA(네트워크 수준 인증) 설정
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
2009. 9. 30. 13:33 Windows
Microsoft Certification
기존의 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
2009. 9. 4. 11:23 Windows
IIS에서 로그가 쌓이지 않는 경우
2009. 8. 26. 23:46 Windows