|
12 | 12 | jobs: |
13 | 13 |
|
14 | 14 |
|
15 | | - # windows-2025-pwsh-choco: |
16 | | - # name: "2025 choco packages" |
17 | | - # runs-on: windows-2025 |
18 | | - # steps: |
19 | | - # - name: Checkout |
20 | | - # uses: actions/checkout@v1 |
21 | | - # - name: "check if server is virtual" |
22 | | - # run: Systeminfo | findstr /i model |
23 | | - # - name: "check the PROCESSOR_ARCHITECTURE environment variable.64-bit systems will say AMD64 and 32-bit systems should say x86" |
24 | | - # run: wmic OS get OSArchitecture |
25 | | - # - name: "osfingerprinting" |
26 | | - # run: systeminfo | more |
27 | | - # - name: "display all processes, executable path" |
28 | | - # run: wmic process list full |
29 | | - # - name: "list of running services" |
30 | | - # run: tasklist |
31 | | - # - name: "list of all processes along with their corresponding PID, and services that are tied to them" |
32 | | - # run: tasklist /svc |
33 | | - # - name: "look for unusual services" |
34 | | - # run: net start |
35 | | - # - name: "query unusual services" |
36 | | - # run: sc query |
37 | | - # - name: "Install chocolatey from github - pwsh script" |
38 | | - # run: | |
39 | | - # iex ((New-Object System.Net.WebClient).DownloadString('https://raw.githubusercontent.com/githubfoam/choco_githubactions/main/scripts/Install_chocolatey.ps1')) |
40 | | - # choco |
41 | | - # choco upgrade chocolatey |
42 | | - # choco list --local-only |
43 | | - # shell: pwsh |
44 | | - # - name: "Install chocolatey packages from github - pwsh script windows 10" |
45 | | - # run: | |
46 | | - # iex ((New-Object System.Net.WebClient).DownloadString('https://raw.githubusercontent.com/githubfoam/choco_githubactions/main/scripts/Choco_Packages_Desktop_windows10.ps1')) |
47 | | - # choco list --local-only |
48 | | - # shell: pwsh |
49 | | - # - name: "Install chocolatey packages from github - pwsh script windows 11" |
50 | | - # run: | |
51 | | - # iex ((New-Object System.Net.WebClient).DownloadString('https://raw.githubusercontent.com/githubfoam/choco_githubactions/main/scripts/Choco_Packages_Desktop_windows11.ps1')) |
52 | | - # choco list --local-only |
53 | | - # shell: pwsh |
| 15 | + windows-2025-pwsh-choco: |
| 16 | + name: "2025 choco packages" |
| 17 | + runs-on: windows-2025 |
| 18 | + steps: |
| 19 | + - name: Checkout |
| 20 | + uses: actions/checkout@v1 |
| 21 | + - name: "check if server is virtual" |
| 22 | + run: Systeminfo | findstr /i model |
| 23 | + - name: "check the PROCESSOR_ARCHITECTURE environment variable.64-bit systems will say AMD64 and 32-bit systems should say x86" |
| 24 | + run: wmic OS get OSArchitecture |
| 25 | + - name: "osfingerprinting" |
| 26 | + run: systeminfo | more |
| 27 | + - name: "display all processes, executable path" |
| 28 | + run: wmic process list full |
| 29 | + - name: "list of running services" |
| 30 | + run: tasklist |
| 31 | + - name: "list of all processes along with their corresponding PID, and services that are tied to them" |
| 32 | + run: tasklist /svc |
| 33 | + - name: "look for unusual services" |
| 34 | + run: net start |
| 35 | + - name: "query unusual services" |
| 36 | + run: sc query |
| 37 | + - name: "Install chocolatey from github - pwsh script" |
| 38 | + run: | |
| 39 | + iex ((New-Object System.Net.WebClient).DownloadString('https://raw.githubusercontent.com/githubfoam/choco_githubactions/main/scripts/Install_chocolatey.ps1')) |
| 40 | + choco |
| 41 | + choco upgrade chocolatey |
| 42 | + choco list --local-only |
| 43 | + shell: pwsh |
| 44 | + - name: "Install chocolatey packages from github - pwsh script windows 10" |
| 45 | + run: | |
| 46 | + iex ((New-Object System.Net.WebClient).DownloadString('https://raw.githubusercontent.com/githubfoam/choco_githubactions/main/scripts/Choco_Packages_Desktop_windows10.ps1')) |
| 47 | + choco list --local-only |
| 48 | + shell: pwsh |
| 49 | + - name: "Install chocolatey packages from github - pwsh script windows 11" |
| 50 | + run: | |
| 51 | + iex ((New-Object System.Net.WebClient).DownloadString('https://raw.githubusercontent.com/githubfoam/choco_githubactions/main/scripts/Choco_Packages_Desktop_windows11.ps1')) |
| 52 | + choco list --local-only |
| 53 | + shell: pwsh |
54 | 54 |
|
55 | 55 | windows-2022-pwsh-choco: |
56 | 56 | name: "2022 choco packages" |
|
0 commit comments