├── .gitignore ├── FileUnlocker.sln ├── FileUnlocker ├── Extensions.cs ├── FileUnlocker.cs ├── FileUnlocker.csproj ├── Message.cs ├── Program.cs ├── Properties │ └── launchSettings.json ├── RestartManager.cs ├── install.bat ├── key.ico └── remove.bat ├── LICENSE ├── README.md └── images ├── context-menu.png └── dialog.png /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marianpekar/file-unlocker-for-windows/HEAD/.gitignore -------------------------------------------------------------------------------- /FileUnlocker.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marianpekar/file-unlocker-for-windows/HEAD/FileUnlocker.sln -------------------------------------------------------------------------------- /FileUnlocker/Extensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marianpekar/file-unlocker-for-windows/HEAD/FileUnlocker/Extensions.cs -------------------------------------------------------------------------------- /FileUnlocker/FileUnlocker.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marianpekar/file-unlocker-for-windows/HEAD/FileUnlocker/FileUnlocker.cs -------------------------------------------------------------------------------- /FileUnlocker/FileUnlocker.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marianpekar/file-unlocker-for-windows/HEAD/FileUnlocker/FileUnlocker.csproj -------------------------------------------------------------------------------- /FileUnlocker/Message.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marianpekar/file-unlocker-for-windows/HEAD/FileUnlocker/Message.cs -------------------------------------------------------------------------------- /FileUnlocker/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marianpekar/file-unlocker-for-windows/HEAD/FileUnlocker/Program.cs -------------------------------------------------------------------------------- /FileUnlocker/Properties/launchSettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marianpekar/file-unlocker-for-windows/HEAD/FileUnlocker/Properties/launchSettings.json -------------------------------------------------------------------------------- /FileUnlocker/RestartManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marianpekar/file-unlocker-for-windows/HEAD/FileUnlocker/RestartManager.cs -------------------------------------------------------------------------------- /FileUnlocker/install.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marianpekar/file-unlocker-for-windows/HEAD/FileUnlocker/install.bat -------------------------------------------------------------------------------- /FileUnlocker/key.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marianpekar/file-unlocker-for-windows/HEAD/FileUnlocker/key.ico -------------------------------------------------------------------------------- /FileUnlocker/remove.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marianpekar/file-unlocker-for-windows/HEAD/FileUnlocker/remove.bat -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marianpekar/file-unlocker-for-windows/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marianpekar/file-unlocker-for-windows/HEAD/README.md -------------------------------------------------------------------------------- /images/context-menu.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marianpekar/file-unlocker-for-windows/HEAD/images/context-menu.png -------------------------------------------------------------------------------- /images/dialog.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marianpekar/file-unlocker-for-windows/HEAD/images/dialog.png --------------------------------------------------------------------------------