diff --git a/dumpsmc/dumpsmc.spec b/dumpsmc/dumpsmc.spec new file mode 100644 index 0000000..8c07e74 --- /dev/null +++ b/dumpsmc/dumpsmc.spec @@ -0,0 +1,17 @@ +# -*- mode: python -*- +a = Analysis(['D:\\vmware\\unlocker\\dumpsmc.py'], + pathex=['D:\\PyInstaller-2.1\\dumpsmc'], + hiddenimports=[], + hookspath=None, + runtime_hooks=None) +pyz = PYZ(a.pure) +exe = EXE(pyz, + a.scripts, + a.binaries, + a.zipfiles, + a.datas, + name='dumpsmc.exe', + debug=False, + strip=None, + upx=True, + console=True ) diff --git a/unlocker/unlocker.spec b/unlocker/unlocker.spec new file mode 100644 index 0000000..9889cf8 --- /dev/null +++ b/unlocker/unlocker.spec @@ -0,0 +1,17 @@ +# -*- mode: python -*- +a = Analysis(['D:\\vmware\\unlocker\\unlocker.py'], + pathex=['D:\\PyInstaller-2.1\\unlocker'], + hiddenimports=[], + hookspath=None, + runtime_hooks=None) +pyz = PYZ(a.pure) +exe = EXE(pyz, + a.scripts, + a.binaries, + a.zipfiles, + a.datas, + name='unlocker.exe', + debug=False, + strip=None, + upx=True, + console=True )