Use HTTPS instead of HTTP for URLs where supported. (#3161)

This commit is contained in:
bvd0 2025-01-17 23:42:42 +09:00 committed by GitHub
parent bcc801683d
commit 254738a420
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
6 changed files with 10 additions and 10 deletions

View File

@ -916,7 +916,7 @@
"choco": "imgburn", "choco": "imgburn",
"content": "ImgBurn", "content": "ImgBurn",
"description": "ImgBurn is a lightweight CD, DVD, HD-DVD, and Blu-ray burning application with advanced features for creating and burning disc images.", "description": "ImgBurn is a lightweight CD, DVD, HD-DVD, and Blu-ray burning application with advanced features for creating and burning disc images.",
"link": "http://www.imgburn.com/", "link": "https://www.imgburn.com/",
"winget": "LIGHTNINGUK.ImgBurn" "winget": "LIGHTNINGUK.ImgBurn"
}, },
"inkscape": { "inkscape": {
@ -988,7 +988,7 @@
"choco": "jdownloader", "choco": "jdownloader",
"content": "JDownloader", "content": "JDownloader",
"description": "JDownloader is a feature-rich download manager with support for various file hosting services.", "description": "JDownloader is a feature-rich download manager with support for various file hosting services.",
"link": "http://jdownloader.org/", "link": "https://jdownloader.org/",
"winget": "AppWork.JDownloader" "winget": "AppWork.JDownloader"
}, },
"jellyfinmediaplayer": { "jellyfinmediaplayer": {
@ -1380,7 +1380,7 @@
"choco": "na", "choco": "na",
"content": "nGlide (3dfx compatibility)", "content": "nGlide (3dfx compatibility)",
"description": "nGlide is a 3Dfx Voodoo Glide wrapper. It allows you to play games that use Glide API on modern graphics cards without the need for a 3Dfx Voodoo graphics card.", "description": "nGlide is a 3Dfx Voodoo Glide wrapper. It allows you to play games that use Glide API on modern graphics cards without the need for a 3Dfx Voodoo graphics card.",
"link": "http://www.zeus-software.com/downloads/nglide", "link": "https://www.zeus-software.com/downloads/nglide",
"winget": "ZeusSoftware.nGlide" "winget": "ZeusSoftware.nGlide"
}, },
"nmap": { "nmap": {
@ -2204,7 +2204,7 @@
"choco": "na", "choco": "na",
"content": "Thorium Browser AVX2", "content": "Thorium Browser AVX2",
"description": "Browser built for speed over vanilla chromium. It is built with AVX2 optimizations and is the fastest browser on the market.", "description": "Browser built for speed over vanilla chromium. It is built with AVX2 optimizations and is the fastest browser on the market.",
"link": "http://thorium.rocks/", "link": "https://thorium.rocks/",
"winget": "Alex313031.Thorium.AVX2" "winget": "Alex313031.Thorium.AVX2"
}, },
"thunderbird": { "thunderbird": {

View File

@ -6,7 +6,7 @@
#### **Run the latest pre-release** #### **Run the latest pre-release**
```ps1 ```ps1
irm christitus.com/windev | iex irm https://christitus.com/windev | iex
``` ```
!!! bug "Keep in mind" !!! bug "Keep in mind"

View File

@ -6,7 +6,7 @@ Windows Security (formerly Defender) and other anti-virus software are known to
To resolve this, allow/whitelist the script in your anti-virus software settings, or temporarily disable real-time protection. Since the project is open source, you may audit the code if security is a concern. To resolve this, allow/whitelist the script in your anti-virus software settings, or temporarily disable real-time protection. Since the project is open source, you may audit the code if security is a concern.
### Download not working ### Download not working
If `christitus.com/win` is not working, or you want to download the code from GitHub directly, you can use the direct download link: If `https://christitus.com/win` is not working, or you want to download the code from GitHub directly, you can use the direct download link:
```ps1 ```ps1
irm https://github.com/ChrisTitusTech/winutil/releases/latest/download/winutil.ps1 | iex irm https://github.com/ChrisTitusTech/winutil/releases/latest/download/winutil.ps1 | iex
@ -34,7 +34,7 @@ If you are still having issues, try using a **VPN**, or changing your **DNS prov
2. In the PowerShell window, type this to allow unsigned code to execute and run the installation script: 2. In the PowerShell window, type this to allow unsigned code to execute and run the installation script:
```ps1 ```ps1
Set-ExecutionPolicy Unrestricted -Scope Process -Force Set-ExecutionPolicy Unrestricted -Scope Process -Force
irm christitus.com/win | iex irm https://christitus.com/win | iex
``` ```
## Runtime Issues ## Runtime Issues

View File

@ -11,7 +11,7 @@ Welcome to the official documentation for WinUtil, your go-to utility for optimi
* You will first need to start a Powershell terminal **as Admin**. * You will first need to start a Powershell terminal **as Admin**.
* Now you can run the following command: * Now you can run the following command:
```ps1 ```ps1
irm christitus.com/win | iex irm https://christitus.com/win | iex
``` ```
!!! info !!! info

View File

@ -258,6 +258,6 @@ With MicroWin, you can also configure your user before proceeding if you don't w
* On any supported Windows machine, open PowerShell **as Admin** and run the following command to automatically apply tweaks and install apps from the config file. * On any supported Windows machine, open PowerShell **as Admin** and run the following command to automatically apply tweaks and install apps from the config file.
```ps1 ```ps1
iex "& { $(irm christitus.com/win) } -Config [path-to-your-config] -Run" iex "& { $(irm https://christitus.com/win) } -Config [path-to-your-config] -Run"
``` ```
* Have a cup of coffee! Come back when it's done. * Have a cup of coffee! Come back when it's done.

View File

@ -46,7 +46,7 @@ function Invoke-WPFImpex {
if ($Config) { if ($Config) {
$jsonFile = Get-WinUtilCheckBoxes -unCheck $false | ConvertTo-Json $jsonFile = Get-WinUtilCheckBoxes -unCheck $false | ConvertTo-Json
$jsonFile | Out-File $Config -Force $jsonFile | Out-File $Config -Force
"iex ""& { `$(irm christitus.com/win) } -Config '$Config'""" | Set-Clipboard "iex ""& { `$(irm https://christitus.com/win) } -Config '$Config'""" | Set-Clipboard
} }
} catch { } catch {
Write-Error "An error occurred while exporting: $_" Write-Error "An error occurred while exporting: $_"