├── .gitignore ├── LICENSE ├── README.md └── VbsToExePortable ├── App ├── AppInfo │ ├── Launcher │ │ ├── Splash.jpg │ │ └── VbsToExePortable.ini │ ├── appicon.ico │ ├── appicon_128.png │ ├── appicon_16.png │ ├── appicon_256.png │ ├── appicon_32.png │ ├── appicon_75.png │ └── appinfo.ini ├── DefaultData │ └── settings │ │ └── settings ├── Readme.txt └── VbsToExe │ └── license.txt ├── Other ├── Help │ └── Images │ │ ├── Donation_Button.png │ │ ├── Favicon.ico │ │ ├── Help_Background_Footer.png │ │ ├── Help_Background_Header.png │ │ └── Help_Logo_Top.png └── Source │ ├── LauncherLicense.txt │ ├── Readme.txt │ └── VbsToExePortable.ini ├── VbsToExePortable.exe └── help.html /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Makazzz/VbsToExePortable/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Makazzz/VbsToExePortable/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Makazzz/VbsToExePortable/HEAD/README.md -------------------------------------------------------------------------------- /VbsToExePortable/App/AppInfo/Launcher/Splash.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Makazzz/VbsToExePortable/HEAD/VbsToExePortable/App/AppInfo/Launcher/Splash.jpg -------------------------------------------------------------------------------- /VbsToExePortable/App/AppInfo/Launcher/VbsToExePortable.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Makazzz/VbsToExePortable/HEAD/VbsToExePortable/App/AppInfo/Launcher/VbsToExePortable.ini -------------------------------------------------------------------------------- /VbsToExePortable/App/AppInfo/appicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Makazzz/VbsToExePortable/HEAD/VbsToExePortable/App/AppInfo/appicon.ico -------------------------------------------------------------------------------- /VbsToExePortable/App/AppInfo/appicon_128.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Makazzz/VbsToExePortable/HEAD/VbsToExePortable/App/AppInfo/appicon_128.png -------------------------------------------------------------------------------- /VbsToExePortable/App/AppInfo/appicon_16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Makazzz/VbsToExePortable/HEAD/VbsToExePortable/App/AppInfo/appicon_16.png -------------------------------------------------------------------------------- /VbsToExePortable/App/AppInfo/appicon_256.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Makazzz/VbsToExePortable/HEAD/VbsToExePortable/App/AppInfo/appicon_256.png -------------------------------------------------------------------------------- /VbsToExePortable/App/AppInfo/appicon_32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Makazzz/VbsToExePortable/HEAD/VbsToExePortable/App/AppInfo/appicon_32.png -------------------------------------------------------------------------------- /VbsToExePortable/App/AppInfo/appicon_75.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Makazzz/VbsToExePortable/HEAD/VbsToExePortable/App/AppInfo/appicon_75.png -------------------------------------------------------------------------------- /VbsToExePortable/App/AppInfo/appinfo.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Makazzz/VbsToExePortable/HEAD/VbsToExePortable/App/AppInfo/appinfo.ini -------------------------------------------------------------------------------- /VbsToExePortable/App/DefaultData/settings/settings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Makazzz/VbsToExePortable/HEAD/VbsToExePortable/App/DefaultData/settings/settings -------------------------------------------------------------------------------- /VbsToExePortable/App/Readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Makazzz/VbsToExePortable/HEAD/VbsToExePortable/App/Readme.txt -------------------------------------------------------------------------------- /VbsToExePortable/App/VbsToExe/license.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Makazzz/VbsToExePortable/HEAD/VbsToExePortable/App/VbsToExe/license.txt -------------------------------------------------------------------------------- /VbsToExePortable/Other/Help/Images/Donation_Button.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Makazzz/VbsToExePortable/HEAD/VbsToExePortable/Other/Help/Images/Donation_Button.png -------------------------------------------------------------------------------- /VbsToExePortable/Other/Help/Images/Favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Makazzz/VbsToExePortable/HEAD/VbsToExePortable/Other/Help/Images/Favicon.ico -------------------------------------------------------------------------------- /VbsToExePortable/Other/Help/Images/Help_Background_Footer.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Makazzz/VbsToExePortable/HEAD/VbsToExePortable/Other/Help/Images/Help_Background_Footer.png -------------------------------------------------------------------------------- /VbsToExePortable/Other/Help/Images/Help_Background_Header.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Makazzz/VbsToExePortable/HEAD/VbsToExePortable/Other/Help/Images/Help_Background_Header.png -------------------------------------------------------------------------------- /VbsToExePortable/Other/Help/Images/Help_Logo_Top.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Makazzz/VbsToExePortable/HEAD/VbsToExePortable/Other/Help/Images/Help_Logo_Top.png -------------------------------------------------------------------------------- /VbsToExePortable/Other/Source/LauncherLicense.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Makazzz/VbsToExePortable/HEAD/VbsToExePortable/Other/Source/LauncherLicense.txt -------------------------------------------------------------------------------- /VbsToExePortable/Other/Source/Readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Makazzz/VbsToExePortable/HEAD/VbsToExePortable/Other/Source/Readme.txt -------------------------------------------------------------------------------- /VbsToExePortable/Other/Source/VbsToExePortable.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Makazzz/VbsToExePortable/HEAD/VbsToExePortable/Other/Source/VbsToExePortable.ini -------------------------------------------------------------------------------- /VbsToExePortable/VbsToExePortable.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Makazzz/VbsToExePortable/HEAD/VbsToExePortable/VbsToExePortable.exe -------------------------------------------------------------------------------- /VbsToExePortable/help.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Makazzz/VbsToExePortable/HEAD/VbsToExePortable/help.html --------------------------------------------------------------------------------