├── .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/sillymabs/CLS2ForkXP/HEAD/.DS_Store -------------------------------------------------------------------------------- /.vs/LogonShell/FileContentIndex/18f48d7a-0eb9-4104-8e0a-efacc679ec7b.vsidx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sillymabs/CLS2ForkXP/HEAD/.vs/LogonShell/FileContentIndex/18f48d7a-0eb9-4104-8e0a-efacc679ec7b.vsidx -------------------------------------------------------------------------------- /.vs/LogonShell/FileContentIndex/27db1cc3-87ea-4004-a63c-cd66e9137b3f.vsidx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sillymabs/CLS2ForkXP/HEAD/.vs/LogonShell/FileContentIndex/27db1cc3-87ea-4004-a63c-cd66e9137b3f.vsidx -------------------------------------------------------------------------------- /.vs/LogonShell/FileContentIndex/4715e4ef-b7a1-4c41-9c3a-485ced863765.vsidx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sillymabs/CLS2ForkXP/HEAD/.vs/LogonShell/FileContentIndex/4715e4ef-b7a1-4c41-9c3a-485ced863765.vsidx -------------------------------------------------------------------------------- /.vs/LogonShell/FileContentIndex/efb50af2-2d10-47cf-b89b-73b444f6fb99.vsidx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sillymabs/CLS2ForkXP/HEAD/.vs/LogonShell/FileContentIndex/efb50af2-2d10-47cf-b89b-73b444f6fb99.vsidx -------------------------------------------------------------------------------- /.vs/LogonShell/FileContentIndex/read.lock: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /.vs/LogonShell/v16/.suo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sillymabs/CLS2ForkXP/HEAD/.vs/LogonShell/v16/.suo -------------------------------------------------------------------------------- /.vs/LogonShell/v17/.futdcache.v1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sillymabs/CLS2ForkXP/HEAD/.vs/LogonShell/v17/.futdcache.v1 -------------------------------------------------------------------------------- /.vs/LogonShell/v17/.suo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sillymabs/CLS2ForkXP/HEAD/.vs/LogonShell/v17/.suo -------------------------------------------------------------------------------- /.vs/ProjectEvaluation/logonshell.metadata.v2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sillymabs/CLS2ForkXP/HEAD/.vs/ProjectEvaluation/logonshell.metadata.v2 -------------------------------------------------------------------------------- /.vs/ProjectEvaluation/logonshell.projects.v2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sillymabs/CLS2ForkXP/HEAD/.vs/ProjectEvaluation/logonshell.projects.v2 -------------------------------------------------------------------------------- /Classic Logon Shell/Classic Logon Shell.aip: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Classic Logon Shell/Classic Logon Shell.aiproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sillymabs/CLS2ForkXP/HEAD/Classic Logon Shell/Classic Logon Shell.aiproj -------------------------------------------------------------------------------- /Logon Screen Launcher/InjectProcess.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sillymabs/CLS2ForkXP/HEAD/Logon Screen Launcher/InjectProcess.cs -------------------------------------------------------------------------------- /Logon Screen Launcher/LauncherService.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sillymabs/CLS2ForkXP/HEAD/Logon Screen Launcher/LauncherService.Designer.cs -------------------------------------------------------------------------------- /Logon Screen Launcher/LauncherService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sillymabs/CLS2ForkXP/HEAD/Logon Screen Launcher/LauncherService.cs -------------------------------------------------------------------------------- /Logon Screen Launcher/Logon Screen Launcher.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sillymabs/CLS2ForkXP/HEAD/Logon Screen Launcher/Logon Screen Launcher.csproj -------------------------------------------------------------------------------- /Logon Screen Launcher/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sillymabs/CLS2ForkXP/HEAD/Logon Screen Launcher/Program.cs -------------------------------------------------------------------------------- /Logon Screen Launcher/ProjectInstaller.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sillymabs/CLS2ForkXP/HEAD/Logon Screen Launcher/ProjectInstaller.Designer.cs -------------------------------------------------------------------------------- /Logon Screen Launcher/ProjectInstaller.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sillymabs/CLS2ForkXP/HEAD/Logon Screen Launcher/ProjectInstaller.cs -------------------------------------------------------------------------------- /Logon Screen Launcher/ProjectInstaller.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sillymabs/CLS2ForkXP/HEAD/Logon Screen Launcher/ProjectInstaller.resx -------------------------------------------------------------------------------- /Logon Screen Launcher/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sillymabs/CLS2ForkXP/HEAD/Logon Screen Launcher/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /Logon Screen Launcher/bin/x64/Release/Interop.EventSystemLib.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sillymabs/CLS2ForkXP/HEAD/Logon Screen Launcher/bin/x64/Release/Interop.EventSystemLib.dll -------------------------------------------------------------------------------- /Logon Screen Launcher/bin/x64/Release/LauncherService.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sillymabs/CLS2ForkXP/HEAD/Logon Screen Launcher/bin/x64/Release/LauncherService.exe -------------------------------------------------------------------------------- /Logon Screen Launcher/obj/Debug/.NETFramework,Version=v4.8.AssemblyAttributes.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sillymabs/CLS2ForkXP/HEAD/Logon Screen Launcher/obj/Debug/.NETFramework,Version=v4.8.AssemblyAttributes.cs -------------------------------------------------------------------------------- /Logon Screen Launcher/obj/Debug/ClassicLogonShell.ProjectInstaller.resources: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sillymabs/CLS2ForkXP/HEAD/Logon Screen Launcher/obj/Debug/ClassicLogonShell.ProjectInstaller.resources -------------------------------------------------------------------------------- /Logon Screen Launcher/obj/Debug/DesignTimeResolveAssemblyReferences.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sillymabs/CLS2ForkXP/HEAD/Logon Screen Launcher/obj/Debug/DesignTimeResolveAssemblyReferences.cache -------------------------------------------------------------------------------- /Logon Screen Launcher/obj/Debug/DesignTimeResolveAssemblyReferencesInput.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sillymabs/CLS2ForkXP/HEAD/Logon Screen Launcher/obj/Debug/DesignTimeResolveAssemblyReferencesInput.cache -------------------------------------------------------------------------------- /Logon Screen Launcher/obj/Debug/Ellanet.ProjectInstaller.resources: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sillymabs/CLS2ForkXP/HEAD/Logon Screen Launcher/obj/Debug/Ellanet.ProjectInstaller.resources -------------------------------------------------------------------------------- /Logon Screen Launcher/obj/Debug/Interop.EventSystemLib.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sillymabs/CLS2ForkXP/HEAD/Logon Screen Launcher/obj/Debug/Interop.EventSystemLib.dll -------------------------------------------------------------------------------- /Logon Screen Launcher/obj/Debug/Interop.SensEvents.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sillymabs/CLS2ForkXP/HEAD/Logon Screen Launcher/obj/Debug/Interop.SensEvents.dll -------------------------------------------------------------------------------- /Logon Screen Launcher/obj/Debug/Logon Screen Launcher.csproj.AssemblyReference.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sillymabs/CLS2ForkXP/HEAD/Logon Screen Launcher/obj/Debug/Logon Screen Launcher.csproj.AssemblyReference.cache -------------------------------------------------------------------------------- /Logon Screen Launcher/obj/Debug/Logon Screen Launcher.csproj.CopyComplete: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Logon Screen Launcher/obj/Debug/Logon Screen Launcher.csproj.CoreCompileInputs.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sillymabs/CLS2ForkXP/HEAD/Logon Screen Launcher/obj/Debug/Logon Screen Launcher.csproj.CoreCompileInputs.cache -------------------------------------------------------------------------------- /Logon Screen Launcher/obj/Debug/Logon Screen Launcher.csproj.FileListAbsolute.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sillymabs/CLS2ForkXP/HEAD/Logon Screen Launcher/obj/Debug/Logon Screen Launcher.csproj.FileListAbsolute.txt -------------------------------------------------------------------------------- /Logon Screen Launcher/obj/Debug/Logon Screen Launcher.csproj.GenerateResource.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sillymabs/CLS2ForkXP/HEAD/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/sillymabs/CLS2ForkXP/HEAD/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/sillymabs/CLS2ForkXP/HEAD/Logon Screen Launcher/obj/Debug/Logon Screen Launcher.csprojAssemblyReference.cache -------------------------------------------------------------------------------- /Logon Screen Launcher/obj/Debug/LogonScreenLauncher.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sillymabs/CLS2ForkXP/HEAD/Logon Screen Launcher/obj/Debug/LogonScreenLauncher.exe -------------------------------------------------------------------------------- /Logon Screen Launcher/obj/Debug/LogonScreenLauncher.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sillymabs/CLS2ForkXP/HEAD/Logon Screen Launcher/obj/Debug/LogonScreenLauncher.pdb -------------------------------------------------------------------------------- /Logon Screen Launcher/obj/Debug/ResolveAssemblyReference.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sillymabs/CLS2ForkXP/HEAD/Logon Screen Launcher/obj/Debug/ResolveAssemblyReference.cache -------------------------------------------------------------------------------- /Logon Screen Launcher/obj/Debug/Windows Logon Screen Launcher.csproj.FileListAbsolute.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sillymabs/CLS2ForkXP/HEAD/Logon Screen Launcher/obj/Debug/Windows Logon Screen Launcher.csproj.FileListAbsolute.txt -------------------------------------------------------------------------------- /Logon Screen Launcher/obj/Debug/Windows Logon Screen Launcher.csproj.GenerateResource.Cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sillymabs/CLS2ForkXP/HEAD/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/sillymabs/CLS2ForkXP/HEAD/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/sillymabs/CLS2ForkXP/HEAD/Logon Screen Launcher/obj/Debug/Windows Logon Screen Launcher.exe -------------------------------------------------------------------------------- /Logon Screen Launcher/obj/Debug/Windows Logon Screen Launcher.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sillymabs/CLS2ForkXP/HEAD/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: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sillymabs/CLS2ForkXP/HEAD/Logon Screen Launcher/obj/Release/.NETFramework,Version=v4.8.AssemblyAttributes.cs -------------------------------------------------------------------------------- /Logon Screen Launcher/obj/Release/DesignTimeResolveAssemblyReferencesInput.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sillymabs/CLS2ForkXP/HEAD/Logon Screen Launcher/obj/Release/DesignTimeResolveAssemblyReferencesInput.cache -------------------------------------------------------------------------------- /Logon Screen Launcher/obj/Release/Ellanet.ProjectInstaller.resources: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sillymabs/CLS2ForkXP/HEAD/Logon Screen Launcher/obj/Release/Ellanet.ProjectInstaller.resources -------------------------------------------------------------------------------- /Logon Screen Launcher/obj/Release/Interop.EventSystemLib.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sillymabs/CLS2ForkXP/HEAD/Logon Screen Launcher/obj/Release/Interop.EventSystemLib.dll -------------------------------------------------------------------------------- /Logon Screen Launcher/obj/Release/Interop.SensEvents.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sillymabs/CLS2ForkXP/HEAD/Logon Screen Launcher/obj/Release/Interop.SensEvents.dll -------------------------------------------------------------------------------- /Logon Screen Launcher/obj/Release/Logon Screen Launcher.csproj.AssemblyReference.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sillymabs/CLS2ForkXP/HEAD/Logon Screen Launcher/obj/Release/Logon Screen Launcher.csproj.AssemblyReference.cache -------------------------------------------------------------------------------- /Logon Screen Launcher/obj/Release/Logon Screen Launcher.csproj.CopyComplete: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Logon Screen Launcher/obj/Release/Logon Screen Launcher.csproj.CoreCompileInputs.cache: -------------------------------------------------------------------------------- 1 | 9e31b05cc9da35b0771b9b742c6785b1f4eb1bf4 2 | -------------------------------------------------------------------------------- /Logon Screen Launcher/obj/Release/Logon Screen Launcher.csproj.FileListAbsolute.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sillymabs/CLS2ForkXP/HEAD/Logon Screen Launcher/obj/Release/Logon Screen Launcher.csproj.FileListAbsolute.txt -------------------------------------------------------------------------------- /Logon Screen Launcher/obj/Release/Logon Screen Launcher.csproj.GenerateResource.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sillymabs/CLS2ForkXP/HEAD/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/sillymabs/CLS2ForkXP/HEAD/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/sillymabs/CLS2ForkXP/HEAD/Logon Screen Launcher/obj/Release/Logon Screen Launcher.csprojAssemblyReference.cache -------------------------------------------------------------------------------- /Logon Screen Launcher/obj/Release/LogonScreenLauncher.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sillymabs/CLS2ForkXP/HEAD/Logon Screen Launcher/obj/Release/LogonScreenLauncher.exe -------------------------------------------------------------------------------- /Logon Screen Launcher/obj/Release/LogonScreenLauncher.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sillymabs/CLS2ForkXP/HEAD/Logon Screen Launcher/obj/Release/LogonScreenLauncher.pdb -------------------------------------------------------------------------------- /Logon Screen Launcher/obj/Release/build.force: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Logon Screen Launcher/obj/x64/Debug/.NETFramework,Version=v4.8.AssemblyAttributes.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sillymabs/CLS2ForkXP/HEAD/Logon Screen Launcher/obj/x64/Debug/.NETFramework,Version=v4.8.AssemblyAttributes.cs -------------------------------------------------------------------------------- /Logon Screen Launcher/obj/x64/Debug/Interop.EventSystemLib.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sillymabs/CLS2ForkXP/HEAD/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/sillymabs/CLS2ForkXP/HEAD/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/sillymabs/CLS2ForkXP/HEAD/Logon Screen Launcher/obj/x64/Debug/Logon Screen Launcher.csproj.ResolveComReference.cache -------------------------------------------------------------------------------- /Logon Screen Launcher/obj/x64/Debug/build.force: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Logon Screen Launcher/obj/x64/Release/.NETFramework,Version=v4.8.AssemblyAttributes.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sillymabs/CLS2ForkXP/HEAD/Logon Screen Launcher/obj/x64/Release/.NETFramework,Version=v4.8.AssemblyAttributes.cs -------------------------------------------------------------------------------- /Logon Screen Launcher/obj/x64/Release/ClassicLogonShell.ProjectInstaller.resources: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sillymabs/CLS2ForkXP/HEAD/Logon Screen Launcher/obj/x64/Release/ClassicLogonShell.ProjectInstaller.resources -------------------------------------------------------------------------------- /Logon Screen Launcher/obj/x64/Release/DesignTimeResolveAssemblyReferences.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sillymabs/CLS2ForkXP/HEAD/Logon Screen Launcher/obj/x64/Release/DesignTimeResolveAssemblyReferences.cache -------------------------------------------------------------------------------- /Logon Screen Launcher/obj/x64/Release/DesignTimeResolveAssemblyReferencesInput.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sillymabs/CLS2ForkXP/HEAD/Logon Screen Launcher/obj/x64/Release/DesignTimeResolveAssemblyReferencesInput.cache -------------------------------------------------------------------------------- /Logon Screen Launcher/obj/x64/Release/Interop.EventSystemLib.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sillymabs/CLS2ForkXP/HEAD/Logon Screen Launcher/obj/x64/Release/Interop.EventSystemLib.dll -------------------------------------------------------------------------------- /Logon Screen Launcher/obj/x64/Release/Interop.SensEvents.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sillymabs/CLS2ForkXP/HEAD/Logon Screen Launcher/obj/x64/Release/Interop.SensEvents.dll -------------------------------------------------------------------------------- /Logon Screen Launcher/obj/x64/Release/LauncherService.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sillymabs/CLS2ForkXP/HEAD/Logon Screen Launcher/obj/x64/Release/LauncherService.exe -------------------------------------------------------------------------------- /Logon Screen Launcher/obj/x64/Release/Logon Screen Launcher.csproj.AssemblyReference.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sillymabs/CLS2ForkXP/HEAD/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.FileListAbsolute.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sillymabs/CLS2ForkXP/HEAD/Logon Screen Launcher/obj/x64/Release/Logon Screen Launcher.csproj.FileListAbsolute.txt -------------------------------------------------------------------------------- /Logon Screen Launcher/obj/x64/Release/Logon Screen Launcher.csproj.GenerateResource.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sillymabs/CLS2ForkXP/HEAD/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/sillymabs/CLS2ForkXP/HEAD/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: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sillymabs/CLS2ForkXP/HEAD/LogonShell.sln -------------------------------------------------------------------------------- /LogonShell/BackgroundForm.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sillymabs/CLS2ForkXP/HEAD/LogonShell/BackgroundForm.Designer.cs -------------------------------------------------------------------------------- /LogonShell/BackgroundForm.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sillymabs/CLS2ForkXP/HEAD/LogonShell/BackgroundForm.cs -------------------------------------------------------------------------------- /LogonShell/BackgroundForm.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sillymabs/CLS2ForkXP/HEAD/LogonShell/BackgroundForm.resx -------------------------------------------------------------------------------- /LogonShell/Cache.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sillymabs/CLS2ForkXP/HEAD/LogonShell/Cache.cs -------------------------------------------------------------------------------- /LogonShell/Class1.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sillymabs/CLS2ForkXP/HEAD/LogonShell/Class1.cs -------------------------------------------------------------------------------- /LogonShell/CustomTextBox.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sillymabs/CLS2ForkXP/HEAD/LogonShell/CustomTextBox.Designer.cs -------------------------------------------------------------------------------- /LogonShell/CustomTextBox.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sillymabs/CLS2ForkXP/HEAD/LogonShell/CustomTextBox.cs -------------------------------------------------------------------------------- /LogonShell/CustomTextBox.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sillymabs/CLS2ForkXP/HEAD/LogonShell/CustomTextBox.resx -------------------------------------------------------------------------------- /LogonShell/GifImage.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sillymabs/CLS2ForkXP/HEAD/LogonShell/GifImage.cs -------------------------------------------------------------------------------- /LogonShell/Help.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sillymabs/CLS2ForkXP/HEAD/LogonShell/Help.Designer.cs -------------------------------------------------------------------------------- /LogonShell/Help.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sillymabs/CLS2ForkXP/HEAD/LogonShell/Help.cs -------------------------------------------------------------------------------- /LogonShell/Help.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sillymabs/CLS2ForkXP/HEAD/LogonShell/Help.resx -------------------------------------------------------------------------------- /LogonShell/IniFile.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sillymabs/CLS2ForkXP/HEAD/LogonShell/IniFile.cs -------------------------------------------------------------------------------- /LogonShell/LogOnForm.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sillymabs/CLS2ForkXP/HEAD/LogonShell/LogOnForm.Designer.cs -------------------------------------------------------------------------------- /LogonShell/LogOnForm.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sillymabs/CLS2ForkXP/HEAD/LogonShell/LogOnForm.cs -------------------------------------------------------------------------------- /LogonShell/LogOnForm.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sillymabs/CLS2ForkXP/HEAD/LogonShell/LogOnForm.resx -------------------------------------------------------------------------------- /LogonShell/Logon.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sillymabs/CLS2ForkXP/HEAD/LogonShell/Logon.cs -------------------------------------------------------------------------------- /LogonShell/LogonShell.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sillymabs/CLS2ForkXP/HEAD/LogonShell/LogonShell.csproj -------------------------------------------------------------------------------- /LogonShell/LogonShell.csproj.user: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sillymabs/CLS2ForkXP/HEAD/LogonShell/LogonShell.csproj.user -------------------------------------------------------------------------------- /LogonShell/MessageBoxForm.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sillymabs/CLS2ForkXP/HEAD/LogonShell/MessageBoxForm.Designer.cs -------------------------------------------------------------------------------- /LogonShell/MessageBoxForm.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sillymabs/CLS2ForkXP/HEAD/LogonShell/MessageBoxForm.cs -------------------------------------------------------------------------------- /LogonShell/MessageBoxForm.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sillymabs/CLS2ForkXP/HEAD/LogonShell/MessageBoxForm.resx -------------------------------------------------------------------------------- /LogonShell/MouseOperations.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sillymabs/CLS2ForkXP/HEAD/LogonShell/MouseOperations.cs -------------------------------------------------------------------------------- /LogonShell/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sillymabs/CLS2ForkXP/HEAD/LogonShell/Program.cs -------------------------------------------------------------------------------- /LogonShell/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sillymabs/CLS2ForkXP/HEAD/LogonShell/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /LogonShell/Properties/Resources.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sillymabs/CLS2ForkXP/HEAD/LogonShell/Properties/Resources.Designer.cs -------------------------------------------------------------------------------- /LogonShell/Properties/Resources.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sillymabs/CLS2ForkXP/HEAD/LogonShell/Properties/Resources.resx -------------------------------------------------------------------------------- /LogonShell/Properties/Settings.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sillymabs/CLS2ForkXP/HEAD/LogonShell/Properties/Settings.Designer.cs -------------------------------------------------------------------------------- /LogonShell/Properties/Settings.settings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sillymabs/CLS2ForkXP/HEAD/LogonShell/Properties/Settings.settings -------------------------------------------------------------------------------- /LogonShell/Resources/CLS.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sillymabs/CLS2ForkXP/HEAD/LogonShell/Resources/CLS.png -------------------------------------------------------------------------------- /LogonShell/Resources/DividerBottom.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sillymabs/CLS2ForkXP/HEAD/LogonShell/Resources/DividerBottom.bmp -------------------------------------------------------------------------------- /LogonShell/Resources/DividerTop.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sillymabs/CLS2ForkXP/HEAD/LogonShell/Resources/DividerTop.bmp -------------------------------------------------------------------------------- /LogonShell/Resources/DividerXPLogoAndLoginScreen.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sillymabs/CLS2ForkXP/HEAD/LogonShell/Resources/DividerXPLogoAndLoginScreen.bmp -------------------------------------------------------------------------------- /LogonShell/Resources/GoIcon.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sillymabs/CLS2ForkXP/HEAD/LogonShell/Resources/GoIcon.bmp -------------------------------------------------------------------------------- /LogonShell/Resources/GoIconSelected.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sillymabs/CLS2ForkXP/HEAD/LogonShell/Resources/GoIconSelected.bmp -------------------------------------------------------------------------------- /LogonShell/Resources/InputArea.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sillymabs/CLS2ForkXP/HEAD/LogonShell/Resources/InputArea.bmp -------------------------------------------------------------------------------- /LogonShell/Resources/PFP.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sillymabs/CLS2ForkXP/HEAD/LogonShell/Resources/PFP.bmp -------------------------------------------------------------------------------- /LogonShell/Resources/SelectedUserBackground.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sillymabs/CLS2ForkXP/HEAD/LogonShell/Resources/SelectedUserBackground.bmp -------------------------------------------------------------------------------- /LogonShell/Resources/Shade.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sillymabs/CLS2ForkXP/HEAD/LogonShell/Resources/Shade.bmp -------------------------------------------------------------------------------- /LogonShell/Resources/Shutdown.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sillymabs/CLS2ForkXP/HEAD/LogonShell/Resources/Shutdown.bmp -------------------------------------------------------------------------------- /LogonShell/Resources/UserHoverOrSelected.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sillymabs/CLS2ForkXP/HEAD/LogonShell/Resources/UserHoverOrSelected.bmp -------------------------------------------------------------------------------- /LogonShell/Resources/UserHoverOrSelected.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sillymabs/CLS2ForkXP/HEAD/LogonShell/Resources/UserHoverOrSelected.png -------------------------------------------------------------------------------- /LogonShell/Resources/UserHoverOrSelected1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sillymabs/CLS2ForkXP/HEAD/LogonShell/Resources/UserHoverOrSelected1.png -------------------------------------------------------------------------------- /LogonShell/Resources/UserNotHoverOrSelected.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sillymabs/CLS2ForkXP/HEAD/LogonShell/Resources/UserNotHoverOrSelected.bmp -------------------------------------------------------------------------------- /LogonShell/Resources/XPLogo.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sillymabs/CLS2ForkXP/HEAD/LogonShell/Resources/XPLogo.bmp -------------------------------------------------------------------------------- /LogonShell/Resources/XPLogo1.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sillymabs/CLS2ForkXP/HEAD/LogonShell/Resources/XPLogo1.bmp -------------------------------------------------------------------------------- /LogonShell/SecondaryBackgrounds.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sillymabs/CLS2ForkXP/HEAD/LogonShell/SecondaryBackgrounds.Designer.cs -------------------------------------------------------------------------------- /LogonShell/SecondaryBackgrounds.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sillymabs/CLS2ForkXP/HEAD/LogonShell/SecondaryBackgrounds.cs -------------------------------------------------------------------------------- /LogonShell/SecondaryBackgrounds.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sillymabs/CLS2ForkXP/HEAD/LogonShell/SecondaryBackgrounds.resx -------------------------------------------------------------------------------- /LogonShell/SecondaryBackgrounds1.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sillymabs/CLS2ForkXP/HEAD/LogonShell/SecondaryBackgrounds1.Designer.cs -------------------------------------------------------------------------------- /LogonShell/SecondaryBackgroundsBase.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sillymabs/CLS2ForkXP/HEAD/LogonShell/SecondaryBackgroundsBase.cs -------------------------------------------------------------------------------- /LogonShell/Settings.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sillymabs/CLS2ForkXP/HEAD/LogonShell/Settings.cs -------------------------------------------------------------------------------- /LogonShell/ShutDownForm.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sillymabs/CLS2ForkXP/HEAD/LogonShell/ShutDownForm.Designer.cs -------------------------------------------------------------------------------- /LogonShell/ShutDownForm.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sillymabs/CLS2ForkXP/HEAD/LogonShell/ShutDownForm.cs -------------------------------------------------------------------------------- /LogonShell/ShutDownForm.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sillymabs/CLS2ForkXP/HEAD/LogonShell/ShutDownForm.resx -------------------------------------------------------------------------------- /LogonShell/ShutdownBackgroundForm.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sillymabs/CLS2ForkXP/HEAD/LogonShell/ShutdownBackgroundForm.Designer.cs -------------------------------------------------------------------------------- /LogonShell/ShutdownBackgroundForm.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sillymabs/CLS2ForkXP/HEAD/LogonShell/ShutdownBackgroundForm.cs -------------------------------------------------------------------------------- /LogonShell/ShutdownBackgroundForm.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sillymabs/CLS2ForkXP/HEAD/LogonShell/ShutdownBackgroundForm.resx -------------------------------------------------------------------------------- /LogonShell/SystemMenuManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sillymabs/CLS2ForkXP/HEAD/LogonShell/SystemMenuManager.cs -------------------------------------------------------------------------------- /LogonShell/UserTray.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sillymabs/CLS2ForkXP/HEAD/LogonShell/UserTray.cs -------------------------------------------------------------------------------- /LogonShell/app.manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sillymabs/CLS2ForkXP/HEAD/LogonShell/app.manifest -------------------------------------------------------------------------------- /LogonShell/bin/Debug/AxInterop.MSTSCLib.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sillymabs/CLS2ForkXP/HEAD/LogonShell/bin/Debug/AxInterop.MSTSCLib.dll -------------------------------------------------------------------------------- /LogonShell/bin/Debug/FlaUI.Core.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sillymabs/CLS2ForkXP/HEAD/LogonShell/bin/Debug/FlaUI.Core.dll -------------------------------------------------------------------------------- /LogonShell/bin/Debug/FlaUI.Core.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sillymabs/CLS2ForkXP/HEAD/LogonShell/bin/Debug/FlaUI.Core.xml -------------------------------------------------------------------------------- /LogonShell/bin/Debug/FlaUI.UIA3.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sillymabs/CLS2ForkXP/HEAD/LogonShell/bin/Debug/FlaUI.UIA3.dll -------------------------------------------------------------------------------- /LogonShell/bin/Debug/FlaUI.UIA3.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sillymabs/CLS2ForkXP/HEAD/LogonShell/bin/Debug/FlaUI.UIA3.xml -------------------------------------------------------------------------------- /LogonShell/bin/Debug/Interop.MSTSCLib.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sillymabs/CLS2ForkXP/HEAD/LogonShell/bin/Debug/Interop.MSTSCLib.dll -------------------------------------------------------------------------------- /LogonShell/bin/Debug/Interop.UIAutomationClient.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sillymabs/CLS2ForkXP/HEAD/LogonShell/bin/Debug/Interop.UIAutomationClient.dll -------------------------------------------------------------------------------- /LogonShell/bin/Debug/LogonShell.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sillymabs/CLS2ForkXP/HEAD/LogonShell/bin/Debug/LogonShell.exe -------------------------------------------------------------------------------- /LogonShell/bin/Debug/LogonShell.exe.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sillymabs/CLS2ForkXP/HEAD/LogonShell/bin/Debug/LogonShell.exe.config -------------------------------------------------------------------------------- /LogonShell/bin/Debug/LogonShell.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sillymabs/CLS2ForkXP/HEAD/LogonShell/bin/Debug/LogonShell.ini -------------------------------------------------------------------------------- /LogonShell/bin/Debug/LogonShell.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sillymabs/CLS2ForkXP/HEAD/LogonShell/bin/Debug/LogonShell.pdb -------------------------------------------------------------------------------- /LogonShell/bin/Debug/theme/banner.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sillymabs/CLS2ForkXP/HEAD/LogonShell/bin/Debug/theme/banner.png -------------------------------------------------------------------------------- /LogonShell/bin/Debug/theme/bg.logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sillymabs/CLS2ForkXP/HEAD/LogonShell/bin/Debug/theme/bg.logo.png -------------------------------------------------------------------------------- /LogonShell/bin/Debug/theme/computer.icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sillymabs/CLS2ForkXP/HEAD/LogonShell/bin/Debug/theme/computer.icon.png -------------------------------------------------------------------------------- /LogonShell/bin/Debug/theme/keyboard.icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sillymabs/CLS2ForkXP/HEAD/LogonShell/bin/Debug/theme/keyboard.icon.png -------------------------------------------------------------------------------- /LogonShell/bin/Debug/theme/loading.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sillymabs/CLS2ForkXP/HEAD/LogonShell/bin/Debug/theme/loading.gif -------------------------------------------------------------------------------- /LogonShell/bin/Debug/theme/locale.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sillymabs/CLS2ForkXP/HEAD/LogonShell/bin/Debug/theme/locale.ini -------------------------------------------------------------------------------- /LogonShell/bin/Release/AxInterop.MSTSCLib.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sillymabs/CLS2ForkXP/HEAD/LogonShell/bin/Release/AxInterop.MSTSCLib.dll -------------------------------------------------------------------------------- /LogonShell/bin/Release/Interop.MSTSCLib.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sillymabs/CLS2ForkXP/HEAD/LogonShell/bin/Release/Interop.MSTSCLib.dll -------------------------------------------------------------------------------- /LogonShell/bin/Release/LogonShell.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sillymabs/CLS2ForkXP/HEAD/LogonShell/bin/Release/LogonShell.exe -------------------------------------------------------------------------------- /LogonShell/bin/Release/LogonShell.exe.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sillymabs/CLS2ForkXP/HEAD/LogonShell/bin/Release/LogonShell.exe.config -------------------------------------------------------------------------------- /LogonShell/bin/Release/LogonShell.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sillymabs/CLS2ForkXP/HEAD/LogonShell/bin/Release/LogonShell.pdb -------------------------------------------------------------------------------- /LogonShell/bin/x64/Debug/AxInterop.MSTSCLib.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sillymabs/CLS2ForkXP/HEAD/LogonShell/bin/x64/Debug/AxInterop.MSTSCLib.dll -------------------------------------------------------------------------------- /LogonShell/bin/x64/Debug/FlaUI.Core.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sillymabs/CLS2ForkXP/HEAD/LogonShell/bin/x64/Debug/FlaUI.Core.dll -------------------------------------------------------------------------------- /LogonShell/bin/x64/Debug/FlaUI.Core.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sillymabs/CLS2ForkXP/HEAD/LogonShell/bin/x64/Debug/FlaUI.Core.xml -------------------------------------------------------------------------------- /LogonShell/bin/x64/Debug/FlaUI.UIA3.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sillymabs/CLS2ForkXP/HEAD/LogonShell/bin/x64/Debug/FlaUI.UIA3.dll -------------------------------------------------------------------------------- /LogonShell/bin/x64/Debug/FlaUI.UIA3.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sillymabs/CLS2ForkXP/HEAD/LogonShell/bin/x64/Debug/FlaUI.UIA3.xml -------------------------------------------------------------------------------- /LogonShell/bin/x64/Debug/Interop.MSTSCLib.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sillymabs/CLS2ForkXP/HEAD/LogonShell/bin/x64/Debug/Interop.MSTSCLib.dll -------------------------------------------------------------------------------- /LogonShell/bin/x64/Debug/Interop.UIAutomationClient.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sillymabs/CLS2ForkXP/HEAD/LogonShell/bin/x64/Debug/Interop.UIAutomationClient.dll -------------------------------------------------------------------------------- /LogonShell/bin/x64/Debug/LogonShell.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sillymabs/CLS2ForkXP/HEAD/LogonShell/bin/x64/Debug/LogonShell.exe -------------------------------------------------------------------------------- /LogonShell/bin/x64/Debug/LogonShell.exe.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sillymabs/CLS2ForkXP/HEAD/LogonShell/bin/x64/Debug/LogonShell.exe.config -------------------------------------------------------------------------------- /LogonShell/bin/x64/Debug/LogonShell.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sillymabs/CLS2ForkXP/HEAD/LogonShell/bin/x64/Debug/LogonShell.ini -------------------------------------------------------------------------------- /LogonShell/bin/x64/Debug/LogonShell.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sillymabs/CLS2ForkXP/HEAD/LogonShell/bin/x64/Debug/LogonShell.pdb -------------------------------------------------------------------------------- /LogonShell/bin/x64/Debug/System.CodeDom.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sillymabs/CLS2ForkXP/HEAD/LogonShell/bin/x64/Debug/System.CodeDom.dll -------------------------------------------------------------------------------- /LogonShell/bin/x64/Debug/System.CodeDom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sillymabs/CLS2ForkXP/HEAD/LogonShell/bin/x64/Debug/System.CodeDom.xml -------------------------------------------------------------------------------- /LogonShell/bin/x64/Debug/cache.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sillymabs/CLS2ForkXP/HEAD/LogonShell/bin/x64/Debug/cache.bin -------------------------------------------------------------------------------- /LogonShell/bin/x64/Debug/theme/banner.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sillymabs/CLS2ForkXP/HEAD/LogonShell/bin/x64/Debug/theme/banner.png -------------------------------------------------------------------------------- /LogonShell/bin/x64/Debug/theme/bg.logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sillymabs/CLS2ForkXP/HEAD/LogonShell/bin/x64/Debug/theme/bg.logo.png -------------------------------------------------------------------------------- /LogonShell/bin/x64/Debug/theme/computer.icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sillymabs/CLS2ForkXP/HEAD/LogonShell/bin/x64/Debug/theme/computer.icon.png -------------------------------------------------------------------------------- /LogonShell/bin/x64/Debug/theme/keyboard.icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sillymabs/CLS2ForkXP/HEAD/LogonShell/bin/x64/Debug/theme/keyboard.icon.png -------------------------------------------------------------------------------- /LogonShell/bin/x64/Debug/theme/loading.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sillymabs/CLS2ForkXP/HEAD/LogonShell/bin/x64/Debug/theme/loading.gif -------------------------------------------------------------------------------- /LogonShell/bin/x64/Debug/theme/locale.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sillymabs/CLS2ForkXP/HEAD/LogonShell/bin/x64/Debug/theme/locale.ini -------------------------------------------------------------------------------- /LogonShell/bin/x64/Debug/theme/messagebox.error.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sillymabs/CLS2ForkXP/HEAD/LogonShell/bin/x64/Debug/theme/messagebox.error.ico -------------------------------------------------------------------------------- /LogonShell/bin/x64/Debug/theme/messagebox.warning.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sillymabs/CLS2ForkXP/HEAD/LogonShell/bin/x64/Debug/theme/messagebox.warning.ico -------------------------------------------------------------------------------- /LogonShell/bin/x64/Debug/theme/shutdown.icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sillymabs/CLS2ForkXP/HEAD/LogonShell/bin/x64/Debug/theme/shutdown.icon.png -------------------------------------------------------------------------------- /LogonShell/bin/x64/Debug/theme/sleep.icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sillymabs/CLS2ForkXP/HEAD/LogonShell/bin/x64/Debug/theme/sleep.icon.png -------------------------------------------------------------------------------- /LogonShell/bin/x64/Release/FlaUI.Core.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sillymabs/CLS2ForkXP/HEAD/LogonShell/bin/x64/Release/FlaUI.Core.dll -------------------------------------------------------------------------------- /LogonShell/bin/x64/Release/FlaUI.UIA3.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sillymabs/CLS2ForkXP/HEAD/LogonShell/bin/x64/Release/FlaUI.UIA3.dll -------------------------------------------------------------------------------- /LogonShell/bin/x64/Release/Interop.UIAutomationClient.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sillymabs/CLS2ForkXP/HEAD/LogonShell/bin/x64/Release/Interop.UIAutomationClient.dll -------------------------------------------------------------------------------- /LogonShell/bin/x64/Release/LogonShell.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sillymabs/CLS2ForkXP/HEAD/LogonShell/bin/x64/Release/LogonShell.exe -------------------------------------------------------------------------------- /LogonShell/bin/x64/Release/LogonShell.exe - collegamento - Copia (2).lnk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sillymabs/CLS2ForkXP/HEAD/LogonShell/bin/x64/Release/LogonShell.exe - collegamento - Copia (2).lnk -------------------------------------------------------------------------------- /LogonShell/bin/x64/Release/LogonShell.exe - collegamento - Copia.lnk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sillymabs/CLS2ForkXP/HEAD/LogonShell/bin/x64/Release/LogonShell.exe - collegamento - Copia.lnk -------------------------------------------------------------------------------- /LogonShell/bin/x64/Release/LogonShell.exe - collegamento.lnk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sillymabs/CLS2ForkXP/HEAD/LogonShell/bin/x64/Release/LogonShell.exe - collegamento.lnk -------------------------------------------------------------------------------- /LogonShell/bin/x64/Release/LogonShell.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sillymabs/CLS2ForkXP/HEAD/LogonShell/bin/x64/Release/LogonShell.ini -------------------------------------------------------------------------------- /LogonShell/bin/x64/Release/System.CodeDom.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sillymabs/CLS2ForkXP/HEAD/LogonShell/bin/x64/Release/System.CodeDom.dll -------------------------------------------------------------------------------- /LogonShell/bin/x64/Release/cache.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sillymabs/CLS2ForkXP/HEAD/LogonShell/bin/x64/Release/cache.bin -------------------------------------------------------------------------------- /LogonShell/bin/x64/Release/theme/banner.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sillymabs/CLS2ForkXP/HEAD/LogonShell/bin/x64/Release/theme/banner.png -------------------------------------------------------------------------------- /LogonShell/bin/x64/Release/theme/banner1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sillymabs/CLS2ForkXP/HEAD/LogonShell/bin/x64/Release/theme/banner1.png -------------------------------------------------------------------------------- /LogonShell/bin/x64/Release/theme/banner2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sillymabs/CLS2ForkXP/HEAD/LogonShell/bin/x64/Release/theme/banner2.png -------------------------------------------------------------------------------- /LogonShell/bin/x64/Release/theme/bg.logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sillymabs/CLS2ForkXP/HEAD/LogonShell/bin/x64/Release/theme/bg.logo.png -------------------------------------------------------------------------------- /LogonShell/bin/x64/Release/theme/keyboard.icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sillymabs/CLS2ForkXP/HEAD/LogonShell/bin/x64/Release/theme/keyboard.icon.png -------------------------------------------------------------------------------- /LogonShell/bin/x64/Release/theme/loading.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sillymabs/CLS2ForkXP/HEAD/LogonShell/bin/x64/Release/theme/loading.gif -------------------------------------------------------------------------------- /LogonShell/bin/x64/Release/theme/locale.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sillymabs/CLS2ForkXP/HEAD/LogonShell/bin/x64/Release/theme/locale.ini -------------------------------------------------------------------------------- /LogonShell/bin/x64/Release/theme/messagebox.error.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sillymabs/CLS2ForkXP/HEAD/LogonShell/bin/x64/Release/theme/messagebox.error.ico -------------------------------------------------------------------------------- /LogonShell/bin/x64/Release/theme/messagebox.warning.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sillymabs/CLS2ForkXP/HEAD/LogonShell/bin/x64/Release/theme/messagebox.warning.ico -------------------------------------------------------------------------------- /LogonShell/bin/x64/Release/theme/shutdown.icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sillymabs/CLS2ForkXP/HEAD/LogonShell/bin/x64/Release/theme/shutdown.icon.png -------------------------------------------------------------------------------- /LogonShell/bin/x64/Release/theme/sleep.icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sillymabs/CLS2ForkXP/HEAD/LogonShell/bin/x64/Release/theme/sleep.icon.png -------------------------------------------------------------------------------- /LogonShell/logon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sillymabs/CLS2ForkXP/HEAD/LogonShell/logon.ico -------------------------------------------------------------------------------- /LogonShell/obj/Debug/.NETFramework,Version=v4.7.2.AssemblyAttributes.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sillymabs/CLS2ForkXP/HEAD/LogonShell/obj/Debug/.NETFramework,Version=v4.7.2.AssemblyAttributes.cs -------------------------------------------------------------------------------- /LogonShell/obj/Debug/AxInterop.MSTSCLib.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sillymabs/CLS2ForkXP/HEAD/LogonShell/obj/Debug/AxInterop.MSTSCLib.dll -------------------------------------------------------------------------------- /LogonShell/obj/Debug/DesignTimeResolveAssemblyReferences.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sillymabs/CLS2ForkXP/HEAD/LogonShell/obj/Debug/DesignTimeResolveAssemblyReferences.cache -------------------------------------------------------------------------------- /LogonShell/obj/Debug/DesignTimeResolveAssemblyReferencesInput.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sillymabs/CLS2ForkXP/HEAD/LogonShell/obj/Debug/DesignTimeResolveAssemblyReferencesInput.cache -------------------------------------------------------------------------------- /LogonShell/obj/Debug/Interop.MSTSCLib.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sillymabs/CLS2ForkXP/HEAD/LogonShell/obj/Debug/Interop.MSTSCLib.dll -------------------------------------------------------------------------------- /LogonShell/obj/Debug/LogonShell.BackgroundForm.resources: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sillymabs/CLS2ForkXP/HEAD/LogonShell/obj/Debug/LogonShell.BackgroundForm.resources -------------------------------------------------------------------------------- /LogonShell/obj/Debug/LogonShell.LogOnForm.resources: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sillymabs/CLS2ForkXP/HEAD/LogonShell/obj/Debug/LogonShell.LogOnForm.resources -------------------------------------------------------------------------------- /LogonShell/obj/Debug/LogonShell.MessageBoxForm.resources: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sillymabs/CLS2ForkXP/HEAD/LogonShell/obj/Debug/LogonShell.MessageBoxForm.resources -------------------------------------------------------------------------------- /LogonShell/obj/Debug/LogonShell.Properties.Resources.resources: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sillymabs/CLS2ForkXP/HEAD/LogonShell/obj/Debug/LogonShell.Properties.Resources.resources -------------------------------------------------------------------------------- /LogonShell/obj/Debug/LogonShell.SecondaryBackgrounds.resources: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sillymabs/CLS2ForkXP/HEAD/LogonShell/obj/Debug/LogonShell.SecondaryBackgrounds.resources -------------------------------------------------------------------------------- /LogonShell/obj/Debug/LogonShell.ShutDownForm.resources: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sillymabs/CLS2ForkXP/HEAD/LogonShell/obj/Debug/LogonShell.ShutDownForm.resources -------------------------------------------------------------------------------- /LogonShell/obj/Debug/LogonShell.csproj.AssemblyReference.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sillymabs/CLS2ForkXP/HEAD/LogonShell/obj/Debug/LogonShell.csproj.AssemblyReference.cache -------------------------------------------------------------------------------- /LogonShell/obj/Debug/LogonShell.csproj.CopyComplete: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /LogonShell/obj/Debug/LogonShell.csproj.CoreCompileInputs.cache: -------------------------------------------------------------------------------- 1 | 0a9499e100ce5224847b5205ebabfc85d550602a 2 | -------------------------------------------------------------------------------- /LogonShell/obj/Debug/LogonShell.csproj.FileListAbsolute.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sillymabs/CLS2ForkXP/HEAD/LogonShell/obj/Debug/LogonShell.csproj.FileListAbsolute.txt -------------------------------------------------------------------------------- /LogonShell/obj/Debug/LogonShell.csproj.GenerateResource.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sillymabs/CLS2ForkXP/HEAD/LogonShell/obj/Debug/LogonShell.csproj.GenerateResource.cache -------------------------------------------------------------------------------- /LogonShell/obj/Debug/LogonShell.csproj.ResolveComReference.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sillymabs/CLS2ForkXP/HEAD/LogonShell/obj/Debug/LogonShell.csproj.ResolveComReference.cache -------------------------------------------------------------------------------- /LogonShell/obj/Debug/LogonShell.csproj.SuggestedBindingRedirects.cache: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /LogonShell/obj/Debug/LogonShell.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sillymabs/CLS2ForkXP/HEAD/LogonShell/obj/Debug/LogonShell.exe -------------------------------------------------------------------------------- /LogonShell/obj/Debug/LogonShell.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sillymabs/CLS2ForkXP/HEAD/LogonShell/obj/Debug/LogonShell.pdb -------------------------------------------------------------------------------- /LogonShell/obj/Debug/TempPE/Properties.Resources.Designer.cs.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sillymabs/CLS2ForkXP/HEAD/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: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sillymabs/CLS2ForkXP/HEAD/LogonShell/obj/Release/.NETFramework,Version=v4.7.2.AssemblyAttributes.cs -------------------------------------------------------------------------------- /LogonShell/obj/Release/AxInterop.MSTSCLib.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sillymabs/CLS2ForkXP/HEAD/LogonShell/obj/Release/AxInterop.MSTSCLib.dll -------------------------------------------------------------------------------- /LogonShell/obj/Release/Interop.MSTSCLib.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sillymabs/CLS2ForkXP/HEAD/LogonShell/obj/Release/Interop.MSTSCLib.dll -------------------------------------------------------------------------------- /LogonShell/obj/Release/LogonShell.BackgroundForm.resources: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sillymabs/CLS2ForkXP/HEAD/LogonShell/obj/Release/LogonShell.BackgroundForm.resources -------------------------------------------------------------------------------- /LogonShell/obj/Release/LogonShell.LogOnForm.resources: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sillymabs/CLS2ForkXP/HEAD/LogonShell/obj/Release/LogonShell.LogOnForm.resources -------------------------------------------------------------------------------- /LogonShell/obj/Release/LogonShell.Properties.Resources.resources: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sillymabs/CLS2ForkXP/HEAD/LogonShell/obj/Release/LogonShell.Properties.Resources.resources -------------------------------------------------------------------------------- /LogonShell/obj/Release/LogonShell.ShutDownForm.resources: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sillymabs/CLS2ForkXP/HEAD/LogonShell/obj/Release/LogonShell.ShutDownForm.resources -------------------------------------------------------------------------------- /LogonShell/obj/Release/LogonShell.csproj.AssemblyReference.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sillymabs/CLS2ForkXP/HEAD/LogonShell/obj/Release/LogonShell.csproj.AssemblyReference.cache -------------------------------------------------------------------------------- /LogonShell/obj/Release/LogonShell.csproj.CoreCompileInputs.cache: -------------------------------------------------------------------------------- 1 | c450015b8d80e1c772b81b08f4f15af621af3ade 2 | -------------------------------------------------------------------------------- /LogonShell/obj/Release/LogonShell.csproj.FileListAbsolute.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sillymabs/CLS2ForkXP/HEAD/LogonShell/obj/Release/LogonShell.csproj.FileListAbsolute.txt -------------------------------------------------------------------------------- /LogonShell/obj/Release/LogonShell.csproj.GenerateResource.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sillymabs/CLS2ForkXP/HEAD/LogonShell/obj/Release/LogonShell.csproj.GenerateResource.cache -------------------------------------------------------------------------------- /LogonShell/obj/Release/LogonShell.csproj.ResolveComReference.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sillymabs/CLS2ForkXP/HEAD/LogonShell/obj/Release/LogonShell.csproj.ResolveComReference.cache -------------------------------------------------------------------------------- /LogonShell/obj/Release/LogonShell.csproj.SuggestedBindingRedirects.cache: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /LogonShell/obj/Release/LogonShell.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sillymabs/CLS2ForkXP/HEAD/LogonShell/obj/Release/LogonShell.exe -------------------------------------------------------------------------------- /LogonShell/obj/Release/LogonShell.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sillymabs/CLS2ForkXP/HEAD/LogonShell/obj/Release/LogonShell.pdb -------------------------------------------------------------------------------- /LogonShell/obj/Release/TempPE/Properties.Resources.Designer.cs.dll: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /LogonShell/obj/Release/_IsIncrementalBuild: -------------------------------------------------------------------------------- 1 | obj\Release\\_IsIncrementalBuild 2 | -------------------------------------------------------------------------------- /LogonShell/obj/Release/build.force: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /LogonShell/obj/x64/Debug/.NETFramework,Version=v4.7.2.AssemblyAttributes.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sillymabs/CLS2ForkXP/HEAD/LogonShell/obj/x64/Debug/.NETFramework,Version=v4.7.2.AssemblyAttributes.cs -------------------------------------------------------------------------------- /LogonShell/obj/x64/Debug/.NETFramework,Version=v4.8.AssemblyAttributes.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sillymabs/CLS2ForkXP/HEAD/LogonShell/obj/x64/Debug/.NETFramework,Version=v4.8.AssemblyAttributes.cs -------------------------------------------------------------------------------- /LogonShell/obj/x64/Debug/AxInterop.MSTSCLib.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sillymabs/CLS2ForkXP/HEAD/LogonShell/obj/x64/Debug/AxInterop.MSTSCLib.dll -------------------------------------------------------------------------------- /LogonShell/obj/x64/Debug/Interop.MSTSCLib.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sillymabs/CLS2ForkXP/HEAD/LogonShell/obj/x64/Debug/Interop.MSTSCLib.dll -------------------------------------------------------------------------------- /LogonShell/obj/x64/Debug/LogonShell.BackgroundForm.resources: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sillymabs/CLS2ForkXP/HEAD/LogonShell/obj/x64/Debug/LogonShell.BackgroundForm.resources -------------------------------------------------------------------------------- /LogonShell/obj/x64/Debug/LogonShell.Help.resources: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sillymabs/CLS2ForkXP/HEAD/LogonShell/obj/x64/Debug/LogonShell.Help.resources -------------------------------------------------------------------------------- /LogonShell/obj/x64/Debug/LogonShell.LogOnForm.resources: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sillymabs/CLS2ForkXP/HEAD/LogonShell/obj/x64/Debug/LogonShell.LogOnForm.resources -------------------------------------------------------------------------------- /LogonShell/obj/x64/Debug/LogonShell.MessageBoxForm.resources: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sillymabs/CLS2ForkXP/HEAD/LogonShell/obj/x64/Debug/LogonShell.MessageBoxForm.resources -------------------------------------------------------------------------------- /LogonShell/obj/x64/Debug/LogonShell.Properties.Resources.resources: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sillymabs/CLS2ForkXP/HEAD/LogonShell/obj/x64/Debug/LogonShell.Properties.Resources.resources -------------------------------------------------------------------------------- /LogonShell/obj/x64/Debug/LogonShell.SecondaryBackgrounds.resources: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sillymabs/CLS2ForkXP/HEAD/LogonShell/obj/x64/Debug/LogonShell.SecondaryBackgrounds.resources -------------------------------------------------------------------------------- /LogonShell/obj/x64/Debug/LogonShell.ShutDownForm.resources: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sillymabs/CLS2ForkXP/HEAD/LogonShell/obj/x64/Debug/LogonShell.ShutDownForm.resources -------------------------------------------------------------------------------- /LogonShell/obj/x64/Debug/LogonShell.ShutdownBackgroundForm.resources: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sillymabs/CLS2ForkXP/HEAD/LogonShell/obj/x64/Debug/LogonShell.ShutdownBackgroundForm.resources -------------------------------------------------------------------------------- /LogonShell/obj/x64/Debug/LogonShell.csproj.AssemblyReference.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sillymabs/CLS2ForkXP/HEAD/LogonShell/obj/x64/Debug/LogonShell.csproj.AssemblyReference.cache -------------------------------------------------------------------------------- /LogonShell/obj/x64/Debug/LogonShell.csproj.CopyComplete: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /LogonShell/obj/x64/Debug/LogonShell.csproj.CoreCompileInputs.cache: -------------------------------------------------------------------------------- 1 | 37e05343ab9490b5aa16ebbdbc9848ac41b876f8 2 | -------------------------------------------------------------------------------- /LogonShell/obj/x64/Debug/LogonShell.csproj.FileListAbsolute.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sillymabs/CLS2ForkXP/HEAD/LogonShell/obj/x64/Debug/LogonShell.csproj.FileListAbsolute.txt -------------------------------------------------------------------------------- /LogonShell/obj/x64/Debug/LogonShell.csproj.GenerateResource.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sillymabs/CLS2ForkXP/HEAD/LogonShell/obj/x64/Debug/LogonShell.csproj.GenerateResource.cache -------------------------------------------------------------------------------- /LogonShell/obj/x64/Debug/LogonShell.csproj.ResolveComReference.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sillymabs/CLS2ForkXP/HEAD/LogonShell/obj/x64/Debug/LogonShell.csproj.ResolveComReference.cache -------------------------------------------------------------------------------- /LogonShell/obj/x64/Debug/LogonShell.csproj.SuggestedBindingRedirects.cache: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /LogonShell/obj/x64/Debug/LogonShell.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sillymabs/CLS2ForkXP/HEAD/LogonShell/obj/x64/Debug/LogonShell.exe -------------------------------------------------------------------------------- /LogonShell/obj/x64/Debug/LogonShell.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sillymabs/CLS2ForkXP/HEAD/LogonShell/obj/x64/Debug/LogonShell.pdb -------------------------------------------------------------------------------- /LogonShell/obj/x64/Debug/TempPE/Properties.Resources.Designer.cs.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sillymabs/CLS2ForkXP/HEAD/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: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sillymabs/CLS2ForkXP/HEAD/LogonShell/obj/x64/Release/.NETFramework,Version=v4.7.2.AssemblyAttributes.cs -------------------------------------------------------------------------------- /LogonShell/obj/x64/Release/.NETFramework,Version=v4.8.AssemblyAttributes.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sillymabs/CLS2ForkXP/HEAD/LogonShell/obj/x64/Release/.NETFramework,Version=v4.8.AssemblyAttributes.cs -------------------------------------------------------------------------------- /LogonShell/obj/x64/Release/DesignTimeResolveAssemblyReferences.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sillymabs/CLS2ForkXP/HEAD/LogonShell/obj/x64/Release/DesignTimeResolveAssemblyReferences.cache -------------------------------------------------------------------------------- /LogonShell/obj/x64/Release/DesignTimeResolveAssemblyReferencesInput.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sillymabs/CLS2ForkXP/HEAD/LogonShell/obj/x64/Release/DesignTimeResolveAssemblyReferencesInput.cache -------------------------------------------------------------------------------- /LogonShell/obj/x64/Release/Interop.WUApiLib.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sillymabs/CLS2ForkXP/HEAD/LogonShell/obj/x64/Release/Interop.WUApiLib.dll -------------------------------------------------------------------------------- /LogonShell/obj/x64/Release/LogonShell.BackgroundForm.resources: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sillymabs/CLS2ForkXP/HEAD/LogonShell/obj/x64/Release/LogonShell.BackgroundForm.resources -------------------------------------------------------------------------------- /LogonShell/obj/x64/Release/LogonShell.CustomTextBox.resources: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sillymabs/CLS2ForkXP/HEAD/LogonShell/obj/x64/Release/LogonShell.CustomTextBox.resources -------------------------------------------------------------------------------- /LogonShell/obj/x64/Release/LogonShell.Help.resources: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sillymabs/CLS2ForkXP/HEAD/LogonShell/obj/x64/Release/LogonShell.Help.resources -------------------------------------------------------------------------------- /LogonShell/obj/x64/Release/LogonShell.LogOnForm.resources: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sillymabs/CLS2ForkXP/HEAD/LogonShell/obj/x64/Release/LogonShell.LogOnForm.resources -------------------------------------------------------------------------------- /LogonShell/obj/x64/Release/LogonShell.MessageBoxForm.resources: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sillymabs/CLS2ForkXP/HEAD/LogonShell/obj/x64/Release/LogonShell.MessageBoxForm.resources -------------------------------------------------------------------------------- /LogonShell/obj/x64/Release/LogonShell.Properties.Resources.resources: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sillymabs/CLS2ForkXP/HEAD/LogonShell/obj/x64/Release/LogonShell.Properties.Resources.resources -------------------------------------------------------------------------------- /LogonShell/obj/x64/Release/LogonShell.SecondaryBackgrounds.resources: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sillymabs/CLS2ForkXP/HEAD/LogonShell/obj/x64/Release/LogonShell.SecondaryBackgrounds.resources -------------------------------------------------------------------------------- /LogonShell/obj/x64/Release/LogonShell.ShutDownForm.resources: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sillymabs/CLS2ForkXP/HEAD/LogonShell/obj/x64/Release/LogonShell.ShutDownForm.resources -------------------------------------------------------------------------------- /LogonShell/obj/x64/Release/LogonShell.ShutdownBackgroundForm.resources: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sillymabs/CLS2ForkXP/HEAD/LogonShell/obj/x64/Release/LogonShell.ShutdownBackgroundForm.resources -------------------------------------------------------------------------------- /LogonShell/obj/x64/Release/LogonShell.csproj.AssemblyReference.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sillymabs/CLS2ForkXP/HEAD/LogonShell/obj/x64/Release/LogonShell.csproj.AssemblyReference.cache -------------------------------------------------------------------------------- /LogonShell/obj/x64/Release/LogonShell.csproj.CopyComplete: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /LogonShell/obj/x64/Release/LogonShell.csproj.CoreCompileInputs.cache: -------------------------------------------------------------------------------- 1 | 3f99b9b28763aac76a7548273c076de811959fcb 2 | -------------------------------------------------------------------------------- /LogonShell/obj/x64/Release/LogonShell.csproj.FileListAbsolute.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sillymabs/CLS2ForkXP/HEAD/LogonShell/obj/x64/Release/LogonShell.csproj.FileListAbsolute.txt -------------------------------------------------------------------------------- /LogonShell/obj/x64/Release/LogonShell.csproj.GenerateResource.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sillymabs/CLS2ForkXP/HEAD/LogonShell/obj/x64/Release/LogonShell.csproj.GenerateResource.cache -------------------------------------------------------------------------------- /LogonShell/obj/x64/Release/LogonShell.csproj.ResolveComReference.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sillymabs/CLS2ForkXP/HEAD/LogonShell/obj/x64/Release/LogonShell.csproj.ResolveComReference.cache -------------------------------------------------------------------------------- /LogonShell/obj/x64/Release/LogonShell.csproj.SuggestedBindingRedirects.cache: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /LogonShell/obj/x64/Release/LogonShell.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sillymabs/CLS2ForkXP/HEAD/LogonShell/obj/x64/Release/LogonShell.exe -------------------------------------------------------------------------------- /LogonShell/obj/x64/Release/TempPE/Properties.Resources.Designer.cs.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sillymabs/CLS2ForkXP/HEAD/LogonShell/obj/x64/Release/TempPE/Properties.Resources.Designer.cs.dll -------------------------------------------------------------------------------- /LogonShell/obj/x64/Release/TempPE/SecondaryBackgrounds1.Designer.cs.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sillymabs/CLS2ForkXP/HEAD/LogonShell/obj/x64/Release/TempPE/SecondaryBackgrounds1.Designer.cs.dll -------------------------------------------------------------------------------- /LogonShell/obj/x64/Release/_IsIncrementalBuild: -------------------------------------------------------------------------------- 1 | obj\x64\Release\\_IsIncrementalBuild 2 | -------------------------------------------------------------------------------- /LogonShell/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sillymabs/CLS2ForkXP/HEAD/LogonShell/packages.config -------------------------------------------------------------------------------- /LogonShellCustomizer/Form1.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sillymabs/CLS2ForkXP/HEAD/LogonShellCustomizer/Form1.Designer.cs -------------------------------------------------------------------------------- /LogonShellCustomizer/Form1.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sillymabs/CLS2ForkXP/HEAD/LogonShellCustomizer/Form1.cs -------------------------------------------------------------------------------- /LogonShellCustomizer/Form1.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sillymabs/CLS2ForkXP/HEAD/LogonShellCustomizer/Form1.resx -------------------------------------------------------------------------------- /LogonShellCustomizer/Form2.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sillymabs/CLS2ForkXP/HEAD/LogonShellCustomizer/Form2.Designer.cs -------------------------------------------------------------------------------- /LogonShellCustomizer/Form2.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sillymabs/CLS2ForkXP/HEAD/LogonShellCustomizer/Form2.cs -------------------------------------------------------------------------------- /LogonShellCustomizer/Form2.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sillymabs/CLS2ForkXP/HEAD/LogonShellCustomizer/Form2.resx -------------------------------------------------------------------------------- /LogonShellCustomizer/Form3.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sillymabs/CLS2ForkXP/HEAD/LogonShellCustomizer/Form3.Designer.cs -------------------------------------------------------------------------------- /LogonShellCustomizer/Form3.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sillymabs/CLS2ForkXP/HEAD/LogonShellCustomizer/Form3.cs -------------------------------------------------------------------------------- /LogonShellCustomizer/Form3.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sillymabs/CLS2ForkXP/HEAD/LogonShellCustomizer/Form3.resx -------------------------------------------------------------------------------- /LogonShellCustomizer/Form4.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sillymabs/CLS2ForkXP/HEAD/LogonShellCustomizer/Form4.Designer.cs -------------------------------------------------------------------------------- /LogonShellCustomizer/Form4.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sillymabs/CLS2ForkXP/HEAD/LogonShellCustomizer/Form4.cs -------------------------------------------------------------------------------- /LogonShellCustomizer/Form4.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sillymabs/CLS2ForkXP/HEAD/LogonShellCustomizer/Form4.resx -------------------------------------------------------------------------------- /LogonShellCustomizer/Form5.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sillymabs/CLS2ForkXP/HEAD/LogonShellCustomizer/Form5.Designer.cs -------------------------------------------------------------------------------- /LogonShellCustomizer/Form5.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sillymabs/CLS2ForkXP/HEAD/LogonShellCustomizer/Form5.cs -------------------------------------------------------------------------------- /LogonShellCustomizer/Form5.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sillymabs/CLS2ForkXP/HEAD/LogonShellCustomizer/Form5.resx -------------------------------------------------------------------------------- /LogonShellCustomizer/IniFile.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sillymabs/CLS2ForkXP/HEAD/LogonShellCustomizer/IniFile.cs -------------------------------------------------------------------------------- /LogonShellCustomizer/LogonShellCustomizer.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sillymabs/CLS2ForkXP/HEAD/LogonShellCustomizer/LogonShellCustomizer.csproj -------------------------------------------------------------------------------- /LogonShellCustomizer/LogonShellCustomizer.csproj.user: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sillymabs/CLS2ForkXP/HEAD/LogonShellCustomizer/LogonShellCustomizer.csproj.user -------------------------------------------------------------------------------- /LogonShellCustomizer/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sillymabs/CLS2ForkXP/HEAD/LogonShellCustomizer/Program.cs -------------------------------------------------------------------------------- /LogonShellCustomizer/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sillymabs/CLS2ForkXP/HEAD/LogonShellCustomizer/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /LogonShellCustomizer/Properties/Resources.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sillymabs/CLS2ForkXP/HEAD/LogonShellCustomizer/Properties/Resources.Designer.cs -------------------------------------------------------------------------------- /LogonShellCustomizer/Properties/Resources.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sillymabs/CLS2ForkXP/HEAD/LogonShellCustomizer/Properties/Resources.resx -------------------------------------------------------------------------------- /LogonShellCustomizer/Properties/Settings.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sillymabs/CLS2ForkXP/HEAD/LogonShellCustomizer/Properties/Settings.Designer.cs -------------------------------------------------------------------------------- /LogonShellCustomizer/Properties/Settings.settings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sillymabs/CLS2ForkXP/HEAD/LogonShellCustomizer/Properties/Settings.settings -------------------------------------------------------------------------------- /LogonShellCustomizer/app.manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sillymabs/CLS2ForkXP/HEAD/LogonShellCustomizer/app.manifest -------------------------------------------------------------------------------- /LogonShellCustomizer/bin/Release/Customizer.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sillymabs/CLS2ForkXP/HEAD/LogonShellCustomizer/bin/Release/Customizer.exe -------------------------------------------------------------------------------- /LogonShellCustomizer/bin/Release/Customizer.exe.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sillymabs/CLS2ForkXP/HEAD/LogonShellCustomizer/bin/Release/Customizer.exe.config -------------------------------------------------------------------------------- /LogonShellCustomizer/bin/Release/Customizer.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sillymabs/CLS2ForkXP/HEAD/LogonShellCustomizer/bin/Release/Customizer.pdb -------------------------------------------------------------------------------- /LogonShellCustomizer/bin/x64/Release/Customizer.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sillymabs/CLS2ForkXP/HEAD/LogonShellCustomizer/bin/x64/Release/Customizer.exe -------------------------------------------------------------------------------- /LogonShellCustomizer/bin/x64/Release/Customizer.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sillymabs/CLS2ForkXP/HEAD/LogonShellCustomizer/bin/x64/Release/Customizer.ini -------------------------------------------------------------------------------- /LogonShellCustomizer/bin/x64/Release/English.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sillymabs/CLS2ForkXP/HEAD/LogonShellCustomizer/bin/x64/Release/English.ini -------------------------------------------------------------------------------- /LogonShellCustomizer/bin/x64/Release/LogonShell.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sillymabs/CLS2ForkXP/HEAD/LogonShellCustomizer/bin/x64/Release/LogonShell.exe -------------------------------------------------------------------------------- /LogonShellCustomizer/bin/x64/Release/LogonShell.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sillymabs/CLS2ForkXP/HEAD/LogonShellCustomizer/bin/x64/Release/LogonShell.ini -------------------------------------------------------------------------------- /LogonShellCustomizer/bin/x64/Release/cache.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sillymabs/CLS2ForkXP/HEAD/LogonShellCustomizer/bin/x64/Release/cache.bin -------------------------------------------------------------------------------- /LogonShellCustomizer/bin/x64/Release/customizer_files/locale/English.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sillymabs/CLS2ForkXP/HEAD/LogonShellCustomizer/bin/x64/Release/customizer_files/locale/English.ini -------------------------------------------------------------------------------- /LogonShellCustomizer/bin/x64/Release/customizer_files/themes/Windows 10 Classic.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sillymabs/CLS2ForkXP/HEAD/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/sillymabs/CLS2ForkXP/HEAD/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/sillymabs/CLS2ForkXP/HEAD/LogonShellCustomizer/bin/x64/Release/customizer_files/user_settings/Windows 10 Classic.ini -------------------------------------------------------------------------------- /LogonShellCustomizer/bin/x64/Release/theme/banner.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sillymabs/CLS2ForkXP/HEAD/LogonShellCustomizer/bin/x64/Release/theme/banner.png -------------------------------------------------------------------------------- /LogonShellCustomizer/bin/x64/Release/theme/bg.logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sillymabs/CLS2ForkXP/HEAD/LogonShellCustomizer/bin/x64/Release/theme/bg.logo.png -------------------------------------------------------------------------------- /LogonShellCustomizer/bin/x64/Release/theme/keyboard.icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sillymabs/CLS2ForkXP/HEAD/LogonShellCustomizer/bin/x64/Release/theme/keyboard.icon.png -------------------------------------------------------------------------------- /LogonShellCustomizer/bin/x64/Release/theme/loading.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sillymabs/CLS2ForkXP/HEAD/LogonShellCustomizer/bin/x64/Release/theme/loading.gif -------------------------------------------------------------------------------- /LogonShellCustomizer/bin/x64/Release/theme/locale.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sillymabs/CLS2ForkXP/HEAD/LogonShellCustomizer/bin/x64/Release/theme/locale.ini -------------------------------------------------------------------------------- /LogonShellCustomizer/bin/x64/Release/theme/messagebox.error.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sillymabs/CLS2ForkXP/HEAD/LogonShellCustomizer/bin/x64/Release/theme/messagebox.error.ico -------------------------------------------------------------------------------- /LogonShellCustomizer/bin/x64/Release/theme/messagebox.warning.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sillymabs/CLS2ForkXP/HEAD/LogonShellCustomizer/bin/x64/Release/theme/messagebox.warning.ico -------------------------------------------------------------------------------- /LogonShellCustomizer/bin/x64/Release/theme/restart.icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sillymabs/CLS2ForkXP/HEAD/LogonShellCustomizer/bin/x64/Release/theme/restart.icon.png -------------------------------------------------------------------------------- /LogonShellCustomizer/bin/x64/Release/theme/shutdown.icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sillymabs/CLS2ForkXP/HEAD/LogonShellCustomizer/bin/x64/Release/theme/shutdown.icon.png -------------------------------------------------------------------------------- /LogonShellCustomizer/bin/x64/Release/theme/sleep.icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sillymabs/CLS2ForkXP/HEAD/LogonShellCustomizer/bin/x64/Release/theme/sleep.icon.png -------------------------------------------------------------------------------- /LogonShellCustomizer/logon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sillymabs/CLS2ForkXP/HEAD/LogonShellCustomizer/logon.ico -------------------------------------------------------------------------------- /LogonShellCustomizer/obj/Debug/.NETFramework,Version=v4.8.AssemblyAttributes.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sillymabs/CLS2ForkXP/HEAD/LogonShellCustomizer/obj/Debug/.NETFramework,Version=v4.8.AssemblyAttributes.cs -------------------------------------------------------------------------------- /LogonShellCustomizer/obj/Debug/DesignTimeResolveAssemblyReferencesInput.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sillymabs/CLS2ForkXP/HEAD/LogonShellCustomizer/obj/Debug/DesignTimeResolveAssemblyReferencesInput.cache -------------------------------------------------------------------------------- /LogonShellCustomizer/obj/Debug/LogonShellCustomizer.csproj.AssemblyReference.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sillymabs/CLS2ForkXP/HEAD/LogonShellCustomizer/obj/Debug/LogonShellCustomizer.csproj.AssemblyReference.cache -------------------------------------------------------------------------------- /LogonShellCustomizer/obj/Release/.NETFramework,Version=v4.8.AssemblyAttributes.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sillymabs/CLS2ForkXP/HEAD/LogonShellCustomizer/obj/Release/.NETFramework,Version=v4.8.AssemblyAttributes.cs -------------------------------------------------------------------------------- /LogonShellCustomizer/obj/Release/Customizer.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sillymabs/CLS2ForkXP/HEAD/LogonShellCustomizer/obj/Release/Customizer.exe -------------------------------------------------------------------------------- /LogonShellCustomizer/obj/Release/Customizer.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sillymabs/CLS2ForkXP/HEAD/LogonShellCustomizer/obj/Release/Customizer.pdb -------------------------------------------------------------------------------- /LogonShellCustomizer/obj/Release/DesignTimeResolveAssemblyReferences.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sillymabs/CLS2ForkXP/HEAD/LogonShellCustomizer/obj/Release/DesignTimeResolveAssemblyReferences.cache -------------------------------------------------------------------------------- /LogonShellCustomizer/obj/Release/DesignTimeResolveAssemblyReferencesInput.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sillymabs/CLS2ForkXP/HEAD/LogonShellCustomizer/obj/Release/DesignTimeResolveAssemblyReferencesInput.cache -------------------------------------------------------------------------------- /LogonShellCustomizer/obj/Release/LogonShellCustomizer.MainWindow.resources: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sillymabs/CLS2ForkXP/HEAD/LogonShellCustomizer/obj/Release/LogonShellCustomizer.MainWindow.resources -------------------------------------------------------------------------------- /LogonShellCustomizer/obj/Release/LogonShellCustomizer.Properties.Resources.resources: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sillymabs/CLS2ForkXP/HEAD/LogonShellCustomizer/obj/Release/LogonShellCustomizer.Properties.Resources.resources -------------------------------------------------------------------------------- /LogonShellCustomizer/obj/Release/LogonShellCustomizer.csproj.AssemblyReference.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sillymabs/CLS2ForkXP/HEAD/LogonShellCustomizer/obj/Release/LogonShellCustomizer.csproj.AssemblyReference.cache -------------------------------------------------------------------------------- /LogonShellCustomizer/obj/Release/LogonShellCustomizer.csproj.CoreCompileInputs.cache: -------------------------------------------------------------------------------- 1 | 5d83de8f877ab315fb0e9d28d2b466dab91d6afc 2 | -------------------------------------------------------------------------------- /LogonShellCustomizer/obj/Release/LogonShellCustomizer.csproj.FileListAbsolute.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sillymabs/CLS2ForkXP/HEAD/LogonShellCustomizer/obj/Release/LogonShellCustomizer.csproj.FileListAbsolute.txt -------------------------------------------------------------------------------- /LogonShellCustomizer/obj/Release/LogonShellCustomizer.csproj.GenerateResource.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sillymabs/CLS2ForkXP/HEAD/LogonShellCustomizer/obj/Release/LogonShellCustomizer.csproj.GenerateResource.cache -------------------------------------------------------------------------------- /LogonShellCustomizer/obj/Release/LogonShellCustomizer.csproj.SuggestedBindingRedirects.cache: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /LogonShellCustomizer/obj/x64/Release/.NETFramework,Version=v4.8.AssemblyAttributes.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sillymabs/CLS2ForkXP/HEAD/LogonShellCustomizer/obj/x64/Release/.NETFramework,Version=v4.8.AssemblyAttributes.cs -------------------------------------------------------------------------------- /LogonShellCustomizer/obj/x64/Release/Customizer.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sillymabs/CLS2ForkXP/HEAD/LogonShellCustomizer/obj/x64/Release/Customizer.exe -------------------------------------------------------------------------------- /LogonShellCustomizer/obj/x64/Release/DesignTimeResolveAssemblyReferences.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sillymabs/CLS2ForkXP/HEAD/LogonShellCustomizer/obj/x64/Release/DesignTimeResolveAssemblyReferences.cache -------------------------------------------------------------------------------- /LogonShellCustomizer/obj/x64/Release/DesignTimeResolveAssemblyReferencesInput.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sillymabs/CLS2ForkXP/HEAD/LogonShellCustomizer/obj/x64/Release/DesignTimeResolveAssemblyReferencesInput.cache -------------------------------------------------------------------------------- /LogonShellCustomizer/obj/x64/Release/LogonShellCustomizer.Form2.resources: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sillymabs/CLS2ForkXP/HEAD/LogonShellCustomizer/obj/x64/Release/LogonShellCustomizer.Form2.resources -------------------------------------------------------------------------------- /LogonShellCustomizer/obj/x64/Release/LogonShellCustomizer.Form3.resources: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sillymabs/CLS2ForkXP/HEAD/LogonShellCustomizer/obj/x64/Release/LogonShellCustomizer.Form3.resources -------------------------------------------------------------------------------- /LogonShellCustomizer/obj/x64/Release/LogonShellCustomizer.Form4.resources: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sillymabs/CLS2ForkXP/HEAD/LogonShellCustomizer/obj/x64/Release/LogonShellCustomizer.Form4.resources -------------------------------------------------------------------------------- /LogonShellCustomizer/obj/x64/Release/LogonShellCustomizer.Form5.resources: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sillymabs/CLS2ForkXP/HEAD/LogonShellCustomizer/obj/x64/Release/LogonShellCustomizer.Form5.resources -------------------------------------------------------------------------------- /LogonShellCustomizer/obj/x64/Release/LogonShellCustomizer.MainWindow.resources: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sillymabs/CLS2ForkXP/HEAD/LogonShellCustomizer/obj/x64/Release/LogonShellCustomizer.MainWindow.resources -------------------------------------------------------------------------------- /LogonShellCustomizer/obj/x64/Release/LogonShellCustomizer.Properties.Resources.resources: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sillymabs/CLS2ForkXP/HEAD/LogonShellCustomizer/obj/x64/Release/LogonShellCustomizer.Properties.Resources.resources -------------------------------------------------------------------------------- /LogonShellCustomizer/obj/x64/Release/LogonShellCustomizer.csproj.AssemblyReference.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sillymabs/CLS2ForkXP/HEAD/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.FileListAbsolute.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sillymabs/CLS2ForkXP/HEAD/LogonShellCustomizer/obj/x64/Release/LogonShellCustomizer.csproj.FileListAbsolute.txt -------------------------------------------------------------------------------- /LogonShellCustomizer/obj/x64/Release/LogonShellCustomizer.csproj.GenerateResource.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sillymabs/CLS2ForkXP/HEAD/LogonShellCustomizer/obj/x64/Release/LogonShellCustomizer.csproj.GenerateResource.cache -------------------------------------------------------------------------------- /LogonShellCustomizer/obj/x64/Release/LogonShellCustomizer.csproj.SuggestedBindingRedirects.cache: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Resources/CLS.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sillymabs/CLS2ForkXP/HEAD/Resources/CLS.png -------------------------------------------------------------------------------- /Resources/CLS.psd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sillymabs/CLS2ForkXP/HEAD/Resources/CLS.psd -------------------------------------------------------------------------------- /Resources/XP/DividerBottom.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sillymabs/CLS2ForkXP/HEAD/Resources/XP/DividerBottom.bmp -------------------------------------------------------------------------------- /Resources/XP/DividerTop.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sillymabs/CLS2ForkXP/HEAD/Resources/XP/DividerTop.bmp -------------------------------------------------------------------------------- /Resources/XP/DividerXPLogoAndLoginScreen.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sillymabs/CLS2ForkXP/HEAD/Resources/XP/DividerXPLogoAndLoginScreen.bmp -------------------------------------------------------------------------------- /Resources/XP/GoIcon.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sillymabs/CLS2ForkXP/HEAD/Resources/XP/GoIcon.bmp -------------------------------------------------------------------------------- /Resources/XP/GoIconSelected.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sillymabs/CLS2ForkXP/HEAD/Resources/XP/GoIconSelected.bmp -------------------------------------------------------------------------------- /Resources/XP/InputArea.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sillymabs/CLS2ForkXP/HEAD/Resources/XP/InputArea.bmp -------------------------------------------------------------------------------- /Resources/XP/PFP.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sillymabs/CLS2ForkXP/HEAD/Resources/XP/PFP.bmp -------------------------------------------------------------------------------- /Resources/XP/SelectedUserBackground.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sillymabs/CLS2ForkXP/HEAD/Resources/XP/SelectedUserBackground.bmp -------------------------------------------------------------------------------- /Resources/XP/Shade.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sillymabs/CLS2ForkXP/HEAD/Resources/XP/Shade.bmp -------------------------------------------------------------------------------- /Resources/XP/Shutdown.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sillymabs/CLS2ForkXP/HEAD/Resources/XP/Shutdown.bmp -------------------------------------------------------------------------------- /Resources/XP/UserHoverOrSelected.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sillymabs/CLS2ForkXP/HEAD/Resources/XP/UserHoverOrSelected.bmp -------------------------------------------------------------------------------- /Resources/XP/UserHoverOrSelected.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sillymabs/CLS2ForkXP/HEAD/Resources/XP/UserHoverOrSelected.png -------------------------------------------------------------------------------- /Resources/XP/UserNotHoverOrSelected.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sillymabs/CLS2ForkXP/HEAD/Resources/XP/UserNotHoverOrSelected.bmp -------------------------------------------------------------------------------- /Resources/XP/XPLogo.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sillymabs/CLS2ForkXP/HEAD/Resources/XP/XPLogo.bmp -------------------------------------------------------------------------------- /Resources/logon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sillymabs/CLS2ForkXP/HEAD/Resources/logon.ico -------------------------------------------------------------------------------- /Resources/logon_128.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sillymabs/CLS2ForkXP/HEAD/Resources/logon_128.png -------------------------------------------------------------------------------- /Resources/logon_16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sillymabs/CLS2ForkXP/HEAD/Resources/logon_16.png -------------------------------------------------------------------------------- /Resources/logon_256.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sillymabs/CLS2ForkXP/HEAD/Resources/logon_256.png -------------------------------------------------------------------------------- /Resources/logon_32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sillymabs/CLS2ForkXP/HEAD/Resources/logon_32.png -------------------------------------------------------------------------------- /Resources/logon_512.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sillymabs/CLS2ForkXP/HEAD/Resources/logon_512.png -------------------------------------------------------------------------------- /Resources/logon_64.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sillymabs/CLS2ForkXP/HEAD/Resources/logon_64.png -------------------------------------------------------------------------------- /kj.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sillymabs/CLS2ForkXP/HEAD/kj.ico -------------------------------------------------------------------------------- /packages/FlaUI.Core.4.0.0/.signature.p7s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sillymabs/CLS2ForkXP/HEAD/packages/FlaUI.Core.4.0.0/.signature.p7s -------------------------------------------------------------------------------- /packages/FlaUI.Core.4.0.0/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sillymabs/CLS2ForkXP/HEAD/packages/FlaUI.Core.4.0.0/CHANGELOG.md -------------------------------------------------------------------------------- /packages/FlaUI.Core.4.0.0/FlaUI.Core.4.0.0.nupkg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sillymabs/CLS2ForkXP/HEAD/packages/FlaUI.Core.4.0.0/FlaUI.Core.4.0.0.nupkg -------------------------------------------------------------------------------- /packages/FlaUI.Core.4.0.0/FlaUI.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sillymabs/CLS2ForkXP/HEAD/packages/FlaUI.Core.4.0.0/FlaUI.png -------------------------------------------------------------------------------- /packages/FlaUI.Core.4.0.0/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sillymabs/CLS2ForkXP/HEAD/packages/FlaUI.Core.4.0.0/LICENSE.txt -------------------------------------------------------------------------------- /packages/FlaUI.Core.4.0.0/lib/net48/FlaUI.Core.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sillymabs/CLS2ForkXP/HEAD/packages/FlaUI.Core.4.0.0/lib/net48/FlaUI.Core.dll -------------------------------------------------------------------------------- /packages/FlaUI.Core.4.0.0/lib/net48/FlaUI.Core.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sillymabs/CLS2ForkXP/HEAD/packages/FlaUI.Core.4.0.0/lib/net48/FlaUI.Core.xml -------------------------------------------------------------------------------- /packages/FlaUI.Core.4.0.0/lib/net5.0-windows7.0/FlaUI.Core.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sillymabs/CLS2ForkXP/HEAD/packages/FlaUI.Core.4.0.0/lib/net5.0-windows7.0/FlaUI.Core.dll -------------------------------------------------------------------------------- /packages/FlaUI.Core.4.0.0/lib/net5.0-windows7.0/FlaUI.Core.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sillymabs/CLS2ForkXP/HEAD/packages/FlaUI.Core.4.0.0/lib/net5.0-windows7.0/FlaUI.Core.xml -------------------------------------------------------------------------------- /packages/FlaUI.Core.4.0.0/lib/net6.0-windows7.0/FlaUI.Core.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sillymabs/CLS2ForkXP/HEAD/packages/FlaUI.Core.4.0.0/lib/net6.0-windows7.0/FlaUI.Core.dll -------------------------------------------------------------------------------- /packages/FlaUI.Core.4.0.0/lib/net6.0-windows7.0/FlaUI.Core.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sillymabs/CLS2ForkXP/HEAD/packages/FlaUI.Core.4.0.0/lib/net6.0-windows7.0/FlaUI.Core.xml -------------------------------------------------------------------------------- /packages/FlaUI.Core.4.0.0/lib/netcoreapp3.1/FlaUI.Core.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sillymabs/CLS2ForkXP/HEAD/packages/FlaUI.Core.4.0.0/lib/netcoreapp3.1/FlaUI.Core.dll -------------------------------------------------------------------------------- /packages/FlaUI.Core.4.0.0/lib/netcoreapp3.1/FlaUI.Core.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sillymabs/CLS2ForkXP/HEAD/packages/FlaUI.Core.4.0.0/lib/netcoreapp3.1/FlaUI.Core.xml -------------------------------------------------------------------------------- /packages/FlaUI.Core.4.0.0/lib/netstandard2.0/FlaUI.Core.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sillymabs/CLS2ForkXP/HEAD/packages/FlaUI.Core.4.0.0/lib/netstandard2.0/FlaUI.Core.dll -------------------------------------------------------------------------------- /packages/FlaUI.Core.4.0.0/lib/netstandard2.0/FlaUI.Core.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sillymabs/CLS2ForkXP/HEAD/packages/FlaUI.Core.4.0.0/lib/netstandard2.0/FlaUI.Core.xml -------------------------------------------------------------------------------- /packages/FlaUI.UIA3.4.0.0/.signature.p7s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sillymabs/CLS2ForkXP/HEAD/packages/FlaUI.UIA3.4.0.0/.signature.p7s -------------------------------------------------------------------------------- /packages/FlaUI.UIA3.4.0.0/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sillymabs/CLS2ForkXP/HEAD/packages/FlaUI.UIA3.4.0.0/CHANGELOG.md -------------------------------------------------------------------------------- /packages/FlaUI.UIA3.4.0.0/FlaUI.UIA3.4.0.0.nupkg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sillymabs/CLS2ForkXP/HEAD/packages/FlaUI.UIA3.4.0.0/FlaUI.UIA3.4.0.0.nupkg -------------------------------------------------------------------------------- /packages/FlaUI.UIA3.4.0.0/FlaUI.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sillymabs/CLS2ForkXP/HEAD/packages/FlaUI.UIA3.4.0.0/FlaUI.png -------------------------------------------------------------------------------- /packages/FlaUI.UIA3.4.0.0/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sillymabs/CLS2ForkXP/HEAD/packages/FlaUI.UIA3.4.0.0/LICENSE.txt -------------------------------------------------------------------------------- /packages/FlaUI.UIA3.4.0.0/lib/net48/FlaUI.UIA3.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sillymabs/CLS2ForkXP/HEAD/packages/FlaUI.UIA3.4.0.0/lib/net48/FlaUI.UIA3.dll -------------------------------------------------------------------------------- /packages/FlaUI.UIA3.4.0.0/lib/net48/FlaUI.UIA3.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sillymabs/CLS2ForkXP/HEAD/packages/FlaUI.UIA3.4.0.0/lib/net48/FlaUI.UIA3.xml -------------------------------------------------------------------------------- /packages/FlaUI.UIA3.4.0.0/lib/net5.0-windows7.0/FlaUI.UIA3.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sillymabs/CLS2ForkXP/HEAD/packages/FlaUI.UIA3.4.0.0/lib/net5.0-windows7.0/FlaUI.UIA3.dll -------------------------------------------------------------------------------- /packages/FlaUI.UIA3.4.0.0/lib/net5.0-windows7.0/FlaUI.UIA3.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sillymabs/CLS2ForkXP/HEAD/packages/FlaUI.UIA3.4.0.0/lib/net5.0-windows7.0/FlaUI.UIA3.xml -------------------------------------------------------------------------------- /packages/FlaUI.UIA3.4.0.0/lib/net6.0-windows7.0/FlaUI.UIA3.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sillymabs/CLS2ForkXP/HEAD/packages/FlaUI.UIA3.4.0.0/lib/net6.0-windows7.0/FlaUI.UIA3.dll -------------------------------------------------------------------------------- /packages/FlaUI.UIA3.4.0.0/lib/net6.0-windows7.0/FlaUI.UIA3.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sillymabs/CLS2ForkXP/HEAD/packages/FlaUI.UIA3.4.0.0/lib/net6.0-windows7.0/FlaUI.UIA3.xml -------------------------------------------------------------------------------- /packages/FlaUI.UIA3.4.0.0/lib/netcoreapp3.1/FlaUI.UIA3.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sillymabs/CLS2ForkXP/HEAD/packages/FlaUI.UIA3.4.0.0/lib/netcoreapp3.1/FlaUI.UIA3.dll -------------------------------------------------------------------------------- /packages/FlaUI.UIA3.4.0.0/lib/netcoreapp3.1/FlaUI.UIA3.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sillymabs/CLS2ForkXP/HEAD/packages/FlaUI.UIA3.4.0.0/lib/netcoreapp3.1/FlaUI.UIA3.xml -------------------------------------------------------------------------------- /packages/FlaUI.UIA3.4.0.0/lib/netstandard2.0/FlaUI.UIA3.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sillymabs/CLS2ForkXP/HEAD/packages/FlaUI.UIA3.4.0.0/lib/netstandard2.0/FlaUI.UIA3.dll -------------------------------------------------------------------------------- /packages/FlaUI.UIA3.4.0.0/lib/netstandard2.0/FlaUI.UIA3.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sillymabs/CLS2ForkXP/HEAD/packages/FlaUI.UIA3.4.0.0/lib/netstandard2.0/FlaUI.UIA3.xml -------------------------------------------------------------------------------- /packages/Interop.UIAutomationClient.10.19041.0/.signature.p7s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sillymabs/CLS2ForkXP/HEAD/packages/Interop.UIAutomationClient.10.19041.0/.signature.p7s -------------------------------------------------------------------------------- /packages/Interop.UIAutomationClient.10.19041.0/Interop.UIAutomationClient.10.19041.0.nupkg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sillymabs/CLS2ForkXP/HEAD/packages/Interop.UIAutomationClient.10.19041.0/Interop.UIAutomationClient.10.19041.0.nupkg -------------------------------------------------------------------------------- /packages/Interop.UIAutomationClient.10.19041.0/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sillymabs/CLS2ForkXP/HEAD/packages/Interop.UIAutomationClient.10.19041.0/LICENSE.txt -------------------------------------------------------------------------------- /packages/Interop.UIAutomationClient.10.19041.0/build/Interop.UIAutomationClient.targets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sillymabs/CLS2ForkXP/HEAD/packages/Interop.UIAutomationClient.10.19041.0/build/Interop.UIAutomationClient.targets -------------------------------------------------------------------------------- /packages/Interop.UIAutomationClient.10.19041.0/lib/net35/Interop.UIAutomationClient.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sillymabs/CLS2ForkXP/HEAD/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/sillymabs/CLS2ForkXP/HEAD/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/sillymabs/CLS2ForkXP/HEAD/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/sillymabs/CLS2ForkXP/HEAD/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/sillymabs/CLS2ForkXP/HEAD/packages/Interop.UIAutomationClient.10.19041.0/lib/netstandard2.0/Interop.UIAutomationClient.dll -------------------------------------------------------------------------------- /packages/Interop.UIAutomationClient.10.19041.0/tools/install.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sillymabs/CLS2ForkXP/HEAD/packages/Interop.UIAutomationClient.10.19041.0/tools/install.ps1 -------------------------------------------------------------------------------- /packages/System.CodeDom.7.0.0-rc.2.22472.3/.signature.p7s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sillymabs/CLS2ForkXP/HEAD/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/sillymabs/CLS2ForkXP/HEAD/packages/System.CodeDom.7.0.0-rc.2.22472.3/Icon.png -------------------------------------------------------------------------------- /packages/System.CodeDom.7.0.0-rc.2.22472.3/LICENSE.TXT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sillymabs/CLS2ForkXP/HEAD/packages/System.CodeDom.7.0.0-rc.2.22472.3/LICENSE.TXT -------------------------------------------------------------------------------- /packages/System.CodeDom.7.0.0-rc.2.22472.3/System.CodeDom.7.0.0-rc.2.22472.3.nupkg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sillymabs/CLS2ForkXP/HEAD/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/THIRD-PARTY-NOTICES.TXT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sillymabs/CLS2ForkXP/HEAD/packages/System.CodeDom.7.0.0-rc.2.22472.3/THIRD-PARTY-NOTICES.TXT -------------------------------------------------------------------------------- /packages/System.CodeDom.7.0.0-rc.2.22472.3/buildTransitive/net461/System.CodeDom.targets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sillymabs/CLS2ForkXP/HEAD/packages/System.CodeDom.7.0.0-rc.2.22472.3/buildTransitive/net461/System.CodeDom.targets -------------------------------------------------------------------------------- /packages/System.CodeDom.7.0.0-rc.2.22472.3/buildTransitive/net462/_._: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/System.CodeDom.7.0.0-rc.2.22472.3/buildTransitive/net6.0/_._: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/System.CodeDom.7.0.0-rc.2.22472.3/buildTransitive/netcoreapp2.0/System.CodeDom.targets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sillymabs/CLS2ForkXP/HEAD/packages/System.CodeDom.7.0.0-rc.2.22472.3/buildTransitive/netcoreapp2.0/System.CodeDom.targets -------------------------------------------------------------------------------- /packages/System.CodeDom.7.0.0-rc.2.22472.3/lib/net462/System.CodeDom.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sillymabs/CLS2ForkXP/HEAD/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/net462/System.CodeDom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sillymabs/CLS2ForkXP/HEAD/packages/System.CodeDom.7.0.0-rc.2.22472.3/lib/net462/System.CodeDom.xml -------------------------------------------------------------------------------- /packages/System.CodeDom.7.0.0-rc.2.22472.3/lib/net6.0/System.CodeDom.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sillymabs/CLS2ForkXP/HEAD/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/net6.0/System.CodeDom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sillymabs/CLS2ForkXP/HEAD/packages/System.CodeDom.7.0.0-rc.2.22472.3/lib/net6.0/System.CodeDom.xml -------------------------------------------------------------------------------- /packages/System.CodeDom.7.0.0-rc.2.22472.3/lib/net7.0/System.CodeDom.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sillymabs/CLS2ForkXP/HEAD/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/net7.0/System.CodeDom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sillymabs/CLS2ForkXP/HEAD/packages/System.CodeDom.7.0.0-rc.2.22472.3/lib/net7.0/System.CodeDom.xml -------------------------------------------------------------------------------- /packages/System.CodeDom.7.0.0-rc.2.22472.3/lib/netstandard2.0/System.CodeDom.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sillymabs/CLS2ForkXP/HEAD/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/lib/netstandard2.0/System.CodeDom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sillymabs/CLS2ForkXP/HEAD/packages/System.CodeDom.7.0.0-rc.2.22472.3/lib/netstandard2.0/System.CodeDom.xml -------------------------------------------------------------------------------- /packages/System.CodeDom.7.0.0-rc.2.22472.3/useSharedDesignerContext.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/System.Management.7.0.0-rc.2.22472.3/.signature.p7s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sillymabs/CLS2ForkXP/HEAD/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/sillymabs/CLS2ForkXP/HEAD/packages/System.Management.7.0.0-rc.2.22472.3/Icon.png -------------------------------------------------------------------------------- /packages/System.Management.7.0.0-rc.2.22472.3/LICENSE.TXT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sillymabs/CLS2ForkXP/HEAD/packages/System.Management.7.0.0-rc.2.22472.3/LICENSE.TXT -------------------------------------------------------------------------------- /packages/System.Management.7.0.0-rc.2.22472.3/System.Management.7.0.0-rc.2.22472.3.nupkg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sillymabs/CLS2ForkXP/HEAD/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/THIRD-PARTY-NOTICES.TXT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sillymabs/CLS2ForkXP/HEAD/packages/System.Management.7.0.0-rc.2.22472.3/THIRD-PARTY-NOTICES.TXT -------------------------------------------------------------------------------- /packages/System.Management.7.0.0-rc.2.22472.3/buildTransitive/net6.0/_._: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/System.Management.7.0.0-rc.2.22472.3/buildTransitive/netcoreapp2.0/System.Management.targets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sillymabs/CLS2ForkXP/HEAD/packages/System.Management.7.0.0-rc.2.22472.3/buildTransitive/netcoreapp2.0/System.Management.targets -------------------------------------------------------------------------------- /packages/System.Management.7.0.0-rc.2.22472.3/lib/net462/_._: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/System.Management.7.0.0-rc.2.22472.3/lib/net6.0/System.Management.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sillymabs/CLS2ForkXP/HEAD/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/net6.0/System.Management.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sillymabs/CLS2ForkXP/HEAD/packages/System.Management.7.0.0-rc.2.22472.3/lib/net6.0/System.Management.xml -------------------------------------------------------------------------------- /packages/System.Management.7.0.0-rc.2.22472.3/lib/net7.0/System.Management.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sillymabs/CLS2ForkXP/HEAD/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/net7.0/System.Management.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sillymabs/CLS2ForkXP/HEAD/packages/System.Management.7.0.0-rc.2.22472.3/lib/net7.0/System.Management.xml -------------------------------------------------------------------------------- /packages/System.Management.7.0.0-rc.2.22472.3/lib/netstandard2.0/System.Management.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sillymabs/CLS2ForkXP/HEAD/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/lib/netstandard2.0/System.Management.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sillymabs/CLS2ForkXP/HEAD/packages/System.Management.7.0.0-rc.2.22472.3/lib/netstandard2.0/System.Management.xml -------------------------------------------------------------------------------- /packages/System.Management.7.0.0-rc.2.22472.3/runtimes/win/lib/net6.0/System.Management.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sillymabs/CLS2ForkXP/HEAD/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/net6.0/System.Management.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sillymabs/CLS2ForkXP/HEAD/packages/System.Management.7.0.0-rc.2.22472.3/runtimes/win/lib/net6.0/System.Management.xml -------------------------------------------------------------------------------- /packages/System.Management.7.0.0-rc.2.22472.3/runtimes/win/lib/net7.0/System.Management.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sillymabs/CLS2ForkXP/HEAD/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/runtimes/win/lib/net7.0/System.Management.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sillymabs/CLS2ForkXP/HEAD/packages/System.Management.7.0.0-rc.2.22472.3/runtimes/win/lib/net7.0/System.Management.xml -------------------------------------------------------------------------------- /packages/System.Management.7.0.0-rc.2.22472.3/useSharedDesignerContext.txt: -------------------------------------------------------------------------------- 1 | --------------------------------------------------------------------------------