Compare commits

..

8 commits

Author SHA1 Message Date
Olai
d73d692d3e
Update README.md 2024-02-22 12:20:59 +01:00
3fc1c76599 agooa 2022-09-29 12:14:11 +02:00
534f8a8924 awooga 2022-09-29 12:12:10 +02:00
1554bd6459 awooga 2022-09-29 12:11:47 +02:00
OlaYZen
d662c001f7
Update Script.ps1 2022-09-29 11:43:50 +02:00
OlaYZen
91ac97aa6f
Update README.md 2022-09-22 15:23:46 +02:00
OlaYZen
57e3e25790
Update README.md 2022-09-22 14:55:13 +02:00
OlaYZen
8fd5d724ef
Update README.md 2022-09-20 12:54:54 +02:00
14 changed files with 665 additions and 43 deletions

26
.github/ISSUE_TEMPLATE/bug_report.md vendored Normal file
View file

@ -0,0 +1,26 @@
---
name: Bug report
about: Create a report to help us improve
title: ''
labels: ''
assignees: ''
---
**Describe the bug**
A clear and concise description of what the bug is.
**To Reproduce**
How you caused the bug
**Expected behavior**
A clear and concise description of what you expected to happen.
**Screenshots**
If applicable, add screenshots to help explain your problem.
**Desktop (please complete the following information):**
- OS: [e.g. Windows 10, Windows 11]
**Additional context**
Add any other context about the problem here.

View file

@ -0,0 +1,20 @@
---
name: Feature request
about: Suggest an idea for this project
title: ''
labels: ''
assignees: ''
---
**Is your feature request related to a problem? Please describe.**
A clear and concise description of what the problem is. Ex. I'm always frustrated when [...]
**Describe the solution you'd like**
A clear and concise description of what you want to happen.
**Describe alternatives you've considered**
A clear and concise description of any alternative solutions or features you've considered.
**Additional context**
Add any other context or screenshots about the feature request here.

36
.github/workflows/blank.yml vendored Normal file
View file

@ -0,0 +1,36 @@
# This is a basic workflow to help you get started with Actions
name: CI
# Controls when the workflow will run
on:
# Triggers the workflow on push or pull request events but only for the "main" branch
push:
branches: [ "main" ]
pull_request:
branches: [ "main" ]
# Allows you to run this workflow manually from the Actions tab
workflow_dispatch:
# A workflow run is made up of one or more jobs that can run sequentially or in parallel
jobs:
# This workflow contains a single job called "build"
build:
# The type of runner that the job will run on
runs-on: ubuntu-latest
# Steps represent a sequence of tasks that will be executed as part of the job
steps:
# Checks-out your repository under $GITHUB_WORKSPACE, so your job can access it
- uses: actions/checkout@v3
# Runs a single command using the runners shell
- name: Run a one-line script
run: echo Hello, world!
# Runs a set of commands using the runners shell
- name: Run a multi-line script
run: |
echo Add other actions to build,
echo test, and deploy your project.

34
.github/workflows/devskim.yml vendored Normal file
View file

@ -0,0 +1,34 @@
# This workflow uses actions that are not certified by GitHub.
# They are provided by a third-party and are governed by
# separate terms of service, privacy policy, and support
# documentation.
name: DevSkim
on:
push:
branches: [ "main" ]
pull_request:
branches: [ "main" ]
schedule:
- cron: '42 5 * * 3'
jobs:
lint:
name: DevSkim
runs-on: ubuntu-20.04
permissions:
actions: read
contents: read
security-events: write
steps:
- name: Checkout code
uses: actions/checkout@v3
- name: Run DevSkim scanner
uses: microsoft/DevSkim-Action@v1
- name: Upload DevSkim scan results to GitHub Security tab
uses: github/codeql-action/upload-sarif@v2
with:
sarif_file: devskim-results.sarif

49
.github/workflows/powershell.yml vendored Normal file
View file

