├── .gitattributes ├── .gitignore ├── AUTHORS.txt ├── HISTORY.txt ├── LICENSE.txt ├── README.md └── src ├── AutoIt.OSD.Background.sln └── AutoIt.OSD.Background ├── AutoIt.OSD.Background.csproj ├── Example ├── Default.bgi ├── Default.jpg ├── Error.bgi ├── Error.jpg ├── OSD_SetPhase.vbs └── _README.txt ├── FormBackground.Designer.cs ├── FormBackground.cs ├── FormBackground.resx ├── FormPassword.Designer.cs ├── FormPassword.cs ├── FormPassword.resx ├── FormTools.Designer.cs ├── FormTools.cs ├── FormTools.resx ├── KeyboardHook.cs ├── NamedPipeXmlPayload.cs ├── Options.cs ├── Options.xml ├── Program.cs ├── Properties ├── AssemblyInfo.cs ├── Resources.Designer.cs ├── Resources.resx ├── Settings.Designer.cs └── Settings.settings ├── ReferenceAssemblies └── TSCore │ ├── ProgressUILib_DotNet40.dll │ └── TSEnvironmentLib_DotNet40.dll ├── Resources └── main.ico ├── Shared ├── AutoIt.Controls │ ├── SimpleProgressBar.Designer.cs │ ├── SimpleProgressBar.cs │ └── SimpleProgressBar.resx ├── AutoIt.OSD │ └── TaskSequence.cs └── AutoIt.Windows │ ├── Management.cs │ └── NativeMethods.cs ├── app.manifest └── generate_release_package.cmd /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutoItConsulting/osd-background/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutoItConsulting/osd-background/HEAD/.gitignore -------------------------------------------------------------------------------- /AUTHORS.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutoItConsulting/osd-background/HEAD/AUTHORS.txt -------------------------------------------------------------------------------- /HISTORY.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutoItConsulting/osd-background/HEAD/HISTORY.txt -------------------------------------------------------------------------------- /LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutoItConsulting/osd-background/HEAD/LICENSE.txt -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutoItConsulting/osd-background/HEAD/README.md -------------------------------------------------------------------------------- /src/AutoIt.OSD.Background.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutoItConsulting/osd-background/HEAD/src/AutoIt.OSD.Background.sln -------------------------------------------------------------------------------- /src/AutoIt.OSD.Background/AutoIt.OSD.Background.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutoItConsulting/osd-background/HEAD/src/AutoIt.OSD.Background/AutoIt.OSD.Background.csproj -------------------------------------------------------------------------------- /src/AutoIt.OSD.Background/Example/Default.bgi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutoItConsulting/osd-background/HEAD/src/AutoIt.OSD.Background/Example/Default.bgi -------------------------------------------------------------------------------- /src/AutoIt.OSD.Background/Example/Default.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutoItConsulting/osd-background/HEAD/src/AutoIt.OSD.Background/Example/Default.jpg -------------------------------------------------------------------------------- /src/AutoIt.OSD.Background/Example/Error.bgi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutoItConsulting/osd-background/HEAD/src/AutoIt.OSD.Background/Example/Error.bgi -------------------------------------------------------------------------------- /src/AutoIt.OSD.Background/Example/Error.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutoItConsulting/osd-background/HEAD/src/AutoIt.OSD.Background/Example/Error.jpg -------------------------------------------------------------------------------- /src/AutoIt.OSD.Background/Example/OSD_SetPhase.vbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutoItConsulting/osd-background/HEAD/src/AutoIt.OSD.Background/Example/OSD_SetPhase.vbs -------------------------------------------------------------------------------- /src/AutoIt.OSD.Background/Example/_README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutoItConsulting/osd-background/HEAD/src/AutoIt.OSD.Background/Example/_README.txt -------------------------------------------------------------------------------- /src/AutoIt.OSD.Background/FormBackground.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutoItConsulting/osd-background/HEAD/src/AutoIt.OSD.Background/FormBackground.Designer.cs -------------------------------------------------------------------------------- /src/AutoIt.OSD.Background/FormBackground.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutoItConsulting/osd-background/HEAD/src/AutoIt.OSD.Background/FormBackground.cs -------------------------------------------------------------------------------- /src/AutoIt.OSD.Background/FormBackground.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutoItConsulting/osd-background/HEAD/src/AutoIt.OSD.Background/FormBackground.resx -------------------------------------------------------------------------------- /src/AutoIt.OSD.Background/FormPassword.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutoItConsulting/osd-background/HEAD/src/AutoIt.OSD.Background/FormPassword.Designer.cs -------------------------------------------------------------------------------- /src/AutoIt.OSD.Background/FormPassword.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutoItConsulting/osd-background/HEAD/src/AutoIt.OSD.Background/FormPassword.cs -------------------------------------------------------------------------------- /src/AutoIt.OSD.Background/FormPassword.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutoItConsulting/osd-background/HEAD/src/AutoIt.OSD.Background/FormPassword.resx -------------------------------------------------------------------------------- /src/AutoIt.OSD.Background/FormTools.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutoItConsulting/osd-background/HEAD/src/AutoIt.OSD.Background/FormTools.Designer.cs -------------------------------------------------------------------------------- /src/AutoIt.OSD.Background/FormTools.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutoItConsulting/osd-background/HEAD/src/AutoIt.OSD.Background/FormTools.cs -------------------------------------------------------------------------------- /src/AutoIt.OSD.Background/FormTools.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutoItConsulting/osd-background/HEAD/src/AutoIt.OSD.Background/FormTools.resx -------------------------------------------------------------------------------- /src/AutoIt.OSD.Background/KeyboardHook.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutoItConsulting/osd-background/HEAD/src/AutoIt.OSD.Background/KeyboardHook.cs -------------------------------------------------------------------------------- /src/AutoIt.OSD.Background/NamedPipeXmlPayload.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutoItConsulting/osd-background/HEAD/src/AutoIt.OSD.Background/NamedPipeXmlPayload.cs -------------------------------------------------------------------------------- /src/AutoIt.OSD.Background/Options.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutoItConsulting/osd-background/HEAD/src/AutoIt.OSD.Background/Options.cs -------------------------------------------------------------------------------- /src/AutoIt.OSD.Background/Options.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutoItConsulting/osd-background/HEAD/src/AutoIt.OSD.Background/Options.xml -------------------------------------------------------------------------------- /src/AutoIt.OSD.Background/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutoItConsulting/osd-background/HEAD/src/AutoIt.OSD.Background/Program.cs -------------------------------------------------------------------------------- /src/AutoIt.OSD.Background/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutoItConsulting/osd-background/HEAD/src/AutoIt.OSD.Background/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /src/AutoIt.OSD.Background/Properties/Resources.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutoItConsulting/osd-background/HEAD/src/AutoIt.OSD.Background/Properties/Resources.Designer.cs -------------------------------------------------------------------------------- /src/AutoIt.OSD.Background/Properties/Resources.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutoItConsulting/osd-background/HEAD/src/AutoIt.OSD.Background/Properties/Resources.resx -------------------------------------------------------------------------------- /src/AutoIt.OSD.Background/Properties/Settings.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutoItConsulting/osd-background/HEAD/src/AutoIt.OSD.Background/Properties/Settings.Designer.cs -------------------------------------------------------------------------------- /src/AutoIt.OSD.Background/Properties/Settings.settings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutoItConsulting/osd-background/HEAD/src/AutoIt.OSD.Background/Properties/Settings.settings -------------------------------------------------------------------------------- /src/AutoIt.OSD.Background/ReferenceAssemblies/TSCore/ProgressUILib_DotNet40.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutoItConsulting/osd-background/HEAD/src/AutoIt.OSD.Background/ReferenceAssemblies/TSCore/ProgressUILib_DotNet40.dll -------------------------------------------------------------------------------- /src/AutoIt.OSD.Background/ReferenceAssemblies/TSCore/TSEnvironmentLib_DotNet40.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutoItConsulting/osd-background/HEAD/src/AutoIt.OSD.Background/ReferenceAssemblies/TSCore/TSEnvironmentLib_DotNet40.dll -------------------------------------------------------------------------------- /src/AutoIt.OSD.Background/Resources/main.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutoItConsulting/osd-background/HEAD/src/AutoIt.OSD.Background/Resources/main.ico -------------------------------------------------------------------------------- /src/AutoIt.OSD.Background/Shared/AutoIt.Controls/SimpleProgressBar.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutoItConsulting/osd-background/HEAD/src/AutoIt.OSD.Background/Shared/AutoIt.Controls/SimpleProgressBar.Designer.cs -------------------------------------------------------------------------------- /src/AutoIt.OSD.Background/Shared/AutoIt.Controls/SimpleProgressBar.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutoItConsulting/osd-background/HEAD/src/AutoIt.OSD.Background/Shared/AutoIt.Controls/SimpleProgressBar.cs -------------------------------------------------------------------------------- /src/AutoIt.OSD.Background/Shared/AutoIt.Controls/SimpleProgressBar.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutoItConsulting/osd-background/HEAD/src/AutoIt.OSD.Background/Shared/AutoIt.Controls/SimpleProgressBar.resx -------------------------------------------------------------------------------- /src/AutoIt.OSD.Background/Shared/AutoIt.OSD/TaskSequence.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutoItConsulting/osd-background/HEAD/src/AutoIt.OSD.Background/Shared/AutoIt.OSD/TaskSequence.cs -------------------------------------------------------------------------------- /src/AutoIt.OSD.Background/Shared/AutoIt.Windows/Management.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutoItConsulting/osd-background/HEAD/src/AutoIt.OSD.Background/Shared/AutoIt.Windows/Management.cs -------------------------------------------------------------------------------- /src/AutoIt.OSD.Background/Shared/AutoIt.Windows/NativeMethods.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutoItConsulting/osd-background/HEAD/src/AutoIt.OSD.Background/Shared/AutoIt.Windows/NativeMethods.cs -------------------------------------------------------------------------------- /src/AutoIt.OSD.Background/app.manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutoItConsulting/osd-background/HEAD/src/AutoIt.OSD.Background/app.manifest -------------------------------------------------------------------------------- /src/AutoIt.OSD.Background/generate_release_package.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutoItConsulting/osd-background/HEAD/src/AutoIt.OSD.Background/generate_release_package.cmd --------------------------------------------------------------------------------