├── ChangeLog.txt ├── CloseSandbox.bat ├── Console.exe ├── DesktopSwitcher.exe ├── HTCC 2016 Student Research Conference Abstract.docx ├── KeepAlive.exe ├── LICENSE ├── ProtectedDesktops.exe ├── ReadMe.txt ├── Source ├── Common │ ├── Sandbox.cpp │ └── Sandbox.h ├── Console │ ├── Console.cpp │ ├── Console.vcxproj │ └── Console.vcxproj.filters ├── DesktopSwitcher │ ├── DesktopSwitcher.cpp │ ├── DesktopSwitcher.vcxproj │ └── DesktopSwitcher.vcxproj.filters ├── KeepAlive │ ├── KeepAlive.cpp │ ├── KeepAlive.vcxproj │ └── KeepAlive.vcxproj.filters ├── ProtectedDesktops.cpp ├── ProtectedDesktops.sln ├── ProtectedDesktops.v12.suo ├── ProtectedDesktops.vcxproj ├── ProtectedDesktops.vcxproj.filters └── RunMe │ ├── RunMe.cpp │ ├── RunMe.vcxproj │ └── RunMe.vcxproj.filters ├── Windows8&10 ├── ReadMe.txt ├── RunMe.bat └── RunMe.exe └── settings.ini /ChangeLog.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshduf/ProtectedDesktops/HEAD/ChangeLog.txt -------------------------------------------------------------------------------- /CloseSandbox.bat: -------------------------------------------------------------------------------- 1 | taskkill /f /t /fi "USERNAME eq Sandbox" -------------------------------------------------------------------------------- /Console.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshduf/ProtectedDesktops/HEAD/Console.exe -------------------------------------------------------------------------------- /DesktopSwitcher.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshduf/ProtectedDesktops/HEAD/DesktopSwitcher.exe -------------------------------------------------------------------------------- /HTCC 2016 Student Research Conference Abstract.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshduf/ProtectedDesktops/HEAD/HTCC 2016 Student Research Conference Abstract.docx -------------------------------------------------------------------------------- /KeepAlive.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshduf/ProtectedDesktops/HEAD/KeepAlive.exe -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshduf/ProtectedDesktops/HEAD/LICENSE -------------------------------------------------------------------------------- /ProtectedDesktops.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshduf/ProtectedDesktops/HEAD/ProtectedDesktops.exe -------------------------------------------------------------------------------- /ReadMe.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshduf/ProtectedDesktops/HEAD/ReadMe.txt -------------------------------------------------------------------------------- /Source/Common/Sandbox.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshduf/ProtectedDesktops/HEAD/Source/Common/Sandbox.cpp -------------------------------------------------------------------------------- /Source/Common/Sandbox.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshduf/ProtectedDesktops/HEAD/Source/Common/Sandbox.h -------------------------------------------------------------------------------- /Source/Console/Console.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshduf/ProtectedDesktops/HEAD/Source/Console/Console.cpp -------------------------------------------------------------------------------- /Source/Console/Console.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshduf/ProtectedDesktops/HEAD/Source/Console/Console.vcxproj -------------------------------------------------------------------------------- /Source/Console/Console.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshduf/ProtectedDesktops/HEAD/Source/Console/Console.vcxproj.filters -------------------------------------------------------------------------------- /Source/DesktopSwitcher/DesktopSwitcher.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshduf/ProtectedDesktops/HEAD/Source/DesktopSwitcher/DesktopSwitcher.cpp -------------------------------------------------------------------------------- /Source/DesktopSwitcher/DesktopSwitcher.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshduf/ProtectedDesktops/HEAD/Source/DesktopSwitcher/DesktopSwitcher.vcxproj -------------------------------------------------------------------------------- /Source/DesktopSwitcher/DesktopSwitcher.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshduf/ProtectedDesktops/HEAD/Source/DesktopSwitcher/DesktopSwitcher.vcxproj.filters -------------------------------------------------------------------------------- /Source/KeepAlive/KeepAlive.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshduf/ProtectedDesktops/HEAD/Source/KeepAlive/KeepAlive.cpp -------------------------------------------------------------------------------- /Source/KeepAlive/KeepAlive.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshduf/ProtectedDesktops/HEAD/Source/KeepAlive/KeepAlive.vcxproj -------------------------------------------------------------------------------- /Source/KeepAlive/KeepAlive.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshduf/ProtectedDesktops/HEAD/Source/KeepAlive/KeepAlive.vcxproj.filters -------------------------------------------------------------------------------- /Source/ProtectedDesktops.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshduf/ProtectedDesktops/HEAD/Source/ProtectedDesktops.cpp -------------------------------------------------------------------------------- /Source/ProtectedDesktops.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshduf/ProtectedDesktops/HEAD/Source/ProtectedDesktops.sln -------------------------------------------------------------------------------- /Source/ProtectedDesktops.v12.suo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshduf/ProtectedDesktops/HEAD/Source/ProtectedDesktops.v12.suo -------------------------------------------------------------------------------- /Source/ProtectedDesktops.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshduf/ProtectedDesktops/HEAD/Source/ProtectedDesktops.vcxproj -------------------------------------------------------------------------------- /Source/ProtectedDesktops.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshduf/ProtectedDesktops/HEAD/Source/ProtectedDesktops.vcxproj.filters -------------------------------------------------------------------------------- /Source/RunMe/RunMe.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshduf/ProtectedDesktops/HEAD/Source/RunMe/RunMe.cpp -------------------------------------------------------------------------------- /Source/RunMe/RunMe.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshduf/ProtectedDesktops/HEAD/Source/RunMe/RunMe.vcxproj -------------------------------------------------------------------------------- /Source/RunMe/RunMe.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshduf/ProtectedDesktops/HEAD/Source/RunMe/RunMe.vcxproj.filters -------------------------------------------------------------------------------- /Windows8&10/ReadMe.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshduf/ProtectedDesktops/HEAD/Windows8&10/ReadMe.txt -------------------------------------------------------------------------------- /Windows8&10/RunMe.bat: -------------------------------------------------------------------------------- 1 | start cmd /k cd %~dp0 2 | -------------------------------------------------------------------------------- /Windows8&10/RunMe.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshduf/ProtectedDesktops/HEAD/Windows8&10/RunMe.exe -------------------------------------------------------------------------------- /settings.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshduf/ProtectedDesktops/HEAD/settings.ini --------------------------------------------------------------------------------