Skip to content

Latest commit

 

History

History
32 lines (23 loc) · 1.54 KB

README.md

File metadata and controls

32 lines (23 loc) · 1.54 KB

How to install the setup 🔧

With help of ClickOnce we can install and run Windows application by clicking a link in a web page. That makes the process easier for us because we do not need to set configurations for the installer. ClickOnce requests are handled by the native file handler in Windows.

ClickOnce Microsoft Edge

From Microsoft Edge:

Click here to start install

1️⃣ Allow open the file
first step

2️⃣ Run the application
Do you want to run

Enable ClickOnce Microsoft Edge

$path = "HKLM:\SOFTWARE\Policies\Microsoft\Edge"
New-Item $path -Force | Out-Null
Set-ItemProperty -LiteralPath "$PATH" ClickOnceEnabled 1

Windows Powershell

Set-ExecutionPolicy Bypass -Scope Process -Force `
[System.Net.ServicePointManager]::SecurityProtocol = [System.Net.ServicePointManager]::SecurityProtocol -bor 3072 `
iex ((New-Object System.Net.WebClient).DownloadString('https://boxstarter.org/bootstrapper.ps1')) `
Get-Boxstarter -Force `
Install-BoxstarterPackage -PackageName https://boxstarter.org/package/url?https://raw.githubusercontent.com/Specshell/specshell.software.dev.setup/main/windows.ps1