Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 10 additions & 0 deletions Microwin.ps1
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
$tempPath = [System.IO.Path]::GetTempPath()
$zipFile = Join-Path $tempPath "MicroWinDownload.zip"
$extractPath = Join-Path $tempPath "MicroWinExtract"

Invoke-WebRequest -Uri "https://github.com/CodingWonders/MicroWin/releases/download/latest/MicroWin.zip" -OutFile $zipFile

Expand-Archive -Path $zipFile -DestinationPath $extractPath -Force
Remove-Item $zipFile

Start-Process -FilePath (Join-Path $extractPath "MicroWin.exe") -Wait
7 changes: 6 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,11 @@ This is, currently, in **ALPHA** stages and contains bugs. We are working hard o
> [!NOTE]
> The application is not signed with code-signing certificates because of how expensive these are. Please turn off your antivirus or add an exclusion. We don't want any issue reports of that topic.

Alternatively you can run the following command:
``` ps1
powershell -ExecutionPolicy Bypass -Command "iwr -useb https://raw.githubusercontent.com/CodingWonders/MicroWin/main/microwin.ps1 | iex"
```

## Contributing to the repository

**Requirements:**
Expand All @@ -33,4 +38,4 @@ To contribute to the repository:
3. Make your changes **AND TEST THEM**
4. Create a pull request

**DO NOT VIBE-CODE!!! OR ELSE YOU WILL MAKE ME ANGRY**
**DO NOT VIBE-CODE!!! OR ELSE YOU WILL MAKE ME ANGRY**