@ -0,0 +1,49 @@
# This workflow uses actions that are not certified by GitHub.
# They are provided by a third-party and are governed by
# separate terms of service, privacy policy, and support
# documentation.
#
# https://github.com/microsoft/action-psscriptanalyzer
# For more information on PSScriptAnalyzer in general, see
# https://github.com/PowerShell/PSScriptAnalyzer
name: PSScriptAnalyzer
on:
push:
branches: [ "main" ]
pull_request:
branches: [ "main" ]
schedule:
- cron: '15 7 * * 1'
permissions:
contents: read
jobs:
build:
permissions:
contents: read # for actions/checkout to fetch code
security-events: write # for github/codeql-action/upload-sarif to upload SARIF results
actions: read # only required for a private repository by github/codeql-action/upload-sarif to get the Action run status
name: PSScriptAnalyzer
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Run PSScriptAnalyzer
uses: microsoft/psscriptanalyzer-action@6b2948b1944407914a58661c49941824d149734f
with:
# Check https://github.com/microsoft/action-psscriptanalyzer for more info about the options.
# The below set up runs PSScriptAnalyzer to your entire repository and runs some basic security rules.
path: .\
recurse: true
# Include your own basic security rules. Removing this option will run all the rules
includeRule: '"PSAvoidGlobalAliases", "PSAvoidUsingConvertToSecureStringWithPlainText"'
output: results.sarif
# Upload the SARIF file generated in the previous step
- name: Upload SARIF results file
uses: github/codeql-action/upload-sarif@v2
with:
sarif_file: results.sarif

1
CNAME
View file

@ -1 +0,0 @@
wu.olayzen.net

BIN
Image.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 21 KiB

BIN
ImageOfJsonButton.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 4.4 KiB

View file

