Changes between Version 1 and Version 2 of windows/windows7


Ignore:
Timestamp:
Apr 13, 2012, 5:55:58 PM (12 years ago)
Author:
joergs
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • windows/windows7

    v1 v2  
     1[[PageOutline]]
    12= Windows 7 Enterprise =
    23
    3 [[PageLayout]]
     4== Activate Windows ==
     5
     6Activate:
     7{{{
     8cscript C:\Windows\System32\Slmgr.vbs /ato
     9}}}
     10
     11Show infos:
     12{{{
     13cscript C:\Windows\System32\Slmgr.vbs /dlv
     14}}}
    415
    516== Adding Language Packs ==
    617
    718see http://technet.microsoft.com/en-us/library/cc766472%28v=ws.10%29.aspx
     19
     20=== Copy a Language Pack to the Windows Distribution ===
     21
     22from http://technet.microsoft.com/en-us/library/cc765987%28v=ws.10%29.aspx
     23
     24Important: start cmd as Administrator. From the Startmenu, select cmd by right mouse button and select: "Run as Administrator"
     25
     26Network shares are not available in this environment, so better copy all required files to c:\ before hand.
     27
     28From Linux:
     29{{{
     30# /mnt: mount ISO with Language Packs (SP1)
     31# $WORK/installfiles: contents of a Win7 SP1 installation DVD
     32
     33WORK=/tmp/win7
     34
     35cd $WORK
     36mkdir langpacks-extracted
     37cd langpacks-extracted
     38cabextract /mnt/langpacks/de-de/lp.cab
     39mkdir -p installfiles/langpacks
     40rsync -av /mnt/langpacks/de-de installfiles/langpacks/
     41rsync -av langpacks/de-de/sp1/sources/license/. installfiles/sources/license/.
     42rsync -av langpacks/de-de/sp1/setup/sources/. installfiles/sources/.
     43}}}
     44
     45Steps 5-8 must be performed on a Windows System with WAIK tools.
     46
     47== why-doesnt-local-administrator-group-have-full-administrator-rights ==
     48
     49http://windows7forums.com/windows-7-support/36990-why-doesnt-local-administrator-group-have-full-administrator-rights.html
     50
     51Test:
     52{{{
     53net localgroup users /delete localadmin
     54}}}
     55{{{
     56Access is denied.
     57}}}