diff options
| author | Weicao-CatilGrass <1992414357@qq.com> | 2025-12-10 10:49:52 +0800 |
|---|---|---|
| committer | Weicao-CatilGrass <1992414357@qq.com> | 2025-12-10 10:49:52 +0800 |
| commit | 1567bab16b1eeb8ddaf5a8cc09c71bdb0bedbda3 (patch) | |
| tree | c5cc7c708207f3dae1b921c9d576d299a55be1b4 /setup/windows/inst.ps1 | |
| parent | 5fd3992ff8eea62967288c639985bfe60b9a171b (diff) | |
Add Windows installer and export scripts
- Add Inno Setup configuration for Windows installer
- Add PowerShell scripts for installation and uninstallation
- Create Windows-specific export script
- Update existing export script to suppress build output
- Include application icon for installer
Diffstat (limited to 'setup/windows/inst.ps1')
| -rw-r--r-- | setup/windows/inst.ps1 | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/setup/windows/inst.ps1 b/setup/windows/inst.ps1 new file mode 100644 index 0000000..2e15dc3 --- /dev/null +++ b/setup/windows/inst.ps1 @@ -0,0 +1,8 @@ +. ".\uninst.ps1" + +$scriptDir = Split-Path -Parent $MyInvocation.MyCommand.Path + +$parentDir = Split-Path -Parent $scriptDir +Add-Content -Path $PROFILE -Value "`n# JustEnoughVCS - Begin #" +Add-Content -Path $PROFILE -Value ". `"$parentDir\jv_cli.ps1`"" +Add-Content -Path $PROFILE -Value "# JustEnoughVCS - End #" |
