├── .DS_Store ├── .vs ├── LogonShell │ ├── FileContentIndex │ │ ├── 18f48d7a-0eb9-4104-8e0a-efacc679ec7b.vsidx │ │ ├── 27db1cc3-87ea-4004-a63c-cd66e9137b3f.vsidx │ │ ├── 4715e4ef-b7a1-4c41-9c3a-485ced863765.vsidx │ │ ├── efb50af2-2d10-47cf-b89b-73b444f6fb99.vsidx │ │ └── read.lock │ ├── v16 │ │ └── .suo │ └── v17 │ │ ├── .futdcache.v1 │ │ └── .suo └── ProjectEvaluation │ ├── logonshell.metadata.v2 │ └── logonshell.projects.v2 ├── Classic Logon Shell ├── Classic Logon Shell.aip └── Classic Logon Shell.aiproj ├── Logon Screen Launcher ├── InjectProcess.cs ├── LauncherService.Designer.cs ├── LauncherService.cs ├── Logon Screen Launcher.csproj ├── Program.cs ├── ProjectInstaller.Designer.cs ├── ProjectInstaller.cs ├── ProjectInstaller.resx ├── Properties │ └── AssemblyInfo.cs ├── bin │ └── x64 │ │ └── Release │ │ ├── Interop.EventSystemLib.dll │ │ └── LauncherService.exe └── obj │ ├── Debug │ ├── .NETFramework,Version=v4.8.AssemblyAttributes.cs │ ├── ClassicLogonShell.ProjectInstaller.resources │ ├── DesignTimeResolveAssemblyReferences.cache │ ├── DesignTimeResolveAssemblyReferencesInput.cache │ ├── Ellanet.ProjectInstaller.resources │ ├── Interop.EventSystemLib.dll │ ├── Interop.SensEvents.dll │ ├── Logon Screen Launcher.csproj.AssemblyReference.cache │ ├── Logon Screen Launcher.csproj.CopyComplete │ ├── Logon Screen Launcher.csproj.CoreCompileInputs.cache │ ├── Logon Screen Launcher.csproj.FileListAbsolute.txt │ ├── Logon Screen Launcher.csproj.GenerateResource.cache │ ├── Logon Screen Launcher.csproj.ResolveComReference.cache │ ├── Logon Screen Launcher.csprojAssemblyReference.cache │ ├── LogonScreenLauncher.exe │ ├── LogonScreenLauncher.pdb │ ├── ResolveAssemblyReference.cache │ ├── Windows Logon Screen Launcher.csproj.FileListAbsolute.txt │ ├── Windows Logon Screen Launcher.csproj.GenerateResource.Cache │ ├── Windows Logon Screen Launcher.csproj.ResolveComReference.cache │ ├── Windows Logon Screen Launcher.exe │ ├── Windows Logon Screen Launcher.pdb │ └── _IsIncrementalBuild │ ├── Release │ ├── .NETFramework,Version=v4.8.AssemblyAttributes.cs │ ├── DesignTimeResolveAssemblyReferencesInput.cache │ ├── Ellanet.ProjectInstaller.resources │ ├── Interop.EventSystemLib.dll │ ├── Interop.SensEvents.dll │ ├── Logon Screen Launcher.csproj.AssemblyReference.cache │ ├── Logon Screen Launcher.csproj.CopyComplete │ ├── Logon Screen Launcher.csproj.CoreCompileInputs.cache │ ├── Logon Screen Launcher.csproj.FileListAbsolute.txt │ ├── Logon Screen Launcher.csproj.GenerateResource.cache │ ├── Logon Screen Launcher.csproj.ResolveComReference.cache │ ├── Logon Screen Launcher.csprojAssemblyReference.cache │ ├── LogonScreenLauncher.exe │ ├── LogonScreenLauncher.pdb │ └── build.force │ └── x64 │ ├── Debug │ ├── .NETFramework,Version=v4.8.AssemblyAttributes.cs │ ├── Interop.EventSystemLib.dll │ ├── Logon Screen Launcher.csproj.AssemblyReference.cache │ ├── Logon Screen Launcher.csproj.ResolveComReference.cache │ └── build.force │ └── Release │ ├── .NETFramework,Version=v4.8.AssemblyAttributes.cs │ ├── ClassicLogonShell.ProjectInstaller.resources │ ├── DesignTimeResolveAssemblyReferences.cache │ ├── DesignTimeResolveAssemblyReferencesInput.cache │ ├── Interop.EventSystemLib.dll │ ├── Interop.SensEvents.dll │ ├── LauncherService.exe │ ├── Logon Screen Launcher.csproj.AssemblyReference.cache │ ├── Logon Screen Launcher.csproj.CoreCompileInputs.cache │ ├── Logon Screen Launcher.csproj.FileListAbsolute.txt │ ├── Logon Screen Launcher.csproj.GenerateResource.cache │ ├── Logon Screen Launcher.csproj.ResolveComReference.cache │ └── _IsIncrementalBuild ├── LogonShell.sln ├── LogonShell ├── BackgroundForm.Designer.cs ├── BackgroundForm.cs ├── BackgroundForm.resx ├── Cache.cs ├── Class1.cs ├── CustomTextBox.Designer.cs ├── CustomTextBox.cs ├── CustomTextBox.resx ├── GifImage.cs ├── Help.Designer.cs ├── Help.cs ├── Help.resx ├── IniFile.cs ├── LogOnForm.Designer.cs ├── LogOnForm.cs ├── LogOnForm.resx ├── Logon.cs ├── LogonShell.csproj ├── LogonShell.csproj.user ├── MessageBoxForm.Designer.cs ├── MessageBoxForm.cs ├── MessageBoxForm.resx ├── MouseOperations.cs ├── Program.cs ├── Properties │ ├── AssemblyInfo.cs │ ├── Resources.Designer.cs │ ├── Resources.resx │ ├── Settings.Designer.cs │ └── Settings.settings ├── Resources │ ├── CLS.png │ ├── DividerBottom.bmp │ ├── DividerTop.bmp │ ├── DividerXPLogoAndLoginScreen.bmp │ ├── GoIcon.bmp │ ├── GoIconSelected.bmp │ ├── InputArea.bmp │ ├── PFP.bmp │ ├── SelectedUserBackground.bmp │ ├── Shade.bmp │ ├── Shutdown.bmp │ ├── UserHoverOrSelected.bmp │ ├── UserHoverOrSelected.png │ ├── UserHoverOrSelected1.png │ ├── UserNotHoverOrSelected.bmp │ ├── XPLogo.bmp │ └── XPLogo1.bmp ├── SecondaryBackgrounds.Designer.cs ├── SecondaryBackgrounds.cs ├── SecondaryBackgrounds.resx ├── SecondaryBackgrounds1.Designer.cs ├── SecondaryBackgroundsBase.cs ├── Settings.cs ├── ShutDownForm.Designer.cs ├── ShutDownForm.cs ├── ShutDownForm.resx ├── ShutdownBackgroundForm.Designer.cs ├── ShutdownBackgroundForm.cs ├── ShutdownBackgroundForm.resx ├── SystemMenuManager.cs ├── UserTray.cs ├── app.manifest ├── bin │ ├── Debug │ │ ├── AxInterop.MSTSCLib.dll │ │ ├── FlaUI.Core.dll │ │ ├── FlaUI.Core.xml │ │ ├── FlaUI.UIA3.dll │ │ ├── FlaUI.UIA3.xml │ │ ├── Interop.MSTSCLib.dll │ │ ├── Interop.UIAutomationClient.dll │ │ ├── LogonShell.exe │ │ ├── LogonShell.exe.config │ │ ├── LogonShell.ini │ │ ├── LogonShell.pdb │ │ └── theme │ │ │ ├── banner.png │ │ │ ├── bg.logo.png │ │ │ ├── computer.icon.png │ │ │ ├── keyboard.icon.png │ │ │ ├── loading.gif │ │ │ └── locale.ini │ ├── Release │ │ ├── AxInterop.MSTSCLib.dll │ │ ├── Interop.MSTSCLib.dll │ │ ├── LogonShell.exe │ │ ├── LogonShell.exe.config │ │ └── LogonShell.pdb │ └── x64 │ │ ├── Debug │ │ ├── AxInterop.MSTSCLib.dll │ │ ├── FlaUI.Core.dll │ │ ├── FlaUI.Core.xml │ │ ├── FlaUI.UIA3.dll │ │ ├── FlaUI.UIA3.xml │ │ ├── Interop.MSTSCLib.dll │ │ ├── Interop.UIAutomationClient.dll │ │ ├── LogonShell.exe │ │ ├── LogonShell.exe.config │ │ ├── LogonShell.ini │ │ ├── LogonShell.pdb │ │ ├── System.CodeDom.dll │ │ ├── System.CodeDom.xml │ │ ├── cache.bin │ │ └── theme │ │ │ ├── banner.png │ │ │ ├── bg.logo.png │ │ │ ├── computer.icon.png │ │ │ ├── keyboard.icon.png │ │ │ ├── loading.gif │ │ │ ├── locale.ini │ │ │ ├── messagebox.error.ico │ │ │ ├── messagebox.warning.ico │ │ │ ├── shutdown.icon.png │ │ │ └── sleep.icon.png │ │ └── Release │ │ ├── FlaUI.Core.dll │ │ ├── FlaUI.UIA3.dll │ │ ├── Interop.UIAutomationClient.dll │ │ ├── LogonShell.exe │ │ ├── LogonShell.exe - collegamento - Copia (2).lnk │ │ ├── LogonShell.exe - collegamento - Copia.lnk │ │ ├── LogonShell.exe - collegamento.lnk │ │ ├── LogonShell.ini │ │ ├── System.CodeDom.dll │ │ ├── cache.bin │ │ └── theme │ │ ├── banner.png │ │ ├── banner1.png │ │ ├── banner2.png │ │ ├── bg.logo.png │ │ ├── keyboard.icon.png │ │ ├── loading.gif │ │ ├── locale.ini │ │ ├── messagebox.error.ico │ │ ├── messagebox.warning.ico │ │ ├── shutdown.icon.png │ │ └── sleep.icon.png ├── logon.ico ├── obj │ ├── Debug │ │ ├── .NETFramework,Version=v4.7.2.AssemblyAttributes.cs │ │ ├── AxInterop.MSTSCLib.dll │ │ ├── DesignTimeResolveAssemblyReferences.cache │ │ ├── DesignTimeResolveAssemblyReferencesInput.cache │ │ ├── Interop.MSTSCLib.dll │ │ ├── LogonShell.BackgroundForm.resources │ │ ├── LogonShell.LogOnForm.resources │ │ ├── LogonShell.MessageBoxForm.resources │ │ ├── LogonShell.Properties.Resources.resources │ │ ├── LogonShell.SecondaryBackgrounds.resources │ │ ├── LogonShell.ShutDownForm.resources │ │ ├── LogonShell.csproj.AssemblyReference.cache │ │ ├── LogonShell.csproj.CopyComplete │ │ ├── LogonShell.csproj.CoreCompileInputs.cache │ │ ├── LogonShell.csproj.FileListAbsolute.txt │ │ ├── LogonShell.csproj.GenerateResource.cache │ │ ├── LogonShell.csproj.ResolveComReference.cache │ │ ├── LogonShell.csproj.SuggestedBindingRedirects.cache │ │ ├── LogonShell.exe │ │ ├── LogonShell.pdb │ │ ├── TempPE │ │ │ └── Properties.Resources.Designer.cs.dll │ │ └── _IsIncrementalBuild │ ├── Release │ │ ├── .NETFramework,Version=v4.7.2.AssemblyAttributes.cs │ │ ├── AxInterop.MSTSCLib.dll │ │ ├── Interop.MSTSCLib.dll │ │ ├── LogonShell.BackgroundForm.resources │ │ ├── LogonShell.LogOnForm.resources │ │ ├── LogonShell.Properties.Resources.resources │ │ ├── LogonShell.ShutDownForm.resources │ │ ├── LogonShell.csproj.AssemblyReference.cache │ │ ├── LogonShell.csproj.CoreCompileInputs.cache │ │ ├── LogonShell.csproj.FileListAbsolute.txt │ │ ├── LogonShell.csproj.GenerateResource.cache │ │ ├── LogonShell.csproj.ResolveComReference.cache │ │ ├── LogonShell.csproj.SuggestedBindingRedirects.cache │ │ ├── LogonShell.exe │ │ ├── LogonShell.pdb │ │ ├── TempPE │ │ │ └── Properties.Resources.Designer.cs.dll │ │ ├── _IsIncrementalBuild │ │ └── build.force │ └── x64 │ │ ├── Debug │ │ ├── .NETFramework,Version=v4.7.2.AssemblyAttributes.cs │ │ ├── .NETFramework,Version=v4.8.AssemblyAttributes.cs │ │ ├── AxInterop.MSTSCLib.dll │ │ ├── Interop.MSTSCLib.dll │ │ ├── LogonShell.BackgroundForm.resources │ │ ├── LogonShell.Help.resources │ │ ├── LogonShell.LogOnForm.resources │ │ ├── LogonShell.MessageBoxForm.resources │ │ ├── LogonShell.Properties.Resources.resources │ │ ├── LogonShell.SecondaryBackgrounds.resources │ │ ├── LogonShell.ShutDownForm.resources │ │ ├── LogonShell.ShutdownBackgroundForm.resources │ │ ├── LogonShell.csproj.AssemblyReference.cache │ │ ├── LogonShell.csproj.CopyComplete │ │ ├── LogonShell.csproj.CoreCompileInputs.cache │ │ ├── LogonShell.csproj.FileListAbsolute.txt │ │ ├── LogonShell.csproj.GenerateResource.cache │ │ ├── LogonShell.csproj.ResolveComReference.cache │ │ ├── LogonShell.csproj.SuggestedBindingRedirects.cache │ │ ├── LogonShell.exe │ │ ├── LogonShell.pdb │ │ ├── TempPE │ │ │ └── Properties.Resources.Designer.cs.dll │ │ └── _IsIncrementalBuild │ │ └── Release │ │ ├── .NETFramework,Version=v4.7.2.AssemblyAttributes.cs │ │ ├── .NETFramework,Version=v4.8.AssemblyAttributes.cs │ │ ├── DesignTimeResolveAssemblyReferences.cache │ │ ├── DesignTimeResolveAssemblyReferencesInput.cache │ │ ├── Interop.WUApiLib.dll │ │ ├── LogonShell.BackgroundForm.resources │ │ ├── LogonShell.CustomTextBox.resources │ │ ├── LogonShell.Help.resources │ │ ├── LogonShell.LogOnForm.resources │ │ ├── LogonShell.MessageBoxForm.resources │ │ ├── LogonShell.Properties.Resources.resources │ │ ├── LogonShell.SecondaryBackgrounds.resources │ │ ├── LogonShell.ShutDownForm.resources │ │ ├── LogonShell.ShutdownBackgroundForm.resources │ │ ├── LogonShell.csproj.AssemblyReference.cache │ │ ├── LogonShell.csproj.CopyComplete │ │ ├── LogonShell.csproj.CoreCompileInputs.cache │ │ ├── LogonShell.csproj.FileListAbsolute.txt │ │ ├── LogonShell.csproj.GenerateResource.cache │ │ ├── LogonShell.csproj.ResolveComReference.cache │ │ ├── LogonShell.csproj.SuggestedBindingRedirects.cache │ │ ├── LogonShell.exe │ │ ├── TempPE │ │ ├── Properties.Resources.Designer.cs.dll │ │ └── SecondaryBackgrounds1.Designer.cs.dll │ │ └── _IsIncrementalBuild └── packages.config ├── LogonShellCustomizer ├── Form1.Designer.cs ├── Form1.cs ├── Form1.resx ├── Form2.Designer.cs ├── Form2.cs ├── Form2.resx ├── Form3.Designer.cs ├── Form3.cs ├── Form3.resx ├── Form4.Designer.cs ├── Form4.cs ├── Form4.resx ├── Form5.Designer.cs ├── Form5.cs ├── Form5.resx ├── IniFile.cs ├── LogonShellCustomizer.csproj ├── LogonShellCustomizer.csproj.user ├── Program.cs ├── Properties │ ├── AssemblyInfo.cs │ ├── Resources.Designer.cs │ ├── Resources.resx │ ├── Settings.Designer.cs │ └── Settings.settings ├── app.manifest ├── bin │ ├── Release │ │ ├── Customizer.exe │ │ ├── Customizer.exe.config │ │ └── Customizer.pdb │ └── x64 │ │ └── Release │ │ ├── Customizer.exe │ │ ├── Customizer.ini │ │ ├── English.ini │ │ ├── LogonShell.exe │ │ ├── LogonShell.ini │ │ ├── cache.bin │ │ ├── customizer_files │ │ ├── locale │ │ │ └── English.ini │ │ ├── themes │ │ │ ├── Windows 10 Classic.zip │ │ │ └── Windows 10 Modern.zip │ │ └── user_settings │ │ │ └── Windows 10 Classic.ini │ │ └── theme │ │ ├── banner.png │ │ ├── bg.logo.png │ │ ├── keyboard.icon.png │ │ ├── loading.gif │ │ ├── locale.ini │ │ ├── messagebox.error.ico │ │ ├── messagebox.warning.ico │ │ ├── restart.icon.png │ │ ├── shutdown.icon.png │ │ └── sleep.icon.png ├── logon.ico └── obj │ ├── Debug │ ├── .NETFramework,Version=v4.8.AssemblyAttributes.cs │ ├── DesignTimeResolveAssemblyReferencesInput.cache │ └── LogonShellCustomizer.csproj.AssemblyReference.cache │ ├── Release │ ├── .NETFramework,Version=v4.8.AssemblyAttributes.cs │ ├── Customizer.exe │ ├── Customizer.pdb │ ├── DesignTimeResolveAssemblyReferences.cache │ ├── DesignTimeResolveAssemblyReferencesInput.cache │ ├── LogonShellCustomizer.MainWindow.resources │ ├── LogonShellCustomizer.Properties.Resources.resources │ ├── LogonShellCustomizer.csproj.AssemblyReference.cache │ ├── LogonShellCustomizer.csproj.CoreCompileInputs.cache │ ├── LogonShellCustomizer.csproj.FileListAbsolute.txt │ ├── LogonShellCustomizer.csproj.GenerateResource.cache │ └── LogonShellCustomizer.csproj.SuggestedBindingRedirects.cache │ └── x64 │ └── Release │ ├── .NETFramework,Version=v4.8.AssemblyAttributes.cs │ ├── Customizer.exe │ ├── DesignTimeResolveAssemblyReferences.cache │ ├── DesignTimeResolveAssemblyReferencesInput.cache │ ├── LogonShellCustomizer.Form2.resources │ ├── LogonShellCustomizer.Form3.resources │ ├── LogonShellCustomizer.Form4.resources │ ├── LogonShellCustomizer.Form5.resources │ ├── LogonShellCustomizer.MainWindow.resources │ ├── LogonShellCustomizer.Properties.Resources.resources │ ├── LogonShellCustomizer.csproj.AssemblyReference.cache │ ├── LogonShellCustomizer.csproj.CoreCompileInputs.cache │ ├── LogonShellCustomizer.csproj.FileListAbsolute.txt │ ├── LogonShellCustomizer.csproj.GenerateResource.cache │ └── LogonShellCustomizer.csproj.SuggestedBindingRedirects.cache ├── Resources ├── CLS.png ├── CLS.psd ├── XP │ ├── DividerBottom.bmp │ ├── DividerTop.bmp │ ├── DividerXPLogoAndLoginScreen.bmp │ ├── GoIcon.bmp │ ├── GoIconSelected.bmp │ ├── InputArea.bmp │ ├── PFP.bmp │ ├── SelectedUserBackground.bmp │ ├── Shade.bmp │ ├── Shutdown.bmp │ ├── UserHoverOrSelected.bmp │ ├── UserHoverOrSelected.png │ ├── UserNotHoverOrSelected.bmp │ └── XPLogo.bmp ├── logon.ico ├── logon_128.png ├── logon_16.png ├── logon_256.png ├── logon_32.png ├── logon_512.png └── logon_64.png ├── kj.ico └── packages ├── FlaUI.Core.4.0.0 ├── .signature.p7s ├── CHANGELOG.md ├── FlaUI.Core.4.0.0.nupkg ├── FlaUI.png ├── LICENSE.txt └── lib │ ├── net48 │ ├── FlaUI.Core.dll │ └── FlaUI.Core.xml │ ├── net5.0-windows7.0 │ ├── FlaUI.Core.dll │ └── FlaUI.Core.xml │ ├── net6.0-windows7.0 │ ├── FlaUI.Core.dll │ └── FlaUI.Core.xml │ ├── netcoreapp3.1 │ ├── FlaUI.Core.dll │ └── FlaUI.Core.xml │ └── netstandard2.0 │ ├── FlaUI.Core.dll │ └── FlaUI.Core.xml ├── FlaUI.UIA3.4.0.0 ├── .signature.p7s ├── CHANGELOG.md ├── FlaUI.UIA3.4.0.0.nupkg ├── FlaUI.png ├── LICENSE.txt └── lib │ ├── net48 │ ├── FlaUI.UIA3.dll │ └── FlaUI.UIA3.xml │ ├── net5.0-windows7.0 │ ├── FlaUI.UIA3.dll │ └── FlaUI.UIA3.xml │ ├── net6.0-windows7.0 │ ├── FlaUI.UIA3.dll │ └── FlaUI.UIA3.xml │ ├── netcoreapp3.1 │ ├── FlaUI.UIA3.dll │ └── FlaUI.UIA3.xml │ └── netstandard2.0 │ ├── FlaUI.UIA3.dll │ └── FlaUI.UIA3.xml ├── Interop.UIAutomationClient.10.19041.0 ├── .signature.p7s ├── Interop.UIAutomationClient.10.19041.0.nupkg ├── LICENSE.txt ├── build │ └── Interop.UIAutomationClient.targets ├── lib │ ├── net35 │ │ └── Interop.UIAutomationClient.dll │ ├── net40 │ │ └── Interop.UIAutomationClient.dll │ ├── net45 │ │ └── Interop.UIAutomationClient.dll │ ├── netcoreapp3.0 │ │ └── Interop.UIAutomationClient.dll │ └── netstandard2.0 │ │ └── Interop.UIAutomationClient.dll └── tools │ └── install.ps1 ├── System.CodeDom.7.0.0-rc.2.22472.3 ├── .signature.p7s ├── Icon.png ├── LICENSE.TXT ├── System.CodeDom.7.0.0-rc.2.22472.3.nupkg ├── THIRD-PARTY-NOTICES.TXT ├── buildTransitive │ ├── net461 │ │ └── System.CodeDom.targets │ ├── net462 │ │ └── _._ │ ├── net6.0 │ │ └── _._ │ └── netcoreapp2.0 │ │ └── System.CodeDom.targets ├── lib │ ├── net462 │ │ ├── System.CodeDom.dll │ │ └── System.CodeDom.xml │ ├── net6.0 │ │ ├── System.CodeDom.dll │ │ └── System.CodeDom.xml │ ├── net7.0 │ │ ├── System.CodeDom.dll │ │ └── System.CodeDom.xml │ └── netstandard2.0 │ │ ├── System.CodeDom.dll │ │ └── System.CodeDom.xml └── useSharedDesignerContext.txt └── System.Management.7.0.0-rc.2.22472.3 ├── .signature.p7s ├── Icon.png ├── LICENSE.TXT ├── System.Management.7.0.0-rc.2.22472.3.nupkg ├── THIRD-PARTY-NOTICES.TXT ├── buildTransitive ├── net6.0 │ └── _._ └── netcoreapp2.0 │ └── System.Management.targets ├── lib ├── net462 │ └── _._ ├── net6.0 │ ├── System.Management.dll │ └── System.Management.xml ├── net7.0 │ ├── System.Management.dll │ └── System.Management.xml └── netstandard2.0 │ ├── System.Management.dll │ └── System.Management.xml ├── runtimes └── win │ └── lib │ ├── net6.0 │ ├── System.Management.dll │ └── System.Management.xml │ └── net7.0 │ ├── System.Management.dll │ └── System.Management.xml └── useSharedDesignerContext.txt /.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheFailureOne/CLS2ForkXP/9df86e146eb35fcb5f4b841c97be29029c4d14f6/.DS_Store -------------------------------------------------------------------------------- /.vs/LogonShell/FileContentIndex/18f48d7a-0eb9-4104-8e0a-efacc679ec7b.vsidx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheFailureOne/CLS2ForkXP/9df86e146eb35fcb5f4b841c97be29029c4d14f6/.vs/LogonShell/FileContentIndex/18f48d7a-0eb9-4104-8e0a-efacc679ec7b.vsidx -------------------------------------------------------------------------------- /.vs/LogonShell/FileContentIndex/27db1cc3-87ea-4004-a63c-cd66e9137b3f.vsidx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheFailureOne/CLS2ForkXP/9df86e146eb35fcb5f4b841c97be29029c4d14f6/.vs/LogonShell/FileContentIndex/27db1cc3-87ea-4004-a63c-cd66e9137b3f.vsidx -------------------------------------------------------------------------------- /.vs/LogonShell/FileContentIndex/4715e4ef-b7a1-4c41-9c3a-485ced863765.vsidx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheFailureOne/CLS2ForkXP/9df86e146eb35fcb5f4b841c97be29029c4d14f6/.vs/LogonShell/FileContentIndex/4715e4ef-b7a1-4c41-9c3a-485ced863765.vsidx -------------------------------------------------------------------------------- /.vs/LogonShell/FileContentIndex/efb50af2-2d10-47cf-b89b-73b444f6fb99.vsidx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheFailureOne/CLS2ForkXP/9df86e146eb35fcb5f4b841c97be29029c4d14f6/.vs/LogonShell/FileContentIndex/efb50af2-2d10-47cf-b89b-73b444f6fb99.vsidx -------------------------------------------------------------------------------- /.vs/LogonShell/FileContentIndex/read.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheFailureOne/CLS2ForkXP/9df86e146eb35fcb5f4b841c97be29029c4d14f6/.vs/LogonShell/FileContentIndex/read.lock -------------------------------------------------------------------------------- /.vs/LogonShell/v16/.suo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheFailureOne/CLS2ForkXP/9df86e146eb35fcb5f4b841c97be29029c4d14f6/.vs/LogonShell/v16/.suo -------------------------------------------------------------------------------- /.vs/LogonShell/v17/.futdcache.v1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheFailureOne/CLS2ForkXP/9df86e146eb35fcb5f4b841c97be29029c4d14f6/.vs/LogonShell/v17/.futdcache.v1 -------------------------------------------------------------------------------- /.vs/LogonShell/v17/.suo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheFailureOne/CLS2ForkXP/9df86e146eb35fcb5f4b841c97be29029c4d14f6/.vs/LogonShell/v17/.suo -------------------------------------------------------------------------------- /.vs/ProjectEvaluation/logonshell.metadata.v2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheFailureOne/CLS2ForkXP/9df86e146eb35fcb5f4b841c97be29029c4d14f6/.vs/ProjectEvaluation/logonshell.metadata.v2 -------------------------------------------------------------------------------- /.vs/ProjectEvaluation/logonshell.projects.v2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheFailureOne/CLS2ForkXP/9df86e146eb35fcb5f4b841c97be29029c4d14f6/.vs/ProjectEvaluation/logonshell.projects.v2 -------------------------------------------------------------------------------- /Classic Logon Shell/Classic Logon Shell.aip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheFailureOne/CLS2ForkXP/9df86e146eb35fcb5f4b841c97be29029c4d14f6/Classic Logon Shell/Classic Logon Shell.aip -------------------------------------------------------------------------------- /Classic Logon Shell/Classic Logon Shell.aiproj: -------------------------------------------------------------------------------- 1 |  2 | 3 | All 4 | 2.0 5 | 11c64c4f-631d-4ede-9ff1-aeb4a862c43e 6 | msi 7 | . 8 | Classic Logon Shell.aip 9 | 10 | 11 | . 12 | True 13 | Classic Logon Shell 14 | Classic Logon Shell 15 | Classic Logon Shell 16 | True 17 | 18 | 19 | false 20 | true 21 | 22 | 23 | 24 | Code 25 | 26 | 27 | 28 | 29 | 30 | 31 | 32 | 33 | 34 | 35 | 36 | 37 | 38 | 39 | -------------------------------------------------------------------------------- /Logon Screen Launcher/LauncherService.Designer.cs: -------------------------------------------------------------------------------- 1 | namespace ClassicLogonShell 2 | { 3 | partial class LauncherService 4 | { 5 | /// 6 | /// Required designer variable. 7 | /// 8 | private System.ComponentModel.IContainer components = null; 9 | 10 | /// 11 | /// Clean up any resources being used. 12 | /// 13 | /// true if managed resources should be disposed; otherwise, false. 14 | protected override void Dispose(bool disposing) 15 | { 16 | if (disposing && (components != null)) 17 | { 18 | components.Dispose(); 19 | } 20 | base.Dispose(disposing); 21 | } 22 | 23 | #region Component Designer generated code 24 | 25 | /// 26 | /// Required method for Designer support - do not modify 27 | /// the contents of this method with the code editor. 28 | /// 29 | private void InitializeComponent() 30 | { 31 | components = new System.ComponentModel.Container(); 32 | this.ServiceName = "Logon Screen Launcher"; 33 | } 34 | 35 | #endregion 36 | } 37 | } 38 | -------------------------------------------------------------------------------- /Logon Screen Launcher/LauncherService.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using System.Diagnostics; 3 | using System.IO; 4 | using System.Linq; 5 | using System.Management; 6 | using System.Security.Cryptography.X509Certificates; 7 | using System.ServiceProcess; 8 | using System.Threading; 9 | 10 | namespace ClassicLogonShell 11 | { 12 | public partial class LauncherService : ServiceBase 13 | { 14 | public bool shouldStart; 15 | public LauncherService() 16 | { 17 | Environment.CurrentDirectory = AppDomain.CurrentDomain.BaseDirectory; 18 | CanHandleSessionChangeEvent = true; 19 | CanHandlePowerEvent = true; 20 | } 21 | 22 | public static void startProcess(string arg = null, string user = @"WinSta0\Winlogon") 23 | { 24 | var ip = new InjectProcess(); 25 | ip.Inject(user, Environment.CurrentDirectory + @"\LogonShell.exe", arg); 26 | } 27 | 28 | public static void stopProcess() 29 | { 30 | var ip = new InjectProcess(); 31 | ip.TerminateSystemProcess(Environment.CurrentDirectory + "\\LogonShell.exe"); 32 | } 33 | 34 | protected override void OnStart(string[] args) 35 | { 36 | startProcess("-startup"); 37 | } 38 | 39 | protected override void OnSessionChange(SessionChangeDescription changeDescription) 40 | { 41 | if (changeDescription.Reason == SessionChangeReason.SessionLock) 42 | startProcess(); 43 | 44 | if (changeDescription.Reason == SessionChangeReason.SessionLogoff) 45 | { 46 | if (File.Exists(Environment.CurrentDirectory + "\\shutdown")) 47 | { 48 | startProcess("-shutdown"); 49 | File.Delete(Environment.CurrentDirectory + "\\shutdown"); 50 | } 51 | else 52 | shouldStart = true; 53 | } 54 | 55 | if (changeDescription.Reason == SessionChangeReason.SessionLogon) 56 | { 57 | Process p = Process.GetProcessesByName("LogonUI").FirstOrDefault(); 58 | do 59 | { 60 | p = Process.GetProcessesByName("LogonUI").FirstOrDefault(); 61 | Thread.Sleep(100); 62 | } while (p != null); 63 | startProcess("-tray", "winsta0\\default"); 64 | shouldStart = false; 65 | } 66 | 67 | if (changeDescription.Reason == SessionChangeReason.ConsoleConnect && shouldStart) 68 | { 69 | startProcess(); 70 | } 71 | 72 | } 73 | 74 | protected override bool OnPowerEvent(PowerBroadcastStatus powerStatus) 75 | { 76 | if (powerStatus.HasFlag(PowerBroadcastStatus.ResumeSuspend)) 77 | { 78 | stopProcess(); 79 | ManagementObjectSearcher searcher = new ManagementObjectSearcher("SELECT UserName FROM Win32_ComputerSystem"); 80 | ManagementObjectCollection collection = searcher.Get(); 81 | string username = (string)collection.Cast().First()["UserName"]; 82 | if (username == null) 83 | startProcess("-startup"); 84 | else 85 | startProcess(); 86 | } 87 | 88 | return base.OnPowerEvent(powerStatus); 89 | } 90 | } 91 | } 92 | -------------------------------------------------------------------------------- /Logon Screen Launcher/Program.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using System.Collections.Generic; 3 | using System.ServiceProcess; 4 | using System.Text; 5 | using System.Diagnostics; 6 | 7 | namespace ClassicLogonShell 8 | { 9 | static class Program 10 | { 11 | /// 12 | /// The main entry point for the application. 13 | /// 14 | static void Main() 15 | { 16 | ServiceBase[] ServicesToRun; 17 | ServicesToRun = new ServiceBase[] 18 | { 19 | new LauncherService() 20 | }; 21 | ServiceBase.Run(ServicesToRun); 22 | } 23 | } 24 | } 25 | -------------------------------------------------------------------------------- /Logon Screen Launcher/ProjectInstaller.Designer.cs: -------------------------------------------------------------------------------- 1 | namespace ClassicLogonShell 2 | { 3 | partial class ProjectInstaller 4 | { 5 | /// 6 | /// Required designer variable. 7 | /// 8 | private System.ComponentModel.IContainer components = null; 9 | 10 | /// 11 | /// Clean up any resources being used. 12 | /// 13 | /// true if managed resources should be disposed; otherwise, false. 14 | protected override void Dispose(bool disposing) 15 | { 16 | if (disposing && (components != null)) 17 | { 18 | components.Dispose(); 19 | } 20 | base.Dispose(disposing); 21 | } 22 | 23 | #region Component Designer generated code 24 | 25 | /// 26 | /// Required method for Designer support - do not modify 27 | /// the contents of this method with the code editor. 28 | /// 29 | private void InitializeComponent() 30 | { 31 | this.serviceProcessInstaller1 = new System.ServiceProcess.ServiceProcessInstaller(); 32 | this.serviceInstaller1 = new System.ServiceProcess.ServiceInstaller(); 33 | // 34 | // serviceProcessInstaller1 35 | // 36 | this.serviceProcessInstaller1.Account = System.ServiceProcess.ServiceAccount.LocalSystem; 37 | this.serviceProcessInstaller1.Password = null; 38 | this.serviceProcessInstaller1.Username = null; 39 | // 40 | // serviceInstaller1 41 | // 42 | this.serviceInstaller1.ServiceName = "Classic Logon Shell"; 43 | this.serviceInstaller1.StartType = System.ServiceProcess.ServiceStartMode.Automatic; 44 | // 45 | // ProjectInstaller 46 | // 47 | this.Installers.AddRange(new System.Configuration.Install.Installer[] { 48 | this.serviceProcessInstaller1, 49 | this.serviceInstaller1}); 50 | 51 | } 52 | 53 | #endregion 54 | 55 | private System.ServiceProcess.ServiceProcessInstaller serviceProcessInstaller1; 56 | private System.ServiceProcess.ServiceInstaller serviceInstaller1; 57 | } 58 | } -------------------------------------------------------------------------------- /Logon Screen Launcher/ProjectInstaller.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using System.Collections; 3 | using System.Collections.Generic; 4 | using System.ComponentModel; 5 | using System.Configuration.Install; 6 | 7 | namespace ClassicLogonShell 8 | { 9 | [RunInstaller(true)] 10 | public partial class ProjectInstaller : Installer 11 | { 12 | public ProjectInstaller() 13 | { 14 | } 15 | } 16 | } 17 | -------------------------------------------------------------------------------- /Logon Screen Launcher/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- 1 | using System.Reflection; 2 | using System.Runtime.CompilerServices; 3 | using System.Runtime.InteropServices; 4 | 5 | // General Information about an assembly is controlled through the following 6 | // set of attributes. Change these attribute values to modify the information 7 | // associated with an assembly. 8 | [assembly: AssemblyTitle("ClassicLogonShell Launcher Service")] 9 | [assembly: AssemblyDescription("Launches Classic Logon Shell only at appropriate times.")] 10 | [assembly: AssemblyConfiguration("")] 11 | [assembly: AssemblyCompany("")] 12 | [assembly: AssemblyProduct("ClassicLogonShell")] 13 | [assembly: AssemblyCopyright("")] 14 | [assembly: AssemblyTrademark("")] 15 | [assembly: AssemblyCulture("")] 16 | 17 | // Setting ComVisible to false makes the types in this assembly not visible 18 | // to COM components. If you need to access a type in this assembly from 19 | // COM, set the ComVisible attribute to true on that type. 20 | [assembly: ComVisible(false)] 21 | 22 | // The following GUID is for the ID of the typelib if this project is exposed to COM 23 | [assembly: Guid("7866bb67-4f4b-4b6c-94d5-40c1ef881abd")] 24 | 25 | // Version information for an assembly consists of the following four values: 26 | // 27 | // Major Version 28 | // Minor Version 29 | // Build Number 30 | // Revision 31 | // 32 | // You can specify all the values or you can default the Build and Revision Numbers 33 | // by using the '*' as shown below: 34 | // [assembly: AssemblyVersion("1.0.*")] 35 | [assembly: AssemblyVersion("2.1.*")] 36 | -------------------------------------------------------------------------------- /Logon Screen Launcher/bin/x64/Release/Interop.EventSystemLib.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheFailureOne/CLS2ForkXP/9df86e146eb35fcb5f4b841c97be29029c4d14f6/Logon Screen Launcher/bin/x64/Release/Interop.EventSystemLib.dll -------------------------------------------------------------------------------- /Logon Screen Launcher/bin/x64/Release/LauncherService.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheFailureOne/CLS2ForkXP/9df86e146eb35fcb5f4b841c97be29029c4d14f6/Logon Screen Launcher/bin/x64/Release/LauncherService.exe -------------------------------------------------------------------------------- /Logon Screen Launcher/obj/Debug/.NETFramework,Version=v4.8.AssemblyAttributes.cs: -------------------------------------------------------------------------------- 1 | // 2 | using System; 3 | using System.Reflection; 4 | [assembly: global::System.Runtime.Versioning.TargetFrameworkAttribute(".NETFramework,Version=v4.8", FrameworkDisplayName = ".NET Framework 4.8")] 5 | -------------------------------------------------------------------------------- /Logon Screen Launcher/obj/Debug/ClassicLogonShell.ProjectInstaller.resources: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheFailureOne/CLS2ForkXP/9df86e146eb35fcb5f4b841c97be29029c4d14f6/Logon Screen Launcher/obj/Debug/ClassicLogonShell.ProjectInstaller.resources -------------------------------------------------------------------------------- /Logon Screen Launcher/obj/Debug/DesignTimeResolveAssemblyReferences.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheFailureOne/CLS2ForkXP/9df86e146eb35fcb5f4b841c97be29029c4d14f6/Logon Screen Launcher/obj/Debug/DesignTimeResolveAssemblyReferences.cache -------------------------------------------------------------------------------- /Logon Screen Launcher/obj/Debug/DesignTimeResolveAssemblyReferencesInput.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheFailureOne/CLS2ForkXP/9df86e146eb35fcb5f4b841c97be29029c4d14f6/Logon Screen Launcher/obj/Debug/DesignTimeResolveAssemblyReferencesInput.cache -------------------------------------------------------------------------------- /Logon Screen Launcher/obj/Debug/Ellanet.ProjectInstaller.resources: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheFailureOne/CLS2ForkXP/9df86e146eb35fcb5f4b841c97be29029c4d14f6/Logon Screen Launcher/obj/Debug/Ellanet.ProjectInstaller.resources -------------------------------------------------------------------------------- /Logon Screen Launcher/obj/Debug/Interop.EventSystemLib.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheFailureOne/CLS2ForkXP/9df86e146eb35fcb5f4b841c97be29029c4d14f6/Logon Screen Launcher/obj/Debug/Interop.EventSystemLib.dll -------------------------------------------------------------------------------- /Logon Screen Launcher/obj/Debug/Interop.SensEvents.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheFailureOne/CLS2ForkXP/9df86e146eb35fcb5f4b841c97be29029c4d14f6/Logon Screen Launcher/obj/Debug/Interop.SensEvents.dll -------------------------------------------------------------------------------- /Logon Screen Launcher/obj/Debug/Logon Screen Launcher.csproj.AssemblyReference.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheFailureOne/CLS2ForkXP/9df86e146eb35fcb5f4b841c97be29029c4d14f6/Logon Screen Launcher/obj/Debug/Logon Screen Launcher.csproj.AssemblyReference.cache -------------------------------------------------------------------------------- /Logon Screen Launcher/obj/Debug/Logon Screen Launcher.csproj.CopyComplete: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheFailureOne/CLS2ForkXP/9df86e146eb35fcb5f4b841c97be29029c4d14f6/Logon Screen Launcher/obj/Debug/Logon Screen Launcher.csproj.CopyComplete -------------------------------------------------------------------------------- /Logon Screen Launcher/obj/Debug/Logon Screen Launcher.csproj.CoreCompileInputs.cache: -------------------------------------------------------------------------------- 1 | 11a51db85fd2679267ad38679b9ceaf4550a03a3 2 | -------------------------------------------------------------------------------- /Logon Screen Launcher/obj/Debug/Logon Screen Launcher.csproj.GenerateResource.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheFailureOne/CLS2ForkXP/9df86e146eb35fcb5f4b841c97be29029c4d14f6/Logon Screen Launcher/obj/Debug/Logon Screen Launcher.csproj.GenerateResource.cache -------------------------------------------------------------------------------- /Logon Screen Launcher/obj/Debug/Logon Screen Launcher.csproj.ResolveComReference.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheFailureOne/CLS2ForkXP/9df86e146eb35fcb5f4b841c97be29029c4d14f6/Logon Screen Launcher/obj/Debug/Logon Screen Launcher.csproj.ResolveComReference.cache -------------------------------------------------------------------------------- /Logon Screen Launcher/obj/Debug/Logon Screen Launcher.csprojAssemblyReference.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheFailureOne/CLS2ForkXP/9df86e146eb35fcb5f4b841c97be29029c4d14f6/Logon Screen Launcher/obj/Debug/Logon Screen Launcher.csprojAssemblyReference.cache -------------------------------------------------------------------------------- /Logon Screen Launcher/obj/Debug/LogonScreenLauncher.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheFailureOne/CLS2ForkXP/9df86e146eb35fcb5f4b841c97be29029c4d14f6/Logon Screen Launcher/obj/Debug/LogonScreenLauncher.exe -------------------------------------------------------------------------------- /Logon Screen Launcher/obj/Debug/LogonScreenLauncher.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheFailureOne/CLS2ForkXP/9df86e146eb35fcb5f4b841c97be29029c4d14f6/Logon Screen Launcher/obj/Debug/LogonScreenLauncher.pdb -------------------------------------------------------------------------------- /Logon Screen Launcher/obj/Debug/ResolveAssemblyReference.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheFailureOne/CLS2ForkXP/9df86e146eb35fcb5f4b841c97be29029c4d14f6/Logon Screen Launcher/obj/Debug/ResolveAssemblyReference.cache -------------------------------------------------------------------------------- /Logon Screen Launcher/obj/Debug/Windows Logon Screen Launcher.csproj.FileListAbsolute.txt: -------------------------------------------------------------------------------- 1 | C:\Users\v315933\Desktop\Windows Logon Screen Launcher\Windows Logon Screen Launcher\obj\Debug\ResolveAssemblyReference.cache 2 | C:\Users\v315933\Desktop\Windows Logon Screen Launcher\Windows Logon Screen Launcher\obj\Debug\Interop.EventSystemLib.dll 3 | C:\Users\v315933\Desktop\Windows Logon Screen Launcher\Windows Logon Screen Launcher\obj\Debug\Interop.SensEvents.dll 4 | C:\Users\v315933\Desktop\Windows Logon Screen Launcher\Windows Logon Screen Launcher\obj\Debug\Windows Logon Screen Launcher.csproj.ResolveComReference.cache 5 | C:\Users\v315933\Desktop\Windows Logon Screen Launcher\Windows Logon Screen Launcher\bin\Debug\Windows Logon Screen Launcher.exe 6 | C:\Users\v315933\Desktop\Windows Logon Screen Launcher\Windows Logon Screen Launcher\bin\Debug\Windows Logon Screen Launcher.pdb 7 | C:\Users\v315933\Desktop\Windows Logon Screen Launcher\Windows Logon Screen Launcher\bin\Debug\ManagedSENS.dll 8 | C:\Users\v315933\Desktop\Windows Logon Screen Launcher\Windows Logon Screen Launcher\bin\Debug\Interop.EventSystemLib.dll 9 | C:\Users\v315933\Desktop\Windows Logon Screen Launcher\Windows Logon Screen Launcher\bin\Debug\Interop.SensEvents.dll 10 | C:\Users\v315933\Desktop\Windows Logon Screen Launcher\Windows Logon Screen Launcher\bin\Debug\ManagedSENS.pdb 11 | C:\Users\v315933\Desktop\Windows Logon Screen Launcher\Windows Logon Screen Launcher\obj\Debug\Windows Logon Screen Launcher.exe 12 | C:\Users\v315933\Desktop\Windows Logon Screen Launcher\Windows Logon Screen Launcher\obj\Debug\Windows Logon Screen Launcher.pdb 13 | C:\Users\v315933\Desktop\Windows Logon Screen Launcher\Windows Logon Screen Launcher\obj\Debug\Windows Logon Screen Launcher.csproj.GenerateResource.Cache 14 | C:\Users\v315933\Desktop\Windows Logon Screen Launcher\Windows Logon Screen Launcher\obj\Debug\Ellanet.ProjectInstaller.resources 15 | C:\Users\v315933\Desktop\Windows Logon Screen Launcher\Windows Logon Screen Launcher\bin\Debug\InjectProcess.dll 16 | -------------------------------------------------------------------------------- /Logon Screen Launcher/obj/Debug/Windows Logon Screen Launcher.csproj.GenerateResource.Cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheFailureOne/CLS2ForkXP/9df86e146eb35fcb5f4b841c97be29029c4d14f6/Logon Screen Launcher/obj/Debug/Windows Logon Screen Launcher.csproj.GenerateResource.Cache -------------------------------------------------------------------------------- /Logon Screen Launcher/obj/Debug/Windows Logon Screen Launcher.csproj.ResolveComReference.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheFailureOne/CLS2ForkXP/9df86e146eb35fcb5f4b841c97be29029c4d14f6/Logon Screen Launcher/obj/Debug/Windows Logon Screen Launcher.csproj.ResolveComReference.cache -------------------------------------------------------------------------------- /Logon Screen Launcher/obj/Debug/Windows Logon Screen Launcher.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheFailureOne/CLS2ForkXP/9df86e146eb35fcb5f4b841c97be29029c4d14f6/Logon Screen Launcher/obj/Debug/Windows Logon Screen Launcher.exe -------------------------------------------------------------------------------- /Logon Screen Launcher/obj/Debug/Windows Logon Screen Launcher.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheFailureOne/CLS2ForkXP/9df86e146eb35fcb5f4b841c97be29029c4d14f6/Logon Screen Launcher/obj/Debug/Windows Logon Screen Launcher.pdb -------------------------------------------------------------------------------- /Logon Screen Launcher/obj/Debug/_IsIncrementalBuild: -------------------------------------------------------------------------------- 1 | obj\Debug\\_IsIncrementalBuild 2 | -------------------------------------------------------------------------------- /Logon Screen Launcher/obj/Release/.NETFramework,Version=v4.8.AssemblyAttributes.cs: -------------------------------------------------------------------------------- 1 | // 2 | using System; 3 | using System.Reflection; 4 | [assembly: global::System.Runtime.Versioning.TargetFrameworkAttribute(".NETFramework,Version=v4.8", FrameworkDisplayName = ".NET Framework 4.8")] 5 | -------------------------------------------------------------------------------- /Logon Screen Launcher/obj/Release/DesignTimeResolveAssemblyReferencesInput.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheFailureOne/CLS2ForkXP/9df86e146eb35fcb5f4b841c97be29029c4d14f6/Logon Screen Launcher/obj/Release/DesignTimeResolveAssemblyReferencesInput.cache -------------------------------------------------------------------------------- /Logon Screen Launcher/obj/Release/Ellanet.ProjectInstaller.resources: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheFailureOne/CLS2ForkXP/9df86e146eb35fcb5f4b841c97be29029c4d14f6/Logon Screen Launcher/obj/Release/Ellanet.ProjectInstaller.resources -------------------------------------------------------------------------------- /Logon Screen Launcher/obj/Release/Interop.EventSystemLib.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheFailureOne/CLS2ForkXP/9df86e146eb35fcb5f4b841c97be29029c4d14f6/Logon Screen Launcher/obj/Release/Interop.EventSystemLib.dll -------------------------------------------------------------------------------- /Logon Screen Launcher/obj/Release/Interop.SensEvents.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheFailureOne/CLS2ForkXP/9df86e146eb35fcb5f4b841c97be29029c4d14f6/Logon Screen Launcher/obj/Release/Interop.SensEvents.dll -------------------------------------------------------------------------------- /Logon Screen Launcher/obj/Release/Logon Screen Launcher.csproj.AssemblyReference.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheFailureOne/CLS2ForkXP/9df86e146eb35fcb5f4b841c97be29029c4d14f6/Logon Screen Launcher/obj/Release/Logon Screen Launcher.csproj.AssemblyReference.cache -------------------------------------------------------------------------------- /Logon Screen Launcher/obj/Release/Logon Screen Launcher.csproj.CopyComplete: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheFailureOne/CLS2ForkXP/9df86e146eb35fcb5f4b841c97be29029c4d14f6/Logon Screen Launcher/obj/Release/Logon Screen Launcher.csproj.CopyComplete -------------------------------------------------------------------------------- /Logon Screen Launcher/obj/Release/Logon Screen Launcher.csproj.CoreCompileInputs.cache: -------------------------------------------------------------------------------- 1 | 9e31b05cc9da35b0771b9b742c6785b1f4eb1bf4 2 | -------------------------------------------------------------------------------- /Logon Screen Launcher/obj/Release/Logon Screen Launcher.csproj.GenerateResource.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheFailureOne/CLS2ForkXP/9df86e146eb35fcb5f4b841c97be29029c4d14f6/Logon Screen Launcher/obj/Release/Logon Screen Launcher.csproj.GenerateResource.cache -------------------------------------------------------------------------------- /Logon Screen Launcher/obj/Release/Logon Screen Launcher.csproj.ResolveComReference.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheFailureOne/CLS2ForkXP/9df86e146eb35fcb5f4b841c97be29029c4d14f6/Logon Screen Launcher/obj/Release/Logon Screen Launcher.csproj.ResolveComReference.cache -------------------------------------------------------------------------------- /Logon Screen Launcher/obj/Release/Logon Screen Launcher.csprojAssemblyReference.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheFailureOne/CLS2ForkXP/9df86e146eb35fcb5f4b841c97be29029c4d14f6/Logon Screen Launcher/obj/Release/Logon Screen Launcher.csprojAssemblyReference.cache -------------------------------------------------------------------------------- /Logon Screen Launcher/obj/Release/LogonScreenLauncher.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheFailureOne/CLS2ForkXP/9df86e146eb35fcb5f4b841c97be29029c4d14f6/Logon Screen Launcher/obj/Release/LogonScreenLauncher.exe -------------------------------------------------------------------------------- /Logon Screen Launcher/obj/Release/LogonScreenLauncher.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheFailureOne/CLS2ForkXP/9df86e146eb35fcb5f4b841c97be29029c4d14f6/Logon Screen Launcher/obj/Release/LogonScreenLauncher.pdb -------------------------------------------------------------------------------- /Logon Screen Launcher/obj/Release/build.force: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheFailureOne/CLS2ForkXP/9df86e146eb35fcb5f4b841c97be29029c4d14f6/Logon Screen Launcher/obj/Release/build.force -------------------------------------------------------------------------------- /Logon Screen Launcher/obj/x64/Debug/.NETFramework,Version=v4.8.AssemblyAttributes.cs: -------------------------------------------------------------------------------- 1 | // 2 | using System; 3 | using System.Reflection; 4 | [assembly: global::System.Runtime.Versioning.TargetFrameworkAttribute(".NETFramework,Version=v4.8", FrameworkDisplayName = ".NET Framework 4.8")] 5 | -------------------------------------------------------------------------------- /Logon Screen Launcher/obj/x64/Debug/Interop.EventSystemLib.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheFailureOne/CLS2ForkXP/9df86e146eb35fcb5f4b841c97be29029c4d14f6/Logon Screen Launcher/obj/x64/Debug/Interop.EventSystemLib.dll -------------------------------------------------------------------------------- /Logon Screen Launcher/obj/x64/Debug/Logon Screen Launcher.csproj.AssemblyReference.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheFailureOne/CLS2ForkXP/9df86e146eb35fcb5f4b841c97be29029c4d14f6/Logon Screen Launcher/obj/x64/Debug/Logon Screen Launcher.csproj.AssemblyReference.cache -------------------------------------------------------------------------------- /Logon Screen Launcher/obj/x64/Debug/Logon Screen Launcher.csproj.ResolveComReference.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheFailureOne/CLS2ForkXP/9df86e146eb35fcb5f4b841c97be29029c4d14f6/Logon Screen Launcher/obj/x64/Debug/Logon Screen Launcher.csproj.ResolveComReference.cache -------------------------------------------------------------------------------- /Logon Screen Launcher/obj/x64/Debug/build.force: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheFailureOne/CLS2ForkXP/9df86e146eb35fcb5f4b841c97be29029c4d14f6/Logon Screen Launcher/obj/x64/Debug/build.force -------------------------------------------------------------------------------- /Logon Screen Launcher/obj/x64/Release/.NETFramework,Version=v4.8.AssemblyAttributes.cs: -------------------------------------------------------------------------------- 1 | // 2 | using System; 3 | using System.Reflection; 4 | [assembly: global::System.Runtime.Versioning.TargetFrameworkAttribute(".NETFramework,Version=v4.8", FrameworkDisplayName = ".NET Framework 4.8")] 5 | -------------------------------------------------------------------------------- /Logon Screen Launcher/obj/x64/Release/ClassicLogonShell.ProjectInstaller.resources: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheFailureOne/CLS2ForkXP/9df86e146eb35fcb5f4b841c97be29029c4d14f6/Logon Screen Launcher/obj/x64/Release/ClassicLogonShell.ProjectInstaller.resources -------------------------------------------------------------------------------- /Logon Screen Launcher/obj/x64/Release/DesignTimeResolveAssemblyReferences.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheFailureOne/CLS2ForkXP/9df86e146eb35fcb5f4b841c97be29029c4d14f6/Logon Screen Launcher/obj/x64/Release/DesignTimeResolveAssemblyReferences.cache -------------------------------------------------------------------------------- /Logon Screen Launcher/obj/x64/Release/DesignTimeResolveAssemblyReferencesInput.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheFailureOne/CLS2ForkXP/9df86e146eb35fcb5f4b841c97be29029c4d14f6/Logon Screen Launcher/obj/x64/Release/DesignTimeResolveAssemblyReferencesInput.cache -------------------------------------------------------------------------------- /Logon Screen Launcher/obj/x64/Release/Interop.EventSystemLib.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheFailureOne/CLS2ForkXP/9df86e146eb35fcb5f4b841c97be29029c4d14f6/Logon Screen Launcher/obj/x64/Release/Interop.EventSystemLib.dll -------------------------------------------------------------------------------- /Logon Screen Launcher/obj/x64/Release/Interop.SensEvents.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheFailureOne/CLS2ForkXP/9df86e146eb35fcb5f4b841c97be29029c4d14f6/Logon Screen Launcher/obj/x64/Release/Interop.SensEvents.dll -------------------------------------------------------------------------------- /Logon Screen Launcher/obj/x64/Release/LauncherService.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheFailureOne/CLS2ForkXP/9df86e146eb35fcb5f4b841c97be29029c4d14f6/Logon Screen Launcher/obj/x64/Release/LauncherService.exe -------------------------------------------------------------------------------- /Logon Screen Launcher/obj/x64/Release/Logon Screen Launcher.csproj.AssemblyReference.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheFailureOne/CLS2ForkXP/9df86e146eb35fcb5f4b841c97be29029c4d14f6/Logon Screen Launcher/obj/x64/Release/Logon Screen Launcher.csproj.AssemblyReference.cache -------------------------------------------------------------------------------- /Logon Screen Launcher/obj/x64/Release/Logon Screen Launcher.csproj.CoreCompileInputs.cache: -------------------------------------------------------------------------------- 1 | 3a229f665932c4979c8b3157058f66be4bba7952 2 | -------------------------------------------------------------------------------- /Logon Screen Launcher/obj/x64/Release/Logon Screen Launcher.csproj.GenerateResource.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheFailureOne/CLS2ForkXP/9df86e146eb35fcb5f4b841c97be29029c4d14f6/Logon Screen Launcher/obj/x64/Release/Logon Screen Launcher.csproj.GenerateResource.cache -------------------------------------------------------------------------------- /Logon Screen Launcher/obj/x64/Release/Logon Screen Launcher.csproj.ResolveComReference.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheFailureOne/CLS2ForkXP/9df86e146eb35fcb5f4b841c97be29029c4d14f6/Logon Screen Launcher/obj/x64/Release/Logon Screen Launcher.csproj.ResolveComReference.cache -------------------------------------------------------------------------------- /Logon Screen Launcher/obj/x64/Release/_IsIncrementalBuild: -------------------------------------------------------------------------------- 1 | obj\x64\Release\\_IsIncrementalBuild 2 | -------------------------------------------------------------------------------- /LogonShell.sln: -------------------------------------------------------------------------------- 1 |  2 | Microsoft Visual Studio Solution File, Format Version 12.00 3 | # Visual Studio Version 17 4 | VisualStudioVersion = 17.3.32611.2 5 | MinimumVisualStudioVersion = 10.0.40219.1 6 | Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "LogonShell", "LogonShell\LogonShell.csproj", "{00CE4CAA-1F57-4339-9BE2-CD482C187667}" 7 | EndProject 8 | Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Logon Screen Launcher", "Logon Screen Launcher\Logon Screen Launcher.csproj", "{266C37E4-13FB-4849-8858-813D5F58B910}" 9 | EndProject 10 | Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "LogonShellCustomizer", "LogonShellCustomizer\LogonShellCustomizer.csproj", "{F0A8C090-4B6B-4BFF-A95A-6EF13BCC1BDB}" 11 | EndProject 12 | Global 13 | GlobalSection(SolutionConfigurationPlatforms) = preSolution 14 | All|Any CPU = All|Any CPU 15 | All|x64 = All|x64 16 | Debug|Any CPU = Debug|Any CPU 17 | Debug|x64 = Debug|x64 18 | Release|Any CPU = Release|Any CPU 19 | Release|x64 = Release|x64 20 | EndGlobalSection 21 | GlobalSection(ProjectConfigurationPlatforms) = postSolution 22 | {00CE4CAA-1F57-4339-9BE2-CD482C187667}.All|Any CPU.ActiveCfg = Release|Any CPU 23 | {00CE4CAA-1F57-4339-9BE2-CD482C187667}.All|Any CPU.Build.0 = Release|Any CPU 24 | {00CE4CAA-1F57-4339-9BE2-CD482C187667}.All|x64.ActiveCfg = Release|x64 25 | {00CE4CAA-1F57-4339-9BE2-CD482C187667}.All|x64.Build.0 = Release|x64 26 | {00CE4CAA-1F57-4339-9BE2-CD482C187667}.Debug|Any CPU.ActiveCfg = Debug|Any CPU 27 | {00CE4CAA-1F57-4339-9BE2-CD482C187667}.Debug|Any CPU.Build.0 = Debug|Any CPU 28 | {00CE4CAA-1F57-4339-9BE2-CD482C187667}.Debug|x64.ActiveCfg = Debug|x64 29 | {00CE4CAA-1F57-4339-9BE2-CD482C187667}.Debug|x64.Build.0 = Debug|x64 30 | {00CE4CAA-1F57-4339-9BE2-CD482C187667}.Release|Any CPU.ActiveCfg = Release|Any CPU 31 | {00CE4CAA-1F57-4339-9BE2-CD482C187667}.Release|Any CPU.Build.0 = Release|Any CPU 32 | {00CE4CAA-1F57-4339-9BE2-CD482C187667}.Release|x64.ActiveCfg = Release|x64 33 | {00CE4CAA-1F57-4339-9BE2-CD482C187667}.Release|x64.Build.0 = Release|x64 34 | {266C37E4-13FB-4849-8858-813D5F58B910}.All|Any CPU.ActiveCfg = Debug|Any CPU 35 | {266C37E4-13FB-4849-8858-813D5F58B910}.All|Any CPU.Build.0 = Debug|Any CPU 36 | {266C37E4-13FB-4849-8858-813D5F58B910}.All|x64.ActiveCfg = Debug|x64 37 | {266C37E4-13FB-4849-8858-813D5F58B910}.All|x64.Build.0 = Debug|x64 38 | {266C37E4-13FB-4849-8858-813D5F58B910}.Debug|Any CPU.ActiveCfg = Debug|Any CPU 39 | {266C37E4-13FB-4849-8858-813D5F58B910}.Debug|Any CPU.Build.0 = Debug|Any CPU 40 | {266C37E4-13FB-4849-8858-813D5F58B910}.Debug|x64.ActiveCfg = Debug|x64 41 | {266C37E4-13FB-4849-8858-813D5F58B910}.Debug|x64.Build.0 = Debug|x64 42 | {266C37E4-13FB-4849-8858-813D5F58B910}.Release|Any CPU.ActiveCfg = Release|Any CPU 43 | {266C37E4-13FB-4849-8858-813D5F58B910}.Release|Any CPU.Build.0 = Release|Any CPU 44 | {266C37E4-13FB-4849-8858-813D5F58B910}.Release|x64.ActiveCfg = Release|x64 45 | {266C37E4-13FB-4849-8858-813D5F58B910}.Release|x64.Build.0 = Release|x64 46 | {F0A8C090-4B6B-4BFF-A95A-6EF13BCC1BDB}.All|Any CPU.ActiveCfg = Debug|Any CPU 47 | {F0A8C090-4B6B-4BFF-A95A-6EF13BCC1BDB}.All|Any CPU.Build.0 = Debug|Any CPU 48 | {F0A8C090-4B6B-4BFF-A95A-6EF13BCC1BDB}.All|x64.ActiveCfg = Debug|Any CPU 49 | {F0A8C090-4B6B-4BFF-A95A-6EF13BCC1BDB}.All|x64.Build.0 = Debug|Any CPU 50 | {F0A8C090-4B6B-4BFF-A95A-6EF13BCC1BDB}.Debug|Any CPU.ActiveCfg = Debug|Any CPU 51 | {F0A8C090-4B6B-4BFF-A95A-6EF13BCC1BDB}.Debug|Any CPU.Build.0 = Debug|Any CPU 52 | {F0A8C090-4B6B-4BFF-A95A-6EF13BCC1BDB}.Debug|x64.ActiveCfg = Debug|Any CPU 53 | {F0A8C090-4B6B-4BFF-A95A-6EF13BCC1BDB}.Debug|x64.Build.0 = Debug|Any CPU 54 | {F0A8C090-4B6B-4BFF-A95A-6EF13BCC1BDB}.Release|Any CPU.ActiveCfg = Release|Any CPU 55 | {F0A8C090-4B6B-4BFF-A95A-6EF13BCC1BDB}.Release|Any CPU.Build.0 = Release|Any CPU 56 | {F0A8C090-4B6B-4BFF-A95A-6EF13BCC1BDB}.Release|x64.ActiveCfg = Release|x64 57 | {F0A8C090-4B6B-4BFF-A95A-6EF13BCC1BDB}.Release|x64.Build.0 = Release|x64 58 | EndGlobalSection 59 | GlobalSection(SolutionProperties) = preSolution 60 | HideSolutionNode = FALSE 61 | EndGlobalSection 62 | GlobalSection(ExtensibilityGlobals) = postSolution 63 | SolutionGuid = {BCE42932-B677-4464-A735-5AE9D36E3E9D} 64 | EndGlobalSection 65 | EndGlobal 66 | -------------------------------------------------------------------------------- /LogonShell/BackgroundForm.Designer.cs: -------------------------------------------------------------------------------- 1 |  2 | namespace LogonShell 3 | { 4 | partial class BackgroundForm 5 | { 6 | /// 7 | /// Required designer variable. 8 | /// 9 | private System.ComponentModel.IContainer components = null; 10 | 11 | /// 12 | /// Clean up any resources being used. 13 | /// 14 | /// true if managed resources should be disposed; otherwise, false. 15 | protected override void Dispose(bool disposing) 16 | { 17 | if (disposing && (components != null)) 18 | { 19 | components.Dispose(); 20 | } 21 | base.Dispose(disposing); 22 | } 23 | 24 | #region Windows Form Designer generated code 25 | 26 | /// 27 | /// Required method for Designer support - do not modify 28 | /// the contents of this method with the code editor. 29 | /// 30 | private void InitializeComponent() 31 | { 32 | this.pictureBox1 = new System.Windows.Forms.PictureBox(); 33 | this.backgroundWorker1 = new System.ComponentModel.BackgroundWorker(); 34 | ((System.ComponentModel.ISupportInitialize)(this.pictureBox1)).BeginInit(); 35 | this.SuspendLayout(); 36 | // 37 | // pictureBox1 38 | // 39 | this.pictureBox1.Location = new System.Drawing.Point(12, 12); 40 | this.pictureBox1.Name = "pictureBox1"; 41 | this.pictureBox1.Size = new System.Drawing.Size(533, 120); 42 | this.pictureBox1.SizeMode = System.Windows.Forms.PictureBoxSizeMode.StretchImage; 43 | this.pictureBox1.TabIndex = 0; 44 | this.pictureBox1.TabStop = false; 45 | // 46 | // backgroundWorker1 47 | // 48 | this.backgroundWorker1.WorkerSupportsCancellation = true; 49 | // 50 | // BackgroundForm 51 | // 52 | this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F); 53 | this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font; 54 | this.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(29)))), ((int)(((byte)(92)))), ((int)(((byte)(140))))); 55 | this.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Stretch; 56 | this.ClientSize = new System.Drawing.Size(800, 450); 57 | this.Controls.Add(this.pictureBox1); 58 | this.DoubleBuffered = true; 59 | this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.None; 60 | this.Name = "BackgroundForm"; 61 | this.StartPosition = System.Windows.Forms.FormStartPosition.Manual; 62 | this.Text = "BackgroundForm"; 63 | this.TopMost = true; 64 | this.Activated += new System.EventHandler(this.BackgroundForm_Activated); 65 | this.FormClosing += new System.Windows.Forms.FormClosingEventHandler(this.BackgroundForm_FormClosing); 66 | this.Load += new System.EventHandler(this.BackgroundForm_Load); 67 | ((System.ComponentModel.ISupportInitialize)(this.pictureBox1)).EndInit(); 68 | this.ResumeLayout(false); 69 | 70 | } 71 | 72 | #endregion 73 | 74 | private System.Windows.Forms.PictureBox pictureBox1; 75 | private System.ComponentModel.BackgroundWorker backgroundWorker1; 76 | } 77 | } -------------------------------------------------------------------------------- /LogonShell/Class1.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using System.Collections.Generic; 3 | using System.Linq; 4 | using System.Text; 5 | using System.Threading.Tasks; 6 | using System.Windows.Forms; 7 | 8 | namespace LogonShell 9 | { 10 | public class EnterTextBox : TextBox 11 | { 12 | protected override bool IsInputKey(Keys key) 13 | { 14 | if (key == Keys.Enter) 15 | return true; 16 | return base.IsInputKey(key); 17 | } 18 | } 19 | } 20 | -------------------------------------------------------------------------------- /LogonShell/CustomTextBox.Designer.cs: -------------------------------------------------------------------------------- 1 | namespace LogonShell 2 | { 3 | partial class CustomTextBox 4 | { 5 | /// 6 | /// Required designer variable. 7 | /// 8 | private System.ComponentModel.IContainer components = null; 9 | 10 | /// 11 | /// Clean up any resources being used. 12 | /// 13 | /// true if managed resources should be disposed; otherwise, false. 14 | protected override void Dispose(bool disposing) 15 | { 16 | if (disposing && (components != null)) 17 | { 18 | components.Dispose(); 19 | } 20 | base.Dispose(disposing); 21 | } 22 | 23 | #region Component Designer generated code 24 | 25 | /// 26 | /// Required method for Designer support - do not modify 27 | /// the contents of this method with the code editor. 28 | /// 29 | private void InitializeComponent() 30 | { 31 | this.SuspendLayout(); 32 | // 33 | // CustomTextBox 34 | // 35 | this.Name = "CustomTextBox"; 36 | this.ResumeLayout(false); 37 | 38 | } 39 | 40 | #endregion 41 | } 42 | } 43 | -------------------------------------------------------------------------------- /LogonShell/CustomTextBox.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using System.Collections.Generic; 3 | using System.ComponentModel; 4 | using System.Data; 5 | using System.Drawing; 6 | using System.Linq; 7 | using System.Text; 8 | using System.Threading.Tasks; 9 | using System.Windows.Forms; 10 | 11 | namespace LogonShell 12 | { 13 | public partial class CustomTextBox : TextBox 14 | { 15 | public CustomTextBox() 16 | { 17 | InitializeComponent(); 18 | SetStyle(ControlStyles.SupportsTransparentBackColor | 19 | ControlStyles.OptimizedDoubleBuffer | 20 | ControlStyles.AllPaintingInWmPaint | 21 | ControlStyles.ResizeRedraw | 22 | ControlStyles.UserPaint, true); 23 | BackColor = Color.Transparent; 24 | } 25 | 26 | private void CustomTextBox_Load(object sender, EventArgs e) 27 | { 28 | 29 | } 30 | } 31 | } 32 | -------------------------------------------------------------------------------- /LogonShell/GifImage.cs: -------------------------------------------------------------------------------- 1 | using System.Drawing; 2 | using System.Drawing.Imaging; 3 | 4 | namespace LogonShell 5 | { 6 | public class GifImage 7 | { 8 | private Image gifImage; 9 | private FrameDimension dimension; 10 | private int frameCount; 11 | private int currentFrame = -1; 12 | private bool reverse; 13 | private int step = 1; 14 | 15 | public GifImage(Image img) 16 | { 17 | gifImage = (Image)img.Clone(); 18 | //initialize 19 | dimension = new FrameDimension(gifImage.FrameDimensionsList[0]); 20 | //gets the GUID 21 | //total frames in the animation 22 | frameCount = gifImage.GetFrameCount(dimension); 23 | } 24 | 25 | public bool ReverseAtEnd 26 | { 27 | //whether the gif should play backwards when it reaches the end 28 | get { return reverse; } 29 | set { reverse = value; } 30 | } 31 | 32 | public Image GetNextFrame() 33 | { 34 | 35 | currentFrame += step; 36 | 37 | //if the animation reaches a boundary... 38 | if (currentFrame >= frameCount || currentFrame < 0) 39 | { 40 | if (reverse) 41 | { 42 | step *= -1; 43 | //...reverse the count 44 | //apply it 45 | currentFrame += step; 46 | } 47 | else 48 | { 49 | currentFrame = 0; 50 | //...or start over 51 | } 52 | } 53 | return GetFrame(currentFrame); 54 | } 55 | 56 | public Image GetFrame(int index) 57 | { 58 | gifImage.SelectActiveFrame(dimension, index); 59 | //find the frame 60 | return new Bitmap(gifImage); 61 | //(Image)gifImage.Clone(); 62 | //return a copy of it 63 | } 64 | } 65 | } -------------------------------------------------------------------------------- /LogonShell/Help.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using System.Drawing; 3 | using System.Globalization; 4 | using System.Reflection; 5 | using System.Runtime.InteropServices; 6 | using System.Security.Cryptography.X509Certificates; 7 | using System.Windows.Forms; 8 | 9 | namespace LogonShell 10 | { 11 | public partial class Help : Form 12 | { 13 | [DllImport("uxtheme.dll", SetLastError = true)] 14 | static extern int SetWindowTheme(IntPtr window, string app, string theme); 15 | public Help() 16 | { 17 | InitializeComponent(); 18 | labelVersion.Text = Settings.FullVersion; 19 | labelCodename.Text = Settings.ProgramVersion; 20 | labelBuild.Text = Assembly.GetEntryAssembly().GetName().Version.ToString(); 21 | var version = Assembly.GetEntryAssembly().GetName().Version; 22 | var buildDateTime = new DateTime(2000, 1, 1).Add(new TimeSpan( 23 | TimeSpan.TicksPerDay * version.Build + // days since 1 January 2000 24 | TimeSpan.TicksPerSecond * 2 * version.Revision)); 25 | labelDate.Text = buildDateTime.ToString("dddd, dd MMMM yyyy HH:mm:ss tt", new CultureInfo("en-US")); 26 | labelSw.Text = Program.sw.Elapsed.TotalMilliseconds.ToString() + " ms"; 27 | string certPK = "3082010A0282010100B0C0516ABAE078E51C9BACEC9034937423EFB46E20120A4A4ABB8A5CC534AE999F132E8CAE533BACB8B8FA54686390CCB73294D731E86F5A99BA00FE851D31E8D48662CA818FE4549BD6896043ECA890C6925F4CA8E1A70782D61AFE167A7916AE82E9393854C6FAFDFB86A212C9D1E1309F86344BA06B795AB0982AA06CF0A4018A1C6356DEC54353CD6AEEC25A20F93BB28E1326BACD140775E1AD97A796D8F8F8FB154FD9A89E26687136CD14A55BF0937D8DBF6B2D59B9E8B33CEA839BDB30A12CBD6BB822D0CE588001C620C7F921812E0CAAFBB9E818AB4E0824EDB068D8EED1D89F9CC40E5588C278C47A504FFCE71CEFA9F9F52529CBB512E32497A10203010001"; 28 | 29 | try 30 | { 31 | var cert = X509Certificate.CreateFromSignedFile(Assembly.GetExecutingAssembly().Location); 32 | labelSigned.ForeColor = Color.Green; 33 | labelSigned.Text = "Present"; 34 | if (cert.GetPublicKeyString() == certPK) 35 | { 36 | labelKeyMatch.ForeColor = Color.Green; 37 | labelKeyMatch.Text = "Match"; 38 | } 39 | else 40 | { 41 | labelKeyMatch.ForeColor = Color.Red; 42 | labelKeyMatch.Text = "No Match"; 43 | } 44 | } 45 | catch (Exception) 46 | { 47 | labelSigned.ForeColor = Color.Red; 48 | labelSigned.Text = "Not present"; 49 | labelKeyMatch.ForeColor = Color.Red; 50 | labelKeyMatch.Text = "Not present"; 51 | } 52 | 53 | } 54 | 55 | private void Help_Load(object sender, EventArgs e) 56 | { 57 | if (Settings.Read(28).ToLower() == "classic") 58 | SetWindowTheme(Handle, " ", " "); 59 | } 60 | } 61 | } 62 | -------------------------------------------------------------------------------- /LogonShell/Logon.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using System.Diagnostics; 3 | using System.Linq; 4 | using System.Runtime.InteropServices; 5 | using System.Threading; 6 | using System.Windows.Forms; 7 | using FlaUI.Core.AutomationElements; 8 | using FlaUI.UIA3; 9 | 10 | namespace LogonShell 11 | { 12 | internal class Logon 13 | { 14 | [DllImport("User32.dll")] 15 | static extern int SetForegroundWindow(IntPtr point); 16 | [DllImport("user32.dll")] 17 | static extern bool SendMessage(IntPtr hWnd, uint Msg, int wParam, int lParam); 18 | [DllImport("user32.dll", SetLastError = true)] 19 | static extern IntPtr FindWindow(string lpClassName, string lpWindowName); 20 | public static void Login(string user, string password, bool IsLastUser) 21 | { 22 | Process p = Process.GetProcessesByName("LogonUI").FirstOrDefault(); 23 | if (p != null) 24 | { 25 | BackgroundForm.form.StopWorker(); 26 | string pwd = new string(password.Where(c => !char.IsControl(c)).ToArray()); // Need to sanitize it 27 | var app = FlaUI.Core.Application.Attach(p); 28 | using (var automation = new UIA3Automation()) 29 | { 30 | Window window; 31 | AutomationElement[] items; 32 | IntPtr h = app.MainWindowHandle; 33 | SetForegroundWindow(h); 34 | SendKeys.SendWait("{BACKSPACE}"); 35 | Thread.Sleep(100); 36 | window = app.GetMainWindow(automation); 37 | SetForegroundWindow(h); 38 | bool dontShowLastUser = window.FindAllDescendants(cf => cf.ByControlType(FlaUI.Core.Definitions.ControlType.Edit)).Count() > 1; 39 | if (!IsLastUser) 40 | { 41 | if (dontShowLastUser) 42 | throw new Exception("Mode not supported!"); 43 | items = window.FindAllDescendants(); 44 | foreach (var item in items) 45 | { 46 | string name; 47 | try 48 | { 49 | name = item.Name; 50 | if (name.Contains(user)) 51 | { 52 | BackgroundForm.form.MakeTransparent(); 53 | item.Click(); 54 | BackgroundForm.form.RemoveTransparent(); 55 | } 56 | Thread.Sleep(200); 57 | } 58 | catch (Exception) 59 | { 60 | 61 | } 62 | } 63 | } 64 | AutomationElement[] textboxes = window.FindAllDescendants(cf => cf.ByControlType(FlaUI.Core.Definitions.ControlType.Edit)); 65 | if (textboxes.Count() > 0) 66 | { 67 | if (dontShowLastUser) 68 | { 69 | if (textboxes.First().Name.ToLower() != "password") 70 | textboxes.First().Focus(); 71 | else 72 | textboxes.Last().Focus(); 73 | SendKeys.SendWait(user); 74 | } 75 | if (!string.IsNullOrEmpty(pwd)) 76 | { 77 | if (dontShowLastUser && textboxes.First().Name.ToLower() != "password") 78 | textboxes.Last().Focus(); 79 | else 80 | textboxes.First().Focus(); 81 | SendKeys.SendWait(pwd); 82 | } 83 | } 84 | SendKeys.SendWait("{ENTER}"); 85 | } 86 | BackgroundForm.form.StartWorker(); 87 | } 88 | else 89 | throw new Exception("LogonUI not found!"); 90 | } 91 | } 92 | } 93 | -------------------------------------------------------------------------------- /LogonShell/LogonShell.csproj.user: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | publish\ 5 | 6 | 7 | 8 | 9 | 10 | it-IT 11 | false 12 | 13 | -------------------------------------------------------------------------------- /LogonShell/MessageBoxForm.Designer.cs: -------------------------------------------------------------------------------- 1 |  2 | namespace LogonShell 3 | { 4 | partial class MessageBoxForm 5 | { 6 | /// 7 | /// Required designer variable. 8 | /// 9 | private System.ComponentModel.IContainer components = null; 10 | 11 | /// 12 | /// Clean up any resources being used. 13 | /// 14 | /// true if managed resources should be disposed; otherwise, false. 15 | protected override void Dispose(bool disposing) 16 | { 17 | if (disposing && (components != null)) 18 | { 19 | components.Dispose(); 20 | } 21 | base.Dispose(disposing); 22 | } 23 | 24 | #region Windows Form Designer generated code 25 | 26 | /// 27 | /// Required method for Designer support - do not modify 28 | /// the contents of this method with the code editor. 29 | /// 30 | private void InitializeComponent() 31 | { 32 | this.pictureBoxIcon = new System.Windows.Forms.PictureBox(); 33 | this.labelMessage = new System.Windows.Forms.Label(); 34 | this.buttonOK = new System.Windows.Forms.Button(); 35 | ((System.ComponentModel.ISupportInitialize)(this.pictureBoxIcon)).BeginInit(); 36 | this.SuspendLayout(); 37 | // 38 | // pictureBoxIcon 39 | // 40 | this.pictureBoxIcon.Location = new System.Drawing.Point(12, 12); 41 | this.pictureBoxIcon.Name = "pictureBoxIcon"; 42 | this.pictureBoxIcon.Size = new System.Drawing.Size(32, 32); 43 | this.pictureBoxIcon.SizeMode = System.Windows.Forms.PictureBoxSizeMode.StretchImage; 44 | this.pictureBoxIcon.TabIndex = 2; 45 | this.pictureBoxIcon.TabStop = false; 46 | // 47 | // labelMessage 48 | // 49 | this.labelMessage.AutoSize = true; 50 | this.labelMessage.Location = new System.Drawing.Point(55, 12); 51 | this.labelMessage.Name = "labelMessage"; 52 | this.labelMessage.Size = new System.Drawing.Size(50, 13); 53 | this.labelMessage.TabIndex = 5; 54 | this.labelMessage.Text = "Message"; 55 | // 56 | // buttonOK 57 | // 58 | this.buttonOK.Location = new System.Drawing.Point(58, 71); 59 | this.buttonOK.Name = "buttonOK"; 60 | this.buttonOK.Size = new System.Drawing.Size(75, 23); 61 | this.buttonOK.TabIndex = 1; 62 | this.buttonOK.Text = "OK"; 63 | this.buttonOK.UseVisualStyleBackColor = true; 64 | this.buttonOK.Click += new System.EventHandler(this.buttonOK_Click); 65 | // 66 | // MessageBoxForm 67 | // 68 | this.AcceptButton = this.buttonOK; 69 | this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F); 70 | this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font; 71 | this.ClientSize = new System.Drawing.Size(384, 106); 72 | this.Controls.Add(this.buttonOK); 73 | this.Controls.Add(this.labelMessage); 74 | this.Controls.Add(this.pictureBoxIcon); 75 | this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedDialog; 76 | this.MaximizeBox = false; 77 | this.MinimizeBox = false; 78 | this.Name = "MessageBoxForm"; 79 | this.StartPosition = System.Windows.Forms.FormStartPosition.CenterParent; 80 | this.Text = "Error"; 81 | this.TopMost = true; 82 | this.Load += new System.EventHandler(this.ShutDownForm_Load); 83 | ((System.ComponentModel.ISupportInitialize)(this.pictureBoxIcon)).EndInit(); 84 | this.ResumeLayout(false); 85 | this.PerformLayout(); 86 | 87 | } 88 | 89 | #endregion 90 | private System.Windows.Forms.PictureBox pictureBoxIcon; 91 | private System.Windows.Forms.Label labelMessage; 92 | private System.Windows.Forms.Button buttonOK; 93 | } 94 | } -------------------------------------------------------------------------------- /LogonShell/MessageBoxForm.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using System.Drawing; 3 | using System.Media; 4 | using System.Runtime.InteropServices; 5 | using System.Windows.Forms; 6 | 7 | namespace LogonShell 8 | { 9 | public partial class MessageBoxForm : Form 10 | { 11 | 12 | #region DLL Imports 13 | [DllImport("uxtheme.dll", SetLastError = true)] 14 | static extern int SetWindowTheme(IntPtr window, string app, string theme); 15 | 16 | #endregion 17 | // icon 0 = error, 1 = warning 18 | public MessageBoxForm(string Title, string Message, int icon) 19 | { 20 | InitializeComponent(); 21 | this.Text = Title; 22 | labelMessage.MaximumSize = new Size(400, 56); 23 | labelMessage.Text = Message; 24 | if (labelMessage.Height < 18) 25 | labelMessage.Location = new Point(55, 21); 26 | this.Size = new Size(83 + labelMessage.Width, (labelMessage.Height + 89 > 118)? labelMessage.Height + 89: 118 ); 27 | buttonOK.Location = new Point((this.Width - 75) / 2, this.Height - 70); 28 | buttonOK.Text = Settings.Read(1, true); 29 | 30 | if (icon == 0) 31 | pictureBoxIcon.Image = Cache.Images[5]; 32 | else 33 | pictureBoxIcon.Image = Cache.Images[6]; 34 | } 35 | private void ShutDownForm_Load(object sender, EventArgs e) 36 | { 37 | if (Settings.Read(28).ToLower() == "classic") 38 | SetWindowTheme(Handle, " ", " "); 39 | SystemSounds.Hand.Play(); 40 | } 41 | private void buttonOK_Click(object sender, EventArgs e) 42 | { 43 | this.Close(); 44 | } 45 | } 46 | } 47 | -------------------------------------------------------------------------------- /LogonShell/MouseOperations.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using System.Runtime.InteropServices; 3 | 4 | namespace LogonShell 5 | { 6 | 7 | public class MouseOperations 8 | { 9 | [Flags] 10 | public enum MouseEventFlags 11 | { 12 | LeftDown = 0x00000002, 13 | LeftUp = 0x00000004, 14 | MiddleDown = 0x00000020, 15 | MiddleUp = 0x00000040, 16 | Move = 0x00000001, 17 | Absolute = 0x00008000, 18 | RightDown = 0x00000008, 19 | RightUp = 0x00000010 20 | } 21 | 22 | [DllImport("user32.dll", EntryPoint = "SetCursorPos")] 23 | [return: MarshalAs(UnmanagedType.Bool)] 24 | private static extern bool SetCursorPos(int x, int y); 25 | 26 | [DllImport("user32.dll")] 27 | [return: MarshalAs(UnmanagedType.Bool)] 28 | private static extern bool GetCursorPos(out MousePoint lpMousePoint); 29 | 30 | [DllImport("user32.dll")] 31 | private static extern void mouse_event(int dwFlags, int dx, int dy, int dwData, int dwExtraInfo); 32 | 33 | public static void SetCursorPosition(int x, int y) 34 | { 35 | SetCursorPos(x, y); 36 | } 37 | 38 | public static void SetCursorPosition(MousePoint point) 39 | { 40 | SetCursorPos(point.X, point.Y); 41 | } 42 | 43 | public static MousePoint GetCursorPosition() 44 | { 45 | MousePoint currentMousePoint; 46 | var gotPoint = GetCursorPos(out currentMousePoint); 47 | if (!gotPoint) { currentMousePoint = new MousePoint(0, 0); } 48 | return currentMousePoint; 49 | } 50 | 51 | public static void MouseEvent(MouseEventFlags value) 52 | { 53 | MousePoint position = GetCursorPosition(); 54 | 55 | mouse_event 56 | ((int)value, 57 | position.X, 58 | position.Y, 59 | 0, 60 | 0) 61 | ; 62 | } 63 | 64 | [StructLayout(LayoutKind.Sequential)] 65 | public struct MousePoint 66 | { 67 | public int X; 68 | public int Y; 69 | 70 | public MousePoint(int x, int y) 71 | { 72 | X = x; 73 | Y = y; 74 | } 75 | } 76 | } 77 | } 78 | -------------------------------------------------------------------------------- /LogonShell/Program.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using System.Diagnostics; 3 | using System.Windows.Forms; 4 | 5 | namespace LogonShell 6 | { 7 | static class Program 8 | { 9 | public static Stopwatch sw; 10 | /// 11 | /// The main entry point for the application. 12 | /// 13 | [STAThread] 14 | static void Main(string[] args) 15 | { 16 | sw = new Stopwatch(); 17 | sw.Start(); 18 | Cache.Initialize(args); 19 | if (Settings.Read(28).ToLower() != "classic") 20 | Application.EnableVisualStyles(); 21 | if (args.Length == 0) 22 | Application.Run(new BackgroundForm()); 23 | else 24 | switch(args[0]) 25 | { 26 | case "/quiet": 27 | Cache.Refresh(); 28 | sw.Stop(); 29 | Application.Exit(); 30 | break; 31 | case "/shutdown": 32 | Application.Run(new ShutdownBackgroundForm()); 33 | break; 34 | case "-tray": 35 | Application.Run(new UserTray()); 36 | break; 37 | default: 38 | Application.Run(new BackgroundForm()); 39 | break; 40 | } 41 | } 42 | } 43 | } 44 | -------------------------------------------------------------------------------- /LogonShell/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- 1 | using System.Reflection; 2 | using System.Runtime.CompilerServices; 3 | using System.Runtime.InteropServices; 4 | 5 | // General Information about an assembly is controlled through the following 6 | // set of attributes. Change these attribute values to modify the information 7 | // associated with an assembly. 8 | [assembly: AssemblyTitle("ClassicLogonShell")] 9 | [assembly: AssemblyDescription("Shell replacement that mimics the Win2K logon screen and is extremely customizable.")] 10 | [assembly: AssemblyConfiguration("")] 11 | [assembly: AssemblyCompany("")] 12 | [assembly: AssemblyProduct("ClassicLogonShell")] 13 | [assembly: AssemblyCopyright("")] 14 | [assembly: AssemblyTrademark("")] 15 | [assembly: AssemblyCulture("")] 16 | 17 | // Setting ComVisible to false makes the types in this assembly not visible 18 | // to COM components. If you need to access a type in this assembly from 19 | // COM, set the ComVisible attribute to true on that type. 20 | [assembly: ComVisible(false)] 21 | 22 | // The following GUID is for the ID of the typelib if this project is exposed to COM 23 | [assembly: Guid("00ce4caa-1f57-4339-9be2-cd482c187667")] 24 | 25 | // Version information for an assembly consists of the following four values: 26 | // 27 | // Major Version 28 | // Minor Version 29 | // Build Number 30 | // Revision 31 | // 32 | // You can specify all the values or you can default the Build and Revision Numbers 33 | // by using the '*' as shown below: 34 | // [assembly: AssemblyVersion("1.0.*")] 35 | [assembly: AssemblyVersion("2.1.*")] 36 | -------------------------------------------------------------------------------- /LogonShell/Properties/Settings.Designer.cs: -------------------------------------------------------------------------------- 1 | //------------------------------------------------------------------------------ 2 | // 3 | // Il codice è stato generato da uno strumento. 4 | // Versione runtime:4.0.30319.42000 5 | // 6 | // Le modifiche apportate a questo file possono provocare un comportamento non corretto e andranno perse se 7 | // il codice viene rigenerato. 8 | // 9 | //------------------------------------------------------------------------------ 10 | 11 | namespace LogonShell.Properties { 12 | 13 | 14 | [global::System.Runtime.CompilerServices.CompilerGeneratedAttribute()] 15 | [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.VisualStudio.Editors.SettingsDesigner.SettingsSingleFileGenerator", "17.2.0.0")] 16 | internal sealed partial class Settings : global::System.Configuration.ApplicationSettingsBase { 17 | 18 | private static Settings defaultInstance = ((Settings)(global::System.Configuration.ApplicationSettingsBase.Synchronized(new Settings()))); 19 | 20 | public static Settings Default { 21 | get { 22 | return defaultInstance; 23 | } 24 | } 25 | } 26 | } 27 | -------------------------------------------------------------------------------- /LogonShell/Properties/Settings.settings: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /LogonShell/Resources/CLS.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheFailureOne/CLS2ForkXP/9df86e146eb35fcb5f4b841c97be29029c4d14f6/LogonShell/Resources/CLS.png -------------------------------------------------------------------------------- /LogonShell/Resources/DividerBottom.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheFailureOne/CLS2ForkXP/9df86e146eb35fcb5f4b841c97be29029c4d14f6/LogonShell/Resources/DividerBottom.bmp -------------------------------------------------------------------------------- /LogonShell/Resources/DividerTop.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheFailureOne/CLS2ForkXP/9df86e146eb35fcb5f4b841c97be29029c4d14f6/LogonShell/Resources/DividerTop.bmp -------------------------------------------------------------------------------- /LogonShell/Resources/DividerXPLogoAndLoginScreen.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheFailureOne/CLS2ForkXP/9df86e146eb35fcb5f4b841c97be29029c4d14f6/LogonShell/Resources/DividerXPLogoAndLoginScreen.bmp -------------------------------------------------------------------------------- /LogonShell/Resources/GoIcon.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheFailureOne/CLS2ForkXP/9df86e146eb35fcb5f4b841c97be29029c4d14f6/LogonShell/Resources/GoIcon.bmp -------------------------------------------------------------------------------- /LogonShell/Resources/GoIconSelected.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheFailureOne/CLS2ForkXP/9df86e146eb35fcb5f4b841c97be29029c4d14f6/LogonShell/Resources/GoIconSelected.bmp -------------------------------------------------------------------------------- /LogonShell/Resources/InputArea.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheFailureOne/CLS2ForkXP/9df86e146eb35fcb5f4b841c97be29029c4d14f6/LogonShell/Resources/InputArea.bmp -------------------------------------------------------------------------------- /LogonShell/Resources/PFP.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheFailureOne/CLS2ForkXP/9df86e146eb35fcb5f4b841c97be29029c4d14f6/LogonShell/Resources/PFP.bmp -------------------------------------------------------------------------------- /LogonShell/Resources/SelectedUserBackground.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheFailureOne/CLS2ForkXP/9df86e146eb35fcb5f4b841c97be29029c4d14f6/LogonShell/Resources/SelectedUserBackground.bmp -------------------------------------------------------------------------------- /LogonShell/Resources/Shade.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheFailureOne/CLS2ForkXP/9df86e146eb35fcb5f4b841c97be29029c4d14f6/LogonShell/Resources/Shade.bmp -------------------------------------------------------------------------------- /LogonShell/Resources/Shutdown.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheFailureOne/CLS2ForkXP/9df86e146eb35fcb5f4b841c97be29029c4d14f6/LogonShell/Resources/Shutdown.bmp -------------------------------------------------------------------------------- /LogonShell/Resources/UserHoverOrSelected.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheFailureOne/CLS2ForkXP/9df86e146eb35fcb5f4b841c97be29029c4d14f6/LogonShell/Resources/UserHoverOrSelected.bmp -------------------------------------------------------------------------------- /LogonShell/Resources/UserHoverOrSelected.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheFailureOne/CLS2ForkXP/9df86e146eb35fcb5f4b841c97be29029c4d14f6/LogonShell/Resources/UserHoverOrSelected.png -------------------------------------------------------------------------------- /LogonShell/Resources/UserHoverOrSelected1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheFailureOne/CLS2ForkXP/9df86e146eb35fcb5f4b841c97be29029c4d14f6/LogonShell/Resources/UserHoverOrSelected1.png -------------------------------------------------------------------------------- /LogonShell/Resources/UserNotHoverOrSelected.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheFailureOne/CLS2ForkXP/9df86e146eb35fcb5f4b841c97be29029c4d14f6/LogonShell/Resources/UserNotHoverOrSelected.bmp -------------------------------------------------------------------------------- /LogonShell/Resources/XPLogo.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheFailureOne/CLS2ForkXP/9df86e146eb35fcb5f4b841c97be29029c4d14f6/LogonShell/Resources/XPLogo.bmp -------------------------------------------------------------------------------- /LogonShell/Resources/XPLogo1.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheFailureOne/CLS2ForkXP/9df86e146eb35fcb5f4b841c97be29029c4d14f6/LogonShell/Resources/XPLogo1.bmp -------------------------------------------------------------------------------- /LogonShell/SecondaryBackgrounds.Designer.cs: -------------------------------------------------------------------------------- 1 |  2 | namespace LogonShell 3 | { 4 | public partial class SecondaryBackgrounds 5 | { 6 | /// 7 | /// Required designer variable. 8 | /// 9 | private System.ComponentModel.IContainer components = null; 10 | 11 | /// 12 | /// Clean up any resources being used. 13 | /// 14 | /// true if managed resources should be disposed; otherwise, false. 15 | protected override void Dispose(bool disposing) 16 | { 17 | if (disposing && (components != null)) 18 | { 19 | components.Dispose(); 20 | } 21 | base.Dispose(disposing); 22 | } 23 | 24 | #region Windows Form Designer generated code 25 | 26 | /// 27 | /// Required method for Designer support - do not modify 28 | /// the contents of this method with the code editor. 29 | /// 30 | private void InitializeComponent() 31 | { 32 | this.pictureBox1 = new System.Windows.Forms.PictureBox(); 33 | ((System.ComponentModel.ISupportInitialize)(this.pictureBox1)).BeginInit(); 34 | this.SuspendLayout(); 35 | // 36 | // pictureBox1 37 | // 38 | this.pictureBox1.Location = new System.Drawing.Point(12, 12); 39 | this.pictureBox1.Name = "pictureBox1"; 40 | this.pictureBox1.Size = new System.Drawing.Size(533, 120); 41 | this.pictureBox1.SizeMode = System.Windows.Forms.PictureBoxSizeMode.StretchImage; 42 | this.pictureBox1.TabIndex = 0; 43 | this.pictureBox1.TabStop = false; 44 | // 45 | // BackgroundForm 46 | // 47 | this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F); 48 | this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font; 49 | this.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(29)))), ((int)(((byte)(92)))), ((int)(((byte)(140))))); 50 | this.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Stretch; 51 | this.ClientSize = new System.Drawing.Size(800, 450); 52 | this.Controls.Add(this.pictureBox1); 53 | this.DoubleBuffered = true; 54 | this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.None; 55 | this.Name = "BackgroundForm"; 56 | this.StartPosition = System.Windows.Forms.FormStartPosition.Manual; 57 | this.Text = "BackgroundForm"; 58 | this.TopMost = true; 59 | this.Activated += new System.EventHandler(this.BackgroundForm_Activated); 60 | this.FormClosing += new System.Windows.Forms.FormClosingEventHandler(this.BackgroundForm_FormClosing); 61 | ((System.ComponentModel.ISupportInitialize)(this.pictureBox1)).EndInit(); 62 | this.ResumeLayout(false); 63 | 64 | } 65 | 66 | #endregion 67 | 68 | private System.Windows.Forms.PictureBox pictureBox1; 69 | } 70 | } -------------------------------------------------------------------------------- /LogonShell/SecondaryBackgrounds1.Designer.cs: -------------------------------------------------------------------------------- 1 | //------------------------------------------------------------------------------ 2 | // 3 | // This code was generated by a tool. 4 | // Runtime Version:4.0.30319.42000 5 | // 6 | // Changes to this file may cause incorrect behavior and will be lost if 7 | // the code is regenerated. 8 | // 9 | //------------------------------------------------------------------------------ 10 | 11 | namespace LogonShell { 12 | using System; 13 | 14 | 15 | /// 16 | /// A strongly-typed resource class, for looking up localized strings, etc. 17 | /// 18 | // This class was auto-generated by the StronglyTypedResourceBuilder 19 | // class via a tool like ResGen or Visual Studio. 20 | // To add or remove a member, edit your .ResX file then rerun ResGen 21 | // with the /str option, or rebuild your VS project. 22 | [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Resources.Tools.StronglyTypedResourceBuilder", "17.0.0.0")] 23 | [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] 24 | [global::System.Runtime.CompilerServices.CompilerGeneratedAttribute()] 25 | public partial class SecondaryBackgrounds { 26 | 27 | private static global::System.Resources.ResourceManager resourceMan; 28 | 29 | private static global::System.Globalization.CultureInfo resourceCulture; 30 | 31 | [global::System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1811:AvoidUncalledPrivateCode")] 32 | internal SecondaryBackgrounds() { 33 | } 34 | 35 | /// 36 | /// Returns the cached ResourceManager instance used by this class. 37 | /// 38 | [global::System.ComponentModel.EditorBrowsableAttribute(global::System.ComponentModel.EditorBrowsableState.Advanced)] 39 | internal static global::System.Resources.ResourceManager ResourceManager { 40 | get { 41 | if (object.ReferenceEquals(resourceMan, null)) { 42 | global::System.Resources.ResourceManager temp = new global::System.Resources.ResourceManager("LogonShell.SecondaryBackgrounds", typeof(SecondaryBackgrounds).Assembly); 43 | resourceMan = temp; 44 | } 45 | return resourceMan; 46 | } 47 | } 48 | 49 | /// 50 | /// Overrides the current thread's CurrentUICulture property for all 51 | /// resource lookups using this strongly typed resource class. 52 | /// 53 | [global::System.ComponentModel.EditorBrowsableAttribute(global::System.ComponentModel.EditorBrowsableState.Advanced)] 54 | internal static global::System.Globalization.CultureInfo Culture { 55 | get { 56 | return resourceCulture; 57 | } 58 | set { 59 | resourceCulture = value; 60 | } 61 | } 62 | } 63 | } 64 | -------------------------------------------------------------------------------- /LogonShell/SecondaryBackgroundsBase.cs: -------------------------------------------------------------------------------- 1 | using System.CodeDom.Compiler; 2 | using System.Diagnostics; 3 | using System.Runtime.CompilerServices; 4 | 5 | namespace LogonShell 6 | { 7 | [CompilerGenerated, DebuggerNonUserCode, GeneratedCode("System.Resources.Tools.StronglyTypedResourceBuilder", "17.0.0.0")] 8 | public class SecondaryBackgroundsBase 9 | { 10 | } 11 | } -------------------------------------------------------------------------------- /LogonShell/ShutDownForm.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using System.Diagnostics; 3 | using System.Drawing; 4 | using System.Runtime.InteropServices; 5 | using System.Windows.Forms; 6 | 7 | namespace LogonShell 8 | { 9 | public partial class ShutDownForm : Form 10 | { 11 | [DllImport("uxtheme.dll", SetLastError = true)] 12 | static extern int SetWindowTheme(IntPtr window, string app, string theme); 13 | 14 | string[] actionDescriptions = 15 | { 16 | @"Ends your session and shuts down Windows so you can safely turn off power.", 17 | @"Ends your session, shuts down Windows, and starts Windows again.", 18 | @"Maintains your session, keeping the computer running on low power with data still in memory." 19 | }; 20 | 21 | int[] actionIcons = new int[3]; 22 | int selectedIndex; 23 | 24 | public ShutDownForm(int shutdownType = 0) 25 | { 26 | InitializeComponent(); 27 | this.Text = Settings.Read(12, true); 28 | if (!Boolean.Parse(Settings.Read(37))) 29 | { 30 | pictureBoxBanner.SizeMode = PictureBoxSizeMode.CenterImage; 31 | } 32 | int height; 33 | if (Int32.TryParse(Settings.Read(25).ToLower(), out height)) 34 | pictureBoxLoading.Height = height; 35 | else 36 | pictureBoxLoading.Height = Cache.Images[3].Height; 37 | pictureBoxLoading.Image = new GifImage(Cache.Images[3]).GetNextFrame(); 38 | pictureBoxComputer.Image = Cache.Images[4]; 39 | comboBox1.Items.Clear(); 40 | comboBox1.Items.Add(Settings.Read(15, true)); 41 | comboBox1.Items.Add(Settings.Read(16, true)); 42 | comboBox1.Items.Add(Settings.Read(17, true)); 43 | actionDescriptions[0] = Settings.Read(18, true); 44 | actionDescriptions[1] = Settings.Read(19, true); 45 | actionDescriptions[2] = Settings.Read(20, true); 46 | labelWdyw.Text = Settings.Read(13, true); 47 | buttonOK.Text = Settings.Read(1, true); 48 | buttonCancel.Text = Settings.Read(2, true); 49 | buttonHelp.Text = Settings.Read(26, true); 50 | actionIcons[0] = 4; 51 | actionIcons[1] = 7; 52 | actionIcons[2] = 8; 53 | selectedIndex = shutdownType; 54 | } 55 | 56 | private void comboBox1_SelectedIndexChanged(object sender, EventArgs e) 57 | { 58 | if (comboBox1.SelectedIndex != -1) 59 | { 60 | labelDescription.Text = actionDescriptions[comboBox1.SelectedIndex]; 61 | pictureBoxComputer.Image = Cache.Images[actionIcons[comboBox1.SelectedIndex]]; 62 | } 63 | } 64 | 65 | private void buttonCancel_Click(object sender, EventArgs e) 66 | { 67 | Close(); 68 | } 69 | 70 | private void ShutDownForm_Load(object sender, EventArgs e) 71 | { 72 | comboBox1.SelectedIndex = selectedIndex; 73 | if (Settings.Read(28).ToLower() == "classic") 74 | SetWindowTheme(Handle, " ", " "); 75 | } 76 | private void buttonOK_Click(object sender, EventArgs e) 77 | { 78 | ProcessStartInfo psi = null; 79 | var LoadAnim = true; 80 | switch (comboBox1.SelectedIndex) 81 | { 82 | case 0: 83 | psi = new ProcessStartInfo("shutdown", "/s /t 0"); 84 | break; 85 | case 1: 86 | psi = new ProcessStartInfo("shutdown", "/r /t 0"); 87 | break; 88 | case 2: 89 | Application.SetSuspendState(PowerState.Suspend, true, true); 90 | LoadAnim = false; 91 | break; 92 | default: 93 | MessageBox.Show("The selected option isn't available."); 94 | LoadAnim = false; 95 | break; 96 | } 97 | if (psi != null) 98 | { 99 | psi.CreateNoWindow = true; 100 | psi.UseShellExecute = false; 101 | Process.Start(psi); 102 | } 103 | if (LoadAnim) 104 | this.DialogResult = DialogResult.OK; 105 | this.Close(); 106 | return; 107 | } 108 | 109 | private void buttonHelp_Click(object sender, EventArgs e) 110 | { 111 | (new Help()).ShowDialog(); 112 | } 113 | } 114 | } 115 | -------------------------------------------------------------------------------- /LogonShell/ShutdownBackgroundForm.Designer.cs: -------------------------------------------------------------------------------- 1 |  2 | namespace LogonShell 3 | { 4 | partial class ShutdownBackgroundForm 5 | { 6 | /// 7 | /// Required designer variable. 8 | /// 9 | private System.ComponentModel.IContainer components = null; 10 | 11 | /// 12 | /// Clean up any resources being used. 13 | /// 14 | /// true if managed resources should be disposed; otherwise, false. 15 | protected override void Dispose(bool disposing) 16 | { 17 | if (disposing && (components != null)) 18 | { 19 | components.Dispose(); 20 | } 21 | base.Dispose(disposing); 22 | } 23 | 24 | #region Windows Form Designer generated code 25 | 26 | /// 27 | /// Required method for Designer support - do not modify 28 | /// the contents of this method with the code editor. 29 | /// 30 | private void InitializeComponent() 31 | { 32 | this.backgroundWorker1 = new System.ComponentModel.BackgroundWorker(); 33 | this.SuspendLayout(); 34 | // 35 | // backgroundWorker1 36 | // 37 | this.backgroundWorker1.DoWork += new System.ComponentModel.DoWorkEventHandler(this.backgroundWorker1_DoWork); 38 | // 39 | // ShutdownBackgroundForm 40 | // 41 | this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F); 42 | this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font; 43 | this.BackColor = System.Drawing.Color.Black; 44 | this.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Stretch; 45 | this.ClientSize = new System.Drawing.Size(800, 450); 46 | this.DoubleBuffered = true; 47 | this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.None; 48 | this.Name = "ShutdownBackgroundForm"; 49 | this.Opacity = 0D; 50 | this.StartPosition = System.Windows.Forms.FormStartPosition.Manual; 51 | this.Text = "BackgroundForm"; 52 | this.TopMost = true; 53 | this.Activated += ShutdownBackgroundForm_Activated; 54 | this.ResumeLayout(false); 55 | 56 | } 57 | 58 | #endregion 59 | 60 | private System.ComponentModel.BackgroundWorker backgroundWorker1; 61 | } 62 | } -------------------------------------------------------------------------------- /LogonShell/ShutdownBackgroundForm.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using System.Drawing; 3 | using System.Threading; 4 | using System.Windows.Forms; 5 | 6 | namespace LogonShell 7 | { 8 | public partial class ShutdownBackgroundForm : Form 9 | { 10 | ShutDownForm f1; 11 | 12 | public ShutdownBackgroundForm() 13 | { 14 | InitializeComponent(); 15 | Rectangle r = new Rectangle(); 16 | foreach (Screen s in Screen.AllScreens) 17 | { 18 | r = Rectangle.Union(r, s.Bounds); 19 | } 20 | Top = r.Top; 21 | Left = r.Left; 22 | Width = r.Width; 23 | Height = r.Height; 24 | Size = r.Size; 25 | int st; 26 | if (Cache.args.Length > 1 && Int32.TryParse(Cache.args[1], out st)) 27 | f1 = new ShutDownForm(st); 28 | else 29 | f1 = new ShutDownForm(); 30 | f1.StartPosition = FormStartPosition.CenterScreen; 31 | Shown += ShutdownBackgroundForm_Shown; 32 | Program.sw.Stop(); 33 | } 34 | 35 | private void ShutdownBackgroundForm_Shown(object sender, EventArgs e) 36 | { 37 | backgroundWorker1.RunWorkerAsync(); 38 | } 39 | 40 | private void backgroundWorker1_DoWork(object sender, System.ComponentModel.DoWorkEventArgs e) 41 | { 42 | while (Opacity < 0.6) 43 | { 44 | Thread.Sleep(20); 45 | Opacity = Opacity + 0.01; 46 | } 47 | if (f1.ShowDialog() != DialogResult.Retry) 48 | Application.Exit(); 49 | } 50 | 51 | private void ShutdownBackgroundForm_Activated(object sender, System.EventArgs e) 52 | { 53 | f1.Activate(); 54 | } 55 | 56 | } 57 | } 58 | -------------------------------------------------------------------------------- /LogonShell/UserTray.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using System.IO; 3 | using System.Windows.Forms; 4 | using Microsoft.Win32; 5 | 6 | namespace LogonShell 7 | { 8 | internal class UserTray : ApplicationContext 9 | { 10 | public UserTray() 11 | { 12 | Environment.CurrentDirectory = AppDomain.CurrentDomain.BaseDirectory; 13 | SystemEvents.SessionEnding += new SessionEndingEventHandler(SystemEvents_SessionEnding); 14 | SystemEvents.SessionEnded += new SessionEndedEventHandler(SystemEvents_SessionEnded); 15 | Program.sw.Stop(); 16 | } 17 | void SystemEvents_SessionEnding(object sender, SessionEndingEventArgs e) 18 | { 19 | if (e.Reason == SessionEndReasons.SystemShutdown) 20 | File.WriteAllText(Environment.CurrentDirectory + "\\shutdown", "true"); 21 | if (new WUApiLib.SystemInformation().RebootRequired) 22 | File.Create(Environment.CurrentDirectory + "\\updates"); 23 | Application.Exit(); 24 | } 25 | void SystemEvents_SessionEnded(object sender, SessionEndedEventArgs e) 26 | { 27 | if (e.Reason == SessionEndReasons.SystemShutdown) 28 | File.WriteAllText(Environment.CurrentDirectory + "\\shutdown", "true"); 29 | if (new WUApiLib.SystemInformation().RebootRequired) 30 | File.Create(Environment.CurrentDirectory + "\\updates"); 31 | Application.Exit(); 32 | } 33 | } 34 | } 35 | -------------------------------------------------------------------------------- /LogonShell/app.manifest: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | 5 | 6 | 7 | 19 | 20 | 21 | 22 | 23 | 24 | 25 | 26 | 27 | 28 | 29 | 32 | 33 | 34 | 35 | 36 | 37 | 38 | 39 | 40 | 41 | 42 | 43 | 44 | 50 | 58 | 59 | 73 | -------------------------------------------------------------------------------- /LogonShell/bin/Debug/AxInterop.MSTSCLib.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheFailureOne/CLS2ForkXP/9df86e146eb35fcb5f4b841c97be29029c4d14f6/LogonShell/bin/Debug/AxInterop.MSTSCLib.dll -------------------------------------------------------------------------------- /LogonShell/bin/Debug/FlaUI.Core.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheFailureOne/CLS2ForkXP/9df86e146eb35fcb5f4b841c97be29029c4d14f6/LogonShell/bin/Debug/FlaUI.Core.dll -------------------------------------------------------------------------------- /LogonShell/bin/Debug/FlaUI.UIA3.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheFailureOne/CLS2ForkXP/9df86e146eb35fcb5f4b841c97be29029c4d14f6/LogonShell/bin/Debug/FlaUI.UIA3.dll -------------------------------------------------------------------------------- /LogonShell/bin/Debug/Interop.MSTSCLib.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheFailureOne/CLS2ForkXP/9df86e146eb35fcb5f4b841c97be29029c4d14f6/LogonShell/bin/Debug/Interop.MSTSCLib.dll -------------------------------------------------------------------------------- /LogonShell/bin/Debug/Interop.UIAutomationClient.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheFailureOne/CLS2ForkXP/9df86e146eb35fcb5f4b841c97be29029c4d14f6/LogonShell/bin/Debug/Interop.UIAutomationClient.dll -------------------------------------------------------------------------------- /LogonShell/bin/Debug/LogonShell.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheFailureOne/CLS2ForkXP/9df86e146eb35fcb5f4b841c97be29029c4d14f6/LogonShell/bin/Debug/LogonShell.exe -------------------------------------------------------------------------------- /LogonShell/bin/Debug/LogonShell.exe.config: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /LogonShell/bin/Debug/LogonShell.ini: -------------------------------------------------------------------------------- 1 | [Main] 2 | ResetSettings=false 3 | Banner=theme\banner.png 4 | Localisation=theme\locale.ini 5 | [BackgroundLogo] 6 | Image=theme\bg.logo.png 7 | Resolution=1280 8 | Size=500 9 | [KeySequence] 10 | UseKeySequence=false 11 | Icon=theme\keyboard.icon.png 12 | [Login] 13 | Type=ListLast 14 | IsCancelEnabled=true 15 | [Loading] 16 | Image=theme\loading.gif 17 | ReverseAtEnd=false 18 | [Shutdown] 19 | Icon=theme\computer.icon.png 20 | -------------------------------------------------------------------------------- /LogonShell/bin/Debug/LogonShell.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheFailureOne/CLS2ForkXP/9df86e146eb35fcb5f4b841c97be29029c4d14f6/LogonShell/bin/Debug/LogonShell.pdb -------------------------------------------------------------------------------- /LogonShell/bin/Debug/theme/banner.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheFailureOne/CLS2ForkXP/9df86e146eb35fcb5f4b841c97be29029c4d14f6/LogonShell/bin/Debug/theme/banner.png -------------------------------------------------------------------------------- /LogonShell/bin/Debug/theme/bg.logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheFailureOne/CLS2ForkXP/9df86e146eb35fcb5f4b841c97be29029c4d14f6/LogonShell/bin/Debug/theme/bg.logo.png -------------------------------------------------------------------------------- /LogonShell/bin/Debug/theme/computer.icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheFailureOne/CLS2ForkXP/9df86e146eb35fcb5f4b841c97be29029c4d14f6/LogonShell/bin/Debug/theme/computer.icon.png -------------------------------------------------------------------------------- /LogonShell/bin/Debug/theme/keyboard.icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheFailureOne/CLS2ForkXP/9df86e146eb35fcb5f4b841c97be29029c4d14f6/LogonShell/bin/Debug/theme/keyboard.icon.png -------------------------------------------------------------------------------- /LogonShell/bin/Debug/theme/loading.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheFailureOne/CLS2ForkXP/9df86e146eb35fcb5f4b841c97be29029c4d14f6/LogonShell/bin/Debug/theme/loading.gif -------------------------------------------------------------------------------- /LogonShell/bin/Debug/theme/locale.ini: -------------------------------------------------------------------------------- 1 | [Main] 2 | buttonOK=OK 3 | buttonCancel=Cancel 4 | [KeySequence] 5 | Title=Welcome to Windows 6 | Text=Press the Windows key to start. 7 | [Login] 8 | Title=Log On to Windows 9 | labelPassword=Password: 10 | labelUsername=User name: 11 | buttonOptions=Options 12 | buttonShutdown=Shutdown... 13 | [Loading] 14 | Title=Please Wait... 15 | Text=Applying your personal settings... 16 | [Shutdown] 17 | Title=Shut down Windows 18 | Text=What do you want the computer to do? 19 | Name1=Shut down 20 | Name2=Restart 21 | Name3=Stand by 22 | Desc1=Ends your session and shuts down Windows so you can safely turn off power. 23 | Desc2=Ends your session, shuts down Windows, and starts Windows again. 24 | Desc3=Maintains your session, keeping the computer running on low power with data still in memory. 25 | -------------------------------------------------------------------------------- /LogonShell/bin/Release/AxInterop.MSTSCLib.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheFailureOne/CLS2ForkXP/9df86e146eb35fcb5f4b841c97be29029c4d14f6/LogonShell/bin/Release/AxInterop.MSTSCLib.dll -------------------------------------------------------------------------------- /LogonShell/bin/Release/Interop.MSTSCLib.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheFailureOne/CLS2ForkXP/9df86e146eb35fcb5f4b841c97be29029c4d14f6/LogonShell/bin/Release/Interop.MSTSCLib.dll -------------------------------------------------------------------------------- /LogonShell/bin/Release/LogonShell.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheFailureOne/CLS2ForkXP/9df86e146eb35fcb5f4b841c97be29029c4d14f6/LogonShell/bin/Release/LogonShell.exe -------------------------------------------------------------------------------- /LogonShell/bin/Release/LogonShell.exe.config: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /LogonShell/bin/Release/LogonShell.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheFailureOne/CLS2ForkXP/9df86e146eb35fcb5f4b841c97be29029c4d14f6/LogonShell/bin/Release/LogonShell.pdb -------------------------------------------------------------------------------- /LogonShell/bin/x64/Debug/AxInterop.MSTSCLib.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheFailureOne/CLS2ForkXP/9df86e146eb35fcb5f4b841c97be29029c4d14f6/LogonShell/bin/x64/Debug/AxInterop.MSTSCLib.dll -------------------------------------------------------------------------------- /LogonShell/bin/x64/Debug/FlaUI.Core.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheFailureOne/CLS2ForkXP/9df86e146eb35fcb5f4b841c97be29029c4d14f6/LogonShell/bin/x64/Debug/FlaUI.Core.dll -------------------------------------------------------------------------------- /LogonShell/bin/x64/Debug/FlaUI.UIA3.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheFailureOne/CLS2ForkXP/9df86e146eb35fcb5f4b841c97be29029c4d14f6/LogonShell/bin/x64/Debug/FlaUI.UIA3.dll -------------------------------------------------------------------------------- /LogonShell/bin/x64/Debug/Interop.MSTSCLib.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheFailureOne/CLS2ForkXP/9df86e146eb35fcb5f4b841c97be29029c4d14f6/LogonShell/bin/x64/Debug/Interop.MSTSCLib.dll -------------------------------------------------------------------------------- /LogonShell/bin/x64/Debug/Interop.UIAutomationClient.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheFailureOne/CLS2ForkXP/9df86e146eb35fcb5f4b841c97be29029c4d14f6/LogonShell/bin/x64/Debug/Interop.UIAutomationClient.dll -------------------------------------------------------------------------------- /LogonShell/bin/x64/Debug/LogonShell.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheFailureOne/CLS2ForkXP/9df86e146eb35fcb5f4b841c97be29029c4d14f6/LogonShell/bin/x64/Debug/LogonShell.exe -------------------------------------------------------------------------------- /LogonShell/bin/x64/Debug/LogonShell.exe.config: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /LogonShell/bin/x64/Debug/LogonShell.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheFailureOne/CLS2ForkXP/9df86e146eb35fcb5f4b841c97be29029c4d14f6/LogonShell/bin/x64/Debug/LogonShell.ini -------------------------------------------------------------------------------- /LogonShell/bin/x64/Debug/LogonShell.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheFailureOne/CLS2ForkXP/9df86e146eb35fcb5f4b841c97be29029c4d14f6/LogonShell/bin/x64/Debug/LogonShell.pdb -------------------------------------------------------------------------------- /LogonShell/bin/x64/Debug/System.CodeDom.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheFailureOne/CLS2ForkXP/9df86e146eb35fcb5f4b841c97be29029c4d14f6/LogonShell/bin/x64/Debug/System.CodeDom.dll -------------------------------------------------------------------------------- /LogonShell/bin/x64/Debug/cache.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheFailureOne/CLS2ForkXP/9df86e146eb35fcb5f4b841c97be29029c4d14f6/LogonShell/bin/x64/Debug/cache.bin -------------------------------------------------------------------------------- /LogonShell/bin/x64/Debug/theme/banner.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheFailureOne/CLS2ForkXP/9df86e146eb35fcb5f4b841c97be29029c4d14f6/LogonShell/bin/x64/Debug/theme/banner.png -------------------------------------------------------------------------------- /LogonShell/bin/x64/Debug/theme/bg.logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheFailureOne/CLS2ForkXP/9df86e146eb35fcb5f4b841c97be29029c4d14f6/LogonShell/bin/x64/Debug/theme/bg.logo.png -------------------------------------------------------------------------------- /LogonShell/bin/x64/Debug/theme/computer.icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheFailureOne/CLS2ForkXP/9df86e146eb35fcb5f4b841c97be29029c4d14f6/LogonShell/bin/x64/Debug/theme/computer.icon.png -------------------------------------------------------------------------------- /LogonShell/bin/x64/Debug/theme/keyboard.icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheFailureOne/CLS2ForkXP/9df86e146eb35fcb5f4b841c97be29029c4d14f6/LogonShell/bin/x64/Debug/theme/keyboard.icon.png -------------------------------------------------------------------------------- /LogonShell/bin/x64/Debug/theme/loading.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheFailureOne/CLS2ForkXP/9df86e146eb35fcb5f4b841c97be29029c4d14f6/LogonShell/bin/x64/Debug/theme/loading.gif -------------------------------------------------------------------------------- /LogonShell/bin/x64/Debug/theme/locale.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheFailureOne/CLS2ForkXP/9df86e146eb35fcb5f4b841c97be29029c4d14f6/LogonShell/bin/x64/Debug/theme/locale.ini -------------------------------------------------------------------------------- /LogonShell/bin/x64/Debug/theme/messagebox.error.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheFailureOne/CLS2ForkXP/9df86e146eb35fcb5f4b841c97be29029c4d14f6/LogonShell/bin/x64/Debug/theme/messagebox.error.ico -------------------------------------------------------------------------------- /LogonShell/bin/x64/Debug/theme/messagebox.warning.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheFailureOne/CLS2ForkXP/9df86e146eb35fcb5f4b841c97be29029c4d14f6/LogonShell/bin/x64/Debug/theme/messagebox.warning.ico -------------------------------------------------------------------------------- /LogonShell/bin/x64/Debug/theme/shutdown.icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheFailureOne/CLS2ForkXP/9df86e146eb35fcb5f4b841c97be29029c4d14f6/LogonShell/bin/x64/Debug/theme/shutdown.icon.png -------------------------------------------------------------------------------- /LogonShell/bin/x64/Debug/theme/sleep.icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheFailureOne/CLS2ForkXP/9df86e146eb35fcb5f4b841c97be29029c4d14f6/LogonShell/bin/x64/Debug/theme/sleep.icon.png -------------------------------------------------------------------------------- /LogonShell/bin/x64/Release/FlaUI.Core.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheFailureOne/CLS2ForkXP/9df86e146eb35fcb5f4b841c97be29029c4d14f6/LogonShell/bin/x64/Release/FlaUI.Core.dll -------------------------------------------------------------------------------- /LogonShell/bin/x64/Release/FlaUI.UIA3.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheFailureOne/CLS2ForkXP/9df86e146eb35fcb5f4b841c97be29029c4d14f6/LogonShell/bin/x64/Release/FlaUI.UIA3.dll -------------------------------------------------------------------------------- /LogonShell/bin/x64/Release/Interop.UIAutomationClient.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheFailureOne/CLS2ForkXP/9df86e146eb35fcb5f4b841c97be29029c4d14f6/LogonShell/bin/x64/Release/Interop.UIAutomationClient.dll -------------------------------------------------------------------------------- /LogonShell/bin/x64/Release/LogonShell.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheFailureOne/CLS2ForkXP/9df86e146eb35fcb5f4b841c97be29029c4d14f6/LogonShell/bin/x64/Release/LogonShell.exe -------------------------------------------------------------------------------- /LogonShell/bin/x64/Release/LogonShell.exe - collegamento - Copia (2).lnk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheFailureOne/CLS2ForkXP/9df86e146eb35fcb5f4b841c97be29029c4d14f6/LogonShell/bin/x64/Release/LogonShell.exe - collegamento - Copia (2).lnk -------------------------------------------------------------------------------- /LogonShell/bin/x64/Release/LogonShell.exe - collegamento - Copia.lnk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheFailureOne/CLS2ForkXP/9df86e146eb35fcb5f4b841c97be29029c4d14f6/LogonShell/bin/x64/Release/LogonShell.exe - collegamento - Copia.lnk -------------------------------------------------------------------------------- /LogonShell/bin/x64/Release/LogonShell.exe - collegamento.lnk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheFailureOne/CLS2ForkXP/9df86e146eb35fcb5f4b841c97be29029c4d14f6/LogonShell/bin/x64/Release/LogonShell.exe - collegamento.lnk -------------------------------------------------------------------------------- /LogonShell/bin/x64/Release/LogonShell.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheFailureOne/CLS2ForkXP/9df86e146eb35fcb5f4b841c97be29029c4d14f6/LogonShell/bin/x64/Release/LogonShell.ini -------------------------------------------------------------------------------- /LogonShell/bin/x64/Release/System.CodeDom.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheFailureOne/CLS2ForkXP/9df86e146eb35fcb5f4b841c97be29029c4d14f6/LogonShell/bin/x64/Release/System.CodeDom.dll -------------------------------------------------------------------------------- /LogonShell/bin/x64/Release/cache.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheFailureOne/CLS2ForkXP/9df86e146eb35fcb5f4b841c97be29029c4d14f6/LogonShell/bin/x64/Release/cache.bin -------------------------------------------------------------------------------- /LogonShell/bin/x64/Release/theme/banner.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheFailureOne/CLS2ForkXP/9df86e146eb35fcb5f4b841c97be29029c4d14f6/LogonShell/bin/x64/Release/theme/banner.png -------------------------------------------------------------------------------- /LogonShell/bin/x64/Release/theme/banner1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheFailureOne/CLS2ForkXP/9df86e146eb35fcb5f4b841c97be29029c4d14f6/LogonShell/bin/x64/Release/theme/banner1.png -------------------------------------------------------------------------------- /LogonShell/bin/x64/Release/theme/banner2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheFailureOne/CLS2ForkXP/9df86e146eb35fcb5f4b841c97be29029c4d14f6/LogonShell/bin/x64/Release/theme/banner2.png -------------------------------------------------------------------------------- /LogonShell/bin/x64/Release/theme/bg.logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheFailureOne/CLS2ForkXP/9df86e146eb35fcb5f4b841c97be29029c4d14f6/LogonShell/bin/x64/Release/theme/bg.logo.png -------------------------------------------------------------------------------- /LogonShell/bin/x64/Release/theme/keyboard.icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheFailureOne/CLS2ForkXP/9df86e146eb35fcb5f4b841c97be29029c4d14f6/LogonShell/bin/x64/Release/theme/keyboard.icon.png -------------------------------------------------------------------------------- /LogonShell/bin/x64/Release/theme/loading.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheFailureOne/CLS2ForkXP/9df86e146eb35fcb5f4b841c97be29029c4d14f6/LogonShell/bin/x64/Release/theme/loading.gif -------------------------------------------------------------------------------- /LogonShell/bin/x64/Release/theme/locale.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheFailureOne/CLS2ForkXP/9df86e146eb35fcb5f4b841c97be29029c4d14f6/LogonShell/bin/x64/Release/theme/locale.ini -------------------------------------------------------------------------------- /LogonShell/bin/x64/Release/theme/messagebox.error.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheFailureOne/CLS2ForkXP/9df86e146eb35fcb5f4b841c97be29029c4d14f6/LogonShell/bin/x64/Release/theme/messagebox.error.ico -------------------------------------------------------------------------------- /LogonShell/bin/x64/Release/theme/messagebox.warning.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheFailureOne/CLS2ForkXP/9df86e146eb35fcb5f4b841c97be29029c4d14f6/LogonShell/bin/x64/Release/theme/messagebox.warning.ico -------------------------------------------------------------------------------- /LogonShell/bin/x64/Release/theme/shutdown.icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheFailureOne/CLS2ForkXP/9df86e146eb35fcb5f4b841c97be29029c4d14f6/LogonShell/bin/x64/Release/theme/shutdown.icon.png -------------------------------------------------------------------------------- /LogonShell/bin/x64/Release/theme/sleep.icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheFailureOne/CLS2ForkXP/9df86e146eb35fcb5f4b841c97be29029c4d14f6/LogonShell/bin/x64/Release/theme/sleep.icon.png -------------------------------------------------------------------------------- /LogonShell/logon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheFailureOne/CLS2ForkXP/9df86e146eb35fcb5f4b841c97be29029c4d14f6/LogonShell/logon.ico -------------------------------------------------------------------------------- /LogonShell/obj/Debug/.NETFramework,Version=v4.7.2.AssemblyAttributes.cs: -------------------------------------------------------------------------------- 1 | // 2 | using System; 3 | using System.Reflection; 4 | [assembly: global::System.Runtime.Versioning.TargetFrameworkAttribute(".NETFramework,Version=v4.7.2", FrameworkDisplayName = ".NET Framework 4.7.2")] 5 | -------------------------------------------------------------------------------- /LogonShell/obj/Debug/AxInterop.MSTSCLib.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheFailureOne/CLS2ForkXP/9df86e146eb35fcb5f4b841c97be29029c4d14f6/LogonShell/obj/Debug/AxInterop.MSTSCLib.dll -------------------------------------------------------------------------------- /LogonShell/obj/Debug/DesignTimeResolveAssemblyReferences.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheFailureOne/CLS2ForkXP/9df86e146eb35fcb5f4b841c97be29029c4d14f6/LogonShell/obj/Debug/DesignTimeResolveAssemblyReferences.cache -------------------------------------------------------------------------------- /LogonShell/obj/Debug/DesignTimeResolveAssemblyReferencesInput.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheFailureOne/CLS2ForkXP/9df86e146eb35fcb5f4b841c97be29029c4d14f6/LogonShell/obj/Debug/DesignTimeResolveAssemblyReferencesInput.cache -------------------------------------------------------------------------------- /LogonShell/obj/Debug/Interop.MSTSCLib.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheFailureOne/CLS2ForkXP/9df86e146eb35fcb5f4b841c97be29029c4d14f6/LogonShell/obj/Debug/Interop.MSTSCLib.dll -------------------------------------------------------------------------------- /LogonShell/obj/Debug/LogonShell.BackgroundForm.resources: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheFailureOne/CLS2ForkXP/9df86e146eb35fcb5f4b841c97be29029c4d14f6/LogonShell/obj/Debug/LogonShell.BackgroundForm.resources -------------------------------------------------------------------------------- /LogonShell/obj/Debug/LogonShell.LogOnForm.resources: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheFailureOne/CLS2ForkXP/9df86e146eb35fcb5f4b841c97be29029c4d14f6/LogonShell/obj/Debug/LogonShell.LogOnForm.resources -------------------------------------------------------------------------------- /LogonShell/obj/Debug/LogonShell.MessageBoxForm.resources: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheFailureOne/CLS2ForkXP/9df86e146eb35fcb5f4b841c97be29029c4d14f6/LogonShell/obj/Debug/LogonShell.MessageBoxForm.resources -------------------------------------------------------------------------------- /LogonShell/obj/Debug/LogonShell.Properties.Resources.resources: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheFailureOne/CLS2ForkXP/9df86e146eb35fcb5f4b841c97be29029c4d14f6/LogonShell/obj/Debug/LogonShell.Properties.Resources.resources -------------------------------------------------------------------------------- /LogonShell/obj/Debug/LogonShell.SecondaryBackgrounds.resources: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheFailureOne/CLS2ForkXP/9df86e146eb35fcb5f4b841c97be29029c4d14f6/LogonShell/obj/Debug/LogonShell.SecondaryBackgrounds.resources -------------------------------------------------------------------------------- /LogonShell/obj/Debug/LogonShell.ShutDownForm.resources: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheFailureOne/CLS2ForkXP/9df86e146eb35fcb5f4b841c97be29029c4d14f6/LogonShell/obj/Debug/LogonShell.ShutDownForm.resources -------------------------------------------------------------------------------- /LogonShell/obj/Debug/LogonShell.csproj.AssemblyReference.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheFailureOne/CLS2ForkXP/9df86e146eb35fcb5f4b841c97be29029c4d14f6/LogonShell/obj/Debug/LogonShell.csproj.AssemblyReference.cache -------------------------------------------------------------------------------- /LogonShell/obj/Debug/LogonShell.csproj.CopyComplete: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheFailureOne/CLS2ForkXP/9df86e146eb35fcb5f4b841c97be29029c4d14f6/LogonShell/obj/Debug/LogonShell.csproj.CopyComplete -------------------------------------------------------------------------------- /LogonShell/obj/Debug/LogonShell.csproj.CoreCompileInputs.cache: -------------------------------------------------------------------------------- 1 | 0a9499e100ce5224847b5205ebabfc85d550602a 2 | -------------------------------------------------------------------------------- /LogonShell/obj/Debug/LogonShell.csproj.GenerateResource.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheFailureOne/CLS2ForkXP/9df86e146eb35fcb5f4b841c97be29029c4d14f6/LogonShell/obj/Debug/LogonShell.csproj.GenerateResource.cache -------------------------------------------------------------------------------- /LogonShell/obj/Debug/LogonShell.csproj.ResolveComReference.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheFailureOne/CLS2ForkXP/9df86e146eb35fcb5f4b841c97be29029c4d14f6/LogonShell/obj/Debug/LogonShell.csproj.ResolveComReference.cache -------------------------------------------------------------------------------- /LogonShell/obj/Debug/LogonShell.csproj.SuggestedBindingRedirects.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheFailureOne/CLS2ForkXP/9df86e146eb35fcb5f4b841c97be29029c4d14f6/LogonShell/obj/Debug/LogonShell.csproj.SuggestedBindingRedirects.cache -------------------------------------------------------------------------------- /LogonShell/obj/Debug/LogonShell.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheFailureOne/CLS2ForkXP/9df86e146eb35fcb5f4b841c97be29029c4d14f6/LogonShell/obj/Debug/LogonShell.exe -------------------------------------------------------------------------------- /LogonShell/obj/Debug/LogonShell.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheFailureOne/CLS2ForkXP/9df86e146eb35fcb5f4b841c97be29029c4d14f6/LogonShell/obj/Debug/LogonShell.pdb -------------------------------------------------------------------------------- /LogonShell/obj/Debug/TempPE/Properties.Resources.Designer.cs.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheFailureOne/CLS2ForkXP/9df86e146eb35fcb5f4b841c97be29029c4d14f6/LogonShell/obj/Debug/TempPE/Properties.Resources.Designer.cs.dll -------------------------------------------------------------------------------- /LogonShell/obj/Debug/_IsIncrementalBuild: -------------------------------------------------------------------------------- 1 | obj\Debug\\_IsIncrementalBuild 2 | -------------------------------------------------------------------------------- /LogonShell/obj/Release/.NETFramework,Version=v4.7.2.AssemblyAttributes.cs: -------------------------------------------------------------------------------- 1 | // 2 | using System; 3 | using System.Reflection; 4 | [assembly: global::System.Runtime.Versioning.TargetFrameworkAttribute(".NETFramework,Version=v4.7.2", FrameworkDisplayName = ".NET Framework 4.7.2")] 5 | -------------------------------------------------------------------------------- /LogonShell/obj/Release/AxInterop.MSTSCLib.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheFailureOne/CLS2ForkXP/9df86e146eb35fcb5f4b841c97be29029c4d14f6/LogonShell/obj/Release/AxInterop.MSTSCLib.dll -------------------------------------------------------------------------------- /LogonShell/obj/Release/Interop.MSTSCLib.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheFailureOne/CLS2ForkXP/9df86e146eb35fcb5f4b841c97be29029c4d14f6/LogonShell/obj/Release/Interop.MSTSCLib.dll -------------------------------------------------------------------------------- /LogonShell/obj/Release/LogonShell.BackgroundForm.resources: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheFailureOne/CLS2ForkXP/9df86e146eb35fcb5f4b841c97be29029c4d14f6/LogonShell/obj/Release/LogonShell.BackgroundForm.resources -------------------------------------------------------------------------------- /LogonShell/obj/Release/LogonShell.LogOnForm.resources: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheFailureOne/CLS2ForkXP/9df86e146eb35fcb5f4b841c97be29029c4d14f6/LogonShell/obj/Release/LogonShell.LogOnForm.resources -------------------------------------------------------------------------------- /LogonShell/obj/Release/LogonShell.Properties.Resources.resources: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheFailureOne/CLS2ForkXP/9df86e146eb35fcb5f4b841c97be29029c4d14f6/LogonShell/obj/Release/LogonShell.Properties.Resources.resources -------------------------------------------------------------------------------- /LogonShell/obj/Release/LogonShell.ShutDownForm.resources: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheFailureOne/CLS2ForkXP/9df86e146eb35fcb5f4b841c97be29029c4d14f6/LogonShell/obj/Release/LogonShell.ShutDownForm.resources -------------------------------------------------------------------------------- /LogonShell/obj/Release/LogonShell.csproj.AssemblyReference.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheFailureOne/CLS2ForkXP/9df86e146eb35fcb5f4b841c97be29029c4d14f6/LogonShell/obj/Release/LogonShell.csproj.AssemblyReference.cache -------------------------------------------------------------------------------- /LogonShell/obj/Release/LogonShell.csproj.CoreCompileInputs.cache: -------------------------------------------------------------------------------- 1 | c450015b8d80e1c772b81b08f4f15af621af3ade 2 | -------------------------------------------------------------------------------- /LogonShell/obj/Release/LogonShell.csproj.FileListAbsolute.txt: -------------------------------------------------------------------------------- 1 | C:\Users\Nik\Desktop\ClassicLogonShell-master\LogonShell\bin\Release\LogonShell.exe.config 2 | C:\Users\Nik\Desktop\ClassicLogonShell-master\LogonShell\bin\Release\LogonShell.exe 3 | C:\Users\Nik\Desktop\ClassicLogonShell-master\LogonShell\bin\Release\LogonShell.pdb 4 | C:\Users\Nik\Desktop\ClassicLogonShell-master\LogonShell\bin\Release\Interop.MSTSCLib.dll 5 | C:\Users\Nik\Desktop\ClassicLogonShell-master\LogonShell\bin\Release\AxInterop.MSTSCLib.dll 6 | C:\Users\Nik\Desktop\ClassicLogonShell-master\LogonShell\obj\Release\LogonShell.csproj.AssemblyReference.cache 7 | C:\Users\Nik\Desktop\ClassicLogonShell-master\LogonShell\obj\Release\LogonShell.csproj.SuggestedBindingRedirects.cache 8 | C:\Users\Nik\Desktop\ClassicLogonShell-master\LogonShell\obj\Release\Interop.MSTSCLib.dll 9 | C:\Users\Nik\Desktop\ClassicLogonShell-master\LogonShell\obj\Release\AxInterop.MSTSCLib.dll 10 | C:\Users\Nik\Desktop\ClassicLogonShell-master\LogonShell\obj\Release\LogonShell.csproj.ResolveComReference.cache 11 | C:\Users\Nik\Desktop\ClassicLogonShell-master\LogonShell\obj\Release\LogonShell.BackgroundForm.resources 12 | C:\Users\Nik\Desktop\ClassicLogonShell-master\LogonShell\obj\Release\LogonShell.LogOnForm.resources 13 | C:\Users\Nik\Desktop\ClassicLogonShell-master\LogonShell\obj\Release\LogonShell.Properties.Resources.resources 14 | C:\Users\Nik\Desktop\ClassicLogonShell-master\LogonShell\obj\Release\LogonShell.ShutDownForm.resources 15 | C:\Users\Nik\Desktop\ClassicLogonShell-master\LogonShell\obj\Release\LogonShell.csproj.GenerateResource.cache 16 | C:\Users\Nik\Desktop\ClassicLogonShell-master\LogonShell\obj\Release\LogonShell.csproj.CoreCompileInputs.cache 17 | C:\Users\Nik\Desktop\ClassicLogonShell-master\LogonShell\obj\Release\LogonShell.exe 18 | C:\Users\Nik\Desktop\ClassicLogonShell-master\LogonShell\obj\Release\LogonShell.pdb 19 | -------------------------------------------------------------------------------- /LogonShell/obj/Release/LogonShell.csproj.GenerateResource.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheFailureOne/CLS2ForkXP/9df86e146eb35fcb5f4b841c97be29029c4d14f6/LogonShell/obj/Release/LogonShell.csproj.GenerateResource.cache -------------------------------------------------------------------------------- /LogonShell/obj/Release/LogonShell.csproj.ResolveComReference.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheFailureOne/CLS2ForkXP/9df86e146eb35fcb5f4b841c97be29029c4d14f6/LogonShell/obj/Release/LogonShell.csproj.ResolveComReference.cache -------------------------------------------------------------------------------- /LogonShell/obj/Release/LogonShell.csproj.SuggestedBindingRedirects.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheFailureOne/CLS2ForkXP/9df86e146eb35fcb5f4b841c97be29029c4d14f6/LogonShell/obj/Release/LogonShell.csproj.SuggestedBindingRedirects.cache -------------------------------------------------------------------------------- /LogonShell/obj/Release/LogonShell.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheFailureOne/CLS2ForkXP/9df86e146eb35fcb5f4b841c97be29029c4d14f6/LogonShell/obj/Release/LogonShell.exe -------------------------------------------------------------------------------- /LogonShell/obj/Release/LogonShell.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheFailureOne/CLS2ForkXP/9df86e146eb35fcb5f4b841c97be29029c4d14f6/LogonShell/obj/Release/LogonShell.pdb -------------------------------------------------------------------------------- /LogonShell/obj/Release/TempPE/Properties.Resources.Designer.cs.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheFailureOne/CLS2ForkXP/9df86e146eb35fcb5f4b841c97be29029c4d14f6/LogonShell/obj/Release/TempPE/Properties.Resources.Designer.cs.dll -------------------------------------------------------------------------------- /LogonShell/obj/Release/_IsIncrementalBuild: -------------------------------------------------------------------------------- 1 | obj\Release\\_IsIncrementalBuild 2 | -------------------------------------------------------------------------------- /LogonShell/obj/Release/build.force: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheFailureOne/CLS2ForkXP/9df86e146eb35fcb5f4b841c97be29029c4d14f6/LogonShell/obj/Release/build.force -------------------------------------------------------------------------------- /LogonShell/obj/x64/Debug/.NETFramework,Version=v4.7.2.AssemblyAttributes.cs: -------------------------------------------------------------------------------- 1 | // 2 | using System; 3 | using System.Reflection; 4 | [assembly: global::System.Runtime.Versioning.TargetFrameworkAttribute(".NETFramework,Version=v4.7.2", FrameworkDisplayName = ".NET Framework 4.7.2")] 5 | -------------------------------------------------------------------------------- /LogonShell/obj/x64/Debug/.NETFramework,Version=v4.8.AssemblyAttributes.cs: -------------------------------------------------------------------------------- 1 | // 2 | using System; 3 | using System.Reflection; 4 | [assembly: global::System.Runtime.Versioning.TargetFrameworkAttribute(".NETFramework,Version=v4.8", FrameworkDisplayName = ".NET Framework 4.8")] 5 | -------------------------------------------------------------------------------- /LogonShell/obj/x64/Debug/AxInterop.MSTSCLib.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheFailureOne/CLS2ForkXP/9df86e146eb35fcb5f4b841c97be29029c4d14f6/LogonShell/obj/x64/Debug/AxInterop.MSTSCLib.dll -------------------------------------------------------------------------------- /LogonShell/obj/x64/Debug/Interop.MSTSCLib.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheFailureOne/CLS2ForkXP/9df86e146eb35fcb5f4b841c97be29029c4d14f6/LogonShell/obj/x64/Debug/Interop.MSTSCLib.dll -------------------------------------------------------------------------------- /LogonShell/obj/x64/Debug/LogonShell.BackgroundForm.resources: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheFailureOne/CLS2ForkXP/9df86e146eb35fcb5f4b841c97be29029c4d14f6/LogonShell/obj/x64/Debug/LogonShell.BackgroundForm.resources -------------------------------------------------------------------------------- /LogonShell/obj/x64/Debug/LogonShell.Help.resources: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheFailureOne/CLS2ForkXP/9df86e146eb35fcb5f4b841c97be29029c4d14f6/LogonShell/obj/x64/Debug/LogonShell.Help.resources -------------------------------------------------------------------------------- /LogonShell/obj/x64/Debug/LogonShell.LogOnForm.resources: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheFailureOne/CLS2ForkXP/9df86e146eb35fcb5f4b841c97be29029c4d14f6/LogonShell/obj/x64/Debug/LogonShell.LogOnForm.resources -------------------------------------------------------------------------------- /LogonShell/obj/x64/Debug/LogonShell.MessageBoxForm.resources: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheFailureOne/CLS2ForkXP/9df86e146eb35fcb5f4b841c97be29029c4d14f6/LogonShell/obj/x64/Debug/LogonShell.MessageBoxForm.resources -------------------------------------------------------------------------------- /LogonShell/obj/x64/Debug/LogonShell.Properties.Resources.resources: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheFailureOne/CLS2ForkXP/9df86e146eb35fcb5f4b841c97be29029c4d14f6/LogonShell/obj/x64/Debug/LogonShell.Properties.Resources.resources -------------------------------------------------------------------------------- /LogonShell/obj/x64/Debug/LogonShell.SecondaryBackgrounds.resources: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheFailureOne/CLS2ForkXP/9df86e146eb35fcb5f4b841c97be29029c4d14f6/LogonShell/obj/x64/Debug/LogonShell.SecondaryBackgrounds.resources -------------------------------------------------------------------------------- /LogonShell/obj/x64/Debug/LogonShell.ShutDownForm.resources: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheFailureOne/CLS2ForkXP/9df86e146eb35fcb5f4b841c97be29029c4d14f6/LogonShell/obj/x64/Debug/LogonShell.ShutDownForm.resources -------------------------------------------------------------------------------- /LogonShell/obj/x64/Debug/LogonShell.ShutdownBackgroundForm.resources: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheFailureOne/CLS2ForkXP/9df86e146eb35fcb5f4b841c97be29029c4d14f6/LogonShell/obj/x64/Debug/LogonShell.ShutdownBackgroundForm.resources -------------------------------------------------------------------------------- /LogonShell/obj/x64/Debug/LogonShell.csproj.AssemblyReference.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheFailureOne/CLS2ForkXP/9df86e146eb35fcb5f4b841c97be29029c4d14f6/LogonShell/obj/x64/Debug/LogonShell.csproj.AssemblyReference.cache -------------------------------------------------------------------------------- /LogonShell/obj/x64/Debug/LogonShell.csproj.CopyComplete: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheFailureOne/CLS2ForkXP/9df86e146eb35fcb5f4b841c97be29029c4d14f6/LogonShell/obj/x64/Debug/LogonShell.csproj.CopyComplete -------------------------------------------------------------------------------- /LogonShell/obj/x64/Debug/LogonShell.csproj.CoreCompileInputs.cache: -------------------------------------------------------------------------------- 1 | 37e05343ab9490b5aa16ebbdbc9848ac41b876f8 2 | -------------------------------------------------------------------------------- /LogonShell/obj/x64/Debug/LogonShell.csproj.GenerateResource.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheFailureOne/CLS2ForkXP/9df86e146eb35fcb5f4b841c97be29029c4d14f6/LogonShell/obj/x64/Debug/LogonShell.csproj.GenerateResource.cache -------------------------------------------------------------------------------- /LogonShell/obj/x64/Debug/LogonShell.csproj.ResolveComReference.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheFailureOne/CLS2ForkXP/9df86e146eb35fcb5f4b841c97be29029c4d14f6/LogonShell/obj/x64/Debug/LogonShell.csproj.ResolveComReference.cache -------------------------------------------------------------------------------- /LogonShell/obj/x64/Debug/LogonShell.csproj.SuggestedBindingRedirects.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheFailureOne/CLS2ForkXP/9df86e146eb35fcb5f4b841c97be29029c4d14f6/LogonShell/obj/x64/Debug/LogonShell.csproj.SuggestedBindingRedirects.cache -------------------------------------------------------------------------------- /LogonShell/obj/x64/Debug/LogonShell.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheFailureOne/CLS2ForkXP/9df86e146eb35fcb5f4b841c97be29029c4d14f6/LogonShell/obj/x64/Debug/LogonShell.exe -------------------------------------------------------------------------------- /LogonShell/obj/x64/Debug/LogonShell.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheFailureOne/CLS2ForkXP/9df86e146eb35fcb5f4b841c97be29029c4d14f6/LogonShell/obj/x64/Debug/LogonShell.pdb -------------------------------------------------------------------------------- /LogonShell/obj/x64/Debug/TempPE/Properties.Resources.Designer.cs.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheFailureOne/CLS2ForkXP/9df86e146eb35fcb5f4b841c97be29029c4d14f6/LogonShell/obj/x64/Debug/TempPE/Properties.Resources.Designer.cs.dll -------------------------------------------------------------------------------- /LogonShell/obj/x64/Debug/_IsIncrementalBuild: -------------------------------------------------------------------------------- 1 | obj\x64\Debug\\_IsIncrementalBuild 2 | -------------------------------------------------------------------------------- /LogonShell/obj/x64/Release/.NETFramework,Version=v4.7.2.AssemblyAttributes.cs: -------------------------------------------------------------------------------- 1 | // 2 | using System; 3 | using System.Reflection; 4 | [assembly: global::System.Runtime.Versioning.TargetFrameworkAttribute(".NETFramework,Version=v4.7.2", FrameworkDisplayName = ".NET Framework 4.7.2")] 5 | -------------------------------------------------------------------------------- /LogonShell/obj/x64/Release/.NETFramework,Version=v4.8.AssemblyAttributes.cs: -------------------------------------------------------------------------------- 1 | // 2 | using System; 3 | using System.Reflection; 4 | [assembly: global::System.Runtime.Versioning.TargetFrameworkAttribute(".NETFramework,Version=v4.8", FrameworkDisplayName = ".NET Framework 4.8")] 5 | -------------------------------------------------------------------------------- /LogonShell/obj/x64/Release/DesignTimeResolveAssemblyReferences.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheFailureOne/CLS2ForkXP/9df86e146eb35fcb5f4b841c97be29029c4d14f6/LogonShell/obj/x64/Release/DesignTimeResolveAssemblyReferences.cache -------------------------------------------------------------------------------- /LogonShell/obj/x64/Release/DesignTimeResolveAssemblyReferencesInput.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheFailureOne/CLS2ForkXP/9df86e146eb35fcb5f4b841c97be29029c4d14f6/LogonShell/obj/x64/Release/DesignTimeResolveAssemblyReferencesInput.cache -------------------------------------------------------------------------------- /LogonShell/obj/x64/Release/Interop.WUApiLib.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheFailureOne/CLS2ForkXP/9df86e146eb35fcb5f4b841c97be29029c4d14f6/LogonShell/obj/x64/Release/Interop.WUApiLib.dll -------------------------------------------------------------------------------- /LogonShell/obj/x64/Release/LogonShell.BackgroundForm.resources: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheFailureOne/CLS2ForkXP/9df86e146eb35fcb5f4b841c97be29029c4d14f6/LogonShell/obj/x64/Release/LogonShell.BackgroundForm.resources -------------------------------------------------------------------------------- /LogonShell/obj/x64/Release/LogonShell.CustomTextBox.resources: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheFailureOne/CLS2ForkXP/9df86e146eb35fcb5f4b841c97be29029c4d14f6/LogonShell/obj/x64/Release/LogonShell.CustomTextBox.resources -------------------------------------------------------------------------------- /LogonShell/obj/x64/Release/LogonShell.Help.resources: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheFailureOne/CLS2ForkXP/9df86e146eb35fcb5f4b841c97be29029c4d14f6/LogonShell/obj/x64/Release/LogonShell.Help.resources -------------------------------------------------------------------------------- /LogonShell/obj/x64/Release/LogonShell.LogOnForm.resources: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheFailureOne/CLS2ForkXP/9df86e146eb35fcb5f4b841c97be29029c4d14f6/LogonShell/obj/x64/Release/LogonShell.LogOnForm.resources -------------------------------------------------------------------------------- /LogonShell/obj/x64/Release/LogonShell.MessageBoxForm.resources: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheFailureOne/CLS2ForkXP/9df86e146eb35fcb5f4b841c97be29029c4d14f6/LogonShell/obj/x64/Release/LogonShell.MessageBoxForm.resources -------------------------------------------------------------------------------- /LogonShell/obj/x64/Release/LogonShell.Properties.Resources.resources: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheFailureOne/CLS2ForkXP/9df86e146eb35fcb5f4b841c97be29029c4d14f6/LogonShell/obj/x64/Release/LogonShell.Properties.Resources.resources -------------------------------------------------------------------------------- /LogonShell/obj/x64/Release/LogonShell.SecondaryBackgrounds.resources: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheFailureOne/CLS2ForkXP/9df86e146eb35fcb5f4b841c97be29029c4d14f6/LogonShell/obj/x64/Release/LogonShell.SecondaryBackgrounds.resources -------------------------------------------------------------------------------- /LogonShell/obj/x64/Release/LogonShell.ShutDownForm.resources: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheFailureOne/CLS2ForkXP/9df86e146eb35fcb5f4b841c97be29029c4d14f6/LogonShell/obj/x64/Release/LogonShell.ShutDownForm.resources -------------------------------------------------------------------------------- /LogonShell/obj/x64/Release/LogonShell.ShutdownBackgroundForm.resources: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheFailureOne/CLS2ForkXP/9df86e146eb35fcb5f4b841c97be29029c4d14f6/LogonShell/obj/x64/Release/LogonShell.ShutdownBackgroundForm.resources -------------------------------------------------------------------------------- /LogonShell/obj/x64/Release/LogonShell.csproj.AssemblyReference.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheFailureOne/CLS2ForkXP/9df86e146eb35fcb5f4b841c97be29029c4d14f6/LogonShell/obj/x64/Release/LogonShell.csproj.AssemblyReference.cache -------------------------------------------------------------------------------- /LogonShell/obj/x64/Release/LogonShell.csproj.CopyComplete: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheFailureOne/CLS2ForkXP/9df86e146eb35fcb5f4b841c97be29029c4d14f6/LogonShell/obj/x64/Release/LogonShell.csproj.CopyComplete -------------------------------------------------------------------------------- /LogonShell/obj/x64/Release/LogonShell.csproj.CoreCompileInputs.cache: -------------------------------------------------------------------------------- 1 | 3f99b9b28763aac76a7548273c076de811959fcb 2 | -------------------------------------------------------------------------------- /LogonShell/obj/x64/Release/LogonShell.csproj.GenerateResource.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheFailureOne/CLS2ForkXP/9df86e146eb35fcb5f4b841c97be29029c4d14f6/LogonShell/obj/x64/Release/LogonShell.csproj.GenerateResource.cache -------------------------------------------------------------------------------- /LogonShell/obj/x64/Release/LogonShell.csproj.ResolveComReference.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheFailureOne/CLS2ForkXP/9df86e146eb35fcb5f4b841c97be29029c4d14f6/LogonShell/obj/x64/Release/LogonShell.csproj.ResolveComReference.cache -------------------------------------------------------------------------------- /LogonShell/obj/x64/Release/LogonShell.csproj.SuggestedBindingRedirects.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheFailureOne/CLS2ForkXP/9df86e146eb35fcb5f4b841c97be29029c4d14f6/LogonShell/obj/x64/Release/LogonShell.csproj.SuggestedBindingRedirects.cache -------------------------------------------------------------------------------- /LogonShell/obj/x64/Release/LogonShell.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheFailureOne/CLS2ForkXP/9df86e146eb35fcb5f4b841c97be29029c4d14f6/LogonShell/obj/x64/Release/LogonShell.exe -------------------------------------------------------------------------------- /LogonShell/obj/x64/Release/TempPE/Properties.Resources.Designer.cs.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheFailureOne/CLS2ForkXP/9df86e146eb35fcb5f4b841c97be29029c4d14f6/LogonShell/obj/x64/Release/TempPE/Properties.Resources.Designer.cs.dll -------------------------------------------------------------------------------- /LogonShell/obj/x64/Release/TempPE/SecondaryBackgrounds1.Designer.cs.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheFailureOne/CLS2ForkXP/9df86e146eb35fcb5f4b841c97be29029c4d14f6/LogonShell/obj/x64/Release/TempPE/SecondaryBackgrounds1.Designer.cs.dll -------------------------------------------------------------------------------- /LogonShell/obj/x64/Release/_IsIncrementalBuild: -------------------------------------------------------------------------------- 1 | obj\x64\Release\\_IsIncrementalBuild 2 | -------------------------------------------------------------------------------- /LogonShell/packages.config: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /LogonShellCustomizer/Form2.Designer.cs: -------------------------------------------------------------------------------- 1 | namespace LogonShellCustomizer 2 | { 3 | partial class Form2 4 | { 5 | /// 6 | /// Required designer variable. 7 | /// 8 | private System.ComponentModel.IContainer components = null; 9 | 10 | /// 11 | /// Clean up any resources being used. 12 | /// 13 | /// true if managed resources should be disposed; otherwise, false. 14 | protected override void Dispose(bool disposing) 15 | { 16 | if (disposing && (components != null)) 17 | { 18 | components.Dispose(); 19 | } 20 | base.Dispose(disposing); 21 | } 22 | 23 | #region Windows Form Designer generated code 24 | 25 | /// 26 | /// Required method for Designer support - do not modify 27 | /// the contents of this method with the code editor. 28 | /// 29 | private void InitializeComponent() 30 | { 31 | this.label1 = new System.Windows.Forms.Label(); 32 | this.checkedListBox1 = new System.Windows.Forms.CheckedListBox(); 33 | this.button1 = new System.Windows.Forms.Button(); 34 | this.SuspendLayout(); 35 | // 36 | // label1 37 | // 38 | this.label1.Location = new System.Drawing.Point(21, 9); 39 | this.label1.Name = "label1"; 40 | this.label1.Size = new System.Drawing.Size(179, 37); 41 | this.label1.TabIndex = 0; 42 | this.label1.Text = "An older version of this program was detected.What do you want to do?"; 43 | // 44 | // checkedListBox1 45 | // 46 | this.checkedListBox1.BorderStyle = System.Windows.Forms.BorderStyle.None; 47 | this.checkedListBox1.CheckOnClick = true; 48 | this.checkedListBox1.FormattingEnabled = true; 49 | this.checkedListBox1.Items.AddRange(new object[] { 50 | "Import the theme", 51 | "Import the localisation", 52 | "Uninstall", 53 | "Don\'t ask me anymore"}); 54 | this.checkedListBox1.Location = new System.Drawing.Point(45, 49); 55 | this.checkedListBox1.Name = "checkedListBox1"; 56 | this.checkedListBox1.Size = new System.Drawing.Size(126, 60); 57 | this.checkedListBox1.TabIndex = 1; 58 | this.checkedListBox1.ItemCheck += new System.Windows.Forms.ItemCheckEventHandler(this.checkedListBox1_SelectedIndexChanged); 59 | // 60 | // button1 61 | // 62 | this.button1.Location = new System.Drawing.Point(71, 115); 63 | this.button1.Name = "button1"; 64 | this.button1.Size = new System.Drawing.Size(75, 23); 65 | this.button1.TabIndex = 2; 66 | this.button1.Text = "Close"; 67 | this.button1.UseVisualStyleBackColor = true; 68 | this.button1.Click += new System.EventHandler(this.button1_Click); 69 | // 70 | // Form2 71 | // 72 | this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F); 73 | this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font; 74 | this.ClientSize = new System.Drawing.Size(227, 150); 75 | this.Controls.Add(this.button1); 76 | this.Controls.Add(this.checkedListBox1); 77 | this.Controls.Add(this.label1); 78 | this.Name = "Form2"; 79 | this.ShowIcon = false; 80 | this.Text = "Old Installation"; 81 | this.ResumeLayout(false); 82 | 83 | } 84 | 85 | #endregion 86 | 87 | private System.Windows.Forms.Label label1; 88 | private System.Windows.Forms.CheckedListBox checkedListBox1; 89 | private System.Windows.Forms.Button button1; 90 | } 91 | } -------------------------------------------------------------------------------- /LogonShellCustomizer/Form2.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using System.Configuration.Install; 3 | using System.IO; 4 | using System.IO.Compression; 5 | using System.ServiceProcess; 6 | using System.Windows.Forms; 7 | 8 | namespace LogonShellCustomizer 9 | { 10 | public partial class Form2 : Form 11 | { 12 | public string customizerDir; 13 | public bool importedLocale, importedTheme, shouldCheck; 14 | public Form2(string customizerDir) 15 | { 16 | InitializeComponent(); 17 | this.customizerDir = customizerDir; 18 | shouldCheck = true; 19 | } 20 | 21 | private void checkedListBox1_SelectedIndexChanged(object sender, ItemCheckEventArgs e) 22 | { 23 | if (e.Index == 2 && e.CurrentValue == CheckState.Checked) 24 | checkedListBox1.Items.Add("Don\'t ask me anymore"); 25 | if (e.Index == 2 && e.CurrentValue == CheckState.Unchecked) 26 | checkedListBox1.Items.Remove("Don\'t ask me anymore"); 27 | } 28 | 29 | private void button1_Click(object sender, EventArgs e) 30 | { 31 | bool[] checks = new bool[4]; 32 | foreach (int chk in checkedListBox1.CheckedIndices) 33 | checks[chk] = true; 34 | 35 | string cdir = @"C:\Program Files\Ellanet\Logon Screen Launcher"; 36 | 37 | if (checks[0] && File.Exists(cdir + @"\theme\locale.ini") && !File.Exists(customizerDir + "\\locale\\Imported Locale.ini")) 38 | { 39 | File.Copy(cdir + @"\theme\locale.ini", customizerDir + "\\locale\\Imported Locale.ini"); 40 | importedLocale = true; 41 | } 42 | if (checks[1] && Directory.Exists(cdir + "\\theme") && File.Exists(cdir + "\\LogonShell.ini")) 43 | { 44 | string tempFolder = Environment.CurrentDirectory + "\\Temp"; 45 | Directory.CreateDirectory(tempFolder); 46 | Directory.Move(cdir + "\\theme", tempFolder + "\\theme"); 47 | File.Copy(cdir + "\\LogonShell.ini", tempFolder + "\\LogonShell.ini"); 48 | ZipFile.CreateFromDirectory(tempFolder, customizerDir + @"\themes\Imported Theme.zip"); 49 | Directory.Move(tempFolder + "\\theme", cdir + "\\theme"); 50 | Directory.Delete(tempFolder, true); 51 | importedTheme = true; 52 | } 53 | if (checks[2]) 54 | { 55 | try 56 | { 57 | ServiceInstaller ServiceInstallerObj = new ServiceInstaller(); 58 | InstallContext Context = new InstallContext(); 59 | ServiceInstallerObj.Context = Context; 60 | ServiceInstallerObj.ServiceName = "Logon Screen Launcher"; 61 | ServiceInstallerObj.Uninstall(null); 62 | ServiceInstallerObj.Dispose(); 63 | } 64 | catch (Exception) 65 | { 66 | 67 | } 68 | Directory.Delete("C:\\Program Files\\Ellanet", true); 69 | } 70 | if (checks[2] || checks[3]) 71 | shouldCheck = false; 72 | this.Close(); 73 | } 74 | } 75 | } 76 | -------------------------------------------------------------------------------- /LogonShellCustomizer/Form4.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using System.IO; 3 | using System.Text; 4 | using System.Windows.Forms; 5 | 6 | namespace LogonShellCustomizer 7 | { 8 | public partial class Form4 : Form 9 | { 10 | string locale; 11 | public Form4(string locale) 12 | { 13 | InitializeComponent(); 14 | this.locale = locale; 15 | textBox1.Text = File.ReadAllText(Environment.CurrentDirectory + "\\customizer_files\\locale\\" + locale + ".ini"); 16 | textBox1.SelectionStart = 0; 17 | textBox2.Text = locale; 18 | } 19 | 20 | private void button1_Click(object sender, EventArgs e) 21 | { 22 | if (!String.IsNullOrEmpty(textBox1.Text)&&!String.IsNullOrEmpty(textBox2.Text)) 23 | { 24 | string fileName = Environment.CurrentDirectory + "\\customizer_files\\locale\\" + textBox2.Text + ".ini"; 25 | using (StreamWriter sw = new StreamWriter(File.Open(fileName, FileMode.Create), Encoding.Unicode)) 26 | { 27 | foreach (string line in textBox1.Lines) 28 | sw.WriteLine(line); 29 | } 30 | this.DialogResult = DialogResult.OK; 31 | this.Close(); 32 | } 33 | } 34 | 35 | private void button2_Click(object sender, EventArgs e) 36 | { 37 | this.DialogResult = DialogResult.Cancel; 38 | this.Close(); 39 | } 40 | 41 | private void textBox2_TextChanged(object sender, EventArgs e) 42 | { 43 | if (File.Exists(Environment.CurrentDirectory + "\\customizer_files\\locale\\" + textBox2.Text + ".ini")) 44 | label2.Visible = true; 45 | else 46 | label2.Visible = false; 47 | } 48 | } 49 | } 50 | -------------------------------------------------------------------------------- /LogonShellCustomizer/LogonShellCustomizer.csproj.user: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | publish\ 5 | 6 | 7 | 8 | 9 | 10 | it-IT 11 | false 12 | 13 | -------------------------------------------------------------------------------- /LogonShellCustomizer/Program.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using System.Windows.Forms; 3 | 4 | namespace LogonShellCustomizer 5 | { 6 | internal static class Program 7 | { 8 | /// 9 | /// Punto di ingresso principale dell'applicazione. 10 | /// 11 | [STAThread] 12 | static void Main() 13 | { 14 | Application.EnableVisualStyles(); 15 | Application.SetCompatibleTextRenderingDefault(false); 16 | Application.Run(new MainWindow()); 17 | } 18 | } 19 | } 20 | -------------------------------------------------------------------------------- /LogonShellCustomizer/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- 1 | using System.Reflection; 2 | using System.Runtime.CompilerServices; 3 | using System.Runtime.InteropServices; 4 | 5 | // Le informazioni generali relative a un assembly sono controllate dal seguente 6 | // set di attributi. Modificare i valori di questi attributi per modificare le informazioni 7 | // associate a un assembly. 8 | [assembly: AssemblyTitle("Classic Logon Shell Customizer")] 9 | [assembly: AssemblyDescription("The customizer for Classic Logon Shell.")] 10 | [assembly: AssemblyConfiguration("")] 11 | [assembly: AssemblyCompany("")] 12 | [assembly: AssemblyProduct("Classic Logon Shell Customizer")] 13 | [assembly: AssemblyCopyright("")] 14 | [assembly: AssemblyTrademark("")] 15 | [assembly: AssemblyCulture("")] 16 | 17 | // Se si imposta ComVisible su false, i tipi in questo assembly non saranno visibili 18 | // ai componenti COM. Se è necessario accedere a un tipo in questo assembly da 19 | // COM, impostare su true l'attributo ComVisible per tale tipo. 20 | [assembly: ComVisible(false)] 21 | 22 | // Se il progetto viene esposto a COM, il GUID seguente verrà utilizzato come ID della libreria dei tipi 23 | [assembly: Guid("f0a8c090-4b6b-4bff-a95a-6ef13bcc1bdb")] 24 | 25 | // Le informazioni sulla versione di un assembly sono costituite dai seguenti quattro valori: 26 | // 27 | // Versione principale 28 | // Versione secondaria 29 | // Numero di build 30 | // Revisione 31 | // 32 | // È possibile specificare tutti i valori oppure impostare valori predefiniti per i numeri relativi alla revisione e alla build 33 | // usando l'asterisco '*' come illustrato di seguito: 34 | // [assembly: AssemblyVersion("1.0.*")] 35 | [assembly: AssemblyVersion("2.1.*")] 36 | -------------------------------------------------------------------------------- /LogonShellCustomizer/Properties/Resources.Designer.cs: -------------------------------------------------------------------------------- 1 | //------------------------------------------------------------------------------ 2 | // 3 | // Codice generato da uno strumento. 4 | // Versione runtime:4.0.30319.42000 5 | // 6 | // Le modifiche apportate a questo file possono causare un comportamento non corretto e andranno perse se 7 | // il codice viene rigenerato. 8 | // 9 | //------------------------------------------------------------------------------ 10 | 11 | namespace LogonShellCustomizer.Properties 12 | { 13 | 14 | 15 | /// 16 | /// Classe di risorse fortemente tipizzata per la ricerca di stringhe localizzate e così via. 17 | /// 18 | // Questa classe è stata generata automaticamente dalla classe StronglyTypedResourceBuilder 19 | // tramite uno strumento quale ResGen o Visual Studio. 20 | // Per aggiungere o rimuovere un membro, modificare il file .ResX, quindi eseguire di nuovo ResGen 21 | // con l'opzione /str oppure ricompilare il progetto VS. 22 | [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Resources.Tools.StronglyTypedResourceBuilder", "4.0.0.0")] 23 | [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] 24 | [global::System.Runtime.CompilerServices.CompilerGeneratedAttribute()] 25 | internal class Resources 26 | { 27 | 28 | private static global::System.Resources.ResourceManager resourceMan; 29 | 30 | private static global::System.Globalization.CultureInfo resourceCulture; 31 | 32 | [global::System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1811:AvoidUncalledPrivateCode")] 33 | internal Resources() 34 | { 35 | } 36 | 37 | /// 38 | /// Restituisce l'istanza di ResourceManager memorizzata nella cache e usata da questa classe. 39 | /// 40 | [global::System.ComponentModel.EditorBrowsableAttribute(global::System.ComponentModel.EditorBrowsableState.Advanced)] 41 | internal static global::System.Resources.ResourceManager ResourceManager 42 | { 43 | get 44 | { 45 | if ((resourceMan == null)) 46 | { 47 | global::System.Resources.ResourceManager temp = new global::System.Resources.ResourceManager("LogonShellCustomizer.Properties.Resources", typeof(Resources).Assembly); 48 | resourceMan = temp; 49 | } 50 | return resourceMan; 51 | } 52 | } 53 | 54 | /// 55 | /// Esegue l'override della proprietà CurrentUICulture del thread corrente per tutte 56 | /// le ricerche di risorse che utilizzano questa classe di risorse fortemente tipizzata. 57 | /// 58 | [global::System.ComponentModel.EditorBrowsableAttribute(global::System.ComponentModel.EditorBrowsableState.Advanced)] 59 | internal static global::System.Globalization.CultureInfo Culture 60 | { 61 | get 62 | { 63 | return resourceCulture; 64 | } 65 | set 66 | { 67 | resourceCulture = value; 68 | } 69 | } 70 | } 71 | } 72 | -------------------------------------------------------------------------------- /LogonShellCustomizer/Properties/Settings.Designer.cs: -------------------------------------------------------------------------------- 1 | //------------------------------------------------------------------------------ 2 | // 3 | // This code was generated by a tool. 4 | // Runtime Version:4.0.30319.42000 5 | // 6 | // Changes to this file may cause incorrect behavior and will be lost if 7 | // the code is regenerated. 8 | // 9 | //------------------------------------------------------------------------------ 10 | 11 | namespace LogonShellCustomizer.Properties 12 | { 13 | 14 | 15 | [global::System.Runtime.CompilerServices.CompilerGeneratedAttribute()] 16 | [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.VisualStudio.Editors.SettingsDesigner.SettingsSingleFileGenerator", "11.0.0.0")] 17 | internal sealed partial class Settings : global::System.Configuration.ApplicationSettingsBase 18 | { 19 | 20 | private static Settings defaultInstance = ((Settings)(global::System.Configuration.ApplicationSettingsBase.Synchronized(new Settings()))); 21 | 22 | public static Settings Default 23 | { 24 | get 25 | { 26 | return defaultInstance; 27 | } 28 | } 29 | } 30 | } 31 | -------------------------------------------------------------------------------- /LogonShellCustomizer/Properties/Settings.settings: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /LogonShellCustomizer/app.manifest: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | 5 | 6 | 7 | 19 | 20 | 21 | 22 | 23 | 24 | 25 | 26 | 27 | 28 | 29 | 32 | 33 | 34 | 35 | 36 | 37 | 38 | 39 | 40 | 41 | 42 | 43 | 44 | 50 | 58 | 59 | 73 | -------------------------------------------------------------------------------- /LogonShellCustomizer/bin/Release/Customizer.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheFailureOne/CLS2ForkXP/9df86e146eb35fcb5f4b841c97be29029c4d14f6/LogonShellCustomizer/bin/Release/Customizer.exe -------------------------------------------------------------------------------- /LogonShellCustomizer/bin/Release/Customizer.exe.config: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /LogonShellCustomizer/bin/Release/Customizer.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheFailureOne/CLS2ForkXP/9df86e146eb35fcb5f4b841c97be29029c4d14f6/LogonShellCustomizer/bin/Release/Customizer.pdb -------------------------------------------------------------------------------- /LogonShellCustomizer/bin/x64/Release/Customizer.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheFailureOne/CLS2ForkXP/9df86e146eb35fcb5f4b841c97be29029c4d14f6/LogonShellCustomizer/bin/x64/Release/Customizer.exe -------------------------------------------------------------------------------- /LogonShellCustomizer/bin/x64/Release/Customizer.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheFailureOne/CLS2ForkXP/9df86e146eb35fcb5f4b841c97be29029c4d14f6/LogonShellCustomizer/bin/x64/Release/Customizer.ini -------------------------------------------------------------------------------- /LogonShellCustomizer/bin/x64/Release/English.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheFailureOne/CLS2ForkXP/9df86e146eb35fcb5f4b841c97be29029c4d14f6/LogonShellCustomizer/bin/x64/Release/English.ini -------------------------------------------------------------------------------- /LogonShellCustomizer/bin/x64/Release/LogonShell.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheFailureOne/CLS2ForkXP/9df86e146eb35fcb5f4b841c97be29029c4d14f6/LogonShellCustomizer/bin/x64/Release/LogonShell.exe -------------------------------------------------------------------------------- /LogonShellCustomizer/bin/x64/Release/LogonShell.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheFailureOne/CLS2ForkXP/9df86e146eb35fcb5f4b841c97be29029c4d14f6/LogonShellCustomizer/bin/x64/Release/LogonShell.ini -------------------------------------------------------------------------------- /LogonShellCustomizer/bin/x64/Release/cache.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheFailureOne/CLS2ForkXP/9df86e146eb35fcb5f4b841c97be29029c4d14f6/LogonShellCustomizer/bin/x64/Release/cache.bin -------------------------------------------------------------------------------- /LogonShellCustomizer/bin/x64/Release/customizer_files/locale/English.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheFailureOne/CLS2ForkXP/9df86e146eb35fcb5f4b841c97be29029c4d14f6/LogonShellCustomizer/bin/x64/Release/customizer_files/locale/English.ini -------------------------------------------------------------------------------- /LogonShellCustomizer/bin/x64/Release/customizer_files/themes/Windows 10 Classic.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheFailureOne/CLS2ForkXP/9df86e146eb35fcb5f4b841c97be29029c4d14f6/LogonShellCustomizer/bin/x64/Release/customizer_files/themes/Windows 10 Classic.zip -------------------------------------------------------------------------------- /LogonShellCustomizer/bin/x64/Release/customizer_files/themes/Windows 10 Modern.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheFailureOne/CLS2ForkXP/9df86e146eb35fcb5f4b841c97be29029c4d14f6/LogonShellCustomizer/bin/x64/Release/customizer_files/themes/Windows 10 Modern.zip -------------------------------------------------------------------------------- /LogonShellCustomizer/bin/x64/Release/customizer_files/user_settings/Windows 10 Classic.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheFailureOne/CLS2ForkXP/9df86e146eb35fcb5f4b841c97be29029c4d14f6/LogonShellCustomizer/bin/x64/Release/customizer_files/user_settings/Windows 10 Classic.ini -------------------------------------------------------------------------------- /LogonShellCustomizer/bin/x64/Release/theme/banner.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheFailureOne/CLS2ForkXP/9df86e146eb35fcb5f4b841c97be29029c4d14f6/LogonShellCustomizer/bin/x64/Release/theme/banner.png -------------------------------------------------------------------------------- /LogonShellCustomizer/bin/x64/Release/theme/bg.logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheFailureOne/CLS2ForkXP/9df86e146eb35fcb5f4b841c97be29029c4d14f6/LogonShellCustomizer/bin/x64/Release/theme/bg.logo.png -------------------------------------------------------------------------------- /LogonShellCustomizer/bin/x64/Release/theme/keyboard.icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheFailureOne/CLS2ForkXP/9df86e146eb35fcb5f4b841c97be29029c4d14f6/LogonShellCustomizer/bin/x64/Release/theme/keyboard.icon.png -------------------------------------------------------------------------------- /LogonShellCustomizer/bin/x64/Release/theme/loading.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheFailureOne/CLS2ForkXP/9df86e146eb35fcb5f4b841c97be29029c4d14f6/LogonShellCustomizer/bin/x64/Release/theme/loading.gif -------------------------------------------------------------------------------- /LogonShellCustomizer/bin/x64/Release/theme/locale.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheFailureOne/CLS2ForkXP/9df86e146eb35fcb5f4b841c97be29029c4d14f6/LogonShellCustomizer/bin/x64/Release/theme/locale.ini -------------------------------------------------------------------------------- /LogonShellCustomizer/bin/x64/Release/theme/messagebox.error.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheFailureOne/CLS2ForkXP/9df86e146eb35fcb5f4b841c97be29029c4d14f6/LogonShellCustomizer/bin/x64/Release/theme/messagebox.error.ico -------------------------------------------------------------------------------- /LogonShellCustomizer/bin/x64/Release/theme/messagebox.warning.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheFailureOne/CLS2ForkXP/9df86e146eb35fcb5f4b841c97be29029c4d14f6/LogonShellCustomizer/bin/x64/Release/theme/messagebox.warning.ico -------------------------------------------------------------------------------- /LogonShellCustomizer/bin/x64/Release/theme/restart.icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheFailureOne/CLS2ForkXP/9df86e146eb35fcb5f4b841c97be29029c4d14f6/LogonShellCustomizer/bin/x64/Release/theme/restart.icon.png -------------------------------------------------------------------------------- /LogonShellCustomizer/bin/x64/Release/theme/shutdown.icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheFailureOne/CLS2ForkXP/9df86e146eb35fcb5f4b841c97be29029c4d14f6/LogonShellCustomizer/bin/x64/Release/theme/shutdown.icon.png -------------------------------------------------------------------------------- /LogonShellCustomizer/bin/x64/Release/theme/sleep.icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheFailureOne/CLS2ForkXP/9df86e146eb35fcb5f4b841c97be29029c4d14f6/LogonShellCustomizer/bin/x64/Release/theme/sleep.icon.png -------------------------------------------------------------------------------- /LogonShellCustomizer/logon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheFailureOne/CLS2ForkXP/9df86e146eb35fcb5f4b841c97be29029c4d14f6/LogonShellCustomizer/logon.ico -------------------------------------------------------------------------------- /LogonShellCustomizer/obj/Debug/.NETFramework,Version=v4.8.AssemblyAttributes.cs: -------------------------------------------------------------------------------- 1 | // 2 | using System; 3 | using System.Reflection; 4 | [assembly: global::System.Runtime.Versioning.TargetFrameworkAttribute(".NETFramework,Version=v4.8", FrameworkDisplayName = ".NET Framework 4.8")] 5 | -------------------------------------------------------------------------------- /LogonShellCustomizer/obj/Debug/DesignTimeResolveAssemblyReferencesInput.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheFailureOne/CLS2ForkXP/9df86e146eb35fcb5f4b841c97be29029c4d14f6/LogonShellCustomizer/obj/Debug/DesignTimeResolveAssemblyReferencesInput.cache -------------------------------------------------------------------------------- /LogonShellCustomizer/obj/Debug/LogonShellCustomizer.csproj.AssemblyReference.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheFailureOne/CLS2ForkXP/9df86e146eb35fcb5f4b841c97be29029c4d14f6/LogonShellCustomizer/obj/Debug/LogonShellCustomizer.csproj.AssemblyReference.cache -------------------------------------------------------------------------------- /LogonShellCustomizer/obj/Release/.NETFramework,Version=v4.8.AssemblyAttributes.cs: -------------------------------------------------------------------------------- 1 | // 2 | using System; 3 | using System.Reflection; 4 | [assembly: global::System.Runtime.Versioning.TargetFrameworkAttribute(".NETFramework,Version=v4.8", FrameworkDisplayName = ".NET Framework 4.8")] 5 | -------------------------------------------------------------------------------- /LogonShellCustomizer/obj/Release/Customizer.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheFailureOne/CLS2ForkXP/9df86e146eb35fcb5f4b841c97be29029c4d14f6/LogonShellCustomizer/obj/Release/Customizer.exe -------------------------------------------------------------------------------- /LogonShellCustomizer/obj/Release/Customizer.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheFailureOne/CLS2ForkXP/9df86e146eb35fcb5f4b841c97be29029c4d14f6/LogonShellCustomizer/obj/Release/Customizer.pdb -------------------------------------------------------------------------------- /LogonShellCustomizer/obj/Release/DesignTimeResolveAssemblyReferences.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheFailureOne/CLS2ForkXP/9df86e146eb35fcb5f4b841c97be29029c4d14f6/LogonShellCustomizer/obj/Release/DesignTimeResolveAssemblyReferences.cache -------------------------------------------------------------------------------- /LogonShellCustomizer/obj/Release/DesignTimeResolveAssemblyReferencesInput.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheFailureOne/CLS2ForkXP/9df86e146eb35fcb5f4b841c97be29029c4d14f6/LogonShellCustomizer/obj/Release/DesignTimeResolveAssemblyReferencesInput.cache -------------------------------------------------------------------------------- /LogonShellCustomizer/obj/Release/LogonShellCustomizer.MainWindow.resources: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheFailureOne/CLS2ForkXP/9df86e146eb35fcb5f4b841c97be29029c4d14f6/LogonShellCustomizer/obj/Release/LogonShellCustomizer.MainWindow.resources -------------------------------------------------------------------------------- /LogonShellCustomizer/obj/Release/LogonShellCustomizer.Properties.Resources.resources: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheFailureOne/CLS2ForkXP/9df86e146eb35fcb5f4b841c97be29029c4d14f6/LogonShellCustomizer/obj/Release/LogonShellCustomizer.Properties.Resources.resources -------------------------------------------------------------------------------- /LogonShellCustomizer/obj/Release/LogonShellCustomizer.csproj.AssemblyReference.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheFailureOne/CLS2ForkXP/9df86e146eb35fcb5f4b841c97be29029c4d14f6/LogonShellCustomizer/obj/Release/LogonShellCustomizer.csproj.AssemblyReference.cache -------------------------------------------------------------------------------- /LogonShellCustomizer/obj/Release/LogonShellCustomizer.csproj.CoreCompileInputs.cache: -------------------------------------------------------------------------------- 1 | 5d83de8f877ab315fb0e9d28d2b466dab91d6afc 2 | -------------------------------------------------------------------------------- /LogonShellCustomizer/obj/Release/LogonShellCustomizer.csproj.FileListAbsolute.txt: -------------------------------------------------------------------------------- 1 | C:\Users\Nicola\Desktop\ClassicLogonShell-master - Copia\LogonShellCustomizer\obj\Release\LogonShellCustomizer.csproj.AssemblyReference.cache 2 | C:\Users\Nicola\Desktop\ClassicLogonShell-master - Copia\LogonShellCustomizer\obj\Release\LogonShellCustomizer.csproj.SuggestedBindingRedirects.cache 3 | C:\Users\Nicola\Desktop\ClassicLogonShell-master - Copia\LogonShellCustomizer\obj\Release\LogonShellCustomizer.MainWindow.resources 4 | C:\Users\Nicola\Desktop\ClassicLogonShell-master - Copia\LogonShellCustomizer\obj\Release\LogonShellCustomizer.Properties.Resources.resources 5 | C:\Users\Nicola\Desktop\ClassicLogonShell-master - Copia\LogonShellCustomizer\obj\Release\LogonShellCustomizer.csproj.GenerateResource.cache 6 | C:\Users\Nicola\Desktop\ClassicLogonShell-master - Copia\LogonShellCustomizer\obj\Release\LogonShellCustomizer.csproj.CoreCompileInputs.cache 7 | C:\Users\Nicola\Desktop\ClassicLogonShell-master - Copia\LogonShellCustomizer\bin\Release\Customizer.exe.config 8 | C:\Users\Nicola\Desktop\ClassicLogonShell-master - Copia\LogonShellCustomizer\bin\Release\Customizer.exe 9 | C:\Users\Nicola\Desktop\ClassicLogonShell-master - Copia\LogonShellCustomizer\bin\Release\Customizer.pdb 10 | C:\Users\Nicola\Desktop\ClassicLogonShell-master - Copia\LogonShellCustomizer\obj\Release\Customizer.exe 11 | C:\Users\Nicola\Desktop\ClassicLogonShell-master - Copia\LogonShellCustomizer\obj\Release\Customizer.pdb 12 | -------------------------------------------------------------------------------- /LogonShellCustomizer/obj/Release/LogonShellCustomizer.csproj.GenerateResource.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheFailureOne/CLS2ForkXP/9df86e146eb35fcb5f4b841c97be29029c4d14f6/LogonShellCustomizer/obj/Release/LogonShellCustomizer.csproj.GenerateResource.cache -------------------------------------------------------------------------------- /LogonShellCustomizer/obj/Release/LogonShellCustomizer.csproj.SuggestedBindingRedirects.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheFailureOne/CLS2ForkXP/9df86e146eb35fcb5f4b841c97be29029c4d14f6/LogonShellCustomizer/obj/Release/LogonShellCustomizer.csproj.SuggestedBindingRedirects.cache -------------------------------------------------------------------------------- /LogonShellCustomizer/obj/x64/Release/.NETFramework,Version=v4.8.AssemblyAttributes.cs: -------------------------------------------------------------------------------- 1 | // 2 | using System; 3 | using System.Reflection; 4 | [assembly: global::System.Runtime.Versioning.TargetFrameworkAttribute(".NETFramework,Version=v4.8", FrameworkDisplayName = ".NET Framework 4.8")] 5 | -------------------------------------------------------------------------------- /LogonShellCustomizer/obj/x64/Release/Customizer.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheFailureOne/CLS2ForkXP/9df86e146eb35fcb5f4b841c97be29029c4d14f6/LogonShellCustomizer/obj/x64/Release/Customizer.exe -------------------------------------------------------------------------------- /LogonShellCustomizer/obj/x64/Release/DesignTimeResolveAssemblyReferences.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheFailureOne/CLS2ForkXP/9df86e146eb35fcb5f4b841c97be29029c4d14f6/LogonShellCustomizer/obj/x64/Release/DesignTimeResolveAssemblyReferences.cache -------------------------------------------------------------------------------- /LogonShellCustomizer/obj/x64/Release/DesignTimeResolveAssemblyReferencesInput.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheFailureOne/CLS2ForkXP/9df86e146eb35fcb5f4b841c97be29029c4d14f6/LogonShellCustomizer/obj/x64/Release/DesignTimeResolveAssemblyReferencesInput.cache -------------------------------------------------------------------------------- /LogonShellCustomizer/obj/x64/Release/LogonShellCustomizer.Form2.resources: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheFailureOne/CLS2ForkXP/9df86e146eb35fcb5f4b841c97be29029c4d14f6/LogonShellCustomizer/obj/x64/Release/LogonShellCustomizer.Form2.resources -------------------------------------------------------------------------------- /LogonShellCustomizer/obj/x64/Release/LogonShellCustomizer.Form3.resources: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheFailureOne/CLS2ForkXP/9df86e146eb35fcb5f4b841c97be29029c4d14f6/LogonShellCustomizer/obj/x64/Release/LogonShellCustomizer.Form3.resources -------------------------------------------------------------------------------- /LogonShellCustomizer/obj/x64/Release/LogonShellCustomizer.Form4.resources: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheFailureOne/CLS2ForkXP/9df86e146eb35fcb5f4b841c97be29029c4d14f6/LogonShellCustomizer/obj/x64/Release/LogonShellCustomizer.Form4.resources -------------------------------------------------------------------------------- /LogonShellCustomizer/obj/x64/Release/LogonShellCustomizer.Form5.resources: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheFailureOne/CLS2ForkXP/9df86e146eb35fcb5f4b841c97be29029c4d14f6/LogonShellCustomizer/obj/x64/Release/LogonShellCustomizer.Form5.resources -------------------------------------------------------------------------------- /LogonShellCustomizer/obj/x64/Release/LogonShellCustomizer.MainWindow.resources: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheFailureOne/CLS2ForkXP/9df86e146eb35fcb5f4b841c97be29029c4d14f6/LogonShellCustomizer/obj/x64/Release/LogonShellCustomizer.MainWindow.resources -------------------------------------------------------------------------------- /LogonShellCustomizer/obj/x64/Release/LogonShellCustomizer.Properties.Resources.resources: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheFailureOne/CLS2ForkXP/9df86e146eb35fcb5f4b841c97be29029c4d14f6/LogonShellCustomizer/obj/x64/Release/LogonShellCustomizer.Properties.Resources.resources -------------------------------------------------------------------------------- /LogonShellCustomizer/obj/x64/Release/LogonShellCustomizer.csproj.AssemblyReference.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheFailureOne/CLS2ForkXP/9df86e146eb35fcb5f4b841c97be29029c4d14f6/LogonShellCustomizer/obj/x64/Release/LogonShellCustomizer.csproj.AssemblyReference.cache -------------------------------------------------------------------------------- /LogonShellCustomizer/obj/x64/Release/LogonShellCustomizer.csproj.CoreCompileInputs.cache: -------------------------------------------------------------------------------- 1 | 0f78d0508015785a90ad35669099e7d2796a86f0 2 | -------------------------------------------------------------------------------- /LogonShellCustomizer/obj/x64/Release/LogonShellCustomizer.csproj.GenerateResource.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheFailureOne/CLS2ForkXP/9df86e146eb35fcb5f4b841c97be29029c4d14f6/LogonShellCustomizer/obj/x64/Release/LogonShellCustomizer.csproj.GenerateResource.cache -------------------------------------------------------------------------------- /LogonShellCustomizer/obj/x64/Release/LogonShellCustomizer.csproj.SuggestedBindingRedirects.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheFailureOne/CLS2ForkXP/9df86e146eb35fcb5f4b841c97be29029c4d14f6/LogonShellCustomizer/obj/x64/Release/LogonShellCustomizer.csproj.SuggestedBindingRedirects.cache -------------------------------------------------------------------------------- /Resources/CLS.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheFailureOne/CLS2ForkXP/9df86e146eb35fcb5f4b841c97be29029c4d14f6/Resources/CLS.png -------------------------------------------------------------------------------- /Resources/CLS.psd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheFailureOne/CLS2ForkXP/9df86e146eb35fcb5f4b841c97be29029c4d14f6/Resources/CLS.psd -------------------------------------------------------------------------------- /Resources/XP/DividerBottom.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheFailureOne/CLS2ForkXP/9df86e146eb35fcb5f4b841c97be29029c4d14f6/Resources/XP/DividerBottom.bmp -------------------------------------------------------------------------------- /Resources/XP/DividerTop.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheFailureOne/CLS2ForkXP/9df86e146eb35fcb5f4b841c97be29029c4d14f6/Resources/XP/DividerTop.bmp -------------------------------------------------------------------------------- /Resources/XP/DividerXPLogoAndLoginScreen.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheFailureOne/CLS2ForkXP/9df86e146eb35fcb5f4b841c97be29029c4d14f6/Resources/XP/DividerXPLogoAndLoginScreen.bmp -------------------------------------------------------------------------------- /Resources/XP/GoIcon.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheFailureOne/CLS2ForkXP/9df86e146eb35fcb5f4b841c97be29029c4d14f6/Resources/XP/GoIcon.bmp -------------------------------------------------------------------------------- /Resources/XP/GoIconSelected.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheFailureOne/CLS2ForkXP/9df86e146eb35fcb5f4b841c97be29029c4d14f6/Resources/XP/GoIconSelected.bmp -------------------------------------------------------------------------------- /Resources/XP/InputArea.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheFailureOne/CLS2ForkXP/9df86e146eb35fcb5f4b841c97be29029c4d14f6/Resources/XP/InputArea.bmp -------------------------------------------------------------------------------- /Resources/XP/PFP.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheFailureOne/CLS2ForkXP/9df86e146eb35fcb5f4b841c97be29029c4d14f6/Resources/XP/PFP.bmp -------------------------------------------------------------------------------- /Resources/XP/SelectedUserBackground.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheFailureOne/CLS2ForkXP/9df86e146eb35fcb5f4b841c97be29029c4d14f6/Resources/XP/SelectedUserBackground.bmp -------------------------------------------------------------------------------- /Resources/XP/Shade.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheFailureOne/CLS2ForkXP/9df86e146eb35fcb5f4b841c97be29029c4d14f6/Resources/XP/Shade.bmp -------------------------------------------------------------------------------- /Resources/XP/Shutdown.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheFailureOne/CLS2ForkXP/9df86e146eb35fcb5f4b841c97be29029c4d14f6/Resources/XP/Shutdown.bmp -------------------------------------------------------------------------------- /Resources/XP/UserHoverOrSelected.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheFailureOne/CLS2ForkXP/9df86e146eb35fcb5f4b841c97be29029c4d14f6/Resources/XP/UserHoverOrSelected.bmp -------------------------------------------------------------------------------- /Resources/XP/UserHoverOrSelected.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheFailureOne/CLS2ForkXP/9df86e146eb35fcb5f4b841c97be29029c4d14f6/Resources/XP/UserHoverOrSelected.png -------------------------------------------------------------------------------- /Resources/XP/UserNotHoverOrSelected.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheFailureOne/CLS2ForkXP/9df86e146eb35fcb5f4b841c97be29029c4d14f6/Resources/XP/UserNotHoverOrSelected.bmp -------------------------------------------------------------------------------- /Resources/XP/XPLogo.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheFailureOne/CLS2ForkXP/9df86e146eb35fcb5f4b841c97be29029c4d14f6/Resources/XP/XPLogo.bmp -------------------------------------------------------------------------------- /Resources/logon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheFailureOne/CLS2ForkXP/9df86e146eb35fcb5f4b841c97be29029c4d14f6/Resources/logon.ico -------------------------------------------------------------------------------- /Resources/logon_128.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheFailureOne/CLS2ForkXP/9df86e146eb35fcb5f4b841c97be29029c4d14f6/Resources/logon_128.png -------------------------------------------------------------------------------- /Resources/logon_16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheFailureOne/CLS2ForkXP/9df86e146eb35fcb5f4b841c97be29029c4d14f6/Resources/logon_16.png -------------------------------------------------------------------------------- /Resources/logon_256.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheFailureOne/CLS2ForkXP/9df86e146eb35fcb5f4b841c97be29029c4d14f6/Resources/logon_256.png -------------------------------------------------------------------------------- /Resources/logon_32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheFailureOne/CLS2ForkXP/9df86e146eb35fcb5f4b841c97be29029c4d14f6/Resources/logon_32.png -------------------------------------------------------------------------------- /Resources/logon_512.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheFailureOne/CLS2ForkXP/9df86e146eb35fcb5f4b841c97be29029c4d14f6/Resources/logon_512.png -------------------------------------------------------------------------------- /Resources/logon_64.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheFailureOne/CLS2ForkXP/9df86e146eb35fcb5f4b841c97be29029c4d14f6/Resources/logon_64.png -------------------------------------------------------------------------------- /kj.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheFailureOne/CLS2ForkXP/9df86e146eb35fcb5f4b841c97be29029c4d14f6/kj.ico -------------------------------------------------------------------------------- /packages/FlaUI.Core.4.0.0/.signature.p7s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheFailureOne/CLS2ForkXP/9df86e146eb35fcb5f4b841c97be29029c4d14f6/packages/FlaUI.Core.4.0.0/.signature.p7s -------------------------------------------------------------------------------- /packages/FlaUI.Core.4.0.0/FlaUI.Core.4.0.0.nupkg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheFailureOne/CLS2ForkXP/9df86e146eb35fcb5f4b841c97be29029c4d14f6/packages/FlaUI.Core.4.0.0/FlaUI.Core.4.0.0.nupkg -------------------------------------------------------------------------------- /packages/FlaUI.Core.4.0.0/FlaUI.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheFailureOne/CLS2ForkXP/9df86e146eb35fcb5f4b841c97be29029c4d14f6/packages/FlaUI.Core.4.0.0/FlaUI.png -------------------------------------------------------------------------------- /packages/FlaUI.Core.4.0.0/LICENSE.txt: -------------------------------------------------------------------------------- 1 | The MIT License (MIT) 2 | 3 | Copyright (c) 2016-2022 4 | 5 | Permission is hereby granted, free of charge, to any person obtaining a copy 6 | of this software and associated documentation files (the "Software"), to deal 7 | in the Software without restriction, including without limitation the rights 8 | to use, copy, modify, merge, publish, distribute, sublicense, and/or sell 9 | copies of the Software, and to permit persons to whom the Software is 10 | furnished to do so, subject to the following conditions: 11 | 12 | The above copyright notice and this permission notice shall be included in all 13 | copies or substantial portions of the Software. 14 | 15 | THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR 16 | IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, 17 | FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE 18 | AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER 19 | LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, 20 | OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE 21 | SOFTWARE. 22 | -------------------------------------------------------------------------------- /packages/FlaUI.Core.4.0.0/lib/net48/FlaUI.Core.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheFailureOne/CLS2ForkXP/9df86e146eb35fcb5f4b841c97be29029c4d14f6/packages/FlaUI.Core.4.0.0/lib/net48/FlaUI.Core.dll -------------------------------------------------------------------------------- /packages/FlaUI.Core.4.0.0/lib/net5.0-windows7.0/FlaUI.Core.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheFailureOne/CLS2ForkXP/9df86e146eb35fcb5f4b841c97be29029c4d14f6/packages/FlaUI.Core.4.0.0/lib/net5.0-windows7.0/FlaUI.Core.dll -------------------------------------------------------------------------------- /packages/FlaUI.Core.4.0.0/lib/net6.0-windows7.0/FlaUI.Core.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheFailureOne/CLS2ForkXP/9df86e146eb35fcb5f4b841c97be29029c4d14f6/packages/FlaUI.Core.4.0.0/lib/net6.0-windows7.0/FlaUI.Core.dll -------------------------------------------------------------------------------- /packages/FlaUI.Core.4.0.0/lib/netcoreapp3.1/FlaUI.Core.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheFailureOne/CLS2ForkXP/9df86e146eb35fcb5f4b841c97be29029c4d14f6/packages/FlaUI.Core.4.0.0/lib/netcoreapp3.1/FlaUI.Core.dll -------------------------------------------------------------------------------- /packages/FlaUI.Core.4.0.0/lib/netstandard2.0/FlaUI.Core.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheFailureOne/CLS2ForkXP/9df86e146eb35fcb5f4b841c97be29029c4d14f6/packages/FlaUI.Core.4.0.0/lib/netstandard2.0/FlaUI.Core.dll -------------------------------------------------------------------------------- /packages/FlaUI.UIA3.4.0.0/.signature.p7s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheFailureOne/CLS2ForkXP/9df86e146eb35fcb5f4b841c97be29029c4d14f6/packages/FlaUI.UIA3.4.0.0/.signature.p7s -------------------------------------------------------------------------------- /packages/FlaUI.UIA3.4.0.0/FlaUI.UIA3.4.0.0.nupkg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheFailureOne/CLS2ForkXP/9df86e146eb35fcb5f4b841c97be29029c4d14f6/packages/FlaUI.UIA3.4.0.0/FlaUI.UIA3.4.0.0.nupkg -------------------------------------------------------------------------------- /packages/FlaUI.UIA3.4.0.0/FlaUI.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheFailureOne/CLS2ForkXP/9df86e146eb35fcb5f4b841c97be29029c4d14f6/packages/FlaUI.UIA3.4.0.0/FlaUI.png -------------------------------------------------------------------------------- /packages/FlaUI.UIA3.4.0.0/LICENSE.txt: -------------------------------------------------------------------------------- 1 | The MIT License (MIT) 2 | 3 | Copyright (c) 2016-2022 4 | 5 | Permission is hereby granted, free of charge, to any person obtaining a copy 6 | of this software and associated documentation files (the "Software"), to deal 7 | in the Software without restriction, including without limitation the rights 8 | to use, copy, modify, merge, publish, distribute, sublicense, and/or sell 9 | copies of the Software, and to permit persons to whom the Software is 10 | furnished to do so, subject to the following conditions: 11 | 12 | The above copyright notice and this permission notice shall be included in all 13 | copies or substantial portions of the Software. 14 | 15 | THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR 16 | IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, 17 | FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE 18 | AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER 19 | LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, 20 | OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE 21 | SOFTWARE. 22 | -------------------------------------------------------------------------------- /packages/FlaUI.UIA3.4.0.0/lib/net48/FlaUI.UIA3.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheFailureOne/CLS2ForkXP/9df86e146eb35fcb5f4b841c97be29029c4d14f6/packages/FlaUI.UIA3.4.0.0/lib/net48/FlaUI.UIA3.dll -------------------------------------------------------------------------------- /packages/FlaUI.UIA3.4.0.0/lib/net5.0-windows7.0/FlaUI.UIA3.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheFailureOne/CLS2ForkXP/9df86e146eb35fcb5f4b841c97be29029c4d14f6/packages/FlaUI.UIA3.4.0.0/lib/net5.0-windows7.0/FlaUI.UIA3.dll -------------------------------------------------------------------------------- /packages/FlaUI.UIA3.4.0.0/lib/net6.0-windows7.0/FlaUI.UIA3.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheFailureOne/CLS2ForkXP/9df86e146eb35fcb5f4b841c97be29029c4d14f6/packages/FlaUI.UIA3.4.0.0/lib/net6.0-windows7.0/FlaUI.UIA3.dll -------------------------------------------------------------------------------- /packages/FlaUI.UIA3.4.0.0/lib/netcoreapp3.1/FlaUI.UIA3.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheFailureOne/CLS2ForkXP/9df86e146eb35fcb5f4b841c97be29029c4d14f6/packages/FlaUI.UIA3.4.0.0/lib/netcoreapp3.1/FlaUI.UIA3.dll -------------------------------------------------------------------------------- /packages/FlaUI.UIA3.4.0.0/lib/netstandard2.0/FlaUI.UIA3.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheFailureOne/CLS2ForkXP/9df86e146eb35fcb5f4b841c97be29029c4d14f6/packages/FlaUI.UIA3.4.0.0/lib/netstandard2.0/FlaUI.UIA3.dll -------------------------------------------------------------------------------- /packages/Interop.UIAutomationClient.10.19041.0/.signature.p7s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheFailureOne/CLS2ForkXP/9df86e146eb35fcb5f4b841c97be29029c4d14f6/packages/Interop.UIAutomationClient.10.19041.0/.signature.p7s -------------------------------------------------------------------------------- /packages/Interop.UIAutomationClient.10.19041.0/Interop.UIAutomationClient.10.19041.0.nupkg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheFailureOne/CLS2ForkXP/9df86e146eb35fcb5f4b841c97be29029c4d14f6/packages/Interop.UIAutomationClient.10.19041.0/Interop.UIAutomationClient.10.19041.0.nupkg -------------------------------------------------------------------------------- /packages/Interop.UIAutomationClient.10.19041.0/LICENSE.txt: -------------------------------------------------------------------------------- 1 | MIT License 2 | 3 | Copyright (c) 2019 Roman 4 | 5 | Permission is hereby granted, free of charge, to any person obtaining a copy 6 | of this software and associated documentation files (the "Software"), to deal 7 | in the Software without restriction, including without limitation the rights 8 | to use, copy, modify, merge, publish, distribute, sublicense, and/or sell 9 | copies of the Software, and to permit persons to whom the Software is 10 | furnished to do so, subject to the following conditions: 11 | 12 | The above copyright notice and this permission notice shall be included in all 13 | copies or substantial portions of the Software. 14 | 15 | THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR 16 | IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, 17 | FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE 18 | AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER 19 | LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, 20 | OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE 21 | SOFTWARE. 22 | -------------------------------------------------------------------------------- /packages/Interop.UIAutomationClient.10.19041.0/build/Interop.UIAutomationClient.targets: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | <_InteropAssemblyFileName>Interop.UIAutomationClient 6 | 7 | 8 | 9 | false 10 | 11 | 12 | 13 | 14 | -------------------------------------------------------------------------------- /packages/Interop.UIAutomationClient.10.19041.0/lib/net35/Interop.UIAutomationClient.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheFailureOne/CLS2ForkXP/9df86e146eb35fcb5f4b841c97be29029c4d14f6/packages/Interop.UIAutomationClient.10.19041.0/lib/net35/Interop.UIAutomationClient.dll -------------------------------------------------------------------------------- /packages/Interop.UIAutomationClient.10.19041.0/lib/net40/Interop.UIAutomationClient.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheFailureOne/CLS2ForkXP/9df86e146eb35fcb5f4b841c97be29029c4d14f6/packages/Interop.UIAutomationClient.10.19041.0/lib/net40/Interop.UIAutomationClient.dll -------------------------------------------------------------------------------- /packages/Interop.UIAutomationClient.10.19041.0/lib/net45/Interop.UIAutomationClient.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheFailureOne/CLS2ForkXP/9df86e146eb35fcb5f4b841c97be29029c4d14f6/packages/Interop.UIAutomationClient.10.19041.0/lib/net45/Interop.UIAutomationClient.dll -------------------------------------------------------------------------------- /packages/Interop.UIAutomationClient.10.19041.0/lib/netcoreapp3.0/Interop.UIAutomationClient.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheFailureOne/CLS2ForkXP/9df86e146eb35fcb5f4b841c97be29029c4d14f6/packages/Interop.UIAutomationClient.10.19041.0/lib/netcoreapp3.0/Interop.UIAutomationClient.dll -------------------------------------------------------------------------------- /packages/Interop.UIAutomationClient.10.19041.0/lib/netstandard2.0/Interop.UIAutomationClient.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheFailureOne/CLS2ForkXP/9df86e146eb35fcb5f4b841c97be29029c4d14f6/packages/Interop.UIAutomationClient.10.19041.0/lib/netstandard2.0/Interop.UIAutomationClient.dll -------------------------------------------------------------------------------- /packages/Interop.UIAutomationClient.10.19041.0/tools/install.ps1: -------------------------------------------------------------------------------- 1 | param($installPath, $toolsPath, $package, $project) 2 | 3 | $project.Object.References | Where-Object { $_.EmbedInteropTypes -eq $true -and $_.Name -eq "Interop.UIAutomationClient" } | ForEach-Object { $_.EmbedInteropTypes = $false } 4 | $project.Save() -------------------------------------------------------------------------------- /packages/System.CodeDom.7.0.0-rc.2.22472.3/.signature.p7s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheFailureOne/CLS2ForkXP/9df86e146eb35fcb5f4b841c97be29029c4d14f6/packages/System.CodeDom.7.0.0-rc.2.22472.3/.signature.p7s -------------------------------------------------------------------------------- /packages/System.CodeDom.7.0.0-rc.2.22472.3/Icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheFailureOne/CLS2ForkXP/9df86e146eb35fcb5f4b841c97be29029c4d14f6/packages/System.CodeDom.7.0.0-rc.2.22472.3/Icon.png -------------------------------------------------------------------------------- /packages/System.CodeDom.7.0.0-rc.2.22472.3/LICENSE.TXT: -------------------------------------------------------------------------------- 1 | The MIT License (MIT) 2 | 3 | Copyright (c) .NET Foundation and Contributors 4 | 5 | All rights reserved. 6 | 7 | Permission is hereby granted, free of charge, to any person obtaining a copy 8 | of this software and associated documentation files (the "Software"), to deal 9 | in the Software without restriction, including without limitation the rights 10 | to use, copy, modify, merge, publish, distribute, sublicense, and/or sell 11 | copies of the Software, and to permit persons to whom the Software is 12 | furnished to do so, subject to the following conditions: 13 | 14 | The above copyright notice and this permission notice shall be included in all 15 | copies or substantial portions of the Software. 16 | 17 | THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR 18 | IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, 19 | FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE 20 | AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER 21 | LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, 22 | OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE 23 | SOFTWARE. 24 | -------------------------------------------------------------------------------- /packages/System.CodeDom.7.0.0-rc.2.22472.3/System.CodeDom.7.0.0-rc.2.22472.3.nupkg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheFailureOne/CLS2ForkXP/9df86e146eb35fcb5f4b841c97be29029c4d14f6/packages/System.CodeDom.7.0.0-rc.2.22472.3/System.CodeDom.7.0.0-rc.2.22472.3.nupkg -------------------------------------------------------------------------------- /packages/System.CodeDom.7.0.0-rc.2.22472.3/buildTransitive/net461/System.CodeDom.targets: -------------------------------------------------------------------------------- 1 | 2 | 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /packages/System.CodeDom.7.0.0-rc.2.22472.3/buildTransitive/net462/_._: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheFailureOne/CLS2ForkXP/9df86e146eb35fcb5f4b841c97be29029c4d14f6/packages/System.CodeDom.7.0.0-rc.2.22472.3/buildTransitive/net462/_._ -------------------------------------------------------------------------------- /packages/System.CodeDom.7.0.0-rc.2.22472.3/buildTransitive/net6.0/_._: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheFailureOne/CLS2ForkXP/9df86e146eb35fcb5f4b841c97be29029c4d14f6/packages/System.CodeDom.7.0.0-rc.2.22472.3/buildTransitive/net6.0/_._ -------------------------------------------------------------------------------- /packages/System.CodeDom.7.0.0-rc.2.22472.3/buildTransitive/netcoreapp2.0/System.CodeDom.targets: -------------------------------------------------------------------------------- 1 | 2 | 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /packages/System.CodeDom.7.0.0-rc.2.22472.3/lib/net462/System.CodeDom.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheFailureOne/CLS2ForkXP/9df86e146eb35fcb5f4b841c97be29029c4d14f6/packages/System.CodeDom.7.0.0-rc.2.22472.3/lib/net462/System.CodeDom.dll -------------------------------------------------------------------------------- /packages/System.CodeDom.7.0.0-rc.2.22472.3/lib/net6.0/System.CodeDom.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheFailureOne/CLS2ForkXP/9df86e146eb35fcb5f4b841c97be29029c4d14f6/packages/System.CodeDom.7.0.0-rc.2.22472.3/lib/net6.0/System.CodeDom.dll -------------------------------------------------------------------------------- /packages/System.CodeDom.7.0.0-rc.2.22472.3/lib/net7.0/System.CodeDom.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheFailureOne/CLS2ForkXP/9df86e146eb35fcb5f4b841c97be29029c4d14f6/packages/System.CodeDom.7.0.0-rc.2.22472.3/lib/net7.0/System.CodeDom.dll -------------------------------------------------------------------------------- /packages/System.CodeDom.7.0.0-rc.2.22472.3/lib/netstandard2.0/System.CodeDom.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheFailureOne/CLS2ForkXP/9df86e146eb35fcb5f4b841c97be29029c4d14f6/packages/System.CodeDom.7.0.0-rc.2.22472.3/lib/netstandard2.0/System.CodeDom.dll -------------------------------------------------------------------------------- /packages/System.CodeDom.7.0.0-rc.2.22472.3/useSharedDesignerContext.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheFailureOne/CLS2ForkXP/9df86e146eb35fcb5f4b841c97be29029c4d14f6/packages/System.CodeDom.7.0.0-rc.2.22472.3/useSharedDesignerContext.txt -------------------------------------------------------------------------------- /packages/System.Management.7.0.0-rc.2.22472.3/.signature.p7s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheFailureOne/CLS2ForkXP/9df86e146eb35fcb5f4b841c97be29029c4d14f6/packages/System.Management.7.0.0-rc.2.22472.3/.signature.p7s -------------------------------------------------------------------------------- /packages/System.Management.7.0.0-rc.2.22472.3/Icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheFailureOne/CLS2ForkXP/9df86e146eb35fcb5f4b841c97be29029c4d14f6/packages/System.Management.7.0.0-rc.2.22472.3/Icon.png -------------------------------------------------------------------------------- /packages/System.Management.7.0.0-rc.2.22472.3/LICENSE.TXT: -------------------------------------------------------------------------------- 1 | The MIT License (MIT) 2 | 3 | Copyright (c) .NET Foundation and Contributors 4 | 5 | All rights reserved. 6 | 7 | Permission is hereby granted, free of charge, to any person obtaining a copy 8 | of this software and associated documentation files (the "Software"), to deal 9 | in the Software without restriction, including without limitation the rights 10 | to use, copy, modify, merge, publish, distribute, sublicense, and/or sell 11 | copies of the Software, and to permit persons to whom the Software is 12 | furnished to do so, subject to the following conditions: 13 | 14 | The above copyright notice and this permission notice shall be included in all 15 | copies or substantial portions of the Software. 16 | 17 | THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR 18 | IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, 19 | FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE 20 | AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER 21 | LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, 22 | OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE 23 | SOFTWARE. 24 | -------------------------------------------------------------------------------- /packages/System.Management.7.0.0-rc.2.22472.3/System.Management.7.0.0-rc.2.22472.3.nupkg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheFailureOne/CLS2ForkXP/9df86e146eb35fcb5f4b841c97be29029c4d14f6/packages/System.Management.7.0.0-rc.2.22472.3/System.Management.7.0.0-rc.2.22472.3.nupkg -------------------------------------------------------------------------------- /packages/System.Management.7.0.0-rc.2.22472.3/buildTransitive/net6.0/_._: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheFailureOne/CLS2ForkXP/9df86e146eb35fcb5f4b841c97be29029c4d14f6/packages/System.Management.7.0.0-rc.2.22472.3/buildTransitive/net6.0/_._ -------------------------------------------------------------------------------- /packages/System.Management.7.0.0-rc.2.22472.3/buildTransitive/netcoreapp2.0/System.Management.targets: -------------------------------------------------------------------------------- 1 | 2 | 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /packages/System.Management.7.0.0-rc.2.22472.3/lib/net462/_._: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheFailureOne/CLS2ForkXP/9df86e146eb35fcb5f4b841c97be29029c4d14f6/packages/System.Management.7.0.0-rc.2.22472.3/lib/net462/_._ -------------------------------------------------------------------------------- /packages/System.Management.7.0.0-rc.2.22472.3/lib/net6.0/System.Management.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheFailureOne/CLS2ForkXP/9df86e146eb35fcb5f4b841c97be29029c4d14f6/packages/System.Management.7.0.0-rc.2.22472.3/lib/net6.0/System.Management.dll -------------------------------------------------------------------------------- /packages/System.Management.7.0.0-rc.2.22472.3/lib/net7.0/System.Management.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheFailureOne/CLS2ForkXP/9df86e146eb35fcb5f4b841c97be29029c4d14f6/packages/System.Management.7.0.0-rc.2.22472.3/lib/net7.0/System.Management.dll -------------------------------------------------------------------------------- /packages/System.Management.7.0.0-rc.2.22472.3/lib/netstandard2.0/System.Management.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheFailureOne/CLS2ForkXP/9df86e146eb35fcb5f4b841c97be29029c4d14f6/packages/System.Management.7.0.0-rc.2.22472.3/lib/netstandard2.0/System.Management.dll -------------------------------------------------------------------------------- /packages/System.Management.7.0.0-rc.2.22472.3/runtimes/win/lib/net6.0/System.Management.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheFailureOne/CLS2ForkXP/9df86e146eb35fcb5f4b841c97be29029c4d14f6/packages/System.Management.7.0.0-rc.2.22472.3/runtimes/win/lib/net6.0/System.Management.dll -------------------------------------------------------------------------------- /packages/System.Management.7.0.0-rc.2.22472.3/runtimes/win/lib/net7.0/System.Management.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheFailureOne/CLS2ForkXP/9df86e146eb35fcb5f4b841c97be29029c4d14f6/packages/System.Management.7.0.0-rc.2.22472.3/runtimes/win/lib/net7.0/System.Management.dll -------------------------------------------------------------------------------- /packages/System.Management.7.0.0-rc.2.22472.3/useSharedDesignerContext.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheFailureOne/CLS2ForkXP/9df86e146eb35fcb5f4b841c97be29029c4d14f6/packages/System.Management.7.0.0-rc.2.22472.3/useSharedDesignerContext.txt --------------------------------------------------------------------------------