Jump to content


thadkew

Established Members
  • Posts

    139
  • Joined

  • Last visited

  • Days Won

    2

Posts posted by thadkew

  1. I might have a hard time explaining this, but here goes:

     

    I would like to have a separate partition created that can be used for local imaging. Meaning that I'd like a "Z:" drive created that can be used to boot and image the C drive if there is a corruption on C.

    This Z drive would work similarly to a USB drive that has the MDT Media on it.

     

    Does that make sense? Can it be done?

  2. Is it possible to change the "Recovery From Domain" from the post install to the end of the task sequence?

    Our system administrators have put in a new sign in policy that after the user presses CTRL-ALT-DEL a "warning" is shown. During the MDT process, this causes a pause that requires user intervention.

     

    If I move the "Recovery From Domain" to the end, this should alleviate the issue with that warning, i believe.

     

    Can this be done without any issues?

  3. Create a capture task, image a PC with your XP stuff and make any changes

    Boot the machine and run the LiteTouch.vbs and select the capture task.

    Afterwards, import the OS into your deployment share and you're good to go.

     

    If you can get the Win7 to work, you can certainly get the WinXP to work. Just don't over-think it.

  4. You should download the USMT 3.0.1 from the information center. I believe the zti error youre getting it from not having a migapp or miguser file that the met is looking for.

    It looks like your cs.ini setting is correct, but I will have to check further when I get back to work.

    Check out Johann's site. http://www.deploymentresearch.com/

    It's got a lot of great stuff on there. That will also help a lot.

    I understand what youre trying to do, but also know that winxp to win7 hard inking is probably the easiest way to accomplish it. The upgrade to win 7 through that process saves the user state on the local drive, and therefore uses no network space.

    In our organization, we do both, because we have an SCCM 2007 and we do a lot of pc reacements.

    But on the occasion that we upgrade a machine, we will capture offline and then upgrade and then restore.

    .

  5. I assume you have installed USMT through the Information Center/Components (if you're going from XP to 7, i think you need USMT 3.0.1 but i'm probably wrong. It wouldn't hurt to have it anyway)

    I also don't see this line in your CustomSettings.ini (put them in)

     

     

    USMT4=YES

  6. You can do this, however, you wouldn't do it in the way you detail.

    Make sure the Customsettings.ini has the line:

    SkipCapture=NO

     

    First: you'll need to boot into the PC as an administrator.

    Second: you'll need to get to the LiteTouch.vbs script from the server

    Third: If you're doing a hardlink, select "Automatically determine. If not, select the capture and put it somewhere you'd remember (If you're going to put it on the network).

    Watch it run.

     

    Test that out. Hope it works.

    post-6175-0-05915500-1307628137_thumb.png

  7. Customsettings.ini shows:

    SkipProductKey=YES

     

    The sysprep.inf and the unattend.xml both have the product key listed.

     

    Yet, I just captured an XP image and when i try to deploy, it comes back with a prompt for the product key.

     

    I don't want that.

     

    I've read that you can add the product key to the customsettings and then put a task sequence variable in there.

    Where and how do you do that?

     

    Please advise.

  8. Hi All,

     

    Iam new to imaging can any one provide me the set to capture the refrence image and installation of captured image using WDS.

     

    Thanks

    manish

     

    What image are you using? Have you checked out some of the other forums here? anyweb has some great tutorials here...

  9. I don't know if this will help anyone, but here's something I threw together after scouring the googles...

     

    strComputer = "."

    Set objWMIService = GetObject("winmgmts:\\" & strComputer & "\root\cimv2")

    Set objAdsSystemInfo = CreateObject("adsysteminfo")

    Set objComputername = Getobject("LDAP://" & objAdsSystemInfo.ComputerName)

    Set colServiceList = objWMIService.ExecQuery _

    ("Select * from Win32_Service where Name = 'PortBlock Service'")

     

    strHostName = UCase(replace(objComputerName.Name,"CN=",""))

     

    For Each objService in colServiceList

    If objService.State = "Running" Then

    objService.StopService()

    Wscript.Sleep 5000

    End If

    errReturnCode = objService.ChangeStartMode("Automatic")

    Next

     

    Set objMessage = CreateObject("CDO.Message")

     

    objMessage.Subject = "SCCM OS deployment has completed" & " " & strHostName

    objMessage.From = "SCCM_Server@domain.com"

    objMessage.To = "my_email@domain.com"

    objMessage.TextBody = "This attachement Contains the Parsed log files" & vbcrlf & "Please review its contents"

    objMessage.AddAttachment "c:\windows\system32\ccm\logs\smsts.log"

    objMessage.Configuration.Fields.Item _

    ("
    ) = 2

    objMessage.Configuration.Fields.Item _

    ("
    ) = _

    "smtp.domain.com"

    objMessage.Configuration.Fields.Item _

    ("
    ) = 25

    objMessage.Configuration.Fields.Update

    objMessage.Send

     

    strComputer = "."

    Set objWMIService = GetObject("winmgmts:\\" & strComputer & "\root\cimv2")

     

    Set colServiceList = objWMIService.ExecQuery _

    ("Select * from Win32_Service where Name = 'PortBlock Service'")

     

    For Each objService in colServiceList

    If objService.State = "Stopped" Then

    objService.StartService()

    Wscript.Sleep 5000

    End If

    errReturnCode = objService.ChangeStartMode("Automatic")

    Next

  10. I'm hoping to get some help with an issue I've been trying to fix all week. I have created a XP SP3 WIM and captured it using SCCM capture CD. I created the image on VMServer as a virtual machine. I have then created a task sequence and put the WIM onto my SCCM lab server and deployed the image to a physical machine. However, the sequence runs all the way through without any errors but then the physical machine keeps BSOD'ing just after the Dell flash screen and then gets stuck in a rebooting loop - it wont even boot into Safe Mode.

     

    I've added all the XP drivers into my SCCM server and created the driver package and also added the driver package to the TS - I've also put the mass storage driver in on the Apply Driver Package part of the TS but still no luck.

     

    I'm assuming its something to do with the mass storage driver but I'm not sure what - also, I havent really done anything with the Sysprep so I'm assuming it could be this too but I'm not sure what to do with that either. On the image I captured, I copied the sysprep files into C:\sysprep - didnt run anything or change anything (just the extracted files in the folder from deploy.cab) and then just run the capture CD.

     

    I've tried pretty much everything I know and have found on popular search engines but still no luck but I'm convinced its something really simple! - any help or advice would be very much appreciated.

     

    Check your bios and change the hard drive from raid or ahci to legacy or compatible. If that works, you'll know it's a storage driver...

  11. Thanks for your prompt reply,will try this out and update you.

    It will gr8 if you can send me the screen shots too.Thanks in advance

     

    Make sure that you have the check in BOTH boxes in platform supported.

    Then check the Windows PE x64 settings to make sure they're right.

    Right click the deployment share and select Update

    Select "Completely generate the boot images"

    Import into WDS

     

    I hope this helps.

    post-6175-0-42319100-1304588228_thumb.png

  12. By default it's booting into LiteTouch X86 PE and thats the reason my tasklist is empty but my issue is I dont know how to make it to boot in x64 PE. If I dont import LiteTouch X86 PE in bootimage then while booting in PXE it gives an error, for which i google and it suggest to import X86 and then by default it goes in x86 PE

     

    Also i found that when booting litetouch X86 and it must be looking for x64 task sequence or vice-versa. Hence the task sequence is hidden.But i dont how to fix it.Any suggestions.

     

    Make sure that you create both a x86 and x64 lite touch PE and add both of those images to WDS server.

    Even though the task sequence is probably set to work on any architecture (check the properties), it won't show up unless the computer boots with the same architecture. I can post screen shots tomorrow.

    Essentially, right click on your deployment share and make sure you have both x86 and x64 checked. Then regenerate your boot images. Import the x64 to your WDS and restart WDS.

    When you boot from PXE, you'll see both LiteTouch PE's. Select the x64.

    Let me know if that works for you.

    Fingers crossed.

  13. I am deploying Win 7 image on bare metal machine using MDT 2010.

    After Windows PE boots up, i provide the user credentials and i find the task sequence wizard blank

    where i need to select the task sequence created.

    i foudn article related to it on technet, but that's not helping me.

     

    Please suggest.

     

     

    also i am able to run the script from cmd i.e After Windows PE boots up, i click F8

    and run the script from the deployment share ,it works fine that way.

     

    MDT is installed on 32 bit Windows server whereas i am trying to deploy on 64 bit workstation.

     

    Are you booting into the LiteTouch x64 or the LiteTouch x86 PE version?

    Also make sure your customsettings.ini is set correctly too.

    the beginning would be:

     

    [settings]

    Priority= Default

    Properties=MyCustomProperty

     

    [Default]

    OSInstall=Y

  14. After finally getting a client computer to pxe boot I set up a task sequence in MDT 2010. After booting, the pc gets no connection at all to MDT. I get a screen that reads, "Microsoft Accelerators", then the screen disappears and the pc attempts a normal boot. I have followed the Lite Touch Install guide and have checked to make sure I had left nothing out.

    I am attempting to capture an image of an XP machine. We are running Server 2008 r2. Any suggestions would be appreciated.

     

    When you are at the Microsoft Accelerators" screen, please press F8 to open a command prompt. If you type Trace32, you should be able to open the log viewer. From there, you can look for any logs that might help you track down the problem.

    I think that you don't have any network drivers for that computer model loaded in the MDT. But I can't be sure unless you find some logs.

  15. Figured out the command prompt issue. I just added a "Run Command Prompt" task in the sequence that will restart the machine and resume the process. The VNC session is cut (obviously), but by then the PC is most likely completing the imaging process anyway. My task sequence now looks like the attached. One caveat: Make sure to set the Options to "Continue on error"

    post-6175-0-07252400-1304001772_thumb.png

  16. I don't know if this will help, but here's what I did.

    I installed Windows 7 on a test PC.

    Then i rebooted that PC and logged in under the "audit"

    I made some specific config changes (added windows programs, removed some. configured other items, set the admin password)

     

    After that I captured my image and put it on the deployment share.

     

    When I started up my deployment share, I made sure to add the Operating System full set of files to the directory as well as the WIM i created. This helped when i used the WAIK to edit the config file.

     

    Then i just added the OS to the Task Sequence.

     

     

    I assume you're using MDT 2010. I am too. But I'm also using SCCM in our environment. So i have a little background in that which helped me.

  17. Recently, I started pushing our "field agents" into using the MDT at other sites. Sometimes I'll get a call asking what to do in "this" situation or "that" situation. As many times as I've tried to point folks to our knowledge base articles, I always wished I had a way to "look over their shoulder" so to speak.

    I've been all over the google and bing to figure out how to accomplish this. Some will say that you need to edit the Unattend.xml file for the WinPE (that didn't work). Others will say "change the winpeshl.ini" (that didn't work either).

     

    I'm sure there is a "prettier" way to do it, but this is what I've discovered:

    ---Ingredients---

    UltraVNC

    Notepad++

    BGInfo

    ConsoleSize (optional)

     

    ----Before we start----

    customize your BGInfo file and name the output STEP0.bgi

    customize your ultraVNC installation to make sure you have an ultravnc.ini file.

     

    ---Steps---

    1: mount your LiteTouch PE image with dism (example: dism /mount-wim /wimfile:g:\boot\LiteTouchPE_x86.wim /index:1 /mountdir:e:\mnt_x86

    2: navigiate to your mounted image and go to Deploy\Tools\x86 directory.

    3: add the following files:

    Winvnc.exe

    vnchooks.dll

    ultravnc.ini

    bginfo.exe

    STEP0.bgi

    4: go to your mounted directory (e:\mnt_x86) and navigate to Windows\System32. Rename the file "winpeshl.ini" to "winpeshl.old" (we rename this file because the existence of his file will not allow startnet.cmd to run)

    5: Edit the Startnet.cmd file with notepad++ and add these lines:

    wpeutil InitializeNetwork

    x:\deploy\tools\x86\Bginfo.exe X:\deploy\Tools\x86\STEP0.bgi /nolicprompt /silent /timer:0

    x:\deploy\tools\x86\winvnc.exe -install

    wpeutil DisableFirewall

    wscript.exe X:\Deploy\Scripts\LiteTouch.wsf

    (One note: it may be worthwhile to download the free tool "ConsoleSize." I use this to minimize the StartNet.cmd box If you do this, simply add ConsoleSize.exe to the Windows\system32 directory and add ConsoleSize MIN to the beginning of your startnet.cmd file)

    6: Close out of all files and use dism to commit your new LiteTouchPE image (example: dism /unmount-wim /mountdir:e:\mnt_x86 /commit

    7: Add the boot image to your WDS

     

    You should be able to boot into your new image and notice that the command prompt will start. After a few moments, you will see the BGInfo background and you should be able to VNC into the PC now.

     

    One thing I noticed is that the task sequence will start and run. Eventually the install will get to a point that it needs to reboot. However, the command prompt will still be open. You will need to manually close it so the process will continue.

     

    Like I say, there are probably prettier ways to do it. But I spent two days mucking about and found this to my liking. Please add any comments or thoughts that might make this better.

  18. You can get it by searching "Dell Client Configuration Utility" on the Dell site.

    Here's the direct link.

    http://support.us.dell.com/support/downloads/download.aspx?c=us&cs=RC978219&l=en&s=slg&releaseid=R264520&formatcnt=0&libid=0&typeid=-1&dateid=-1&formatid=-1&source=-1&fileid=388871

     

    It creates a settings.exe file that I run at the end of the task sequence (under the condition that it only run on model=%780)

     

    (It will give an error in the deployment summary, but i believe that's only because it is not giving a "0" at the end of the "install")

  19. I currently use MDT2010 to deploy Windows 7. Over the last few days, I've been getting errors when putting an image on with applications. The problem is, the GUID's are from applicaton's I've removed from "Applications". The first two I removed were for Project and Visio. Our App-V guy told me that they were going to go App-V, so I removed them from my applications. From then on, I am getting the error:

     

    "Error, application GUID {...} not found in application list, unable to execute".

     

    As a test, I removed ALL applications and now, instead of just those 2 erros, I get 14, one for each application I used to have, but now appear to be deleted. I'm at a loss. I don't know how to get those errors to go away. I've tried looking at the \DeploymentShare$\Control\Applications.xml and it's empty. I had previously found "Applications.000.xml, Applications.001.xml, Applications.002.xml"...all the way up to 005 and I deleted those with no change. I read somewhere that someone reverted their customsettings.ini file back to standard and that worked for them, but it didn't work for me. I need some expert help on this one.

     

    Thanks,

     

    crane_IT

     

    P.S. This is my first post. This is an awesome forum.

     

    I'm trying to understand:

    When you say you've removed all Applications, do you mean just from the Applications group in the Deployment Share? Or do you mean from the task sequence?

    Have you tried recreating a new Task Sequence and then disabling the State Restore "Install Applications" task?

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.