@ -1,2 +1,35 @@
# Website Branch # Windows Updater
Here is where the websites are located ![GitHub](https://img.shields.io/github/license/OlaYZen/Windows-Update?color=gree&style=for-the-badge)
![GitHub release (latest by date)](https://img.shields.io/github/v/release/OlaYZen/Windows-Update?style=for-the-badge)
![GitHub repo size](https://img.shields.io/github/repo-size/OlaYZen/Windows-Update?color=orange&style=for-the-badge)
[<img src="https://raw.githubusercontent.com/OlaYZen/Windows-Update/main/Image.png"/>](https://raw.githubusercontent.com/OlaYZen/Windows-Update/main/Script.ps1)
## **How to start the program**
Open a [Elevated Windows Powershell Window](https://docs.microsoft.com/en-us/powershell/scripting/windows-powershell/starting-windows-powershell?view=powershell-7.2#with-administrative-privileges-run-as-administrator), and type:
```
iwr -useb http://win.olayzen.com/ | iex
```
or Download and run Script.ps1
## Website
Visit our Website for blogs and other stuff: <br/>
https://www.olayzen.lol/Windows-Update/
## Preview Builds
To try or compare preview builds click [here](https://github.com/OlaYZen/Windows-Update/tree/Preview)
## **Credits**
[OlaYZen](https://github.com/OlaYZen) - Head Developer and Owner <br/>
[Easiexd](https://github.com/easiexd) - Designer and Tester
# **WIKI**
Check out the [Wiki](https://github.com/OlaYZen/Windows-Update/wiki), There could be some info you want to know
# **NEW UI**
New UI in development, We expect the new UI will be in the new [Preview](https://github.com/OlaYZen/Windows-Update/blob/Preview/Script%20PREVIEW.ps1) Build comming out later this week. [easiexd](https://github.com/easiexd) is currently in works to make a new ui. We will also try to not make it look like a program from the 1990's and try to get more of a modern feeling of the UI. Just like basically every program using Windows 11
# **More Features**
With the new UI you can also expect more features
# **Docs**
We will also make a Document of every features and how to use them, but this can take a while before is done. so don't expect the documents to be done this week

321
Script.ps1 Normal file

File diff suppressed because one or more lines are too long

Binary file not shown.

Before

Width:  |  Height:  |  Size: 104 KiB

View file

@ -1,40 +0,0 @@
<!DOCTYPE html>
<!--
===========================================
===========================================
YYYY YYYYZZZZZZZZZZZZZZZZZZZZZ
Y::Y Y::::::::::::::::::::::::Z
Y::Y Y::YYYZZZZZZZZZZZZZZZZZ:::Z
Y::Y Y::Y Z:::Z
Y:::Y Y:::Y Z:::Z
Y:::Y Y:::Y Z:::Z
Y:::Y:::Y Z:::Z
Y:::::Y Z:::Z
Y:::Y Z:::Z
Y:::Y Z:::Z
Y:::Y Z:::Z
Y:::Y Z:::Z
Y:::Y Z:::Z
Y:::Y Z:::ZZZZZZZZZZZZZZZZ
Y:::Y Z:::::::::::::::::::Z
YYYYY ZZZZZZZZZZZZZZZZZZZZZ
===========================================
===========================================
============= made by OlaYZen =============
-->
<title>website in development</title>
<meta content="OlaYZen" property="og:title" />
<meta content="Website made by OlaYZen on GitHub" property="og:description" />
<meta content="https://olayzen.lol" property="og:url" />
<meta content="https://raw.githubusercontent.com/OlaYZen/olayzen.github.io/master/UnUsed/OLAI.png" property="og:image" />
<meta content="#161b22" data-react-helmet="true" name="theme-color" />
<link rel="icon" href="favicon.ico">
<h1>401 Unauthorised</h1>
website in development..
</html>

144
winget-export.json Normal file
View file

@ -0,0 +1,144 @@
{
"$schema" : "https://aka.ms/winget-packages.schema.2.0.json",
"CreationDate" : "2022-08-28T01:02:19.143-00:00",
"Sources" :
[
{
"Packages" :
[
{
"PackageIdentifier" : "File-New-Project.EarTrumpet"
},
{
"PackageIdentifier" : "7zip.7zip"
},
{
"PackageIdentifier" : "ShareX.ShareX"
},
{
"PackageIdentifier" : "BraveSoftware.BraveBrowser"
},
{
"PackageIdentifier" : "Rufus.Rufus"
},
{
"PackageIdentifier" : "Discord.Discord"
},
{
"PackageIdentifier" : "GitHub.GitHubDesktop"
},
{
"PackageIdentifier" : "Git.Git"
},
{
"PackageIdentifier" : "HandBrake.HandBrake"
},
{
"PackageIdentifier" : "Iriun.IriunWebcam"
},
{
"PackageIdentifier" : "TranslucentTB.TranslucentTB"
},
{
"PackageIdentifier" : "Microsoft.WindowsTerminal"
},
{
"PackageIdentifier" : "Notepad++.Notepad++"
},
{
"PackageIdentifier" : "Parsec.Parsec"
},
{
"PackageIdentifier" : "Plex.Plex"
},
{
"PackageIdentifier" : "Valve.Steam"
},
{
"PackageIdentifier" : "Wox.Wox"
},
{
"PackageIdentifier" : "TechPowerUp.GPU-Z"
},
{
"PackageIdentifier" : "NordPassTeam.NordPass"
},
{
"PackageIdentifier" : "voidtools.Everything"
},
{
"PackageIdentifier" : "Microsoft.VC++2013Redist-x64"
},
{
"PackageIdentifier" : "DuongDieuPhap.ImageGlass"
},
{
"PackageIdentifier" : "NordVPN.NordVPN"
},
{
"PackageIdentifier" : "Microsoft.VC++2010Redist-x64"
},
{
"PackageIdentifier" : "Microsoft.DotNet.DesktopRuntime.6"
},
{
"PackageIdentifier" : "Oracle.JavaRuntimeEnvironment"
},
{
"PackageIdentifier" : "Microsoft.VC++2012Redist-x86"
},
{
"PackageIdentifier" : "Microsoft.VC++2015-2022Redist-x64"
},
{
"PackageIdentifier" : "Microsoft.VC++2008Redist-x64"
},
{
"PackageIdentifier" : "Microsoft.PowerToys"
},
{
"PackageIdentifier" : "Microsoft.VisualStudioCode"
},
{
"PackageIdentifier" : "Microsoft.DotNet.SDK.6"
},
{
"PackageIdentifier" : "Microsoft.VC++2008Redist-x86"
},
{
"PackageIdentifier" : "VideoLAN.VLC"
},
{
"PackageIdentifier" : "Microsoft.VC++2010Redist-x86"
},
{
"PackageIdentifier" : "Oracle.JDK.18"
},
{
"PackageIdentifier" : "EpicGames.EpicGamesLauncher"
},
{
"PackageIdentifier" : "Microsoft.VC++2015-2022Redist-x86"
},
{
"PackageIdentifier" : "Microsoft.DotNet.DesktopRuntime.6"
},
{
"PackageIdentifier" : "Microsoft.VC++2012Redist-x64"
},
{
"PackageIdentifier" : "Microsoft.DotNet.DesktopRuntime.6"
}
],
"SourceDetails" :
{
"Argument" : "https://cdn.winget.microsoft.com/cache",
"Identifier" : "Microsoft.Winget.Source_8wekyb3d8bbwe",
"Name" : "winget",
"Type" : "Microsoft.PreIndexed.Package"
}
}
],
"WinGetVersion" : "1.4.2161-preview"
}