├── .gitignore ├── LICENSE ├── README.md ├── common_helpers.py ├── driver_cleanup.py ├── msi_cleanup.py ├── msi_helpers.py ├── pyinstall_wrapper.py └── win32elevate.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JustAMan/pyWinClobber/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JustAMan/pyWinClobber/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JustAMan/pyWinClobber/HEAD/README.md -------------------------------------------------------------------------------- /common_helpers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JustAMan/pyWinClobber/HEAD/common_helpers.py -------------------------------------------------------------------------------- /driver_cleanup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JustAMan/pyWinClobber/HEAD/driver_cleanup.py -------------------------------------------------------------------------------- /msi_cleanup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JustAMan/pyWinClobber/HEAD/msi_cleanup.py -------------------------------------------------------------------------------- /msi_helpers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JustAMan/pyWinClobber/HEAD/msi_helpers.py -------------------------------------------------------------------------------- /pyinstall_wrapper.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JustAMan/pyWinClobber/HEAD/pyinstall_wrapper.py -------------------------------------------------------------------------------- /win32elevate.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JustAMan/pyWinClobber/HEAD/win32elevate.py --------------------------------------------------------------------------------