├── LICENSE ├── MyApps ├── Beep │ ├── Beep.c │ ├── Beep.efi │ └── Beep.inf ├── Cpuid │ ├── Cpuid.c │ ├── Cpuid.efi │ └── Cpuid.inf ├── DateTime │ ├── DateTime.c │ ├── DateTime.efi │ └── DateTime.inf ├── DisplayBMP │ ├── BootLogo.bmp │ ├── DisplayBMP.c │ ├── DisplayBMP.efi │ ├── DisplayBMP.inf │ └── Logo.bmp ├── ListCerts │ ├── ListCerts.c │ ├── ListCerts.efi │ ├── ListCerts.inf │ ├── README │ ├── asn1.h │ ├── asn1_ber_bytecode.h │ ├── asn1_ber_decoder.c │ ├── asn1_ber_decoder.h │ ├── oid_registry.c │ ├── oid_registry.h │ ├── oid_registry_data.h │ ├── x509.c │ └── x509.h ├── MyApps.dec ├── MyApps.dsc ├── ScreenShot │ ├── ScreenShot.c │ ├── ScreenShot.efi │ └── ScreenShot.inf ├── ScreenshotDriver │ ├── ScreenshotDriver.c │ ├── ScreenshotDriver.efi │ ├── ScreenshotDriver.h │ └── ScreenshotDriver.inf ├── ShowACPI │ ├── ShowACPI.c │ ├── ShowACPI.efi │ └── ShowACPI.inf ├── ShowBGRT │ ├── ShowBGRT.c │ ├── ShowBGRT.efi │ └── ShowBGRT.inf ├── ShowBoot │ ├── ShowBoot.c │ ├── ShowBoot.efi │ └── ShowBoot.inf ├── ShowEDID │ ├── ShowEDID.c │ ├── ShowEDID.efi │ └── ShowEDID.inf ├── ShowESRT │ ├── ShowESRT.c │ ├── ShowESRT.efi │ └── ShowESRT.inf ├── ShowFACS │ ├── ShowFACS.c │ ├── ShowFACS.efi │ └── ShowFACS.inf ├── ShowFreq │ ├── ShowFreq.c │ ├── ShowFreq.efi │ └── ShowFreq.inf ├── ShowHIIPkg │ ├── ShowHIIPkg.c │ ├── ShowHIIPkg.efi │ └── ShowHIIPkg.inf ├── ShowMP │ ├── ShowMP.c │ ├── ShowMP.efi │ └── ShowMP.inf ├── ShowMSDM │ ├── ShowMSDM.c │ ├── ShowMSDM.efi │ └── ShowMSDM.inf ├── ShowPCI │ ├── README │ ├── ShowPCI.c │ ├── ShowPCI.efi │ └── ShowPCI.inf ├── ShowPCIx │ ├── ShowPCIx.c │ ├── ShowPCIx.efi │ ├── ShowPCIx.inf │ └── pci.ids ├── ShowPCR │ ├── ShowPCR.c │ ├── ShowPCR.efi │ └── ShowPCR.inf ├── ShowQVI │ ├── ShowQVI.c │ ├── ShowQVI.efi │ └── ShowQVI.inf ├── ShowSLIC │ ├── ShowSLIC.c │ ├── ShowSLIC.efi │ └── ShowSLIC.inf ├── ShowUSB │ ├── ShowUSB.c │ ├── ShowUSB.efi │ └── ShowUSB.inf └── XBeep │ ├── XBeep.c │ ├── XBeep.efi │ └── XBeep.inf ├── README.md └── UEFI-Utilities-2019.tar.gz /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpmurphy/UEFI-Utilities-2019/HEAD/LICENSE -------------------------------------------------------------------------------- /MyApps/Beep/Beep.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpmurphy/UEFI-Utilities-2019/HEAD/MyApps/Beep/Beep.c -------------------------------------------------------------------------------- /MyApps/Beep/Beep.efi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpmurphy/UEFI-Utilities-2019/HEAD/MyApps/Beep/Beep.efi -------------------------------------------------------------------------------- /MyApps/Beep/Beep.inf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpmurphy/UEFI-Utilities-2019/HEAD/MyApps/Beep/Beep.inf -------------------------------------------------------------------------------- /MyApps/Cpuid/Cpuid.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpmurphy/UEFI-Utilities-2019/HEAD/MyApps/Cpuid/Cpuid.c -------------------------------------------------------------------------------- /MyApps/Cpuid/Cpuid.efi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpmurphy/UEFI-Utilities-2019/HEAD/MyApps/Cpuid/Cpuid.efi -------------------------------------------------------------------------------- /MyApps/Cpuid/Cpuid.inf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpmurphy/UEFI-Utilities-2019/HEAD/MyApps/Cpuid/Cpuid.inf -------------------------------------------------------------------------------- /MyApps/DateTime/DateTime.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpmurphy/UEFI-Utilities-2019/HEAD/MyApps/DateTime/DateTime.c -------------------------------------------------------------------------------- /MyApps/DateTime/DateTime.efi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpmurphy/UEFI-Utilities-2019/HEAD/MyApps/DateTime/DateTime.efi -------------------------------------------------------------------------------- /MyApps/DateTime/DateTime.inf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpmurphy/UEFI-Utilities-2019/HEAD/MyApps/DateTime/DateTime.inf -------------------------------------------------------------------------------- /MyApps/DisplayBMP/BootLogo.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpmurphy/UEFI-Utilities-2019/HEAD/MyApps/DisplayBMP/BootLogo.bmp -------------------------------------------------------------------------------- /MyApps/DisplayBMP/DisplayBMP.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpmurphy/UEFI-Utilities-2019/HEAD/MyApps/DisplayBMP/DisplayBMP.c -------------------------------------------------------------------------------- /MyApps/DisplayBMP/DisplayBMP.efi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpmurphy/UEFI-Utilities-2019/HEAD/MyApps/DisplayBMP/DisplayBMP.efi -------------------------------------------------------------------------------- /MyApps/DisplayBMP/DisplayBMP.inf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpmurphy/UEFI-Utilities-2019/HEAD/MyApps/DisplayBMP/DisplayBMP.inf -------------------------------------------------------------------------------- /MyApps/DisplayBMP/Logo.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpmurphy/UEFI-Utilities-2019/HEAD/MyApps/DisplayBMP/Logo.bmp -------------------------------------------------------------------------------- /MyApps/ListCerts/ListCerts.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpmurphy/UEFI-Utilities-2019/HEAD/MyApps/ListCerts/ListCerts.c -------------------------------------------------------------------------------- /MyApps/ListCerts/ListCerts.efi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpmurphy/UEFI-Utilities-2019/HEAD/MyApps/ListCerts/ListCerts.efi -------------------------------------------------------------------------------- /MyApps/ListCerts/ListCerts.inf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpmurphy/UEFI-Utilities-2019/HEAD/MyApps/ListCerts/ListCerts.inf -------------------------------------------------------------------------------- /MyApps/ListCerts/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpmurphy/UEFI-Utilities-2019/HEAD/MyApps/ListCerts/README -------------------------------------------------------------------------------- /MyApps/ListCerts/asn1.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpmurphy/UEFI-Utilities-2019/HEAD/MyApps/ListCerts/asn1.h -------------------------------------------------------------------------------- /MyApps/ListCerts/asn1_ber_bytecode.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpmurphy/UEFI-Utilities-2019/HEAD/MyApps/ListCerts/asn1_ber_bytecode.h -------------------------------------------------------------------------------- /MyApps/ListCerts/asn1_ber_decoder.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpmurphy/UEFI-Utilities-2019/HEAD/MyApps/ListCerts/asn1_ber_decoder.c -------------------------------------------------------------------------------- /MyApps/ListCerts/asn1_ber_decoder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpmurphy/UEFI-Utilities-2019/HEAD/MyApps/ListCerts/asn1_ber_decoder.h -------------------------------------------------------------------------------- /MyApps/ListCerts/oid_registry.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpmurphy/UEFI-Utilities-2019/HEAD/MyApps/ListCerts/oid_registry.c -------------------------------------------------------------------------------- /MyApps/ListCerts/oid_registry.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpmurphy/UEFI-Utilities-2019/HEAD/MyApps/ListCerts/oid_registry.h -------------------------------------------------------------------------------- /MyApps/ListCerts/oid_registry_data.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpmurphy/UEFI-Utilities-2019/HEAD/MyApps/ListCerts/oid_registry_data.h -------------------------------------------------------------------------------- /MyApps/ListCerts/x509.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpmurphy/UEFI-Utilities-2019/HEAD/MyApps/ListCerts/x509.c -------------------------------------------------------------------------------- /MyApps/ListCerts/x509.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpmurphy/UEFI-Utilities-2019/HEAD/MyApps/ListCerts/x509.h -------------------------------------------------------------------------------- /MyApps/MyApps.dec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpmurphy/UEFI-Utilities-2019/HEAD/MyApps/MyApps.dec -------------------------------------------------------------------------------- /MyApps/MyApps.dsc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpmurphy/UEFI-Utilities-2019/HEAD/MyApps/MyApps.dsc -------------------------------------------------------------------------------- /MyApps/ScreenShot/ScreenShot.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpmurphy/UEFI-Utilities-2019/HEAD/MyApps/ScreenShot/ScreenShot.c -------------------------------------------------------------------------------- /MyApps/ScreenShot/ScreenShot.efi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpmurphy/UEFI-Utilities-2019/HEAD/MyApps/ScreenShot/ScreenShot.efi -------------------------------------------------------------------------------- /MyApps/ScreenShot/ScreenShot.inf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpmurphy/UEFI-Utilities-2019/HEAD/MyApps/ScreenShot/ScreenShot.inf -------------------------------------------------------------------------------- /MyApps/ScreenshotDriver/ScreenshotDriver.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpmurphy/UEFI-Utilities-2019/HEAD/MyApps/ScreenshotDriver/ScreenshotDriver.c -------------------------------------------------------------------------------- /MyApps/ScreenshotDriver/ScreenshotDriver.efi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpmurphy/UEFI-Utilities-2019/HEAD/MyApps/ScreenshotDriver/ScreenshotDriver.efi -------------------------------------------------------------------------------- /MyApps/ScreenshotDriver/ScreenshotDriver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpmurphy/UEFI-Utilities-2019/HEAD/MyApps/ScreenshotDriver/ScreenshotDriver.h -------------------------------------------------------------------------------- /MyApps/ScreenshotDriver/ScreenshotDriver.inf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpmurphy/UEFI-Utilities-2019/HEAD/MyApps/ScreenshotDriver/ScreenshotDriver.inf -------------------------------------------------------------------------------- /MyApps/ShowACPI/ShowACPI.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpmurphy/UEFI-Utilities-2019/HEAD/MyApps/ShowACPI/ShowACPI.c -------------------------------------------------------------------------------- /MyApps/ShowACPI/ShowACPI.efi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpmurphy/UEFI-Utilities-2019/HEAD/MyApps/ShowACPI/ShowACPI.efi -------------------------------------------------------------------------------- /MyApps/ShowACPI/ShowACPI.inf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpmurphy/UEFI-Utilities-2019/HEAD/MyApps/ShowACPI/ShowACPI.inf -------------------------------------------------------------------------------- /MyApps/ShowBGRT/ShowBGRT.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpmurphy/UEFI-Utilities-2019/HEAD/MyApps/ShowBGRT/ShowBGRT.c -------------------------------------------------------------------------------- /MyApps/ShowBGRT/ShowBGRT.efi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpmurphy/UEFI-Utilities-2019/HEAD/MyApps/ShowBGRT/ShowBGRT.efi -------------------------------------------------------------------------------- /MyApps/ShowBGRT/ShowBGRT.inf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpmurphy/UEFI-Utilities-2019/HEAD/MyApps/ShowBGRT/ShowBGRT.inf -------------------------------------------------------------------------------- /MyApps/ShowBoot/ShowBoot.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpmurphy/UEFI-Utilities-2019/HEAD/MyApps/ShowBoot/ShowBoot.c -------------------------------------------------------------------------------- /MyApps/ShowBoot/ShowBoot.efi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpmurphy/UEFI-Utilities-2019/HEAD/MyApps/ShowBoot/ShowBoot.efi -------------------------------------------------------------------------------- /MyApps/ShowBoot/ShowBoot.inf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpmurphy/UEFI-Utilities-2019/HEAD/MyApps/ShowBoot/ShowBoot.inf -------------------------------------------------------------------------------- /MyApps/ShowEDID/ShowEDID.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpmurphy/UEFI-Utilities-2019/HEAD/MyApps/ShowEDID/ShowEDID.c -------------------------------------------------------------------------------- /MyApps/ShowEDID/ShowEDID.efi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpmurphy/UEFI-Utilities-2019/HEAD/MyApps/ShowEDID/ShowEDID.efi -------------------------------------------------------------------------------- /MyApps/ShowEDID/ShowEDID.inf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpmurphy/UEFI-Utilities-2019/HEAD/MyApps/ShowEDID/ShowEDID.inf -------------------------------------------------------------------------------- /MyApps/ShowESRT/ShowESRT.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpmurphy/UEFI-Utilities-2019/HEAD/MyApps/ShowESRT/ShowESRT.c -------------------------------------------------------------------------------- /MyApps/ShowESRT/ShowESRT.efi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpmurphy/UEFI-Utilities-2019/HEAD/MyApps/ShowESRT/ShowESRT.efi -------------------------------------------------------------------------------- /MyApps/ShowESRT/ShowESRT.inf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpmurphy/UEFI-Utilities-2019/HEAD/MyApps/ShowESRT/ShowESRT.inf -------------------------------------------------------------------------------- /MyApps/ShowFACS/ShowFACS.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpmurphy/UEFI-Utilities-2019/HEAD/MyApps/ShowFACS/ShowFACS.c -------------------------------------------------------------------------------- /MyApps/ShowFACS/ShowFACS.efi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpmurphy/UEFI-Utilities-2019/HEAD/MyApps/ShowFACS/ShowFACS.efi -------------------------------------------------------------------------------- /MyApps/ShowFACS/ShowFACS.inf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpmurphy/UEFI-Utilities-2019/HEAD/MyApps/ShowFACS/ShowFACS.inf -------------------------------------------------------------------------------- /MyApps/ShowFreq/ShowFreq.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpmurphy/UEFI-Utilities-2019/HEAD/MyApps/ShowFreq/ShowFreq.c -------------------------------------------------------------------------------- /MyApps/ShowFreq/ShowFreq.efi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpmurphy/UEFI-Utilities-2019/HEAD/MyApps/ShowFreq/ShowFreq.efi -------------------------------------------------------------------------------- /MyApps/ShowFreq/ShowFreq.inf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpmurphy/UEFI-Utilities-2019/HEAD/MyApps/ShowFreq/ShowFreq.inf -------------------------------------------------------------------------------- /MyApps/ShowHIIPkg/ShowHIIPkg.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpmurphy/UEFI-Utilities-2019/HEAD/MyApps/ShowHIIPkg/ShowHIIPkg.c -------------------------------------------------------------------------------- /MyApps/ShowHIIPkg/ShowHIIPkg.efi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpmurphy/UEFI-Utilities-2019/HEAD/MyApps/ShowHIIPkg/ShowHIIPkg.efi -------------------------------------------------------------------------------- /MyApps/ShowHIIPkg/ShowHIIPkg.inf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpmurphy/UEFI-Utilities-2019/HEAD/MyApps/ShowHIIPkg/ShowHIIPkg.inf -------------------------------------------------------------------------------- /MyApps/ShowMP/ShowMP.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpmurphy/UEFI-Utilities-2019/HEAD/MyApps/ShowMP/ShowMP.c -------------------------------------------------------------------------------- /MyApps/ShowMP/ShowMP.efi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpmurphy/UEFI-Utilities-2019/HEAD/MyApps/ShowMP/ShowMP.efi -------------------------------------------------------------------------------- /MyApps/ShowMP/ShowMP.inf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpmurphy/UEFI-Utilities-2019/HEAD/MyApps/ShowMP/ShowMP.inf -------------------------------------------------------------------------------- /MyApps/ShowMSDM/ShowMSDM.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpmurphy/UEFI-Utilities-2019/HEAD/MyApps/ShowMSDM/ShowMSDM.c -------------------------------------------------------------------------------- /MyApps/ShowMSDM/ShowMSDM.efi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpmurphy/UEFI-Utilities-2019/HEAD/MyApps/ShowMSDM/ShowMSDM.efi -------------------------------------------------------------------------------- /MyApps/ShowMSDM/ShowMSDM.inf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpmurphy/UEFI-Utilities-2019/HEAD/MyApps/ShowMSDM/ShowMSDM.inf -------------------------------------------------------------------------------- /MyApps/ShowPCI/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpmurphy/UEFI-Utilities-2019/HEAD/MyApps/ShowPCI/README -------------------------------------------------------------------------------- /MyApps/ShowPCI/ShowPCI.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpmurphy/UEFI-Utilities-2019/HEAD/MyApps/ShowPCI/ShowPCI.c -------------------------------------------------------------------------------- /MyApps/ShowPCI/ShowPCI.efi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpmurphy/UEFI-Utilities-2019/HEAD/MyApps/ShowPCI/ShowPCI.efi -------------------------------------------------------------------------------- /MyApps/ShowPCI/ShowPCI.inf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpmurphy/UEFI-Utilities-2019/HEAD/MyApps/ShowPCI/ShowPCI.inf -------------------------------------------------------------------------------- /MyApps/ShowPCIx/ShowPCIx.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpmurphy/UEFI-Utilities-2019/HEAD/MyApps/ShowPCIx/ShowPCIx.c -------------------------------------------------------------------------------- /MyApps/ShowPCIx/ShowPCIx.efi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpmurphy/UEFI-Utilities-2019/HEAD/MyApps/ShowPCIx/ShowPCIx.efi -------------------------------------------------------------------------------- /MyApps/ShowPCIx/ShowPCIx.inf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpmurphy/UEFI-Utilities-2019/HEAD/MyApps/ShowPCIx/ShowPCIx.inf -------------------------------------------------------------------------------- /MyApps/ShowPCIx/pci.ids: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpmurphy/UEFI-Utilities-2019/HEAD/MyApps/ShowPCIx/pci.ids -------------------------------------------------------------------------------- /MyApps/ShowPCR/ShowPCR.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpmurphy/UEFI-Utilities-2019/HEAD/MyApps/ShowPCR/ShowPCR.c -------------------------------------------------------------------------------- /MyApps/ShowPCR/ShowPCR.efi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpmurphy/UEFI-Utilities-2019/HEAD/MyApps/ShowPCR/ShowPCR.efi -------------------------------------------------------------------------------- /MyApps/ShowPCR/ShowPCR.inf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpmurphy/UEFI-Utilities-2019/HEAD/MyApps/ShowPCR/ShowPCR.inf -------------------------------------------------------------------------------- /MyApps/ShowQVI/ShowQVI.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpmurphy/UEFI-Utilities-2019/HEAD/MyApps/ShowQVI/ShowQVI.c -------------------------------------------------------------------------------- /MyApps/ShowQVI/ShowQVI.efi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpmurphy/UEFI-Utilities-2019/HEAD/MyApps/ShowQVI/ShowQVI.efi -------------------------------------------------------------------------------- /MyApps/ShowQVI/ShowQVI.inf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpmurphy/UEFI-Utilities-2019/HEAD/MyApps/ShowQVI/ShowQVI.inf -------------------------------------------------------------------------------- /MyApps/ShowSLIC/ShowSLIC.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpmurphy/UEFI-Utilities-2019/HEAD/MyApps/ShowSLIC/ShowSLIC.c -------------------------------------------------------------------------------- /MyApps/ShowSLIC/ShowSLIC.efi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpmurphy/UEFI-Utilities-2019/HEAD/MyApps/ShowSLIC/ShowSLIC.efi -------------------------------------------------------------------------------- /MyApps/ShowSLIC/ShowSLIC.inf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpmurphy/UEFI-Utilities-2019/HEAD/MyApps/ShowSLIC/ShowSLIC.inf -------------------------------------------------------------------------------- /MyApps/ShowUSB/ShowUSB.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpmurphy/UEFI-Utilities-2019/HEAD/MyApps/ShowUSB/ShowUSB.c -------------------------------------------------------------------------------- /MyApps/ShowUSB/ShowUSB.efi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpmurphy/UEFI-Utilities-2019/HEAD/MyApps/ShowUSB/ShowUSB.efi -------------------------------------------------------------------------------- /MyApps/ShowUSB/ShowUSB.inf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpmurphy/UEFI-Utilities-2019/HEAD/MyApps/ShowUSB/ShowUSB.inf -------------------------------------------------------------------------------- /MyApps/XBeep/XBeep.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpmurphy/UEFI-Utilities-2019/HEAD/MyApps/XBeep/XBeep.c -------------------------------------------------------------------------------- /MyApps/XBeep/XBeep.efi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpmurphy/UEFI-Utilities-2019/HEAD/MyApps/XBeep/XBeep.efi -------------------------------------------------------------------------------- /MyApps/XBeep/XBeep.inf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpmurphy/UEFI-Utilities-2019/HEAD/MyApps/XBeep/XBeep.inf -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpmurphy/UEFI-Utilities-2019/HEAD/README.md -------------------------------------------------------------------------------- /UEFI-Utilities-2019.tar.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpmurphy/UEFI-Utilities-2019/HEAD/UEFI-Utilities-2019.tar.gz --------------------------------------------------------------------------------