├── .gitignore ├── CHANGELOG.md ├── DISCLAIMER.md ├── Functions ├── Accounts.ps1 ├── ComputerNameRules.ps1 ├── Environments.ps1 ├── InterfaceDetails.ps1 ├── Logging.ps1 ├── PlatformInfo.ps1 ├── RegionLocale.ps1 ├── SetOSDVariables.ps1 └── UIControls.ps1 ├── OSDOOBEUI.config ├── OSDOOBEUI.ps1 ├── OSDOOBEUI_SinglePage.ps1 ├── README.md ├── Resources ├── OOBEUIWPF.xaml ├── OOBEUIWPF_SinglePage.xaml ├── TimeZonesIndex.csv └── msftlogo.png └── UI_Screenshots ├── OOBEUIWPF_Apps.png ├── OOBEUIWPF_Blank-singlepage.png ├── OOBEUIWPF_Bypassmode.png ├── OOBEUIWPF_Validate-singlepage.png ├── OOBEUIWPF_Validate_error1-singlepage.png ├── OOBEUIWPF_Validate_error2-singlepage.png └── splashscreen.PNG /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowerShellCrack/OSDOOBEUI/HEAD/.gitignore -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowerShellCrack/OSDOOBEUI/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /DISCLAIMER.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowerShellCrack/OSDOOBEUI/HEAD/DISCLAIMER.md -------------------------------------------------------------------------------- /Functions/Accounts.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowerShellCrack/OSDOOBEUI/HEAD/Functions/Accounts.ps1 -------------------------------------------------------------------------------- /Functions/ComputerNameRules.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowerShellCrack/OSDOOBEUI/HEAD/Functions/ComputerNameRules.ps1 -------------------------------------------------------------------------------- /Functions/Environments.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowerShellCrack/OSDOOBEUI/HEAD/Functions/Environments.ps1 -------------------------------------------------------------------------------- /Functions/InterfaceDetails.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowerShellCrack/OSDOOBEUI/HEAD/Functions/InterfaceDetails.ps1 -------------------------------------------------------------------------------- /Functions/Logging.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowerShellCrack/OSDOOBEUI/HEAD/Functions/Logging.ps1 -------------------------------------------------------------------------------- /Functions/PlatformInfo.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowerShellCrack/OSDOOBEUI/HEAD/Functions/PlatformInfo.ps1 -------------------------------------------------------------------------------- /Functions/RegionLocale.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowerShellCrack/OSDOOBEUI/HEAD/Functions/RegionLocale.ps1 -------------------------------------------------------------------------------- /Functions/SetOSDVariables.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowerShellCrack/OSDOOBEUI/HEAD/Functions/SetOSDVariables.ps1 -------------------------------------------------------------------------------- /Functions/UIControls.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowerShellCrack/OSDOOBEUI/HEAD/Functions/UIControls.ps1 -------------------------------------------------------------------------------- /OSDOOBEUI.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowerShellCrack/OSDOOBEUI/HEAD/OSDOOBEUI.config -------------------------------------------------------------------------------- /OSDOOBEUI.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowerShellCrack/OSDOOBEUI/HEAD/OSDOOBEUI.ps1 -------------------------------------------------------------------------------- /OSDOOBEUI_SinglePage.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowerShellCrack/OSDOOBEUI/HEAD/OSDOOBEUI_SinglePage.ps1 -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowerShellCrack/OSDOOBEUI/HEAD/README.md -------------------------------------------------------------------------------- /Resources/OOBEUIWPF.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowerShellCrack/OSDOOBEUI/HEAD/Resources/OOBEUIWPF.xaml -------------------------------------------------------------------------------- /Resources/OOBEUIWPF_SinglePage.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowerShellCrack/OSDOOBEUI/HEAD/Resources/OOBEUIWPF_SinglePage.xaml -------------------------------------------------------------------------------- /Resources/TimeZonesIndex.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowerShellCrack/OSDOOBEUI/HEAD/Resources/TimeZonesIndex.csv -------------------------------------------------------------------------------- /Resources/msftlogo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowerShellCrack/OSDOOBEUI/HEAD/Resources/msftlogo.png -------------------------------------------------------------------------------- /UI_Screenshots/OOBEUIWPF_Apps.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowerShellCrack/OSDOOBEUI/HEAD/UI_Screenshots/OOBEUIWPF_Apps.png -------------------------------------------------------------------------------- /UI_Screenshots/OOBEUIWPF_Blank-singlepage.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowerShellCrack/OSDOOBEUI/HEAD/UI_Screenshots/OOBEUIWPF_Blank-singlepage.png -------------------------------------------------------------------------------- /UI_Screenshots/OOBEUIWPF_Bypassmode.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowerShellCrack/OSDOOBEUI/HEAD/UI_Screenshots/OOBEUIWPF_Bypassmode.png -------------------------------------------------------------------------------- /UI_Screenshots/OOBEUIWPF_Validate-singlepage.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowerShellCrack/OSDOOBEUI/HEAD/UI_Screenshots/OOBEUIWPF_Validate-singlepage.png -------------------------------------------------------------------------------- /UI_Screenshots/OOBEUIWPF_Validate_error1-singlepage.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowerShellCrack/OSDOOBEUI/HEAD/UI_Screenshots/OOBEUIWPF_Validate_error1-singlepage.png -------------------------------------------------------------------------------- /UI_Screenshots/OOBEUIWPF_Validate_error2-singlepage.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowerShellCrack/OSDOOBEUI/HEAD/UI_Screenshots/OOBEUIWPF_Validate_error2-singlepage.png -------------------------------------------------------------------------------- /UI_Screenshots/splashscreen.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowerShellCrack/OSDOOBEUI/HEAD/UI_Screenshots/splashscreen.PNG --------------------------------------------------------------------------------