- Upgrade to Enterprise edition of Windows 10/11 if you are running Home or Pro.
- You can do this through the Change Edition option in the Extras menu in MAS.
- Open the Group Policy Editor. Search for "Edit Group Policy" in search or run
gpedit.msc.
| export default { | |
| async fetch(request) { | |
| const url = new URL(request.url); | |
| const path = url.pathname.replace(/^\/+/, ""); | |
| const parts = path.split("/"); | |
| if (parts.length < 4) { | |
| return new Response("Usage: /owner/repo/branch/path/to/file.ext", { status: 400 }); | |
| } | |
| const [owner, repo, branch, ...filePathParts] = parts; | |
| const filePath = filePathParts.join("/"); |
gpedit.msc.