├── LICENSE ├── README.md ├── appversion.txt ├── assets ├── rsv-microsoft-requirements.png ├── rsv-opt.png └── rsv.png ├── changes.txt ├── src ├── .gitignore ├── RSV.Package │ ├── AssetStore.png │ ├── AssetStore_org.png │ ├── Package.StoreAssociation.xml │ ├── Package.appxmanifest │ ├── RSV.Package.assets.cache │ ├── RSV.Package.wapproj │ └── RSV.Package.wapproj.user ├── RSV.sln └── RSV │ ├── .gitignore │ ├── App.config │ ├── AppIcon.ico │ ├── AppLogo.png │ ├── Assessment │ ├── Boot.cs │ ├── Bypass.cs │ ├── CPU.cs │ ├── Display.cs │ ├── GPU.cs │ ├── Inet.cs │ ├── OS.cs │ └── Storage.cs │ ├── EmbeddedResource.Designer.cs │ ├── EmbeddedResource.resx │ ├── Helpers │ ├── Strings.cs │ └── Utils.cs │ ├── Locales │ ├── Locale.Designer.cs │ ├── Locale.de.resx │ ├── Locale.ja.resx │ ├── Locale.resx │ ├── Locale.ru.resx │ └── Locale.uk.resx │ ├── MainWindow.Designer.cs │ ├── MainWindow.cs │ ├── MainWindow.resx │ ├── Program.cs │ ├── Properties │ ├── AssemblyInfo.cs │ ├── Resources.Designer.cs │ ├── Resources.resx │ ├── Settings.Designer.cs │ └── Settings.settings │ ├── RSV.csproj │ ├── RSV.csproj.user │ ├── Resources │ ├── bypass.reg │ ├── fail.png │ ├── info.png │ ├── notready.png │ ├── ok.png │ ├── ready.png │ ├── supportedCPU.txt │ └── undo_bypass.reg │ └── app.manifest └── utilversion.txt /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/builtbybel/ReadySunValley/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/builtbybel/ReadySunValley/HEAD/README.md -------------------------------------------------------------------------------- /appversion.txt: -------------------------------------------------------------------------------- 1 | 0.61.0 2 | -------------------------------------------------------------------------------- /assets/rsv-microsoft-requirements.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/builtbybel/ReadySunValley/HEAD/assets/rsv-microsoft-requirements.png -------------------------------------------------------------------------------- /assets/rsv-opt.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/builtbybel/ReadySunValley/HEAD/assets/rsv-opt.png -------------------------------------------------------------------------------- /assets/rsv.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/builtbybel/ReadySunValley/HEAD/assets/rsv.png -------------------------------------------------------------------------------- /changes.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/builtbybel/ReadySunValley/HEAD/changes.txt -------------------------------------------------------------------------------- /src/.gitignore: -------------------------------------------------------------------------------- 1 | .vs 2 | -------------------------------------------------------------------------------- /src/RSV.Package/AssetStore.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/builtbybel/ReadySunValley/HEAD/src/RSV.Package/AssetStore.png -------------------------------------------------------------------------------- /src/RSV.Package/AssetStore_org.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/builtbybel/ReadySunValley/HEAD/src/RSV.Package/AssetStore_org.png -------------------------------------------------------------------------------- /src/RSV.Package/Package.StoreAssociation.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/builtbybel/ReadySunValley/HEAD/src/RSV.Package/Package.StoreAssociation.xml -------------------------------------------------------------------------------- /src/RSV.Package/Package.appxmanifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/builtbybel/ReadySunValley/HEAD/src/RSV.Package/Package.appxmanifest -------------------------------------------------------------------------------- /src/RSV.Package/RSV.Package.assets.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/builtbybel/ReadySunValley/HEAD/src/RSV.Package/RSV.Package.assets.cache -------------------------------------------------------------------------------- /src/RSV.Package/RSV.Package.wapproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/builtbybel/ReadySunValley/HEAD/src/RSV.Package/RSV.Package.wapproj -------------------------------------------------------------------------------- /src/RSV.Package/RSV.Package.wapproj.user: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/builtbybel/ReadySunValley/HEAD/src/RSV.Package/RSV.Package.wapproj.user -------------------------------------------------------------------------------- /src/RSV.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/builtbybel/ReadySunValley/HEAD/src/RSV.sln -------------------------------------------------------------------------------- /src/RSV/.gitignore: -------------------------------------------------------------------------------- 1 | bin 2 | obj 3 | -------------------------------------------------------------------------------- /src/RSV/App.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/builtbybel/ReadySunValley/HEAD/src/RSV/App.config -------------------------------------------------------------------------------- /src/RSV/AppIcon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/builtbybel/ReadySunValley/HEAD/src/RSV/AppIcon.ico -------------------------------------------------------------------------------- /src/RSV/AppLogo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/builtbybel/ReadySunValley/HEAD/src/RSV/AppLogo.png -------------------------------------------------------------------------------- /src/RSV/Assessment/Boot.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/builtbybel/ReadySunValley/HEAD/src/RSV/Assessment/Boot.cs -------------------------------------------------------------------------------- /src/RSV/Assessment/Bypass.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/builtbybel/ReadySunValley/HEAD/src/RSV/Assessment/Bypass.cs -------------------------------------------------------------------------------- /src/RSV/Assessment/CPU.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/builtbybel/ReadySunValley/HEAD/src/RSV/Assessment/CPU.cs -------------------------------------------------------------------------------- /src/RSV/Assessment/Display.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/builtbybel/ReadySunValley/HEAD/src/RSV/Assessment/Display.cs -------------------------------------------------------------------------------- /src/RSV/Assessment/GPU.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/builtbybel/ReadySunValley/HEAD/src/RSV/Assessment/GPU.cs -------------------------------------------------------------------------------- /src/RSV/Assessment/Inet.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/builtbybel/ReadySunValley/HEAD/src/RSV/Assessment/Inet.cs -------------------------------------------------------------------------------- /src/RSV/Assessment/OS.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/builtbybel/ReadySunValley/HEAD/src/RSV/Assessment/OS.cs -------------------------------------------------------------------------------- /src/RSV/Assessment/Storage.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/builtbybel/ReadySunValley/HEAD/src/RSV/Assessment/Storage.cs -------------------------------------------------------------------------------- /src/RSV/EmbeddedResource.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/builtbybel/ReadySunValley/HEAD/src/RSV/EmbeddedResource.Designer.cs -------------------------------------------------------------------------------- /src/RSV/EmbeddedResource.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/builtbybel/ReadySunValley/HEAD/src/RSV/EmbeddedResource.resx -------------------------------------------------------------------------------- /src/RSV/Helpers/Strings.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/builtbybel/ReadySunValley/HEAD/src/RSV/Helpers/Strings.cs -------------------------------------------------------------------------------- /src/RSV/Helpers/Utils.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/builtbybel/ReadySunValley/HEAD/src/RSV/Helpers/Utils.cs -------------------------------------------------------------------------------- /src/RSV/Locales/Locale.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/builtbybel/ReadySunValley/HEAD/src/RSV/Locales/Locale.Designer.cs -------------------------------------------------------------------------------- /src/RSV/Locales/Locale.de.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/builtbybel/ReadySunValley/HEAD/src/RSV/Locales/Locale.de.resx -------------------------------------------------------------------------------- /src/RSV/Locales/Locale.ja.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/builtbybel/ReadySunValley/HEAD/src/RSV/Locales/Locale.ja.resx -------------------------------------------------------------------------------- /src/RSV/Locales/Locale.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/builtbybel/ReadySunValley/HEAD/src/RSV/Locales/Locale.resx -------------------------------------------------------------------------------- /src/RSV/Locales/Locale.ru.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/builtbybel/ReadySunValley/HEAD/src/RSV/Locales/Locale.ru.resx -------------------------------------------------------------------------------- /src/RSV/Locales/Locale.uk.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/builtbybel/ReadySunValley/HEAD/src/RSV/Locales/Locale.uk.resx -------------------------------------------------------------------------------- /src/RSV/MainWindow.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/builtbybel/ReadySunValley/HEAD/src/RSV/MainWindow.Designer.cs -------------------------------------------------------------------------------- /src/RSV/MainWindow.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/builtbybel/ReadySunValley/HEAD/src/RSV/MainWindow.cs -------------------------------------------------------------------------------- /src/RSV/MainWindow.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/builtbybel/ReadySunValley/HEAD/src/RSV/MainWindow.resx -------------------------------------------------------------------------------- /src/RSV/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/builtbybel/ReadySunValley/HEAD/src/RSV/Program.cs -------------------------------------------------------------------------------- /src/RSV/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/builtbybel/ReadySunValley/HEAD/src/RSV/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /src/RSV/Properties/Resources.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/builtbybel/ReadySunValley/HEAD/src/RSV/Properties/Resources.Designer.cs -------------------------------------------------------------------------------- /src/RSV/Properties/Resources.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/builtbybel/ReadySunValley/HEAD/src/RSV/Properties/Resources.resx -------------------------------------------------------------------------------- /src/RSV/Properties/Settings.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/builtbybel/ReadySunValley/HEAD/src/RSV/Properties/Settings.Designer.cs -------------------------------------------------------------------------------- /src/RSV/Properties/Settings.settings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/builtbybel/ReadySunValley/HEAD/src/RSV/Properties/Settings.settings -------------------------------------------------------------------------------- /src/RSV/RSV.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/builtbybel/ReadySunValley/HEAD/src/RSV/RSV.csproj -------------------------------------------------------------------------------- /src/RSV/RSV.csproj.user: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/builtbybel/ReadySunValley/HEAD/src/RSV/RSV.csproj.user -------------------------------------------------------------------------------- /src/RSV/Resources/bypass.reg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/builtbybel/ReadySunValley/HEAD/src/RSV/Resources/bypass.reg -------------------------------------------------------------------------------- /src/RSV/Resources/fail.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/builtbybel/ReadySunValley/HEAD/src/RSV/Resources/fail.png -------------------------------------------------------------------------------- /src/RSV/Resources/info.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/builtbybel/ReadySunValley/HEAD/src/RSV/Resources/info.png -------------------------------------------------------------------------------- /src/RSV/Resources/notready.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/builtbybel/ReadySunValley/HEAD/src/RSV/Resources/notready.png -------------------------------------------------------------------------------- /src/RSV/Resources/ok.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/builtbybel/ReadySunValley/HEAD/src/RSV/Resources/ok.png -------------------------------------------------------------------------------- /src/RSV/Resources/ready.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/builtbybel/ReadySunValley/HEAD/src/RSV/Resources/ready.png -------------------------------------------------------------------------------- /src/RSV/Resources/supportedCPU.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/builtbybel/ReadySunValley/HEAD/src/RSV/Resources/supportedCPU.txt -------------------------------------------------------------------------------- /src/RSV/Resources/undo_bypass.reg: -------------------------------------------------------------------------------- 1 | Windows Registry Editor Version 5.00 2 | 3 | [-HKEY_LOCAL_MACHINE\SYSTEM\Setup\LabConfig] -------------------------------------------------------------------------------- /src/RSV/app.manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/builtbybel/ReadySunValley/HEAD/src/RSV/app.manifest -------------------------------------------------------------------------------- /utilversion.txt: -------------------------------------------------------------------------------- 1 | 2.3.1 2 | --------------------------------------------------------------------------------