Отвечено How to disable deep freeze?

  • Tuesday, May 08, 2012 12:38 PM
     
     
    I want to disable deep freeze software. so plz show me steps to disable deep freeze.

All Replies

  • Tuesday, May 08, 2012 1:06 PM
     
     

    Can you please provide more details. How is this related to SCCM? Seems like a question directly related to a third party product.


    John Marcum | http://myitforum.com/cs2/blogs/jmarcum/|

  • Tuesday, May 08, 2012 2:23 PM
    Moderator
     
     Answered
    Disabling deep freeze is not a feature in CM07. You need to know how you disabled it int the software and then you can create a script/package in SCCM to do that.

    Kent Agerlund | My blogs: blog.coretech.dk/kea and SCUG.dk/ | Twitter: @Agerlund | Linkedin: Kent Agerlund

  • Thursday, September 13, 2012 2:54 PM
     
     

    You can reboot DF frozen or thawed by using the DFC.exe program in \windows\system32 Syntax is;

    dfc.exe  /yourDFpassword / bootthawed

    or

    dfc.exe  /yourDFpassword / boottfrozen

    You can also use DFC.exe to query the status of DF -  DFC.exe /get /isfrozen

    A simple VB script to reboot thawed is

    ' BootThawed
      Set objShell = CreateObject("Wscript.Shell")
      objShell.Run("DFC /yourDFpassword /BOOTTHAWED")

    you can change this to reboot frozen by simply chaning /bootthawed for /bootfrozen