mirror of
https://gitlab.com/JKANetwork/powerfulcomputermanager.git
synced 2026-03-03 17:16:45 +01:00
Change to mkdocs documentation
This commit is contained in:
5
docs/example_cooks/install_exefile.yaml
Normal file
5
docs/example_cooks/install_exefile.yaml
Normal file
@@ -0,0 +1,5 @@
|
||||
name: Install exe file, example with WinSCP
|
||||
revision: 1
|
||||
steps:
|
||||
- REPOTOLOCAL|WinSCP-5.13.4-Setup.exe
|
||||
- CMD|WinSCP-5.13.4-Setup.exe /VERYSILENT /NORESTART
|
||||
6
docs/example_cooks/install_msioptions.yaml
Normal file
6
docs/example_cooks/install_msioptions.yaml
Normal file
@@ -0,0 +1,6 @@
|
||||
name: Install MSI with options (Do not put standard silent options!)
|
||||
revision: 2
|
||||
steps:
|
||||
- REPOTOLOCAL|msiwithoptions.msi
|
||||
- INSTALLMSI|msiwithoptions.msi ADDLOCAL=Server SERVER_REGISTER_AS_SERVICE=1 SERVER_ADD_FIREWALL_EXCEPTION=1 SERVER_ALLOW_SAS=1
|
||||
- REMOVE|C:\ProgramData\Microsoft\Windows\Start Menu\Programs\ProgramThatIDoNotWantUserToSee|Delete start menu folder
|
||||
10
docs/example_cooks/install_paintnet.yaml
Normal file
10
docs/example_cooks/install_paintnet.yaml
Normal file
@@ -0,0 +1,10 @@
|
||||
name: Install Paint.Net depending of Platform
|
||||
revision: 1
|
||||
steps:
|
||||
- IF64BIT|
|
||||
- REPOTOLOCAL|PaintDotNetMsi/PaintDotNet_424_x64.msi
|
||||
- INSTALLMSI|PaintDotNet_424_x64.msi
|
||||
- ELSE|32 Bit
|
||||
- REPOTOLOCAL|PaintDotNetMsi/PaintDotNet_424_x86.msi
|
||||
- INSTALLMSI|PaintDotNet_424_x86.msi
|
||||
- ENDIF|
|
||||
5
docs/example_cooks/install_simplemsi.yaml
Normal file
5
docs/example_cooks/install_simplemsi.yaml
Normal file
@@ -0,0 +1,5 @@
|
||||
name: Install MSI File. By default, it is silent
|
||||
revision: 1
|
||||
steps:
|
||||
- REPOTOLOCAL|simplemsi.msi
|
||||
- INSTALLMSI|simplemsi.msi
|
||||
7
docs/example_cooks/remove_program.yaml
Normal file
7
docs/example_cooks/remove_program.yaml
Normal file
@@ -0,0 +1,7 @@
|
||||
name: Remove WinRar as Example
|
||||
revision: 4
|
||||
steps:
|
||||
- UNINSTALL|WinRAR|This uninstalls WinRAR from Control Panel directly (Powershell powered uninstall)
|
||||
- NOERROR|Do not fail if this fails, for being sure, we will run silent uninstall from default route
|
||||
- CMD|"C:\Program Files\WinRAR\Uninstall.exe" /S
|
||||
- ENDNOERROR|End of never exit if fail
|
||||
Reference in New Issue
Block a user