Showing posts with label SCCM OSD. Show all posts
Showing posts with label SCCM OSD. Show all posts

You cannot import a new version of driver SCCM if one or more driver files in the package are already imported into the site

Problem: When you try to import a new version of driver which was imported earlier , SCCM gives this error:  The selected driver has already been imported at this site.

Solution: Microsoft has launched a hotfix to resolve that issue, it can be downloaded from this location: http://support.microsoft.com/kb/2213600 

After installing the hot fix you will be able to import a new version of driver which was imported earlier .

PXE: Failed to read PXE settings. The system cannot find the file specified. (Error: 80070002; Source: Windows)

Issue :You try to PXE boot a computer to deploy operating system through SCCM  but it throw the error :

PXE-T01: File not found
PEX-E3B: TFTP Error – File not found

image

Upon investigating  you find that smspxe.log shows this error:

“Failed to read PXE settings.
The system cannot find the file specified. (Error: 80070002; Source: Windows)”

This error comes when boot images and related files are not ready on SCCM server  or Windows Deployment Service is not running on PXE service point role.

Solution:
1. Take ownership of this folder and delete all content : C:\Windows\Temp\PXEBootFiles

2. If that doesn’t help delete the boot images and re-create them

SCCM 2007 interview questions

Q. Can you change a secondary site to a primary site?

A. No. A secondary site is always a secondary site. It cannot be upgraded, moved, or changed without deleting it and reinstalling it. If you delete and reinstall, you lose all secondary site data.

Q. Can you distribute a package to a computer without making it a member of a collection?

A. No. To distribute software you must have a package, a program and an advertisement. Advertisements can only be sent to collections, not to computers. If you want to distribute a package to a single computer, you must create a collection for that computer.

Read more SCCM 2007 interview questions

SCCM 2007 Quiz Application from Microsoft

The System Center Configuration Manager 2007 User Assistance team has created a set of quizzes to help you assess your understanding of the dependencies and requirements for key features of Configuration Manager. These quizzes help to raise your level of awareness of the some of the nuances of these features before you configure and use them.

SCCM 2007 Quiz Application

Read more about SCCM 2007 Quiz Application from Microsoft .

How to copy Outlook Personal Folders (PSTs) during XP to Win 7 Migration using USMT 4.0 Hardlinking

 
By default, USMT 4.0 migrates PST files that are linked to a user’s Outlook profile. This is done through internal USMT functions named SetPstPathInMapiStruct and UpdateMvBinaryMapiStruct which is called from within migapp.xml.
What this means is that PST files which are simply stored on the drive but not actually connected to Outlook will not migrate by default when using /i:migapp.cml and /i:migdocs.xml. It’s very possible a user is keeping those around for archive purposes, though. In the example below, the user has a copy of a PST in a c:\psts folder that is not attached to the Outlook profile. They also have a PST created by Outlook Auto-Archive.
image
In order to migrate those PST files we need to follow these steps:
1.Create a custom XML file
Here is a sample that will gather all PST files from all fixed drives:
<?xml version="1.0" encoding="utf-8" ?>
<migration urlid="http://www.microsoft.com/migration/1.0/migxmlext/pst%22>
  <component type="Documents" context="UserAndSystem">
    <displayName>All PST migrated from all fixed drives, regardless of location</displayName>
    <role role="Data">
      <rules>
        <include>
          <objectSet>
            <script>MigXmlHelper.GenerateDrivePatterns ("* [*.pst]", "Fixed")</script>
          </objectSet>
        </include>
      </rules>
    </role>
  </component>
</migration>
Paste that into Notepad and save as PST.XML into your USMT folder and C:\Windows\System32 folder of the target Windows XP machine
2.Add a command  switch /i:pst.xml in TS variable  “OSDMigrateAdditionalCaptureOptionsscanstate” :
image

Popular Posts