├── .gitignore ├── LICENSE ├── README.md ├── Windows_Mover.gif └── src ├── Debug.bat ├── StartWinMover.bat ├── TPPEntry.py ├── build.py ├── entry.tp ├── icon.ico ├── icon.png └── main.py /.gitignore: -------------------------------------------------------------------------------- 1 | *.tpp 2 | .env 3 | *.pyc 4 | *.tp 5 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DamienStaebler/Windows-Mover/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DamienStaebler/Windows-Mover/HEAD/README.md -------------------------------------------------------------------------------- /Windows_Mover.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DamienStaebler/Windows-Mover/HEAD/Windows_Mover.gif -------------------------------------------------------------------------------- /src/Debug.bat: -------------------------------------------------------------------------------- 1 | WinMover.exe 2 | pause -------------------------------------------------------------------------------- /src/StartWinMover.bat: -------------------------------------------------------------------------------- 1 | Powershell Start-Process WinMover.exe -WindowStyle hidden -Verb RunAs -------------------------------------------------------------------------------- /src/TPPEntry.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DamienStaebler/Windows-Mover/HEAD/src/TPPEntry.py -------------------------------------------------------------------------------- /src/build.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DamienStaebler/Windows-Mover/HEAD/src/build.py -------------------------------------------------------------------------------- /src/entry.tp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DamienStaebler/Windows-Mover/HEAD/src/entry.tp -------------------------------------------------------------------------------- /src/icon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DamienStaebler/Windows-Mover/HEAD/src/icon.ico -------------------------------------------------------------------------------- /src/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DamienStaebler/Windows-Mover/HEAD/src/icon.png -------------------------------------------------------------------------------- /src/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DamienStaebler/Windows-Mover/HEAD/src/main.py --------------------------------------------------------------------------------