How to delete sysprep process

Discussion in 'Windows 7' started by Kamrul08, Sep 18, 2014.

  1. Kamrul08

    Kamrul08 MDL Member

    Dec 28, 2013
    104
    13
    10
    How to delete sysprep process after finishing sysprep configuration in System Restore disabled PC?
     
  2. coleoptere2007

    coleoptere2007 MDL Guru

    Apr 8, 2008
    3,311
    1,938
    120

    :confused:
     
  3. Flipp3r

    Flipp3r MDL Expert

    Feb 11, 2009
    1,964
    907
    60
    #3 Flipp3r, Sep 18, 2014
    Last edited by a moderator: Apr 20, 2017
    If your in Audit mode, you can close Sysprep in your script:
    Code:
    tasklist /FI "IMAGENAME eq sysprep.exe" 2>NUL | find /I /N "sysprep.exe">NUL
    if %errorlevel%==0 taskkill /IM sysprep.exe /F
    I've no idea re your refenence to System Restore...
     
    Stop hovering to collapse... Click to collapse... Hover to expand... Click to expand...
  4. Kamrul08

    Kamrul08 MDL Member

    Dec 28, 2013
    104
    13
    10
    #4 Kamrul08, Sep 18, 2014
    Last edited by a moderator: Apr 20, 2017
    (OP)
    My windows has already finished sysprep configuration and PC is now off. If I switch on the PC windows will boot with sysprep process. But I want boot windows normally deleting the sysprep process.
     
  5. murphy78

    murphy78 MDL DISM Enthusiast

    Nov 18, 2012
    7,389
    11,614
    240
    You need to set it to OOBE mode, which is the normal user mode. You should see the option in the sysprep screen if you're in audit mode.
     
  6. s1ave77

    s1ave77 Has left at his own request

    Aug 15, 2012
    16,104
    24,378
    340
    Stop hovering to collapse... Click to collapse... Hover to expand... Click to expand...
  7. Kamrul08

    Kamrul08 MDL Member

    Dec 28, 2013
    104
    13
    10
    Thanks all.
    I solved the problem with fresh install of Windows.