Skip to content

Commit 568d7e4

Browse files
author
tester bester
committed
2025
1 parent ba971db commit 568d7e4

File tree

2 files changed

+40
-1
lines changed

2 files changed

+40
-1
lines changed

.github/workflows/desktop-choco-packages-2022-wf.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ jobs:
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
Lines changed: 39 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,39 @@
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+

0 commit comments

Comments
 (0)