Benutzer-Werkzeuge

Webseiten-Werkzeuge


windows_7

Windows 7

Installation der Upgrade Version

  • Upgradeversion von Windows 7 auf neuer Hardware installieren - keinen Poduct Key eingeben (wird als falsch erkannt…)
    • HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Setup\OOBE
      • MediaBootInstall von 1 auf 0 setzen
    • slmgr -rearm (Strg+Umschalt+Enter) als Administrator ausführen
    • Neustart
    • Windows + Pause - Product Key ändern

Windows 7 über Netzwerk installieren: PXE, DNSMasq, Samba
Problem mit OpenSuse und Service Pack 1 für Windows 7
Installieren von RSAT unter Windows 7 SP1 (x86fre_GRMRSAT_MSU.msu) StartupScript
How to Remove Win 7 Home Security
Anpassen von Standardbenutzerprofilen unter Windows 7 und Windows Server 2008 R2

Bootloader reparieren

bootrec.exe /FixMbr
bootrec.exe /FixBoot
   
bootrec.exe /RebuildBcd
bcdedit /export C:\BCD_Backup
c:
cd boot
attrib bcd -s -h -r
ren c:\boot\bcd bcd.old
bootrec /RebuildBcd

Eigene Dateien auf D:\

http://superuser.com/questions/53029/mount-second-drive-as-c-users-in-windows-7

  1. Von Windows 7 DVD booten
  2. Vor Sprachauswahl: Shift + F10
    • C: = d: und D: = e:
    • robocopy d:\Users e:\Users /mir /xj /copyall
  3. Altes Users Verzeichnis löschen: rmdir /S /Q D:\Users
  4. Link setzen: mklink /J D:\Users D:\Users
  5. Abgesicherten Modus starten
  6. regedit → HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows NT\CurrentVersion\ProfileList
    • ".bad" or ".bak", löschen
    • RefCount value = 0
    • State value = 0

http://support.microsoft.com/kb/221837

Bootloader

Problematik: Benutzername muss <20 Zeichen sein

Bugzilla

zeilen=$(cat bgweiz_11102011.ldif | grep -n  "uid:" | tr " " "_" | paste -s); nn=0; \
for zeile in $zeilen; do nummer=$(echo $zeile | cut -d":" -f1); nummer2=$(( $nummer-1+$nn )); nn=$(( $nn+1 )); \
name=$(echo $zeile | cut -d"_" -f2-);  NAME=$(echo "`echo $name |cut -c1`.`echo $name | cut -d"." -f2-`"); \
echo "$nummer $nummer2 $name $nn"; sed -i "${nummer2}s/\$/\nuid: ${NAME}/g" bgweiz_2uid_11102011.ldif; done
 
cd /home
rm /root/leute.txt; name=$(ls -d */ | cut -d"/" -f1); for i in $name; do vorname=$(echo $i | cut -c1 ); \
nachname=$(echo $i | cut -d"." -f2-); echo "$vorname.$nachname" >> /root/leute.txt; done
 
cat /root/leute.txt | sort | uniq -D > /root/doppelt.txt

Gruppenrichtlinen

Domänenanbindung

    Run gpedit.msc.
    Go to computer configuration.
    Go to Administrative templates.
    Go to System.
    Go to User profiles.
    Enable “Set maximum wait time for the network if a user has a roaming user profile or remote home directory” and set to 0 seconds
windows_7.txt · Zuletzt geändert: 2015/01/08 12:37 von admin