├── .gitattributes ├── .github ├── FUNDING.yml └── stale.yml ├── .gitignore ├── LICENSE.md ├── README.md └── src ├── Lithnet.IdleLogoff ├── AdminCheck.cs ├── EventLogging.cs ├── ExecutionState.cs ├── IdleTimeoutAction.cs ├── LastInputInfo.cs ├── LogoffWarning.Designer.cs ├── LogoffWarning.cs ├── LogoffWarning.resx ├── NativeMethods.cs ├── PolicyDefinitions │ ├── en-US │ │ ├── lithnet.adml │ │ └── lithnet.idlelogoff.adml │ ├── lithnet.admx │ └── lithnet.idlelogoff.admx ├── PowerInformationLevel.cs ├── Program.cs ├── Properties │ ├── AssemblyInfo.cs │ ├── Resources.Designer.cs │ ├── Resources.resx │ └── app.manifest ├── Resources │ └── warning_yellow_7231_32x32.png ├── Settings.cs ├── ShutdownFlags.cs ├── TokenPrivileges.cs ├── app.config ├── frmSettings.Designer.cs ├── frmSettings.cs ├── frmSettings.resx └── lithnet.idlelogoff.csproj ├── lithnet.idlelogoff.setup ├── Product.wxs └── lithnet.idlelogoff.setup.wixproj └── lithnet.idlelogoff.sln /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lithnet/idle-logoff/HEAD/.gitattributes -------------------------------------------------------------------------------- /.github/FUNDING.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lithnet/idle-logoff/HEAD/.github/FUNDING.yml -------------------------------------------------------------------------------- /.github/stale.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lithnet/idle-logoff/HEAD/.github/stale.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lithnet/idle-logoff/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lithnet/idle-logoff/HEAD/LICENSE.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lithnet/idle-logoff/HEAD/README.md -------------------------------------------------------------------------------- /src/Lithnet.IdleLogoff/AdminCheck.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lithnet/idle-logoff/HEAD/src/Lithnet.IdleLogoff/AdminCheck.cs -------------------------------------------------------------------------------- /src/Lithnet.IdleLogoff/EventLogging.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lithnet/idle-logoff/HEAD/src/Lithnet.IdleLogoff/EventLogging.cs -------------------------------------------------------------------------------- /src/Lithnet.IdleLogoff/ExecutionState.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lithnet/idle-logoff/HEAD/src/Lithnet.IdleLogoff/ExecutionState.cs -------------------------------------------------------------------------------- /src/Lithnet.IdleLogoff/IdleTimeoutAction.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lithnet/idle-logoff/HEAD/src/Lithnet.IdleLogoff/IdleTimeoutAction.cs -------------------------------------------------------------------------------- /src/Lithnet.IdleLogoff/LastInputInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lithnet/idle-logoff/HEAD/src/Lithnet.IdleLogoff/LastInputInfo.cs -------------------------------------------------------------------------------- /src/Lithnet.IdleLogoff/LogoffWarning.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lithnet/idle-logoff/HEAD/src/Lithnet.IdleLogoff/LogoffWarning.Designer.cs -------------------------------------------------------------------------------- /src/Lithnet.IdleLogoff/LogoffWarning.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lithnet/idle-logoff/HEAD/src/Lithnet.IdleLogoff/LogoffWarning.cs -------------------------------------------------------------------------------- /src/Lithnet.IdleLogoff/LogoffWarning.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lithnet/idle-logoff/HEAD/src/Lithnet.IdleLogoff/LogoffWarning.resx -------------------------------------------------------------------------------- /src/Lithnet.IdleLogoff/NativeMethods.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lithnet/idle-logoff/HEAD/src/Lithnet.IdleLogoff/NativeMethods.cs -------------------------------------------------------------------------------- /src/Lithnet.IdleLogoff/PolicyDefinitions/en-US/lithnet.adml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lithnet/idle-logoff/HEAD/src/Lithnet.IdleLogoff/PolicyDefinitions/en-US/lithnet.adml -------------------------------------------------------------------------------- /src/Lithnet.IdleLogoff/PolicyDefinitions/en-US/lithnet.idlelogoff.adml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lithnet/idle-logoff/HEAD/src/Lithnet.IdleLogoff/PolicyDefinitions/en-US/lithnet.idlelogoff.adml -------------------------------------------------------------------------------- /src/Lithnet.IdleLogoff/PolicyDefinitions/lithnet.admx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lithnet/idle-logoff/HEAD/src/Lithnet.IdleLogoff/PolicyDefinitions/lithnet.admx -------------------------------------------------------------------------------- /src/Lithnet.IdleLogoff/PolicyDefinitions/lithnet.idlelogoff.admx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lithnet/idle-logoff/HEAD/src/Lithnet.IdleLogoff/PolicyDefinitions/lithnet.idlelogoff.admx -------------------------------------------------------------------------------- /src/Lithnet.IdleLogoff/PowerInformationLevel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lithnet/idle-logoff/HEAD/src/Lithnet.IdleLogoff/PowerInformationLevel.cs -------------------------------------------------------------------------------- /src/Lithnet.IdleLogoff/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lithnet/idle-logoff/HEAD/src/Lithnet.IdleLogoff/Program.cs -------------------------------------------------------------------------------- /src/Lithnet.IdleLogoff/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lithnet/idle-logoff/HEAD/src/Lithnet.IdleLogoff/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /src/Lithnet.IdleLogoff/Properties/Resources.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lithnet/idle-logoff/HEAD/src/Lithnet.IdleLogoff/Properties/Resources.Designer.cs -------------------------------------------------------------------------------- /src/Lithnet.IdleLogoff/Properties/Resources.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lithnet/idle-logoff/HEAD/src/Lithnet.IdleLogoff/Properties/Resources.resx -------------------------------------------------------------------------------- /src/Lithnet.IdleLogoff/Properties/app.manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lithnet/idle-logoff/HEAD/src/Lithnet.IdleLogoff/Properties/app.manifest -------------------------------------------------------------------------------- /src/Lithnet.IdleLogoff/Resources/warning_yellow_7231_32x32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lithnet/idle-logoff/HEAD/src/Lithnet.IdleLogoff/Resources/warning_yellow_7231_32x32.png -------------------------------------------------------------------------------- /src/Lithnet.IdleLogoff/Settings.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lithnet/idle-logoff/HEAD/src/Lithnet.IdleLogoff/Settings.cs -------------------------------------------------------------------------------- /src/Lithnet.IdleLogoff/ShutdownFlags.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lithnet/idle-logoff/HEAD/src/Lithnet.IdleLogoff/ShutdownFlags.cs -------------------------------------------------------------------------------- /src/Lithnet.IdleLogoff/TokenPrivileges.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lithnet/idle-logoff/HEAD/src/Lithnet.IdleLogoff/TokenPrivileges.cs -------------------------------------------------------------------------------- /src/Lithnet.IdleLogoff/app.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lithnet/idle-logoff/HEAD/src/Lithnet.IdleLogoff/app.config -------------------------------------------------------------------------------- /src/Lithnet.IdleLogoff/frmSettings.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lithnet/idle-logoff/HEAD/src/Lithnet.IdleLogoff/frmSettings.Designer.cs -------------------------------------------------------------------------------- /src/Lithnet.IdleLogoff/frmSettings.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lithnet/idle-logoff/HEAD/src/Lithnet.IdleLogoff/frmSettings.cs -------------------------------------------------------------------------------- /src/Lithnet.IdleLogoff/frmSettings.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lithnet/idle-logoff/HEAD/src/Lithnet.IdleLogoff/frmSettings.resx -------------------------------------------------------------------------------- /src/Lithnet.IdleLogoff/lithnet.idlelogoff.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lithnet/idle-logoff/HEAD/src/Lithnet.IdleLogoff/lithnet.idlelogoff.csproj -------------------------------------------------------------------------------- /src/lithnet.idlelogoff.setup/Product.wxs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lithnet/idle-logoff/HEAD/src/lithnet.idlelogoff.setup/Product.wxs -------------------------------------------------------------------------------- /src/lithnet.idlelogoff.setup/lithnet.idlelogoff.setup.wixproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lithnet/idle-logoff/HEAD/src/lithnet.idlelogoff.setup/lithnet.idlelogoff.setup.wixproj -------------------------------------------------------------------------------- /src/lithnet.idlelogoff.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lithnet/idle-logoff/HEAD/src/lithnet.idlelogoff.sln --------------------------------------------------------------------------------