콘텐츠로 건너뛰기
» Blog » 페이지 27

Blog

전체 글을 포함하는 분류

Visual Studio 2012 Update

Visual Studio 2012 Update 3

2013-06-23

New technology improvements and fixed issues in Visual Studio 2012 Update 3

Technology improvements

The following technology improvements have been made in Visual Studio 2012.3.

TFS build

Team Foundation Server

  • Build settings can be
.Net

어플리케이션 실행권한 설정

윈도우 응용 프로그램 프로젝트에 manifest 파일을 추가하고 requestedExecutionLevel 요소Element를 추가하고 속성Attribute의 값을 설정합니다.

요소Element

<requestedExecutionLevel
level="asInvoker|highestAvailable|requireAdministrator"
uiAccess="true|false"/>

예제

<!-- 예제 -->
<?xml version="1.0" encoding="UTF-8" standalone="yes"?>
<assembly xmlns="urn:schemas-microsoft-com:asm.v1" manifestVersion="1.0">
  <assemblyIdentity version="1.0.0.0"
     processorArchitecture="X86"
     name="IsUserAdmin"
     type="win32"/>
  <description>Description of 

TF : Team Foundation 버전 제어 명령

Microsoft (R) TF - Team Foundation 버전 제어 도구, 버전 11.0.51106.1
Copyright (c) Microsoft Corporation. All rights reserved.

명령줄 설명을 보려면 tf help <command name>을 입력합니다.
Microsoft Document Explorer에서 전체 문서를 보려면 tf msdn <command name>을
입력합니다.

명령:
tf add         

워드프레스 한글 고유주소 문제

슬러그가 한글로 입력된 경우 글을 보려고 하면 페이지를 찾을 수 없다면서 404  오류 페이지를 보여줍니다.
아파치 서버인 경우 .htaccess 파일을 열고 아래와 같이 한 줄 추가해주면 정상적으로 동작합니다.

CheckURL Off

검색하다 보니 아래와 같은 방법으로 해결할 수 있다고 합니다.
참조 …

T-SQL

Convert datetime to varchar

MS SQL Server 에서 DATETIME 을 문자열로 변환할때의 자주 사용하는 스타일 번호입니다.

서버 설정 참조

  • SQL SERVER 2012
  • 데이터 정렬 Korean_Wansung_CI_AS
  • 기본언어 : Korean
  • 기본 전체 텍스트 언어 LCID : 1042
  • 두자리 연도 구분 : 2049

질의문

SELECT CONVERT(VARCHAR, CONVERT(DATE, 

Windows 파일 및 폴더 소유권 가져오기

파일 :

해당 파일의 소유권을 가져옵니다.

c:\>takeown /f c:\file.exe

다음으로 Icacls 명령을 통해 관리자 그룹에 해당 파일에 대한 모든 권한을 부여합니다.

c:\>icacls c:\file.exe /grant Administrators:F

폴더 :

해당 폴더와 하위 모든 폴더/파일에 대한 소유권을 가져옵니다.

c:\>takeown /f c:\folder /r /d