ENTERPRISE13Update Script for Deep Freeze Server Enterprise ConsoleDownload DSE_UpdateScript.vbs file from http://www.faronics.com/Faronics/Documents/DSE_UpdateScript.zip. Steps to run the update script is explained in the next section.Download the update script directly from the link provided above. The contents of theupdate script displayed below is just for information. Do not use the contents of thescript show below for updating Deep Freeze Server Enterprise.’——————-SCRIPT START———————————Set Shell= CreateObject(“WScript.Shell”)Set FSO = CreateObject(“scripting.FileSystemObject”)TmpFolder= Shell.ExpandEnvironmentStrings(“%temp%”)key32bit = “HKLM\SOFTWARE\Microsoft\Windows\CurrentVersion\Uninstall\Deep FreezeServer Enterprise\UninstallString”key64bit = “HKLM\SOFTWARE\Wow6432Node\Microsoft\Windows\CurrentVersion\Uninstall\Deep Freeze Server Enterprise\UninstallString”WinTitle = “Deep Freeze Server 6.3 Console uninstall script”if CStr(CheckRegKey(key32bit)) thenInstallPath = Shell.RegRead (key32bit)RemoteAdminKey=”HKEY_LOCAL_MACHINE\SOFTWARE\Faronics\DeepFreezeRemoteAdministrator”else if CStr(CheckRegKey(key64bit)) thenInstallPath = Shell.RegRead (key64bit)RemoteAdminKey=”HKEY_LOCAL_MACHINE\SOFTWARE\Wow6432Node\Faronics\DeepFreezeRemoteAdministrator”elseBtnCode = Shell.Popup(“Deep Freeze Server 6.3 Console is not installed on thismachine.”, 0, WinTitle, 16)wscript.quitend ifend ifInstallPathAdmin=Replace(InstallPath,” /uninstall”,””)InstallPathServ = Replace(InstallPath,”Deep Freeze Server Enterprise\dfadmin6.exe /uninstall”, “Deep Freeze Enterprise Server”)InstallPath = Replace(InstallPath,”\Deep Freeze Server Enterprise\dfadmin6.exe /uninstall”, “”)if FSO.FolderExists(InstallPathServ) thenFSO.CopyFolder InstallPathServ, TmpFolder & “\Deep Freeze Enterprise Server”Shell.Run “Regedit /e “ & TmpFolder & “\_$dfreg.reg “ & RemoteAdminKey, 2, trueelseBtnCode = Shell.Popup(“Unable to locate “”Deep Freeze Enterprise Server””folder”, 0, WinTitle, 16)wscript.quitend if