Infos

Sie befinden sich in den Archiven der Kategorie Windows 7.

Calendar
Februar 2012
M D M D F S S
« Aug    
 12345
6789101112
13141516171819
20212223242526
272829  

Archiv der Kategorie Windows 7

Create a Windows 7 WIM Image / Windows 7 PE

Prerequsites: Installed Windows 7 WAIK
Link : http://www.microsoft.com/downloads/details.aspx?FamilyID=696dd665-9f76-4177-a811-39c26d3b3b34&DisplayLang=de

1. Copy PE Files
  “%programfiles%\Windows AIK\Tools\PETools\copype.cmd” x86 c:\winpe_x86
 
2. Copy WIM File
  copy “%programfiles%\Windows AIK\Tools\PETools\x86\winpe.wim” c:\winpe_x86\ISO\sources\boot.wim
 
3. Mount WIM File
  Dism.exe /Mount-Wim /WimFile:c:\winpe_x86\ISO\sources\boot.wim /index:1 /MountDir:c:\winpe_x86\mount”
 
4. Copy ImageX
  copy “%programfiles%\Windows AIK\Tools\x86\imagex.exe” C:\winpe_x86\mount\Windows\System32
 
5. Copy AddOn’s if wanted
  xcopy “C:\AddOns” C:\winpe_x86\mount\Windows\System32 /S /H
 
6. Add Drivers
  Dism /image:c:\winpe_x86\mount /Add-Driver /driver:“C:\Drivers” /recurse /LogLevel:4
 
7. Add Packages if needed
  Dism /image:C:\winpe_x86\mount /Add-Package /PackagePath:”C:\Program Files\Windows AIK\Tools\PETools\x86\WinPE_FPs\winpe-hta.cab”
  Dism /image:C:\winpe_x86\mount /Add-Package /PackagePath:”C:\Program Files\Windows AIK\Tools\PETools\x86\WinPE_FPs\winpe-legacysetup.cab”
  Dism /image:C:\winpe_x86\mount /Add-Package /PackagePath:”C:\Program Files\Windows AIK\Tools\PETools\x86\WinPE_FPs\winpe-mdac.cab”
  Dism /image:C:\winpe_x86\mount /Add-Package /PackagePath:”C:\Program Files\Windows AIK\Tools\PETools\x86\WinPE_FPs\winpe-pppoe.cab”
  Dism /image:C:\winpe_x86\mount /Add-Package /PackagePath:”C:\Program Files\Windows AIK\Tools\PETools\x86\WinPE_FPs\winpe-scripting.cab”
  Dism /image:C:\winpe_x86\mount /Add-Package /PackagePath:”C:\Program Files\Windows AIK\Tools\PETools\x86\WinPE_FPs\winpe-setup.cab”
  Dism /image:C:\winpe_x86\mount /Add-Package /PackagePath:”C:\Program Files\Windows AIK\Tools\PETools\x86\WinPE_FPs\winpe-setup-client.cab”
  Dism /image:C:\winpe_x86\mount /Add-Package /PackagePath:”C:\Program Files\Windows AIK\Tools\PETools\x86\WinPE_FPs\winpe-setup-server.cab”
  Dism /image:C:\winpe_x86\mount /Add-Package /PackagePath:”C:\Program Files\Windows AIK\Tools\PETools\x86\WinPE_FPs\winpe-wds-tools.cab”
  Dism /image:C:\winpe_x86\mount /Add-Package /PackagePath:”C:\Program Files\Windows AIK\Tools\PETools\x86\WinPE_FPs\winpe-wmi.cab”
  Dism /image:C:\winpe_x86\mount /Enable-profiling

8. Add Hotfixes
  dism /image:C:\winpe_x86\mount /add-package /packagepath:“C:\Hotfixes”
 
9. Unmount PE
  dism /Unmount-Wim /MountDir:C:\winpe_x86\mount\ /Commit
 
10. Create Boot ISO
  “%programfiles%\Windows AIK\Tools\x86\oscdimg” -n -bC:\winpe_x86\etfsboot.com C:\winpe_x86\ISO C:\winpe_x86\winpe_x86.iso
 
11. Creat Boot USB Stick - USB Stick must be formated as NTFS and the partition on the USB Disk must be active
  xcopy “C:\winpe_x86\iso\*.*” /e g:\

Windows 7 / 2008 - Problemaufzeichnung

Das Video zeigt ein neues Feature von Windows 7, das es Anwendern auf sehr einfache Weise ermöglicht ihre Probleme gegenüber dem Support für eine bessere Unterstützung zu dokumentieren.

Link : http://community.certbase.de/blogs/mg/archive/2010/01/10/Win7_5F00_Problemaufzeichnung.aspx

Vielen Dank für den Tipp an Jürgen Kopp!

HOW TO: Clean out Windows\Installer folder correctly

When disk space is running out on a system disk, may it be on a server or a client, there are certain things to clean out. One of them being the %SYSTEMDRIVE%\Windows\Installer folder. You cannot under any circumstances delete files from this folder manually as this not only may but most likely will break software that is installed using MSI files, or Windows Installer files.

The %SYSTEMDRIVE%\Windows\Installer folder is a cache for installation files and patches (MSP files) and removing those will cause you to not being able to repair or uninstall applications, and in some cases not removing patches or applying new patches to software. In the event when you actually did delete this cache you can rebuild the files you need manually by extracting the files from original installation media, from patch packages etc but this is a time consuming and not that easy task to accomplish.

But let me get to the point. If you do want to free disk space you can clean out the %SYSTEMDRIVE%\Windows\Installer folder by downloading Windows Installer Cleanup Utility and then running the command

msizap.exe G!

When running this, the installer and patch packages are enumerated and unreferenced packages are considered to be safe to delete and are thereby also deleted. Depending on the age of the system and the number of applications installed, this action can free a significant amount of disk space.

Original Link : http://www.theexperienceblog.com/2009/05/16/how-to-clean-out-windowsinstaller-folder-correctly/