├── .gitattributes ├── .gitignore ├── .vscode └── launch.json ├── InstaTech_CP ├── Assets │ ├── HamburgerMenu_16x.png │ ├── ITCBackground.png │ ├── InstaTech.ico │ ├── InstaTech.png │ └── T (About).png ├── InstaTech_CP.njsproj ├── License.txt ├── Scripts │ ├── _references.js │ ├── adapter.js │ ├── jquery-3.1.0.js │ └── jquery-3.1.0.min.js ├── app │ ├── Assets │ │ ├── HamburgerMenu_16x.png │ │ ├── ITCBackground.png │ │ ├── InstaTech.ico │ │ ├── InstaTech.png │ │ └── T (About).png │ ├── Scripts │ │ ├── _references.js │ │ ├── adapter.js │ │ ├── jquery-3.1.0.js │ │ └── jquery-3.1.0.min.js │ ├── about.html │ ├── build │ │ ├── config.gypi │ │ ├── icon.icns │ │ ├── icon.ico │ │ └── icons │ │ │ ├── 128x128.png │ │ │ ├── 16x16.png │ │ │ ├── 24x24.png │ │ │ ├── 256x256.png │ │ │ ├── 32x32.png │ │ │ ├── 48x48.png │ │ │ ├── 64x64.png │ │ │ └── 96x96.png │ ├── downloading.html │ ├── index.css │ ├── index.html │ ├── index.js │ ├── main.js │ └── package.json ├── build │ └── config.gypi ├── buildNativeModules ├── jsconfig.json ├── package-lock.json ├── package.json ├── typings.json └── typings │ ├── globals │ ├── electron-packager │ │ ├── index.d.ts │ │ └── typings.json │ ├── electron │ │ ├── index.d.ts │ │ └── typings.json │ └── node │ │ ├── index.d.ts │ │ └── typings.json │ └── index.d.ts ├── InstaTech_Client.sln ├── InstaTech_Client ├── AboutWindow.xaml ├── AboutWindow.xaml.cs ├── App.config ├── App.xaml ├── App.xaml.cs ├── Assets │ ├── Close_16x.png │ ├── HamburgerMenu_16x.png │ ├── ITCBackground.png │ ├── InstaTech.ico │ ├── InstaTech.png │ └── T (About).png ├── FodyWeavers.xml ├── InstaTech_Client.csproj ├── License.txt ├── MainWindow.xaml ├── MainWindow.xaml.cs ├── Properties │ ├── AssemblyInfo.cs │ ├── Resources.Designer.cs │ ├── Resources.resx │ ├── Settings.Designer.cs │ └── Settings.settings ├── Resources │ └── InstaTech_Service.exe ├── ScreenShot.cs ├── UnattendedWindow.xaml ├── UnattendedWindow.xaml.cs ├── app.manifest └── packages.config ├── InstaTech_Service ├── App.config ├── FodyWeavers.xml ├── InstaTech.ico ├── InstaTech_Service.csproj ├── Program.cs ├── Properties │ └── AssemblyInfo.cs ├── Resources │ └── Notifier.exe ├── Service1.Designer.cs ├── Service1.cs ├── Service1.resx ├── Socket.cs ├── app.manifest └── packages.config ├── License.txt ├── Notifier ├── App.config ├── App.xaml ├── App.xaml.cs ├── MainWindow.xaml ├── MainWindow.xaml.cs ├── Notifier.csproj └── Properties │ ├── AssemblyInfo.cs │ ├── Resources.Designer.cs │ ├── Resources.resx │ ├── Settings.Designer.cs │ └── Settings.settings ├── README.md ├── Win32_Classes ├── ADVAPI32.cs ├── GDI32.cs ├── Kernel32.cs ├── Properties │ └── AssemblyInfo.cs ├── SECUR32.cs ├── User32.cs ├── WTSAPI32.cs └── Win32_Classes.csproj └── packages ├── Costura.Fody.1.6.2 ├── Costura.Fody.dll ├── Costura.Tasks.dll ├── build │ ├── dotnet │ │ └── Costura.Fody.targets │ └── portable-net+sl+win+wpa+wp │ │ └── Costura.Fody.targets ├── lib │ ├── dotnet │ │ └── Costura.dll │ └── portable-net+sl+win+wpa+wp │ │ └── Costura.dll └── tools │ ├── install.ps1 │ └── uninstall.ps1 ├── Fody.2.1.0 ├── Content │ └── FodyWeavers.xml ├── Fody.dll ├── FodyCommon.dll ├── FodyIsolated.dll ├── Mono.Cecil.Mdb.dll ├── Mono.Cecil.Pdb.dll ├── Mono.Cecil.Rocks.dll ├── Mono.Cecil.dll ├── Tools │ └── install.ps1 └── build │ ├── netstandard1.0 │ └── Fody.targets │ └── portable-net+sl+win+wpa+wp │ └── Fody.targets ├── JSON_Helper.1.2.0 └── lib │ └── net452 │ └── JSON_Helper.dll ├── System.Buffers.4.3.0 ├── ThirdPartyNotices.txt ├── dotnet_library_license.txt └── lib │ └── netstandard1.1 │ ├── .xml │ └── System.Buffers.dll ├── System.Net.WebSockets.Client.Managed.1.0.7 └── lib │ └── net45 │ ├── System.Net.WebSockets.Client.Managed.dll │ └── System.Net.WebSockets.Client.Managed.xml └── System.Numerics.Vectors.4.3.0 ├── ThirdPartyNotices.txt ├── dotnet_library_license.txt ├── lib ├── MonoAndroid10 │ └── _._ ├── MonoTouch10 │ └── _._ ├── net46 │ ├── System.Numerics.Vectors.dll │ └── System.Numerics.Vectors.xml ├── netstandard1.0 │ ├── System.Numerics.Vectors.dll │ └── System.Numerics.Vectors.xml ├── portable-net45+win8+wp8+wpa81 │ ├── System.Numerics.Vectors.dll │ └── System.Numerics.Vectors.xml ├── xamarinios10 │ └── _._ ├── xamarinmac20 │ └── _._ ├── xamarintvos10 │ └── _._ └── xamarinwatchos10 │ └── _._ └── ref ├── MonoAndroid10 └── _._ ├── MonoTouch10 └── _._ ├── net46 ├── System.Numerics.Vectors.dll └── System.Numerics.Vectors.xml ├── netstandard1.0 ├── System.Numerics.Vectors.dll └── System.Numerics.Vectors.xml ├── xamarinios10 └── _._ ├── xamarinmac20 └── _._ ├── xamarintvos10 └── _._ └── xamarinwatchos10 └── _._ /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitbound/InstaTech_Client/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitbound/InstaTech_Client/HEAD/.gitignore -------------------------------------------------------------------------------- /.vscode/launch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitbound/InstaTech_Client/HEAD/.vscode/launch.json -------------------------------------------------------------------------------- /InstaTech_CP/Assets/HamburgerMenu_16x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitbound/InstaTech_Client/HEAD/InstaTech_CP/Assets/HamburgerMenu_16x.png -------------------------------------------------------------------------------- /InstaTech_CP/Assets/ITCBackground.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitbound/InstaTech_Client/HEAD/InstaTech_CP/Assets/ITCBackground.png -------------------------------------------------------------------------------- /InstaTech_CP/Assets/InstaTech.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitbound/InstaTech_Client/HEAD/InstaTech_CP/Assets/InstaTech.ico -------------------------------------------------------------------------------- /InstaTech_CP/Assets/InstaTech.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitbound/InstaTech_Client/HEAD/InstaTech_CP/Assets/InstaTech.png -------------------------------------------------------------------------------- /InstaTech_CP/Assets/T (About).png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitbound/InstaTech_Client/HEAD/InstaTech_CP/Assets/T (About).png -------------------------------------------------------------------------------- /InstaTech_CP/InstaTech_CP.njsproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitbound/InstaTech_Client/HEAD/InstaTech_CP/InstaTech_CP.njsproj -------------------------------------------------------------------------------- /InstaTech_CP/License.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitbound/InstaTech_Client/HEAD/InstaTech_CP/License.txt -------------------------------------------------------------------------------- /InstaTech_CP/Scripts/_references.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitbound/InstaTech_Client/HEAD/InstaTech_CP/Scripts/_references.js -------------------------------------------------------------------------------- /InstaTech_CP/Scripts/adapter.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitbound/InstaTech_Client/HEAD/InstaTech_CP/Scripts/adapter.js -------------------------------------------------------------------------------- /InstaTech_CP/Scripts/jquery-3.1.0.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitbound/InstaTech_Client/HEAD/InstaTech_CP/Scripts/jquery-3.1.0.js -------------------------------------------------------------------------------- /InstaTech_CP/Scripts/jquery-3.1.0.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitbound/InstaTech_Client/HEAD/InstaTech_CP/Scripts/jquery-3.1.0.min.js -------------------------------------------------------------------------------- /InstaTech_CP/app/Assets/HamburgerMenu_16x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitbound/InstaTech_Client/HEAD/InstaTech_CP/app/Assets/HamburgerMenu_16x.png -------------------------------------------------------------------------------- /InstaTech_CP/app/Assets/ITCBackground.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitbound/InstaTech_Client/HEAD/InstaTech_CP/app/Assets/ITCBackground.png -------------------------------------------------------------------------------- /InstaTech_CP/app/Assets/InstaTech.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitbound/InstaTech_Client/HEAD/InstaTech_CP/app/Assets/InstaTech.ico -------------------------------------------------------------------------------- /InstaTech_CP/app/Assets/InstaTech.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitbound/InstaTech_Client/HEAD/InstaTech_CP/app/Assets/InstaTech.png -------------------------------------------------------------------------------- /InstaTech_CP/app/Assets/T (About).png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitbound/InstaTech_Client/HEAD/InstaTech_CP/app/Assets/T (About).png -------------------------------------------------------------------------------- /InstaTech_CP/app/Scripts/_references.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitbound/InstaTech_Client/HEAD/InstaTech_CP/app/Scripts/_references.js -------------------------------------------------------------------------------- /InstaTech_CP/app/Scripts/adapter.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitbound/InstaTech_Client/HEAD/InstaTech_CP/app/Scripts/adapter.js -------------------------------------------------------------------------------- /InstaTech_CP/app/Scripts/jquery-3.1.0.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitbound/InstaTech_Client/HEAD/InstaTech_CP/app/Scripts/jquery-3.1.0.js -------------------------------------------------------------------------------- /InstaTech_CP/app/Scripts/jquery-3.1.0.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitbound/InstaTech_Client/HEAD/InstaTech_CP/app/Scripts/jquery-3.1.0.min.js -------------------------------------------------------------------------------- /InstaTech_CP/app/about.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitbound/InstaTech_Client/HEAD/InstaTech_CP/app/about.html -------------------------------------------------------------------------------- /InstaTech_CP/app/build/config.gypi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitbound/InstaTech_Client/HEAD/InstaTech_CP/app/build/config.gypi -------------------------------------------------------------------------------- /InstaTech_CP/app/build/icon.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitbound/InstaTech_Client/HEAD/InstaTech_CP/app/build/icon.icns -------------------------------------------------------------------------------- /InstaTech_CP/app/build/icon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitbound/InstaTech_Client/HEAD/InstaTech_CP/app/build/icon.ico -------------------------------------------------------------------------------- /InstaTech_CP/app/build/icons/128x128.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitbound/InstaTech_Client/HEAD/InstaTech_CP/app/build/icons/128x128.png -------------------------------------------------------------------------------- /InstaTech_CP/app/build/icons/16x16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitbound/InstaTech_Client/HEAD/InstaTech_CP/app/build/icons/16x16.png -------------------------------------------------------------------------------- /InstaTech_CP/app/build/icons/24x24.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitbound/InstaTech_Client/HEAD/InstaTech_CP/app/build/icons/24x24.png -------------------------------------------------------------------------------- /InstaTech_CP/app/build/icons/256x256.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitbound/InstaTech_Client/HEAD/InstaTech_CP/app/build/icons/256x256.png -------------------------------------------------------------------------------- /InstaTech_CP/app/build/icons/32x32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitbound/InstaTech_Client/HEAD/InstaTech_CP/app/build/icons/32x32.png -------------------------------------------------------------------------------- /InstaTech_CP/app/build/icons/48x48.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitbound/InstaTech_Client/HEAD/InstaTech_CP/app/build/icons/48x48.png -------------------------------------------------------------------------------- /InstaTech_CP/app/build/icons/64x64.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitbound/InstaTech_Client/HEAD/InstaTech_CP/app/build/icons/64x64.png -------------------------------------------------------------------------------- /InstaTech_CP/app/build/icons/96x96.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitbound/InstaTech_Client/HEAD/InstaTech_CP/app/build/icons/96x96.png -------------------------------------------------------------------------------- /InstaTech_CP/app/downloading.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitbound/InstaTech_Client/HEAD/InstaTech_CP/app/downloading.html -------------------------------------------------------------------------------- /InstaTech_CP/app/index.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitbound/InstaTech_Client/HEAD/InstaTech_CP/app/index.css -------------------------------------------------------------------------------- /InstaTech_CP/app/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitbound/InstaTech_Client/HEAD/InstaTech_CP/app/index.html -------------------------------------------------------------------------------- /InstaTech_CP/app/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitbound/InstaTech_Client/HEAD/InstaTech_CP/app/index.js -------------------------------------------------------------------------------- /InstaTech_CP/app/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitbound/InstaTech_Client/HEAD/InstaTech_CP/app/main.js -------------------------------------------------------------------------------- /InstaTech_CP/app/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitbound/InstaTech_Client/HEAD/InstaTech_CP/app/package.json -------------------------------------------------------------------------------- /InstaTech_CP/build/config.gypi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitbound/InstaTech_Client/HEAD/InstaTech_CP/build/config.gypi -------------------------------------------------------------------------------- /InstaTech_CP/buildNativeModules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitbound/InstaTech_Client/HEAD/InstaTech_CP/buildNativeModules -------------------------------------------------------------------------------- /InstaTech_CP/jsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitbound/InstaTech_Client/HEAD/InstaTech_CP/jsconfig.json -------------------------------------------------------------------------------- /InstaTech_CP/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitbound/InstaTech_Client/HEAD/InstaTech_CP/package-lock.json -------------------------------------------------------------------------------- /InstaTech_CP/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitbound/InstaTech_Client/HEAD/InstaTech_CP/package.json -------------------------------------------------------------------------------- /InstaTech_CP/typings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitbound/InstaTech_Client/HEAD/InstaTech_CP/typings.json -------------------------------------------------------------------------------- /InstaTech_CP/typings/globals/electron-packager/index.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitbound/InstaTech_Client/HEAD/InstaTech_CP/typings/globals/electron-packager/index.d.ts -------------------------------------------------------------------------------- /InstaTech_CP/typings/globals/electron-packager/typings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitbound/InstaTech_Client/HEAD/InstaTech_CP/typings/globals/electron-packager/typings.json -------------------------------------------------------------------------------- /InstaTech_CP/typings/globals/electron/index.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitbound/InstaTech_Client/HEAD/InstaTech_CP/typings/globals/electron/index.d.ts -------------------------------------------------------------------------------- /InstaTech_CP/typings/globals/electron/typings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitbound/InstaTech_Client/HEAD/InstaTech_CP/typings/globals/electron/typings.json -------------------------------------------------------------------------------- /InstaTech_CP/typings/globals/node/index.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitbound/InstaTech_Client/HEAD/InstaTech_CP/typings/globals/node/index.d.ts -------------------------------------------------------------------------------- /InstaTech_CP/typings/globals/node/typings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitbound/InstaTech_Client/HEAD/InstaTech_CP/typings/globals/node/typings.json -------------------------------------------------------------------------------- /InstaTech_CP/typings/index.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitbound/InstaTech_Client/HEAD/InstaTech_CP/typings/index.d.ts -------------------------------------------------------------------------------- /InstaTech_Client.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitbound/InstaTech_Client/HEAD/InstaTech_Client.sln -------------------------------------------------------------------------------- /InstaTech_Client/AboutWindow.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitbound/InstaTech_Client/HEAD/InstaTech_Client/AboutWindow.xaml -------------------------------------------------------------------------------- /InstaTech_Client/AboutWindow.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitbound/InstaTech_Client/HEAD/InstaTech_Client/AboutWindow.xaml.cs -------------------------------------------------------------------------------- /InstaTech_Client/App.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitbound/InstaTech_Client/HEAD/InstaTech_Client/App.config -------------------------------------------------------------------------------- /InstaTech_Client/App.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitbound/InstaTech_Client/HEAD/InstaTech_Client/App.xaml -------------------------------------------------------------------------------- /InstaTech_Client/App.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitbound/InstaTech_Client/HEAD/InstaTech_Client/App.xaml.cs -------------------------------------------------------------------------------- /InstaTech_Client/Assets/Close_16x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitbound/InstaTech_Client/HEAD/InstaTech_Client/Assets/Close_16x.png -------------------------------------------------------------------------------- /InstaTech_Client/Assets/HamburgerMenu_16x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitbound/InstaTech_Client/HEAD/InstaTech_Client/Assets/HamburgerMenu_16x.png -------------------------------------------------------------------------------- /InstaTech_Client/Assets/ITCBackground.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitbound/InstaTech_Client/HEAD/InstaTech_Client/Assets/ITCBackground.png -------------------------------------------------------------------------------- /InstaTech_Client/Assets/InstaTech.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitbound/InstaTech_Client/HEAD/InstaTech_Client/Assets/InstaTech.ico -------------------------------------------------------------------------------- /InstaTech_Client/Assets/InstaTech.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitbound/InstaTech_Client/HEAD/InstaTech_Client/Assets/InstaTech.png -------------------------------------------------------------------------------- /InstaTech_Client/Assets/T (About).png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitbound/InstaTech_Client/HEAD/InstaTech_Client/Assets/T (About).png -------------------------------------------------------------------------------- /InstaTech_Client/FodyWeavers.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitbound/InstaTech_Client/HEAD/InstaTech_Client/FodyWeavers.xml -------------------------------------------------------------------------------- /InstaTech_Client/InstaTech_Client.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitbound/InstaTech_Client/HEAD/InstaTech_Client/InstaTech_Client.csproj -------------------------------------------------------------------------------- /InstaTech_Client/License.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitbound/InstaTech_Client/HEAD/InstaTech_Client/License.txt -------------------------------------------------------------------------------- /InstaTech_Client/MainWindow.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitbound/InstaTech_Client/HEAD/InstaTech_Client/MainWindow.xaml -------------------------------------------------------------------------------- /InstaTech_Client/MainWindow.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitbound/InstaTech_Client/HEAD/InstaTech_Client/MainWindow.xaml.cs -------------------------------------------------------------------------------- /InstaTech_Client/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitbound/InstaTech_Client/HEAD/InstaTech_Client/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /InstaTech_Client/Properties/Resources.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitbound/InstaTech_Client/HEAD/InstaTech_Client/Properties/Resources.Designer.cs -------------------------------------------------------------------------------- /InstaTech_Client/Properties/Resources.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitbound/InstaTech_Client/HEAD/InstaTech_Client/Properties/Resources.resx -------------------------------------------------------------------------------- /InstaTech_Client/Properties/Settings.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitbound/InstaTech_Client/HEAD/InstaTech_Client/Properties/Settings.Designer.cs -------------------------------------------------------------------------------- /InstaTech_Client/Properties/Settings.settings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitbound/InstaTech_Client/HEAD/InstaTech_Client/Properties/Settings.settings -------------------------------------------------------------------------------- /InstaTech_Client/Resources/InstaTech_Service.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitbound/InstaTech_Client/HEAD/InstaTech_Client/Resources/InstaTech_Service.exe -------------------------------------------------------------------------------- /InstaTech_Client/ScreenShot.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitbound/InstaTech_Client/HEAD/InstaTech_Client/ScreenShot.cs -------------------------------------------------------------------------------- /InstaTech_Client/UnattendedWindow.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitbound/InstaTech_Client/HEAD/InstaTech_Client/UnattendedWindow.xaml -------------------------------------------------------------------------------- /InstaTech_Client/UnattendedWindow.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitbound/InstaTech_Client/HEAD/InstaTech_Client/UnattendedWindow.xaml.cs -------------------------------------------------------------------------------- /InstaTech_Client/app.manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitbound/InstaTech_Client/HEAD/InstaTech_Client/app.manifest -------------------------------------------------------------------------------- /InstaTech_Client/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitbound/InstaTech_Client/HEAD/InstaTech_Client/packages.config -------------------------------------------------------------------------------- /InstaTech_Service/App.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitbound/InstaTech_Client/HEAD/InstaTech_Service/App.config -------------------------------------------------------------------------------- /InstaTech_Service/FodyWeavers.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitbound/InstaTech_Client/HEAD/InstaTech_Service/FodyWeavers.xml -------------------------------------------------------------------------------- /InstaTech_Service/InstaTech.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitbound/InstaTech_Client/HEAD/InstaTech_Service/InstaTech.ico -------------------------------------------------------------------------------- /InstaTech_Service/InstaTech_Service.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitbound/InstaTech_Client/HEAD/InstaTech_Service/InstaTech_Service.csproj -------------------------------------------------------------------------------- /InstaTech_Service/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitbound/InstaTech_Client/HEAD/InstaTech_Service/Program.cs -------------------------------------------------------------------------------- /InstaTech_Service/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitbound/InstaTech_Client/HEAD/InstaTech_Service/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /InstaTech_Service/Resources/Notifier.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitbound/InstaTech_Client/HEAD/InstaTech_Service/Resources/Notifier.exe -------------------------------------------------------------------------------- /InstaTech_Service/Service1.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitbound/InstaTech_Client/HEAD/InstaTech_Service/Service1.Designer.cs -------------------------------------------------------------------------------- /InstaTech_Service/Service1.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitbound/InstaTech_Client/HEAD/InstaTech_Service/Service1.cs -------------------------------------------------------------------------------- /InstaTech_Service/Service1.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitbound/InstaTech_Client/HEAD/InstaTech_Service/Service1.resx -------------------------------------------------------------------------------- /InstaTech_Service/Socket.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitbound/InstaTech_Client/HEAD/InstaTech_Service/Socket.cs -------------------------------------------------------------------------------- /InstaTech_Service/app.manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitbound/InstaTech_Client/HEAD/InstaTech_Service/app.manifest -------------------------------------------------------------------------------- /InstaTech_Service/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitbound/InstaTech_Client/HEAD/InstaTech_Service/packages.config -------------------------------------------------------------------------------- /License.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitbound/InstaTech_Client/HEAD/License.txt -------------------------------------------------------------------------------- /Notifier/App.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitbound/InstaTech_Client/HEAD/Notifier/App.config -------------------------------------------------------------------------------- /Notifier/App.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitbound/InstaTech_Client/HEAD/Notifier/App.xaml -------------------------------------------------------------------------------- /Notifier/App.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitbound/InstaTech_Client/HEAD/Notifier/App.xaml.cs -------------------------------------------------------------------------------- /Notifier/MainWindow.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitbound/InstaTech_Client/HEAD/Notifier/MainWindow.xaml -------------------------------------------------------------------------------- /Notifier/MainWindow.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitbound/InstaTech_Client/HEAD/Notifier/MainWindow.xaml.cs -------------------------------------------------------------------------------- /Notifier/Notifier.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitbound/InstaTech_Client/HEAD/Notifier/Notifier.csproj -------------------------------------------------------------------------------- /Notifier/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitbound/InstaTech_Client/HEAD/Notifier/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /Notifier/Properties/Resources.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitbound/InstaTech_Client/HEAD/Notifier/Properties/Resources.Designer.cs -------------------------------------------------------------------------------- /Notifier/Properties/Resources.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitbound/InstaTech_Client/HEAD/Notifier/Properties/Resources.resx -------------------------------------------------------------------------------- /Notifier/Properties/Settings.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitbound/InstaTech_Client/HEAD/Notifier/Properties/Settings.Designer.cs -------------------------------------------------------------------------------- /Notifier/Properties/Settings.settings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitbound/InstaTech_Client/HEAD/Notifier/Properties/Settings.settings -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitbound/InstaTech_Client/HEAD/README.md -------------------------------------------------------------------------------- /Win32_Classes/ADVAPI32.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitbound/InstaTech_Client/HEAD/Win32_Classes/ADVAPI32.cs -------------------------------------------------------------------------------- /Win32_Classes/GDI32.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitbound/InstaTech_Client/HEAD/Win32_Classes/GDI32.cs -------------------------------------------------------------------------------- /Win32_Classes/Kernel32.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitbound/InstaTech_Client/HEAD/Win32_Classes/Kernel32.cs -------------------------------------------------------------------------------- /Win32_Classes/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitbound/InstaTech_Client/HEAD/Win32_Classes/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /Win32_Classes/SECUR32.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitbound/InstaTech_Client/HEAD/Win32_Classes/SECUR32.cs -------------------------------------------------------------------------------- /Win32_Classes/User32.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitbound/InstaTech_Client/HEAD/Win32_Classes/User32.cs -------------------------------------------------------------------------------- /Win32_Classes/WTSAPI32.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitbound/InstaTech_Client/HEAD/Win32_Classes/WTSAPI32.cs -------------------------------------------------------------------------------- /Win32_Classes/Win32_Classes.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitbound/InstaTech_Client/HEAD/Win32_Classes/Win32_Classes.csproj -------------------------------------------------------------------------------- /packages/Costura.Fody.1.6.2/Costura.Fody.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitbound/InstaTech_Client/HEAD/packages/Costura.Fody.1.6.2/Costura.Fody.dll -------------------------------------------------------------------------------- /packages/Costura.Fody.1.6.2/Costura.Tasks.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitbound/InstaTech_Client/HEAD/packages/Costura.Fody.1.6.2/Costura.Tasks.dll -------------------------------------------------------------------------------- /packages/Costura.Fody.1.6.2/build/dotnet/Costura.Fody.targets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitbound/InstaTech_Client/HEAD/packages/Costura.Fody.1.6.2/build/dotnet/Costura.Fody.targets -------------------------------------------------------------------------------- /packages/Costura.Fody.1.6.2/build/portable-net+sl+win+wpa+wp/Costura.Fody.targets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitbound/InstaTech_Client/HEAD/packages/Costura.Fody.1.6.2/build/portable-net+sl+win+wpa+wp/Costura.Fody.targets -------------------------------------------------------------------------------- /packages/Costura.Fody.1.6.2/lib/dotnet/Costura.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitbound/InstaTech_Client/HEAD/packages/Costura.Fody.1.6.2/lib/dotnet/Costura.dll -------------------------------------------------------------------------------- /packages/Costura.Fody.1.6.2/lib/portable-net+sl+win+wpa+wp/Costura.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitbound/InstaTech_Client/HEAD/packages/Costura.Fody.1.6.2/lib/portable-net+sl+win+wpa+wp/Costura.dll -------------------------------------------------------------------------------- /packages/Costura.Fody.1.6.2/tools/install.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitbound/InstaTech_Client/HEAD/packages/Costura.Fody.1.6.2/tools/install.ps1 -------------------------------------------------------------------------------- /packages/Costura.Fody.1.6.2/tools/uninstall.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitbound/InstaTech_Client/HEAD/packages/Costura.Fody.1.6.2/tools/uninstall.ps1 -------------------------------------------------------------------------------- /packages/Fody.2.1.0/Content/FodyWeavers.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitbound/InstaTech_Client/HEAD/packages/Fody.2.1.0/Content/FodyWeavers.xml -------------------------------------------------------------------------------- /packages/Fody.2.1.0/Fody.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitbound/InstaTech_Client/HEAD/packages/Fody.2.1.0/Fody.dll -------------------------------------------------------------------------------- /packages/Fody.2.1.0/FodyCommon.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitbound/InstaTech_Client/HEAD/packages/Fody.2.1.0/FodyCommon.dll -------------------------------------------------------------------------------- /packages/Fody.2.1.0/FodyIsolated.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitbound/InstaTech_Client/HEAD/packages/Fody.2.1.0/FodyIsolated.dll -------------------------------------------------------------------------------- /packages/Fody.2.1.0/Mono.Cecil.Mdb.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitbound/InstaTech_Client/HEAD/packages/Fody.2.1.0/Mono.Cecil.Mdb.dll -------------------------------------------------------------------------------- /packages/Fody.2.1.0/Mono.Cecil.Pdb.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitbound/InstaTech_Client/HEAD/packages/Fody.2.1.0/Mono.Cecil.Pdb.dll -------------------------------------------------------------------------------- /packages/Fody.2.1.0/Mono.Cecil.Rocks.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitbound/InstaTech_Client/HEAD/packages/Fody.2.1.0/Mono.Cecil.Rocks.dll -------------------------------------------------------------------------------- /packages/Fody.2.1.0/Mono.Cecil.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitbound/InstaTech_Client/HEAD/packages/Fody.2.1.0/Mono.Cecil.dll -------------------------------------------------------------------------------- /packages/Fody.2.1.0/Tools/install.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitbound/InstaTech_Client/HEAD/packages/Fody.2.1.0/Tools/install.ps1 -------------------------------------------------------------------------------- /packages/Fody.2.1.0/build/netstandard1.0/Fody.targets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitbound/InstaTech_Client/HEAD/packages/Fody.2.1.0/build/netstandard1.0/Fody.targets -------------------------------------------------------------------------------- /packages/Fody.2.1.0/build/portable-net+sl+win+wpa+wp/Fody.targets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitbound/InstaTech_Client/HEAD/packages/Fody.2.1.0/build/portable-net+sl+win+wpa+wp/Fody.targets -------------------------------------------------------------------------------- /packages/JSON_Helper.1.2.0/lib/net452/JSON_Helper.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitbound/InstaTech_Client/HEAD/packages/JSON_Helper.1.2.0/lib/net452/JSON_Helper.dll -------------------------------------------------------------------------------- /packages/System.Buffers.4.3.0/ThirdPartyNotices.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitbound/InstaTech_Client/HEAD/packages/System.Buffers.4.3.0/ThirdPartyNotices.txt -------------------------------------------------------------------------------- /packages/System.Buffers.4.3.0/dotnet_library_license.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitbound/InstaTech_Client/HEAD/packages/System.Buffers.4.3.0/dotnet_library_license.txt -------------------------------------------------------------------------------- /packages/System.Buffers.4.3.0/lib/netstandard1.1/.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitbound/InstaTech_Client/HEAD/packages/System.Buffers.4.3.0/lib/netstandard1.1/.xml -------------------------------------------------------------------------------- /packages/System.Buffers.4.3.0/lib/netstandard1.1/System.Buffers.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitbound/InstaTech_Client/HEAD/packages/System.Buffers.4.3.0/lib/netstandard1.1/System.Buffers.dll -------------------------------------------------------------------------------- /packages/System.Net.WebSockets.Client.Managed.1.0.7/lib/net45/System.Net.WebSockets.Client.Managed.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitbound/InstaTech_Client/HEAD/packages/System.Net.WebSockets.Client.Managed.1.0.7/lib/net45/System.Net.WebSockets.Client.Managed.dll -------------------------------------------------------------------------------- /packages/System.Net.WebSockets.Client.Managed.1.0.7/lib/net45/System.Net.WebSockets.Client.Managed.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitbound/InstaTech_Client/HEAD/packages/System.Net.WebSockets.Client.Managed.1.0.7/lib/net45/System.Net.WebSockets.Client.Managed.xml -------------------------------------------------------------------------------- /packages/System.Numerics.Vectors.4.3.0/ThirdPartyNotices.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitbound/InstaTech_Client/HEAD/packages/System.Numerics.Vectors.4.3.0/ThirdPartyNotices.txt -------------------------------------------------------------------------------- /packages/System.Numerics.Vectors.4.3.0/dotnet_library_license.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitbound/InstaTech_Client/HEAD/packages/System.Numerics.Vectors.4.3.0/dotnet_library_license.txt -------------------------------------------------------------------------------- /packages/System.Numerics.Vectors.4.3.0/lib/MonoAndroid10/_._: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/System.Numerics.Vectors.4.3.0/lib/MonoTouch10/_._: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/System.Numerics.Vectors.4.3.0/lib/net46/System.Numerics.Vectors.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitbound/InstaTech_Client/HEAD/packages/System.Numerics.Vectors.4.3.0/lib/net46/System.Numerics.Vectors.dll -------------------------------------------------------------------------------- /packages/System.Numerics.Vectors.4.3.0/lib/net46/System.Numerics.Vectors.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitbound/InstaTech_Client/HEAD/packages/System.Numerics.Vectors.4.3.0/lib/net46/System.Numerics.Vectors.xml -------------------------------------------------------------------------------- /packages/System.Numerics.Vectors.4.3.0/lib/netstandard1.0/System.Numerics.Vectors.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitbound/InstaTech_Client/HEAD/packages/System.Numerics.Vectors.4.3.0/lib/netstandard1.0/System.Numerics.Vectors.dll -------------------------------------------------------------------------------- /packages/System.Numerics.Vectors.4.3.0/lib/netstandard1.0/System.Numerics.Vectors.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitbound/InstaTech_Client/HEAD/packages/System.Numerics.Vectors.4.3.0/lib/netstandard1.0/System.Numerics.Vectors.xml -------------------------------------------------------------------------------- /packages/System.Numerics.Vectors.4.3.0/lib/portable-net45+win8+wp8+wpa81/System.Numerics.Vectors.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitbound/InstaTech_Client/HEAD/packages/System.Numerics.Vectors.4.3.0/lib/portable-net45+win8+wp8+wpa81/System.Numerics.Vectors.dll -------------------------------------------------------------------------------- /packages/System.Numerics.Vectors.4.3.0/lib/portable-net45+win8+wp8+wpa81/System.Numerics.Vectors.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitbound/InstaTech_Client/HEAD/packages/System.Numerics.Vectors.4.3.0/lib/portable-net45+win8+wp8+wpa81/System.Numerics.Vectors.xml -------------------------------------------------------------------------------- /packages/System.Numerics.Vectors.4.3.0/lib/xamarinios10/_._: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/System.Numerics.Vectors.4.3.0/lib/xamarinmac20/_._: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/System.Numerics.Vectors.4.3.0/lib/xamarintvos10/_._: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/System.Numerics.Vectors.4.3.0/lib/xamarinwatchos10/_._: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/System.Numerics.Vectors.4.3.0/ref/MonoAndroid10/_._: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/System.Numerics.Vectors.4.3.0/ref/MonoTouch10/_._: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/System.Numerics.Vectors.4.3.0/ref/net46/System.Numerics.Vectors.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitbound/InstaTech_Client/HEAD/packages/System.Numerics.Vectors.4.3.0/ref/net46/System.Numerics.Vectors.dll -------------------------------------------------------------------------------- /packages/System.Numerics.Vectors.4.3.0/ref/net46/System.Numerics.Vectors.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitbound/InstaTech_Client/HEAD/packages/System.Numerics.Vectors.4.3.0/ref/net46/System.Numerics.Vectors.xml -------------------------------------------------------------------------------- /packages/System.Numerics.Vectors.4.3.0/ref/netstandard1.0/System.Numerics.Vectors.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitbound/InstaTech_Client/HEAD/packages/System.Numerics.Vectors.4.3.0/ref/netstandard1.0/System.Numerics.Vectors.dll -------------------------------------------------------------------------------- /packages/System.Numerics.Vectors.4.3.0/ref/netstandard1.0/System.Numerics.Vectors.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitbound/InstaTech_Client/HEAD/packages/System.Numerics.Vectors.4.3.0/ref/netstandard1.0/System.Numerics.Vectors.xml -------------------------------------------------------------------------------- /packages/System.Numerics.Vectors.4.3.0/ref/xamarinios10/_._: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/System.Numerics.Vectors.4.3.0/ref/xamarinmac20/_._: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/System.Numerics.Vectors.4.3.0/ref/xamarintvos10/_._: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/System.Numerics.Vectors.4.3.0/ref/xamarinwatchos10/_._: -------------------------------------------------------------------------------- 1 | --------------------------------------------------------------------------------