How to Automatically Rearm and Extend Activation Grace Period in Windows Vista and Server 2008 Ako Automaticky dosíci a Ponúknuť Aktivácia Hudobné ozdoba Čas do Windows Vista a Server 2008

Windows Vista and Windows Server 2008 has free activation grace period which allows user to install and use the operating system for Windows Vista a Windows Server 2008 bez aktivácie hudobné ozdoba doba, ktorá umožňuje používateľom inštalovať a používať operačný systém 120 days 120 deň and a 240 days 240 dni without product key or product activation completed. bez plod identifikovať alebo aktivácie produktu dokončená. The initial grace period given is 30 days and 60 days respectively for Windows Vista and Server 2008, and user has to “rearm” the system when the expiration of grace period is nearly ending in order to reset and extend the trial evaluation period, and hence activation grace period again. Počiatočné bezúročné obdobie vzhľadom činí 30 dní a 60 dní pre Windows Vista a Server 2008, a používateľ má k "dosíci" systém, kedy po uplynutí doby odkladu je takmer končí s cieľom obnoviť a predĺžiť skúšobné obdobie hodnotenia, a preto aktivácia hudobné ozdoba čas znova.

Neither Windows Vista nor Windows Server 2008 display prominently when is the activation-free evaluation grace period ends (even though it's actively reminding user to activate Windows with information on how many days left to activate, which usually ignored by users). Ani Windows Vista alebo Windows Server 2008, kedy je displej jasne aktivácia-drzý vyhodnotenie bezúročné obdobie končí (aj keď je to aktívne pripomínajú užívateľa na aktiváciu systému Windows s informáciami o tom, koľko dní doľava na aktiváciu, ktorá je zvyčajne ignorovaný užívateľov). Surely you don't want a warning dialog message box pops up suddenly to notify that you may be victim of counterfeiting or to activate the system now, especially if your notebook/laptop computer is used for business presentation. Určite nechcete varovný dialóg správou objaví zrazu oznámi, že môžete byť obeťou falšovania alebo aktivovať systém teraz, obzvlášť pokiaľ váš notebook / prenosný počítač sa používa pre firemné prezentácie. System administrators also certainly don't want to face with uncertainty or instability possibly brought by expiry of activation grace period, especially if the server is running critical processes, applications or databases. Správcovia systému tiež rozhodne nechcú čeliť s neistotou a nestabilitou prípadne podanej uplynutím času aktivácie hudobné ozdoba, najmä ak server beží kritických procesov, aplikácií a databáz.

Instead of remembering the activation grace period expiry or ending date to manually rearm and reset activation grace period in Windows Vista and Windows Server 2008, Namiesto toho, aby si pamätať aktivácie hudobné ozdoba čas ukončenia platnosti alebo dátum ukončenia ručne dosíci a reset aktivácia hudobné ozdoba čas do systému Windows Vista a Windows Server 2008, Microsoft Microsoft provides the following script which can be used with Task Scheduler to schedule automatic extension of the evaluation period and activation-bypass grace period of Windows Server 2008 every 60 days, which should be able to used in Windows Vista too which requires to be triggered every 30 days. poskytuje nasledujúci skript, ktorý možno použiť s Plánovač úloh naplánovať automatické predĺženie obdobia hodnotenia a aktivácia-bypass bezúročné obdobie Windows Server 2008 každých 60 dní, čo by mal byť schopný použiť v systéme Windows Vista, ktorý tiež vyžaduje, aby sa spustil každých 30 dní.

How to Automate the Rearm and Extension of the Activation Grace Period in Windows Server 2008 and Vista Automatizácia dosíci a predĺženie aktivácia hudobné ozdoba čas v systéme Windows Server 2008 a Vista

  1. On the Windows Vista or Windows Server 2008 system, copy and paste the following Task code to text editor such as Notepad. Na Windows Vista alebo Windows Server 2008 system, skopírujte a vložte nasledujúci kód do úloh textového editora, napríklad program Poznámkový blok. In the Task, change the value of the following UserID tag (as in <UserId>domain\alias</UserId> line) to contain domain name and user name alias (for user on domain Active Directory), or local host name and user ID (for standalone Windows Vista user). V úlohe, zmeňte hodnotu nasledujúcu značku užívateľského mena (rovnako ako v <UserId> doména \ alias </ userid> line) musí obsahovať názov domény a tiež známy ako používateľské meno (pre používateľov v doméne Active Directory), alebo miestny názov hostiteľa a užívateľské ID (pre samostatné používateľov systému Windows Vista). Then save it as a .xml file. Potom uložte ho ako. XML súboru. For example, ReArm.xml or Extend.xml. Napríklad ReArm.xml alebo 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 (My Digital Life)</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>

    Or, download a copy of Alebo si stiahnite kópiu ReArm.xml ReArm.xml directly (you still need to change the “UserID”. priamo (stále musíte zmeniť "userid".

  2. Click Start , point to Administrative Tools (in Windows Vista, go to Control Panel -> System and Maintenance), and then click Task Scheduler . Kliknite na tlačidlo Štart, ukážte na položku Nástroje na správu (v systéme Windows Vista, prejdite na Ovládací panel -> Systém a údržba) a kliknite na tlačidlo Plánovač úloh.
  3. In the Task Scheduler , click Import Task on the “Action” menu. V Plánovač úloh, kliknite na tlačidlo Import úloh na "akciu" menu.
  4. Select the task .xml file saved from above above. Vyberte úlohu. XML súbor uložený z vyššie uvedených vyššie. For example, click Extend.xml or ReArm.xml. Napríklad kliknite na položku Extend.xml alebo ReArm.xml.
  5. Click Import . Kliknite na tlačidlo Import.
  6. A “Create Task” window will appear. "Vytvorenie pracovnej skupiny" okno vôle objaviť sa. Click the Triggers tab. Kliknite na kartu Triggers.

    Schedule Automatic Rearm Activation Grace Period

  7. Click the One Time trigger, and then click Edit . Kliknite na One Time spúšť, a potom na tlačidlo Upraviť.
  8. Change the start date of the task to a date just before the end of current evaluation period (activation grace period expiry date). Zmeniť dátum začatia úlohy dátum tesne pred koncom súčasného obdobia hodnotenia (aktivácia hudobné ozdoba čas uplynul).

    User can also customize the schedule so that the Task Scheduler automates the rearm of system license status every 30 days (for Windows Vista) or 60 days (for Windows Server 2008) for 3 times. Užívateľ môže tiež prispôsobiť rozvrh tak, aby Plánovač úloh automatizuje dosíci stave licenčného systému každých 30 dní (pre Windows Vista) alebo 60 dní (v systéme Windows Server 2008) na 3 krát. For example, change to Daily with recurring every 30 or 60 days, and then set an Expire date for the task after 120 days or 240 days. Napríklad zmena Daily opakujúcich sa každých 30 alebo 60 dní, a potom nastaviť dátum skončenia za úlohu po 120 dňoch, alebo 240 dni.

  9. Click OK , and then exit the Task Scheduler . Kliknite na tlačidlo OK a potom ukončite Plánovač úloh.

The Task Scheduler will now run the evaluation reset and rearm operation on the date that been specified automatically to extend the free usage of Windows operating system. Plánovač úloh bude teraz beží hodnotenie reset a dosíci prevádzku dňom, kedy bola uvedená automaticky predĺžiť na voľné použitie operačného systému Windows.

IMPORTANT : The page is machine translated and provided "as is" without warranty. Upozornenie: stránka je stroje preložené a za predpokladu, "ako je" bez záruky. Machine translation may be difficult to understand. Strojový preklad môže byť ťažké pochopiť. Please refer to Nájdete na original English article originál Anglicky artikl whenever possible. ak je to možné.


5 Responses to “How to Automatically Rearm and Extend Activation Grace Period in Windows Vista and Server 2008” 5 Odpovede k "Ako Automaticky dosíci a Ponúknuť Aktivácia Hudobné ozdoba Čas do Windows Vista a Server 2008"

  1. raj raj
    February 14th, 2009 08:07 14. február 2009 08:07
    5 5

    howto change user id please explain with example hxs for giving a meaning full knowlable tricks really apperciate with ur knowledge howto change user id vysvetlite prosím, s príkladom HXS pre udelenie plného významu knowlable triky naozaj apperciate s ur vedomostí

  2. Activate Windows 7 Pre-Beta 6801 with Vista Beta or RC Product Key without Crack » My Digital Life Aktivovať Windows 7 pre-beta 6801 s Windows Vista beta či RC Product Key bez Bezva »Má Digital Life
    November 11th, 2008 20:16 11. novembra 2008 20:16
    4 4

    [...] for up to 120 days as similar with activation free period of Vista with 3 rearms available – see how to rearm for more details). [...] Až na 120 dní za podobné s aktiváciou obdobia bez Vista s 3 rearms k dispozícii - pozri ako dosíci pre viac informácií). People who is more nostalgia and loves to keep old things may have hit a [...] Ľudia, ktorí je nostalgie a miluje staré veci, aby mohla hit [...]

  3. hkeyusers.com hkeyusers.com
    June 13th, 2008 07:04 13.červen 2008 07:04
    3 3

    Just a command to know the expiration date for current license : Len príkaz poznať dátum vypršania platnosti súčasnej licencie:

    slmgr.vbs -xpr slmgr.vbs-XPR

  4. cheapskate držgrešle
    June 9th, 2008 14:21 9. júna 2008 14:21
    2 2

    wahoo another piece of info I can share with my buddies hackers Wahoo ďalší kus info môžem podeliť so svojimi kamarátmi hackermi

  5. How to Install and Use Windows Server 2008 240 Days for Free » My Digital Life Ako nainštalovať a používať systém Windows Server 2008 240 Days do Drzý »Má Digital Life
    June 9th, 2008 00:18 9. júna 2008 00:18
    1 1

    [...] User can also use Task Scheduler to automatically rearm activation grace period on expiry. [...] Užívateľ môže tiež využiť služby Plánovač úloh tak, aby automaticky dosíci aktivácie hudobné ozdoba čas do uplynutia. [...] [...]

Leave a Reply Leave a Reply

You can use these tags: <a href="" title=""> <abbr title=""> <acronym title=""> <b> <blockquote cite=""> <cite> <code> <del datetime=""> <em> <i> <q cite=""> <strike> <strong> Môžete použiť tieto značky: href = "" <abbr title=""> <acronym title=""> <b> <blockquote cite=""> <cite> <code> <del datetime = ""> <em> <i> <q cite=""> <strike> <strong>

Subscribe to comments feature has been disabled. Prihlásiť sa k pripomienkam funkcia bola zakázaná. To receive notification of latest comments posted, subscribe to Ak chcete dostávať oznámenia o najnovšie komentáre vyslaný, prihláste sa My Digital Life Comments RSS feed Má Digital Life Komentáre RSS or alebo register to receive zaregistrovať na new comments in daily email digest. nové komentáre v dennom email Digest.
Custom Search

New Articles Nové články

Incoming Search Terms for the Article Vcházející Hľadať Čas do člen určitý Artikel

rearm windows XP dosíci windows XP - -- windows xp rearm windows xp dosíci - -- rearm xp dosíci xp - -- rearm windows 2003 dosíci windows 2003 - -- xp rearm xp dosíci - -- rearm windows server 2003 dosíci Windows Server 2003 - -- windows server 2008 rearm Windows Server 2008 dosíci - -- windows 2008 rearm windows 2008 dosíci - -- rearm windows server 2008 dosíci Windows Server 2008 - -- rearm server 2003 dosíci server 2003 - -- How to extend the Windows Server 2003 evaluation period Ako rozšíriť systém Windows Server 2003 hodnotiaceho obdobia - -- don't reset grace period for activation Nevynuluje lehotu pre aktiváciu - -- rearm windows 2008 r2 dosíci windows 2008 r2 - -- windows xp activation extension windows xp aktivácie predĺženie - -- rearm server 2008 dosíci server 2008 - -- rearm server 2008 r2 dosíci Server 2008 R2 - -- ReArm.xml ReArm.xml - -- rearm activation dosíci aktivácia - -- rearm 2008 r2 dosíci 2008 R2 - -- server 2008 rearm server 2008 dosíci - -- windows 2003 rearm windows 2003 dosíci - -- activation rearm aktivácia dosíci - -- how to extend windows activation ako rozšíriť okná aktivácie - -- windows server rearm windows server dosíci - -- rearm windows 2003 server dosíci Windows 2003 Server - -- windows server 2003 rearm Windows Server 2003 dosíci - -- rearm windows 7 dosíci okná 7 - -- extend windows 7 activation rozšíriť okná 7 aktivácia - -- how to extended activation vista ako rozšíriť vista aktivácia - -- windows XP reset activation period windows XP reset lehota na aktiváciu - -- how to extend the windows 2003 server activation message to 5 days ako rozšíriť Windows 2003 Server aktivácia správy do 5 dní - -- 2008 r2 rearm 2008 R2 dosíci - -- "don't reset grace period for activation" "Nechcem reset lehotu pre aktiváciu" - -- extend windows activation rozšíriť okná aktivácia - -- extend windows xp activation rozšíriť windows xp aktivácie - -- extend activation period server 2003 predĺženie lehoty na aktiváciu server 2003 - -- rearm windows activation dosíci okná aktivácia - -- Windows grace period XP 60 days Windows XP bezúročné obdobie 60 dní - -- xp extend activation xp predĺženie aktivácia - -- windows activation rearm okná aktivácie dosíci - -- windows 2003 evaluation expirey windows 2003 hodnotenie expirey - -- slmgr rearm xp slmgr dosíci xp - -- windows 7 activation extension okná 7 aktivácia predĺženie - -- extend 2008 server activation predĺžiť 2008 server aktivácie - -- how to rearm windows xp ako dosíci windows xp - -- rearm "windows xp" dosíci "windows xp" - -- rearm windows 7 activation dosíci okná 7 aktivácia - -- rearm license dosíci licencie - -- windows server 2003 extend activation Windows Server 2003 rozširujú aktivácie - -- 2003 server rearm 2003 server dosíci - --