Skip to content

specshell/specshell.software.dev.setup

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

10 Commits
 
 
 
 
 
 
 
 

Repository files navigation

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

About

No description, website, or topics provided.

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published