-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathinstaller.au3
36 lines (28 loc) · 953 Bytes
/
installer.au3
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
#RequireAdmin
#Region ;**** Directives created by AutoIt3Wrapper_GUI ****
#AutoIt3Wrapper_Icon=assets\Icon.ico
#AutoIt3Wrapper_Outfile=bin\kfv-installer.exe
#AutoIt3Wrapper_Compression=4
#AutoIt3Wrapper_Res_Description=Kyts Font Viewer Installer
#AutoIt3Wrapper_Res_Fileversion=1.0.0.0
#AutoIt3Wrapper_Res_ProductName=Kyts Font Viewer
#AutoIt3Wrapper_Res_ProductVersion=1.0
#AutoIt3Wrapper_Res_CompanyName=JK. Kyts
#AutoIt3Wrapper_Res_LegalCopyright=www.hieuda.com
#AutoIt3Wrapper_Res_Language=1033
#EndRegion ;**** Directives created by AutoIt3Wrapper_GUI ****
Opt("TrayIconHide", 1)
Opt("GUICloseOnESC", 1)
Opt("GUIOnEventMode", 1)
Opt("GUIResizeMode", 802)
#include "lib\Installer\Installer.au3"
_InstallTempResources()
_LoadFontAwesomeResource()
_GDIPlus_Startup()
#Region Create GUI and controls
_Create_MainGUI()
WinSetTrans($hGUI, "", 0)
GUISetState(@SW_SHOW, $hGUI)
_ShowForm()
#EndRegion
_GUI_Loop()