File tree Expand file tree Collapse file tree 2 files changed +40
-1
lines changed
Expand file tree Collapse file tree 2 files changed +40
-1
lines changed Original file line number Diff line number Diff line change 1313
1414 windows-2022-pwsh-choco :
1515 name : " 2022 choco packages"
16- runs-on : windows-latest
16+ runs-on : windows-2022
1717 steps :
1818 - name : Checkout
1919 uses : actions/checkout@v1
Original file line number Diff line number Diff line change 1+
2+ name : " 2025 desktop choco packages CI workflow"
3+
4+ on :
5+ push :
6+ branches : [ main ]
7+ schedule :
8+ - cron : ' 39 11 * * *' # #execution of a task in the first minute of the month
9+
10+
11+
12+ jobs :
13+
14+ windows-2025-pwsh-choco :
15+ name : " 2025 choco packages"
16+ runs-on : windows-2025
17+ steps :
18+ - name : Checkout
19+ uses : actions/checkout@v1
20+ - name : " check if server is virtual"
21+ run : Systeminfo | findstr /i model
22+ - name : " check the PROCESSOR_ARCHITECTURE environment variable.64-bit systems will say AMD64 and 32-bit systems should say x86"
23+ run : wmic OS get OSArchitecture
24+ - name : " osfingerprinting"
25+ run : systeminfo | more
26+ - name : " display all processes, executable path"
27+ run : wmic process list full
28+ - name : " list of running services"
29+ run : tasklist
30+ - name : " list of all processes along with their corresponding PID, and services that are tied to them"
31+ run : tasklist /svc
32+ - name : " look for unusual services"
33+ run : net start
34+ - name : " query unusual services"
35+ run : sc query
36+ - name : " Choco packages - pwsh script"
37+ run : .\scripts\Choco_Packages_Desktop_windows10.ps1
38+ shell : pwsh
39+
You can’t perform that action at this time.
0 commit comments