├── .gitignore ├── Client ├── Client.dpr ├── Client.dproj ├── Client.res ├── Install │ ├── ClientInstall.iss │ ├── ClientUpdateService.ini │ ├── Launcher.ini │ ├── mspatcha.dll │ ├── mspatchc.dll │ └── rtl160.bpl ├── fmMain.dfm └── fmMain.pas ├── ClientUpdateService ├── ClientUpdateService.dpr ├── ClientUpdateService.dproj ├── ClientUpdateService.res ├── ClientUpdateServiceEventLogMessages.RES ├── unClientUpdateService.dfm ├── unClientUpdateService.pas ├── unUpdateClientThread.pas └── unitDebugService.pas ├── Common ├── TemporaryCursor.pas ├── ftCodeSiteHelper.pas ├── ftSyncClient.pas ├── ftTypes.pas ├── hcUpdateConsts.pas ├── hcUpdateSettings.pas ├── hcVersionInfo.pas ├── hcVersionList.pas ├── hcVersionText.pas ├── unApplyUpdate.pas ├── unIUpdateService.pas ├── unNamedPipe.pas ├── unPath.pas ├── unUpdateClient.pas └── unWebServiceFileUtils.pas ├── Docs ├── AutoUpdates.pptx ├── Design Summary.odt └── TODO.txt ├── LICENSE ├── Launcher ├── Launcher.deployproj ├── Launcher.dpr ├── Launcher.dproj ├── Launcher.res ├── fmMain.dfm └── fmMain.pas ├── LoadTester ├── LoadTester.dpr ├── LoadTester.dproj ├── LoadTester.res ├── fmMain.dfm ├── fmMain.pas └── unClientUpdateThread.pas ├── NTLowLevel100 └── Source │ ├── LsaApi.pas │ ├── Mgmtapi.pas │ ├── NTLowLevel100.bdsproj │ ├── NTLowLevel100.dpk │ ├── NTLowLevel100.res │ ├── ipexport.pas │ ├── iphlpapi.pas │ ├── ipifcons.pas │ ├── iprtrmib.pas │ ├── iptypes.pas │ ├── lmaccess.pas │ ├── lmalert.pas │ ├── lmat.pas │ ├── lmaudit.pas │ ├── lmbrowsr.pas │ ├── lmchdev.pas │ ├── lmconfig.pas │ ├── lmerrlog.pas │ ├── lmglobal.pas │ ├── lmmsg.pas │ ├── lmremutl.pas │ ├── lmrepl.pas │ ├── lmserver.pas │ ├── lmservrw.pas │ ├── lmsharew.pas │ ├── lmsname.pas │ ├── lmwksta.pas │ ├── ntddk.pas │ ├── ntprocess.pas │ ├── snmp.pas │ ├── unitDebugService.pas │ ├── unitImpersonator.pas │ ├── unitNTException.pas │ ├── unitNTRegistry.pas │ ├── unitNTSecurity.pas │ ├── unitNamedPipes.pas │ └── unitSecurityDescriptor.pas ├── Patcher ├── API │ ├── PatchAPI.pas │ └── uPatcher.pas ├── PatchDemo.dpr ├── PatchDemo.dproj ├── PatchDemo.res ├── Unit1.dfm ├── Unit1.pas └── bin │ ├── PatchDemo.exe │ ├── mspatcha.dll │ └── mspatchc.dll ├── Patching ├── EXAMPLE.PCP ├── MsiMsp.Exe ├── PatchWiz.dll ├── TEMPLATE.PCP ├── apatch.exe ├── makecab.exe ├── mpatch.exe ├── mspatchc.dll └── preadme.htm ├── README.md ├── Register ├── MainForm.dfm ├── MainForm.pas ├── PJSysInfo.pas ├── Register.dpr ├── Register.dproj ├── WinRegister.dpr ├── WinRegister.dproj ├── WinRegister.manifest └── WinRegisterManifest.rc ├── SQL ├── FireBird │ ├── Add InstallationDeployments for DeploymentGUID.sql │ ├── Add Latest InstallationDeployment for DeploymentGUID.sql │ ├── Database Creation Script.sql │ ├── Insert Countries and States.sql │ ├── Show Updates.sql │ ├── exec spCreateDeployment.sql │ └── spCreateDeployment.sql └── SQLServer │ ├── Add Status column to Deployment Table.sql │ ├── AddDeploymentFlagsTo Deployment Table.sql │ ├── Create Tables.sql │ ├── Get Structure of Temp Table.sql │ ├── Insert Company.sql │ ├── Insert Countries and States.sql │ ├── ResetDeployment.sql │ ├── Standalone Create Tables.sql │ ├── Standalone Insert Script.sql │ ├── select all companies.sql │ └── spStandaloneCreateDeployment.sql ├── Server ├── Common │ ├── FileCache.pas │ ├── UpdateServerWebModule.dfm │ ├── UpdateServerWebModule.pas │ ├── UpdateServiceImpl.pas │ ├── UpdateServiceIntf.pas │ ├── dmADO.dfm │ ├── dmADO.pas │ ├── dmFireDAC.dfm │ └── dmFireDAC.pas ├── ISAPI │ ├── UpdateISAPIService.dpr │ ├── UpdateISAPIService.dproj │ ├── UpdateISAPIService.res │ └── UpdateService.res ├── NTService │ ├── UpdateNTService.dpr │ ├── UpdateNTService.dproj │ ├── UpdateNTService.res │ ├── UpdateServerEventLogMessages.RES │ ├── unUpdateNTService.dfm │ └── unUpdateNTService.pas ├── UpdateServer.dsk ├── UpdateServer.groupproj └── WinUI │ ├── UpdateWinUIServer.dpr │ ├── UpdateWinUIServer.dproj │ ├── UpdateWinUIServer.res │ ├── fmMain.dfm │ └── fmMain.pas └── UpdateManager ├── DeploymentManager.dpr ├── DeploymentManager.dproj ├── DeploymentManager.res ├── UpdateManager.groupproj ├── dclDeploymentManager.dpk ├── dclDeploymentManager.dproj ├── dclDeploymentManager.res ├── dmADO.dfm ├── dmADO.pas ├── fmAbout.dfm ├── fmAbout.pas ├── fmDeployment.dfm ├── fmDeployment.pas ├── fmDeploymentItem.dfm ├── fmDeploymentItem.pas ├── fmEditNotes.dfm ├── fmEditNotes.pas ├── fmMain.dfm ├── fmMain.pas ├── fmSelectStudios.dfm ├── fmSelectStudios.pas ├── ftDialog.dfm ├── ftDialog.pas ├── ftForm.dfm ├── ftForm.pas ├── hcDeployment.pas ├── hcDeploymentRegion.pas ├── hcDeploymentStudio.pas ├── hcTreeViewUtils.pas └── hcUTCUtils.pas /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lhengen/hcUpdateFramework/HEAD/.gitignore -------------------------------------------------------------------------------- /Client/Client.dpr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lhengen/hcUpdateFramework/HEAD/Client/Client.dpr -------------------------------------------------------------------------------- /Client/Client.dproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lhengen/hcUpdateFramework/HEAD/Client/Client.dproj -------------------------------------------------------------------------------- /Client/Client.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lhengen/hcUpdateFramework/HEAD/Client/Client.res -------------------------------------------------------------------------------- /Client/Install/ClientInstall.iss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lhengen/hcUpdateFramework/HEAD/Client/Install/ClientInstall.iss -------------------------------------------------------------------------------- /Client/Install/ClientUpdateService.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lhengen/hcUpdateFramework/HEAD/Client/Install/ClientUpdateService.ini -------------------------------------------------------------------------------- /Client/Install/Launcher.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lhengen/hcUpdateFramework/HEAD/Client/Install/Launcher.ini -------------------------------------------------------------------------------- /Client/Install/mspatcha.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lhengen/hcUpdateFramework/HEAD/Client/Install/mspatcha.dll -------------------------------------------------------------------------------- /Client/Install/mspatchc.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lhengen/hcUpdateFramework/HEAD/Client/Install/mspatchc.dll -------------------------------------------------------------------------------- /Client/Install/rtl160.bpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lhengen/hcUpdateFramework/HEAD/Client/Install/rtl160.bpl -------------------------------------------------------------------------------- /Client/fmMain.dfm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lhengen/hcUpdateFramework/HEAD/Client/fmMain.dfm -------------------------------------------------------------------------------- /Client/fmMain.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lhengen/hcUpdateFramework/HEAD/Client/fmMain.pas -------------------------------------------------------------------------------- /ClientUpdateService/ClientUpdateService.dpr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lhengen/hcUpdateFramework/HEAD/ClientUpdateService/ClientUpdateService.dpr -------------------------------------------------------------------------------- /ClientUpdateService/ClientUpdateService.dproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lhengen/hcUpdateFramework/HEAD/ClientUpdateService/ClientUpdateService.dproj -------------------------------------------------------------------------------- /ClientUpdateService/ClientUpdateService.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lhengen/hcUpdateFramework/HEAD/ClientUpdateService/ClientUpdateService.res -------------------------------------------------------------------------------- /ClientUpdateService/ClientUpdateServiceEventLogMessages.RES: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lhengen/hcUpdateFramework/HEAD/ClientUpdateService/ClientUpdateServiceEventLogMessages.RES -------------------------------------------------------------------------------- /ClientUpdateService/unClientUpdateService.dfm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lhengen/hcUpdateFramework/HEAD/ClientUpdateService/unClientUpdateService.dfm -------------------------------------------------------------------------------- /ClientUpdateService/unClientUpdateService.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lhengen/hcUpdateFramework/HEAD/ClientUpdateService/unClientUpdateService.pas -------------------------------------------------------------------------------- /ClientUpdateService/unUpdateClientThread.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lhengen/hcUpdateFramework/HEAD/ClientUpdateService/unUpdateClientThread.pas -------------------------------------------------------------------------------- /ClientUpdateService/unitDebugService.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lhengen/hcUpdateFramework/HEAD/ClientUpdateService/unitDebugService.pas -------------------------------------------------------------------------------- /Common/TemporaryCursor.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lhengen/hcUpdateFramework/HEAD/Common/TemporaryCursor.pas -------------------------------------------------------------------------------- /Common/ftCodeSiteHelper.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lhengen/hcUpdateFramework/HEAD/Common/ftCodeSiteHelper.pas -------------------------------------------------------------------------------- /Common/ftSyncClient.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lhengen/hcUpdateFramework/HEAD/Common/ftSyncClient.pas -------------------------------------------------------------------------------- /Common/ftTypes.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lhengen/hcUpdateFramework/HEAD/Common/ftTypes.pas -------------------------------------------------------------------------------- /Common/hcUpdateConsts.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lhengen/hcUpdateFramework/HEAD/Common/hcUpdateConsts.pas -------------------------------------------------------------------------------- /Common/hcUpdateSettings.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lhengen/hcUpdateFramework/HEAD/Common/hcUpdateSettings.pas -------------------------------------------------------------------------------- /Common/hcVersionInfo.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lhengen/hcUpdateFramework/HEAD/Common/hcVersionInfo.pas -------------------------------------------------------------------------------- /Common/hcVersionList.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lhengen/hcUpdateFramework/HEAD/Common/hcVersionList.pas -------------------------------------------------------------------------------- /Common/hcVersionText.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lhengen/hcUpdateFramework/HEAD/Common/hcVersionText.pas -------------------------------------------------------------------------------- /Common/unApplyUpdate.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lhengen/hcUpdateFramework/HEAD/Common/unApplyUpdate.pas -------------------------------------------------------------------------------- /Common/unIUpdateService.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lhengen/hcUpdateFramework/HEAD/Common/unIUpdateService.pas -------------------------------------------------------------------------------- /Common/unNamedPipe.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lhengen/hcUpdateFramework/HEAD/Common/unNamedPipe.pas -------------------------------------------------------------------------------- /Common/unPath.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lhengen/hcUpdateFramework/HEAD/Common/unPath.pas -------------------------------------------------------------------------------- /Common/unUpdateClient.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lhengen/hcUpdateFramework/HEAD/Common/unUpdateClient.pas -------------------------------------------------------------------------------- /Common/unWebServiceFileUtils.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lhengen/hcUpdateFramework/HEAD/Common/unWebServiceFileUtils.pas -------------------------------------------------------------------------------- /Docs/AutoUpdates.pptx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lhengen/hcUpdateFramework/HEAD/Docs/AutoUpdates.pptx -------------------------------------------------------------------------------- /Docs/Design Summary.odt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lhengen/hcUpdateFramework/HEAD/Docs/Design Summary.odt -------------------------------------------------------------------------------- /Docs/TODO.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lhengen/hcUpdateFramework/HEAD/Docs/TODO.txt -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lhengen/hcUpdateFramework/HEAD/LICENSE -------------------------------------------------------------------------------- /Launcher/Launcher.deployproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lhengen/hcUpdateFramework/HEAD/Launcher/Launcher.deployproj -------------------------------------------------------------------------------- /Launcher/Launcher.dpr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lhengen/hcUpdateFramework/HEAD/Launcher/Launcher.dpr -------------------------------------------------------------------------------- /Launcher/Launcher.dproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lhengen/hcUpdateFramework/HEAD/Launcher/Launcher.dproj -------------------------------------------------------------------------------- /Launcher/Launcher.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lhengen/hcUpdateFramework/HEAD/Launcher/Launcher.res -------------------------------------------------------------------------------- /Launcher/fmMain.dfm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lhengen/hcUpdateFramework/HEAD/Launcher/fmMain.dfm -------------------------------------------------------------------------------- /Launcher/fmMain.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lhengen/hcUpdateFramework/HEAD/Launcher/fmMain.pas -------------------------------------------------------------------------------- /LoadTester/LoadTester.dpr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lhengen/hcUpdateFramework/HEAD/LoadTester/LoadTester.dpr -------------------------------------------------------------------------------- /LoadTester/LoadTester.dproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lhengen/hcUpdateFramework/HEAD/LoadTester/LoadTester.dproj -------------------------------------------------------------------------------- /LoadTester/LoadTester.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lhengen/hcUpdateFramework/HEAD/LoadTester/LoadTester.res -------------------------------------------------------------------------------- /LoadTester/fmMain.dfm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lhengen/hcUpdateFramework/HEAD/LoadTester/fmMain.dfm -------------------------------------------------------------------------------- /LoadTester/fmMain.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lhengen/hcUpdateFramework/HEAD/LoadTester/fmMain.pas -------------------------------------------------------------------------------- /LoadTester/unClientUpdateThread.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lhengen/hcUpdateFramework/HEAD/LoadTester/unClientUpdateThread.pas -------------------------------------------------------------------------------- /NTLowLevel100/Source/LsaApi.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lhengen/hcUpdateFramework/HEAD/NTLowLevel100/Source/LsaApi.pas -------------------------------------------------------------------------------- /NTLowLevel100/Source/Mgmtapi.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lhengen/hcUpdateFramework/HEAD/NTLowLevel100/Source/Mgmtapi.pas -------------------------------------------------------------------------------- /NTLowLevel100/Source/NTLowLevel100.bdsproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lhengen/hcUpdateFramework/HEAD/NTLowLevel100/Source/NTLowLevel100.bdsproj -------------------------------------------------------------------------------- /NTLowLevel100/Source/NTLowLevel100.dpk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lhengen/hcUpdateFramework/HEAD/NTLowLevel100/Source/NTLowLevel100.dpk -------------------------------------------------------------------------------- /NTLowLevel100/Source/NTLowLevel100.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lhengen/hcUpdateFramework/HEAD/NTLowLevel100/Source/NTLowLevel100.res -------------------------------------------------------------------------------- /NTLowLevel100/Source/ipexport.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lhengen/hcUpdateFramework/HEAD/NTLowLevel100/Source/ipexport.pas -------------------------------------------------------------------------------- /NTLowLevel100/Source/iphlpapi.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lhengen/hcUpdateFramework/HEAD/NTLowLevel100/Source/iphlpapi.pas -------------------------------------------------------------------------------- /NTLowLevel100/Source/ipifcons.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lhengen/hcUpdateFramework/HEAD/NTLowLevel100/Source/ipifcons.pas -------------------------------------------------------------------------------- /NTLowLevel100/Source/iprtrmib.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lhengen/hcUpdateFramework/HEAD/NTLowLevel100/Source/iprtrmib.pas -------------------------------------------------------------------------------- /NTLowLevel100/Source/iptypes.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lhengen/hcUpdateFramework/HEAD/NTLowLevel100/Source/iptypes.pas -------------------------------------------------------------------------------- /NTLowLevel100/Source/lmaccess.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lhengen/hcUpdateFramework/HEAD/NTLowLevel100/Source/lmaccess.pas -------------------------------------------------------------------------------- /NTLowLevel100/Source/lmalert.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lhengen/hcUpdateFramework/HEAD/NTLowLevel100/Source/lmalert.pas -------------------------------------------------------------------------------- /NTLowLevel100/Source/lmat.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lhengen/hcUpdateFramework/HEAD/NTLowLevel100/Source/lmat.pas -------------------------------------------------------------------------------- /NTLowLevel100/Source/lmaudit.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lhengen/hcUpdateFramework/HEAD/NTLowLevel100/Source/lmaudit.pas -------------------------------------------------------------------------------- /NTLowLevel100/Source/lmbrowsr.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lhengen/hcUpdateFramework/HEAD/NTLowLevel100/Source/lmbrowsr.pas -------------------------------------------------------------------------------- /NTLowLevel100/Source/lmchdev.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lhengen/hcUpdateFramework/HEAD/NTLowLevel100/Source/lmchdev.pas -------------------------------------------------------------------------------- /NTLowLevel100/Source/lmconfig.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lhengen/hcUpdateFramework/HEAD/NTLowLevel100/Source/lmconfig.pas -------------------------------------------------------------------------------- /NTLowLevel100/Source/lmerrlog.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lhengen/hcUpdateFramework/HEAD/NTLowLevel100/Source/lmerrlog.pas -------------------------------------------------------------------------------- /NTLowLevel100/Source/lmglobal.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lhengen/hcUpdateFramework/HEAD/NTLowLevel100/Source/lmglobal.pas -------------------------------------------------------------------------------- /NTLowLevel100/Source/lmmsg.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lhengen/hcUpdateFramework/HEAD/NTLowLevel100/Source/lmmsg.pas -------------------------------------------------------------------------------- /NTLowLevel100/Source/lmremutl.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lhengen/hcUpdateFramework/HEAD/NTLowLevel100/Source/lmremutl.pas -------------------------------------------------------------------------------- /NTLowLevel100/Source/lmrepl.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lhengen/hcUpdateFramework/HEAD/NTLowLevel100/Source/lmrepl.pas -------------------------------------------------------------------------------- /NTLowLevel100/Source/lmserver.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lhengen/hcUpdateFramework/HEAD/NTLowLevel100/Source/lmserver.pas -------------------------------------------------------------------------------- /NTLowLevel100/Source/lmservrw.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lhengen/hcUpdateFramework/HEAD/NTLowLevel100/Source/lmservrw.pas -------------------------------------------------------------------------------- /NTLowLevel100/Source/lmsharew.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lhengen/hcUpdateFramework/HEAD/NTLowLevel100/Source/lmsharew.pas -------------------------------------------------------------------------------- /NTLowLevel100/Source/lmsname.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lhengen/hcUpdateFramework/HEAD/NTLowLevel100/Source/lmsname.pas -------------------------------------------------------------------------------- /NTLowLevel100/Source/lmwksta.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lhengen/hcUpdateFramework/HEAD/NTLowLevel100/Source/lmwksta.pas -------------------------------------------------------------------------------- /NTLowLevel100/Source/ntddk.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lhengen/hcUpdateFramework/HEAD/NTLowLevel100/Source/ntddk.pas -------------------------------------------------------------------------------- /NTLowLevel100/Source/ntprocess.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lhengen/hcUpdateFramework/HEAD/NTLowLevel100/Source/ntprocess.pas -------------------------------------------------------------------------------- /NTLowLevel100/Source/snmp.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lhengen/hcUpdateFramework/HEAD/NTLowLevel100/Source/snmp.pas -------------------------------------------------------------------------------- /NTLowLevel100/Source/unitDebugService.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lhengen/hcUpdateFramework/HEAD/NTLowLevel100/Source/unitDebugService.pas -------------------------------------------------------------------------------- /NTLowLevel100/Source/unitImpersonator.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lhengen/hcUpdateFramework/HEAD/NTLowLevel100/Source/unitImpersonator.pas -------------------------------------------------------------------------------- /NTLowLevel100/Source/unitNTException.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lhengen/hcUpdateFramework/HEAD/NTLowLevel100/Source/unitNTException.pas -------------------------------------------------------------------------------- /NTLowLevel100/Source/unitNTRegistry.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lhengen/hcUpdateFramework/HEAD/NTLowLevel100/Source/unitNTRegistry.pas -------------------------------------------------------------------------------- /NTLowLevel100/Source/unitNTSecurity.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lhengen/hcUpdateFramework/HEAD/NTLowLevel100/Source/unitNTSecurity.pas -------------------------------------------------------------------------------- /NTLowLevel100/Source/unitNamedPipes.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lhengen/hcUpdateFramework/HEAD/NTLowLevel100/Source/unitNamedPipes.pas -------------------------------------------------------------------------------- /NTLowLevel100/Source/unitSecurityDescriptor.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lhengen/hcUpdateFramework/HEAD/NTLowLevel100/Source/unitSecurityDescriptor.pas -------------------------------------------------------------------------------- /Patcher/API/PatchAPI.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lhengen/hcUpdateFramework/HEAD/Patcher/API/PatchAPI.pas -------------------------------------------------------------------------------- /Patcher/API/uPatcher.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lhengen/hcUpdateFramework/HEAD/Patcher/API/uPatcher.pas -------------------------------------------------------------------------------- /Patcher/PatchDemo.dpr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lhengen/hcUpdateFramework/HEAD/Patcher/PatchDemo.dpr -------------------------------------------------------------------------------- /Patcher/PatchDemo.dproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lhengen/hcUpdateFramework/HEAD/Patcher/PatchDemo.dproj -------------------------------------------------------------------------------- /Patcher/PatchDemo.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lhengen/hcUpdateFramework/HEAD/Patcher/PatchDemo.res -------------------------------------------------------------------------------- /Patcher/Unit1.dfm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lhengen/hcUpdateFramework/HEAD/Patcher/Unit1.dfm -------------------------------------------------------------------------------- /Patcher/Unit1.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lhengen/hcUpdateFramework/HEAD/Patcher/Unit1.pas -------------------------------------------------------------------------------- /Patcher/bin/PatchDemo.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lhengen/hcUpdateFramework/HEAD/Patcher/bin/PatchDemo.exe -------------------------------------------------------------------------------- /Patcher/bin/mspatcha.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lhengen/hcUpdateFramework/HEAD/Patcher/bin/mspatcha.dll -------------------------------------------------------------------------------- /Patcher/bin/mspatchc.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lhengen/hcUpdateFramework/HEAD/Patcher/bin/mspatchc.dll -------------------------------------------------------------------------------- /Patching/EXAMPLE.PCP: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lhengen/hcUpdateFramework/HEAD/Patching/EXAMPLE.PCP -------------------------------------------------------------------------------- /Patching/MsiMsp.Exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lhengen/hcUpdateFramework/HEAD/Patching/MsiMsp.Exe -------------------------------------------------------------------------------- /Patching/PatchWiz.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lhengen/hcUpdateFramework/HEAD/Patching/PatchWiz.dll -------------------------------------------------------------------------------- /Patching/TEMPLATE.PCP: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lhengen/hcUpdateFramework/HEAD/Patching/TEMPLATE.PCP -------------------------------------------------------------------------------- /Patching/apatch.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lhengen/hcUpdateFramework/HEAD/Patching/apatch.exe -------------------------------------------------------------------------------- /Patching/makecab.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lhengen/hcUpdateFramework/HEAD/Patching/makecab.exe -------------------------------------------------------------------------------- /Patching/mpatch.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lhengen/hcUpdateFramework/HEAD/Patching/mpatch.exe -------------------------------------------------------------------------------- /Patching/mspatchc.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lhengen/hcUpdateFramework/HEAD/Patching/mspatchc.dll -------------------------------------------------------------------------------- /Patching/preadme.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lhengen/hcUpdateFramework/HEAD/Patching/preadme.htm -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lhengen/hcUpdateFramework/HEAD/README.md -------------------------------------------------------------------------------- /Register/MainForm.dfm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lhengen/hcUpdateFramework/HEAD/Register/MainForm.dfm -------------------------------------------------------------------------------- /Register/MainForm.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lhengen/hcUpdateFramework/HEAD/Register/MainForm.pas -------------------------------------------------------------------------------- /Register/PJSysInfo.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lhengen/hcUpdateFramework/HEAD/Register/PJSysInfo.pas -------------------------------------------------------------------------------- /Register/Register.dpr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lhengen/hcUpdateFramework/HEAD/Register/Register.dpr -------------------------------------------------------------------------------- /Register/Register.dproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lhengen/hcUpdateFramework/HEAD/Register/Register.dproj -------------------------------------------------------------------------------- /Register/WinRegister.dpr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lhengen/hcUpdateFramework/HEAD/Register/WinRegister.dpr -------------------------------------------------------------------------------- /Register/WinRegister.dproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lhengen/hcUpdateFramework/HEAD/Register/WinRegister.dproj -------------------------------------------------------------------------------- /Register/WinRegister.manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lhengen/hcUpdateFramework/HEAD/Register/WinRegister.manifest -------------------------------------------------------------------------------- /Register/WinRegisterManifest.rc: -------------------------------------------------------------------------------- 1 | 2 24 "WinRegister.manifest" 2 | -------------------------------------------------------------------------------- /SQL/FireBird/Add InstallationDeployments for DeploymentGUID.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lhengen/hcUpdateFramework/HEAD/SQL/FireBird/Add InstallationDeployments for DeploymentGUID.sql -------------------------------------------------------------------------------- /SQL/FireBird/Add Latest InstallationDeployment for DeploymentGUID.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lhengen/hcUpdateFramework/HEAD/SQL/FireBird/Add Latest InstallationDeployment for DeploymentGUID.sql -------------------------------------------------------------------------------- /SQL/FireBird/Database Creation Script.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lhengen/hcUpdateFramework/HEAD/SQL/FireBird/Database Creation Script.sql -------------------------------------------------------------------------------- /SQL/FireBird/Insert Countries and States.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lhengen/hcUpdateFramework/HEAD/SQL/FireBird/Insert Countries and States.sql -------------------------------------------------------------------------------- /SQL/FireBird/Show Updates.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lhengen/hcUpdateFramework/HEAD/SQL/FireBird/Show Updates.sql -------------------------------------------------------------------------------- /SQL/FireBird/exec spCreateDeployment.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lhengen/hcUpdateFramework/HEAD/SQL/FireBird/exec spCreateDeployment.sql -------------------------------------------------------------------------------- /SQL/FireBird/spCreateDeployment.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lhengen/hcUpdateFramework/HEAD/SQL/FireBird/spCreateDeployment.sql -------------------------------------------------------------------------------- /SQL/SQLServer/Add Status column to Deployment Table.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lhengen/hcUpdateFramework/HEAD/SQL/SQLServer/Add Status column to Deployment Table.sql -------------------------------------------------------------------------------- /SQL/SQLServer/AddDeploymentFlagsTo Deployment Table.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lhengen/hcUpdateFramework/HEAD/SQL/SQLServer/AddDeploymentFlagsTo Deployment Table.sql -------------------------------------------------------------------------------- /SQL/SQLServer/Create Tables.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lhengen/hcUpdateFramework/HEAD/SQL/SQLServer/Create Tables.sql -------------------------------------------------------------------------------- /SQL/SQLServer/Get Structure of Temp Table.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lhengen/hcUpdateFramework/HEAD/SQL/SQLServer/Get Structure of Temp Table.sql -------------------------------------------------------------------------------- /SQL/SQLServer/Insert Company.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lhengen/hcUpdateFramework/HEAD/SQL/SQLServer/Insert Company.sql -------------------------------------------------------------------------------- /SQL/SQLServer/Insert Countries and States.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lhengen/hcUpdateFramework/HEAD/SQL/SQLServer/Insert Countries and States.sql -------------------------------------------------------------------------------- /SQL/SQLServer/ResetDeployment.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lhengen/hcUpdateFramework/HEAD/SQL/SQLServer/ResetDeployment.sql -------------------------------------------------------------------------------- /SQL/SQLServer/Standalone Create Tables.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lhengen/hcUpdateFramework/HEAD/SQL/SQLServer/Standalone Create Tables.sql -------------------------------------------------------------------------------- /SQL/SQLServer/Standalone Insert Script.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lhengen/hcUpdateFramework/HEAD/SQL/SQLServer/Standalone Insert Script.sql -------------------------------------------------------------------------------- /SQL/SQLServer/select all companies.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lhengen/hcUpdateFramework/HEAD/SQL/SQLServer/select all companies.sql -------------------------------------------------------------------------------- /SQL/SQLServer/spStandaloneCreateDeployment.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lhengen/hcUpdateFramework/HEAD/SQL/SQLServer/spStandaloneCreateDeployment.sql -------------------------------------------------------------------------------- /Server/Common/FileCache.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lhengen/hcUpdateFramework/HEAD/Server/Common/FileCache.pas -------------------------------------------------------------------------------- /Server/Common/UpdateServerWebModule.dfm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lhengen/hcUpdateFramework/HEAD/Server/Common/UpdateServerWebModule.dfm -------------------------------------------------------------------------------- /Server/Common/UpdateServerWebModule.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lhengen/hcUpdateFramework/HEAD/Server/Common/UpdateServerWebModule.pas -------------------------------------------------------------------------------- /Server/Common/UpdateServiceImpl.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lhengen/hcUpdateFramework/HEAD/Server/Common/UpdateServiceImpl.pas -------------------------------------------------------------------------------- /Server/Common/UpdateServiceIntf.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lhengen/hcUpdateFramework/HEAD/Server/Common/UpdateServiceIntf.pas -------------------------------------------------------------------------------- /Server/Common/dmADO.dfm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lhengen/hcUpdateFramework/HEAD/Server/Common/dmADO.dfm -------------------------------------------------------------------------------- /Server/Common/dmADO.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lhengen/hcUpdateFramework/HEAD/Server/Common/dmADO.pas -------------------------------------------------------------------------------- /Server/Common/dmFireDAC.dfm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lhengen/hcUpdateFramework/HEAD/Server/Common/dmFireDAC.dfm -------------------------------------------------------------------------------- /Server/Common/dmFireDAC.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lhengen/hcUpdateFramework/HEAD/Server/Common/dmFireDAC.pas -------------------------------------------------------------------------------- /Server/ISAPI/UpdateISAPIService.dpr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lhengen/hcUpdateFramework/HEAD/Server/ISAPI/UpdateISAPIService.dpr -------------------------------------------------------------------------------- /Server/ISAPI/UpdateISAPIService.dproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lhengen/hcUpdateFramework/HEAD/Server/ISAPI/UpdateISAPIService.dproj -------------------------------------------------------------------------------- /Server/ISAPI/UpdateISAPIService.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lhengen/hcUpdateFramework/HEAD/Server/ISAPI/UpdateISAPIService.res -------------------------------------------------------------------------------- /Server/ISAPI/UpdateService.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lhengen/hcUpdateFramework/HEAD/Server/ISAPI/UpdateService.res -------------------------------------------------------------------------------- /Server/NTService/UpdateNTService.dpr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lhengen/hcUpdateFramework/HEAD/Server/NTService/UpdateNTService.dpr -------------------------------------------------------------------------------- /Server/NTService/UpdateNTService.dproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lhengen/hcUpdateFramework/HEAD/Server/NTService/UpdateNTService.dproj -------------------------------------------------------------------------------- /Server/NTService/UpdateNTService.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lhengen/hcUpdateFramework/HEAD/Server/NTService/UpdateNTService.res -------------------------------------------------------------------------------- /Server/NTService/UpdateServerEventLogMessages.RES: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lhengen/hcUpdateFramework/HEAD/Server/NTService/UpdateServerEventLogMessages.RES -------------------------------------------------------------------------------- /Server/NTService/unUpdateNTService.dfm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lhengen/hcUpdateFramework/HEAD/Server/NTService/unUpdateNTService.dfm -------------------------------------------------------------------------------- /Server/NTService/unUpdateNTService.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lhengen/hcUpdateFramework/HEAD/Server/NTService/unUpdateNTService.pas -------------------------------------------------------------------------------- /Server/UpdateServer.dsk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lhengen/hcUpdateFramework/HEAD/Server/UpdateServer.dsk -------------------------------------------------------------------------------- /Server/UpdateServer.groupproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lhengen/hcUpdateFramework/HEAD/Server/UpdateServer.groupproj -------------------------------------------------------------------------------- /Server/WinUI/UpdateWinUIServer.dpr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lhengen/hcUpdateFramework/HEAD/Server/WinUI/UpdateWinUIServer.dpr -------------------------------------------------------------------------------- /Server/WinUI/UpdateWinUIServer.dproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lhengen/hcUpdateFramework/HEAD/Server/WinUI/UpdateWinUIServer.dproj -------------------------------------------------------------------------------- /Server/WinUI/UpdateWinUIServer.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lhengen/hcUpdateFramework/HEAD/Server/WinUI/UpdateWinUIServer.res -------------------------------------------------------------------------------- /Server/WinUI/fmMain.dfm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lhengen/hcUpdateFramework/HEAD/Server/WinUI/fmMain.dfm -------------------------------------------------------------------------------- /Server/WinUI/fmMain.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lhengen/hcUpdateFramework/HEAD/Server/WinUI/fmMain.pas -------------------------------------------------------------------------------- /UpdateManager/DeploymentManager.dpr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lhengen/hcUpdateFramework/HEAD/UpdateManager/DeploymentManager.dpr -------------------------------------------------------------------------------- /UpdateManager/DeploymentManager.dproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lhengen/hcUpdateFramework/HEAD/UpdateManager/DeploymentManager.dproj -------------------------------------------------------------------------------- /UpdateManager/DeploymentManager.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lhengen/hcUpdateFramework/HEAD/UpdateManager/DeploymentManager.res -------------------------------------------------------------------------------- /UpdateManager/UpdateManager.groupproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lhengen/hcUpdateFramework/HEAD/UpdateManager/UpdateManager.groupproj -------------------------------------------------------------------------------- /UpdateManager/dclDeploymentManager.dpk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lhengen/hcUpdateFramework/HEAD/UpdateManager/dclDeploymentManager.dpk -------------------------------------------------------------------------------- /UpdateManager/dclDeploymentManager.dproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lhengen/hcUpdateFramework/HEAD/UpdateManager/dclDeploymentManager.dproj -------------------------------------------------------------------------------- /UpdateManager/dclDeploymentManager.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lhengen/hcUpdateFramework/HEAD/UpdateManager/dclDeploymentManager.res -------------------------------------------------------------------------------- /UpdateManager/dmADO.dfm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lhengen/hcUpdateFramework/HEAD/UpdateManager/dmADO.dfm -------------------------------------------------------------------------------- /UpdateManager/dmADO.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lhengen/hcUpdateFramework/HEAD/UpdateManager/dmADO.pas -------------------------------------------------------------------------------- /UpdateManager/fmAbout.dfm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lhengen/hcUpdateFramework/HEAD/UpdateManager/fmAbout.dfm -------------------------------------------------------------------------------- /UpdateManager/fmAbout.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lhengen/hcUpdateFramework/HEAD/UpdateManager/fmAbout.pas -------------------------------------------------------------------------------- /UpdateManager/fmDeployment.dfm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lhengen/hcUpdateFramework/HEAD/UpdateManager/fmDeployment.dfm -------------------------------------------------------------------------------- /UpdateManager/fmDeployment.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lhengen/hcUpdateFramework/HEAD/UpdateManager/fmDeployment.pas -------------------------------------------------------------------------------- /UpdateManager/fmDeploymentItem.dfm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lhengen/hcUpdateFramework/HEAD/UpdateManager/fmDeploymentItem.dfm -------------------------------------------------------------------------------- /UpdateManager/fmDeploymentItem.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lhengen/hcUpdateFramework/HEAD/UpdateManager/fmDeploymentItem.pas -------------------------------------------------------------------------------- /UpdateManager/fmEditNotes.dfm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lhengen/hcUpdateFramework/HEAD/UpdateManager/fmEditNotes.dfm -------------------------------------------------------------------------------- /UpdateManager/fmEditNotes.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lhengen/hcUpdateFramework/HEAD/UpdateManager/fmEditNotes.pas -------------------------------------------------------------------------------- /UpdateManager/fmMain.dfm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lhengen/hcUpdateFramework/HEAD/UpdateManager/fmMain.dfm -------------------------------------------------------------------------------- /UpdateManager/fmMain.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lhengen/hcUpdateFramework/HEAD/UpdateManager/fmMain.pas -------------------------------------------------------------------------------- /UpdateManager/fmSelectStudios.dfm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lhengen/hcUpdateFramework/HEAD/UpdateManager/fmSelectStudios.dfm -------------------------------------------------------------------------------- /UpdateManager/fmSelectStudios.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lhengen/hcUpdateFramework/HEAD/UpdateManager/fmSelectStudios.pas -------------------------------------------------------------------------------- /UpdateManager/ftDialog.dfm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lhengen/hcUpdateFramework/HEAD/UpdateManager/ftDialog.dfm -------------------------------------------------------------------------------- /UpdateManager/ftDialog.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lhengen/hcUpdateFramework/HEAD/UpdateManager/ftDialog.pas -------------------------------------------------------------------------------- /UpdateManager/ftForm.dfm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lhengen/hcUpdateFramework/HEAD/UpdateManager/ftForm.dfm -------------------------------------------------------------------------------- /UpdateManager/ftForm.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lhengen/hcUpdateFramework/HEAD/UpdateManager/ftForm.pas -------------------------------------------------------------------------------- /UpdateManager/hcDeployment.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lhengen/hcUpdateFramework/HEAD/UpdateManager/hcDeployment.pas -------------------------------------------------------------------------------- /UpdateManager/hcDeploymentRegion.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lhengen/hcUpdateFramework/HEAD/UpdateManager/hcDeploymentRegion.pas -------------------------------------------------------------------------------- /UpdateManager/hcDeploymentStudio.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lhengen/hcUpdateFramework/HEAD/UpdateManager/hcDeploymentStudio.pas -------------------------------------------------------------------------------- /UpdateManager/hcTreeViewUtils.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lhengen/hcUpdateFramework/HEAD/UpdateManager/hcTreeViewUtils.pas -------------------------------------------------------------------------------- /UpdateManager/hcUTCUtils.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lhengen/hcUpdateFramework/HEAD/UpdateManager/hcUTCUtils.pas --------------------------------------------------------------------------------