(adsbygoogle = window.adsbygoogle || []).push({}); O_o :: 'Win2008' 태그의 글 목록

'Win2008'에 해당되는 글 2건

  1. 2008.11.04 Windows 2008 인증 피해가는 방법
  2. 2008.11.04 Windows Server 2008 평가 기간 늘리기

Windows 2008 인증 피해가는 방법

|


Windows 2008 인증 피해가는 방법

1. SL UI Notification 서비스 중지
2, 화일 삭제
C:\Windows\System32의
   SLLUA.exe
   SLUI.exe
   SLLUI.ddl

화일 삭제시 소유자를 administor로 변경 후 모든 권한을 준다.

실제 써보면 정품이 아니라고 나오지만,  제약 없이 사용 가능하다.

And

Windows Server 2008 평가 기간 늘리기

|


slmgr 를 통하여 평가 기간을 최대 240일까지 늘릴수 있다.

명령 프롬프트 창을 열고 slmgr.vbs 명령어를 사용합니다.(시작 -> 실행 -> cmd 입력 후 엔터)

C:\> slmgr -rearm

ream 옵션은 한번 수행시 60일씩 늘어나니, 60일 전에 미리 수행하면 그만큼 평가기간이 줄어든다.
따라서 자동으로 수행하기 위하여 다음과 같은 항목을 스케쥴러에 등록하자

Extend.xml.

<?xml version="1.0" encoding="UTF-16"?>
<Task version="1.2" xmlns="http://schemas.microsoft.com/windows/2004/02/mit/task">
  <RegistrationInfo>
    <Date>2007-09-17T14:26:04.433</Date>
    <Author>Microsoft Corporation</Author>
  </RegistrationInfo>
  <Triggers>
    <TimeTrigger id="18c4a453-d7aa-4647-916b-af0c3ea16a6b">
      <Repetition>
        <Interval>P31D</Interval>
        <StopAtDurationEnd>false</StopAtDurationEnd>
      </Repetition>
      <StartBoundary>2007-10-05T02:23:24</StartBoundary>
      <EndBoundary>2008-09-17T14:23:24.777</EndBoundary>
      <Enabled>true</Enabled>
    </TimeTrigger>
  </Triggers>
  <Principals>
    <Principal id="Author">
      <UserId>domain\alias</UserId>
      <LogonType>Password</LogonType>
      <RunLevel>HighestAvailable</RunLevel>
    </Principal>
  </Principals>
  <Settings>
    <IdleSettings>
      <Duration>PT10M</Duration>
      <WaitTimeout>PT1H</WaitTimeout>
      <StopOnIdleEnd>true</StopOnIdleEnd>
      <RestartOnIdle>false</RestartOnIdle>
    </IdleSettings>
    <MultipleInstancesPolicy>IgnoreNew</MultipleInstancesPolicy>
    <DisallowStartIfOnBatteries>true</DisallowStartIfOnBatteries>
    <StopIfGoingOnBatteries>true</StopIfGoingOnBatteries>
    <AllowHardTerminate>true</AllowHardTerminate>
    <StartWhenAvailable>false</StartWhenAvailable>
    <RunOnlyIfNetworkAvailable>false</RunOnlyIfNetworkAvailable>
    <AllowStartOnDemand>true</AllowStartOnDemand>
    <Enabled>true</Enabled>
    <Hidden>false</Hidden>
    <RunOnlyIfIdle>false</RunOnlyIfIdle>
    <WakeToRun>true</WakeToRun>
    <ExecutionTimeLimit>P3D</ExecutionTimeLimit>
    <DeleteExpiredTaskAfter>PT0S</DeleteExpiredTaskAfter>
    <Priority>7</Priority>
    <RestartOnFailure>
      <Interval>PT1M</Interval>
      <Count>3</Count>
    </RestartOnFailure>
  </Settings>
  <Actions Context="Author">
    <Exec>
      <Command>C:\Windows\System32\slmgr.vbs</Command>
      <Arguments>-rearm</Arguments>
    </Exec>
    <Exec>
      <Command>C:\Windows\System32\shutdown.exe</Command>
      <Arguments>/r</Arguments>
    </Exec>
  </Actions>
</Task>

여기에서
<UserId>domain\alias</UserId>
이 부분을 해당 항목으로 바꿔준다.

And
prev | 1 | next