├── .github ├── FUNDING.yml ├── ISSUE_TEMPLATE │ ├── bug_report.yaml │ ├── doc_issue.yaml │ └── feature_request.yaml ├── banner.png ├── logo.ico └── stale.yml ├── .gitignore ├── LICENSE ├── README.md ├── WinRice.ps1 ├── doc ├── App-uninstallation.md ├── CONTRIBUTING.md ├── Frequently-answered-questions.md ├── Main-brief.md ├── README.md ├── Reverting-changes.md ├── Settings.md ├── Supported-winver.md └── winget │ ├── import.md │ ├── winget.md │ └── winstall.md └── scripts ├── DisableVBS.ps1 ├── EnableVBS.ps1 ├── EnableWSL.ps1 ├── README.md ├── ResetWU.ps1 ├── SetupFlowLauncher.ps1 ├── SetupWU.ps1 ├── WingetImport.ps1 └── Winstall.ps1 /.github/FUNDING.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pratyakshm/WinRice/HEAD/.github/FUNDING.yml -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/bug_report.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pratyakshm/WinRice/HEAD/.github/ISSUE_TEMPLATE/bug_report.yaml -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/doc_issue.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pratyakshm/WinRice/HEAD/.github/ISSUE_TEMPLATE/doc_issue.yaml -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/feature_request.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pratyakshm/WinRice/HEAD/.github/ISSUE_TEMPLATE/feature_request.yaml -------------------------------------------------------------------------------- /.github/banner.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pratyakshm/WinRice/HEAD/.github/banner.png -------------------------------------------------------------------------------- /.github/logo.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pratyakshm/WinRice/HEAD/.github/logo.ico -------------------------------------------------------------------------------- /.github/stale.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pratyakshm/WinRice/HEAD/.github/stale.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | .vscode 2 | BIT2146.tmp 3 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pratyakshm/WinRice/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pratyakshm/WinRice/HEAD/README.md -------------------------------------------------------------------------------- /WinRice.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pratyakshm/WinRice/HEAD/WinRice.ps1 -------------------------------------------------------------------------------- /doc/App-uninstallation.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pratyakshm/WinRice/HEAD/doc/App-uninstallation.md -------------------------------------------------------------------------------- /doc/CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pratyakshm/WinRice/HEAD/doc/CONTRIBUTING.md -------------------------------------------------------------------------------- /doc/Frequently-answered-questions.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pratyakshm/WinRice/HEAD/doc/Frequently-answered-questions.md -------------------------------------------------------------------------------- /doc/Main-brief.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pratyakshm/WinRice/HEAD/doc/Main-brief.md -------------------------------------------------------------------------------- /doc/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pratyakshm/WinRice/HEAD/doc/README.md -------------------------------------------------------------------------------- /doc/Reverting-changes.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pratyakshm/WinRice/HEAD/doc/Reverting-changes.md -------------------------------------------------------------------------------- /doc/Settings.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pratyakshm/WinRice/HEAD/doc/Settings.md -------------------------------------------------------------------------------- /doc/Supported-winver.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pratyakshm/WinRice/HEAD/doc/Supported-winver.md -------------------------------------------------------------------------------- /doc/winget/import.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pratyakshm/WinRice/HEAD/doc/winget/import.md -------------------------------------------------------------------------------- /doc/winget/winget.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pratyakshm/WinRice/HEAD/doc/winget/winget.md -------------------------------------------------------------------------------- /doc/winget/winstall.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pratyakshm/WinRice/HEAD/doc/winget/winstall.md -------------------------------------------------------------------------------- /scripts/DisableVBS.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pratyakshm/WinRice/HEAD/scripts/DisableVBS.ps1 -------------------------------------------------------------------------------- /scripts/EnableVBS.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pratyakshm/WinRice/HEAD/scripts/EnableVBS.ps1 -------------------------------------------------------------------------------- /scripts/EnableWSL.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pratyakshm/WinRice/HEAD/scripts/EnableWSL.ps1 -------------------------------------------------------------------------------- /scripts/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pratyakshm/WinRice/HEAD/scripts/README.md -------------------------------------------------------------------------------- /scripts/ResetWU.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pratyakshm/WinRice/HEAD/scripts/ResetWU.ps1 -------------------------------------------------------------------------------- /scripts/SetupFlowLauncher.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pratyakshm/WinRice/HEAD/scripts/SetupFlowLauncher.ps1 -------------------------------------------------------------------------------- /scripts/SetupWU.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pratyakshm/WinRice/HEAD/scripts/SetupWU.ps1 -------------------------------------------------------------------------------- /scripts/WingetImport.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pratyakshm/WinRice/HEAD/scripts/WingetImport.ps1 -------------------------------------------------------------------------------- /scripts/Winstall.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pratyakshm/WinRice/HEAD/scripts/Winstall.ps1 --------------------------------------------------------------------------------