Skip to content

Commit a8f3793

Browse files
author
James Brundage
committed
Merge branch 'new-author' of https://github.com/PoshWeb/PowerShellOrgWebsite into new-author
2 parents 2bc7dde + c70913f commit a8f3793

6 files changed

Lines changed: 96 additions & 6 deletions

.github/workflows/merge-automation-prs.yml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,12 +34,13 @@ jobs:
3434
HEAD_SHA: ${{ github.event.workflow_run.head_sha }}
3535
run: |
3636
pull_request=$(gh pr view "$HEAD_BRANCH" --repo "$GITHUB_REPOSITORY" --json number,headRefOid,author,baseRefName,state)
37-
test "$(jq -r '.author.login' <<<"$pull_request")" = "${APP_SLUG}[bot]"
37+
test "$(jq -r '.author.login' <<<"$pull_request")" = "app/${APP_SLUG}"
3838
test "$(jq -r '.baseRefName' <<<"$pull_request")" = main
3939
test "$(jq -r '.state' <<<"$pull_request")" = OPEN
4040
test "$(jq -r '.headRefOid' <<<"$pull_request")" = "$HEAD_SHA"
4141
gh pr merge "$(jq -r '.number' <<<"$pull_request")" \
4242
--repo "$GITHUB_REPOSITORY" \
4343
--squash \
4444
--delete-branch \
45+
--admin \
4546
--match-head-commit "$HEAD_SHA"
Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
---
2+
endDate: '2026-09-10'
3+
externalUrl: https://www.meetup.com/powershell-usergroup-inn-salzach/events/316366917/?eventOrigin=group_upcoming_events
4+
startDate: '2026-09-10'
5+
title: 'EverythingFast: Developing Performant Modules'
6+
virtual: true
7+
where: Virtual
8+
---
9+
There is no fast...only fast enough, but sometimes fast enough needs to be FAST. We will demonstrate ModuleFast and ExcelFast, the specific issues they address, and techniques in both native PowerShell and C# to make things go vroom!
Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,16 @@
1+
---
2+
meetupEventId: "316366917"
3+
meetupSource: meetup
4+
startDate: "2026-09-10"
5+
title: "PowerShell UserGroup InnSalzach Meeting – 10th September 2026"
6+
externalUrl: "https://www.meetup.com/powershell-usergroup-inn-salzach/events/316366917/"
7+
virtual: true
8+
where: "Online"
9+
---
10+
PowerShell UserGroup Inn-Salzach
11+
Join us for an exciting PowerShell UserGroup InnSalzach session where we dive into the art of scripting!
12+
13+
**Topic:** EverythingFast: Developing Performant Modules
14+
**Speaker:** Justin Grote
15+
**Date:** 10th September 2026 at 7pm CEST
16+
There is no fast...only fast enough, but sometimes fast enough needs to be FAST. We will demonstrate ModuleFast and ExcelFast, the specific issues they address, and techniques in both native PowerShell and C# to make things go vroom!
Lines changed: 35 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,35 @@
1+
---
2+
title: The PowerShell Podcast How to Test Microsoft Graph Without a Live Tenant with Morten Mynster
3+
author: Andrew Pla
4+
authors:
5+
- Andrew Pla
6+
- Morten Mynster
7+
date: "2026-08-31T14:00:00+00:00"
8+
podcast_url: "https://mcdn.podbean.com/mf/web/ru2yx5w5kmmg795m/The_PowerShell_Podcast_episode_244_Morten_Mynster9mlzv.mp3"
9+
episode: 244
10+
youtube: cB_QE1HvAyI
11+
guid: powershellpodcast.podbean.com/05ea7041-0033-32bc-be97-5869798812e4
12+
aliases:
13+
- /2026/08/the-powershell-podcast-how-to-test-microsoft-graph-without-a-live-tenant-with-morten-mynster/
14+
---
15+
16+
Andrew welcomes Morten Mynster back to the PowerShell Podcast to dig into the projects he’s been building around Microsoft Graph, Entra, least privilege, and authentication. Morten walks through Least Privileged Entra, a module that uses activity logs to identify users who may have more permissions than they actually need, and MS Graph Proxy, which lets developers work with mocked Microsoft Graph data locally without connecting to a live tenant. They also get into managed identities, the rougher corners of Microsoft 365 APIs, testing Graph-based projects in CI/CD pipelines, and how contributing to open source can solve real problems while creating unexpected career opportunities.
17+
18+
Key Takeaways:
19+
20+
· Least privilege is easier when you can see what people actually use. Morten’s Least Privileged Entra module compares assigned Entra roles with activity data to identify permissions that may be unnecessary and suggest more limited alternatives. The goal is to give admins something actionable rather than simply reporting that a configuration passed or failed.
21+
22+
· You don’t always need a live Microsoft 365 tenant to develop against Microsoft Graph. MS Graph Proxy intercepts Graph requests and responds with mocked data, allowing developers to test scripts and modules locally, offline, or inside CI/CD pipelines. It can also identify the minimum Graph permissions associated with the endpoints an application uses.
23+
24+
· Sharing your work can have benefits far beyond the project itself. Morten credits his Least Privileged MS Graph project with helping him land his current job. His approach is simple: solve a real problem, share the solution, contribute where you can, and let other people build on what you’ve learned.
25+
26+
Guest Bio:
27+
28+
Morten Mynster is an IT professional and open source contributor focused on Microsoft Entra, Microsoft Graph, security, and least privilege. His projects include LeastPrivilegedMSGraph, LeastPrivilegedEntra, and MSGraphProxy, and he regularly contributes to community projects and discussions around Microsoft 365 security and PowerShell.
29+
30+
Resource Links:
31+
32+
- [https://github.com/Mynster9361/Least_Privileged_MSGraph](https://github.com/Mynster9361/Least_Privileged_MSGraph)
33+
- [https://github.com/Mynster9361/LeastPrivilegedEntra](https://github.com/Mynster9361/LeastPrivilegedEntra)
34+
- [https://github.com/Mynster9361/msgraphProxy](https://github.com/Mynster9361/msgraphProxy)
35+
- [https://github.com/FriedrichWeinmann/EntraAuth](https://github.com/FriedrichWeinmann/EntraAuth)
Lines changed: 29 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,29 @@
1+
---
2+
title: PowerShell UserGroup Inn-Salzach
3+
description: Join the PowerShell User Group Inn-Salzach — a community for PowerShell
4+
enthusiasts and newcomers alike to share experience and hear talks on Windows PowerShell
5+
and PowerShell 7 across cloud, hybrid, and on-premise environments — and submit
6+
session proposals in German or English at [Sessionize](https://sessionize.com/powershell-usergroup-innsalzach/).
7+
location: Online
8+
format: Online
9+
meeting_schedule: 2nd Thursday every Month
10+
organizers:
11+
- Constantin Hager
12+
logo: https://secure.meetupstatic.com/photos/event/5/7/2/3/clean_492682307.webp
13+
links:
14+
- name: Meetup
15+
url: https://www.meetup.com/powershell-usergroup-inn-salzach/
16+
icon: fab fa-meetup
17+
---
18+
Sessions can be submitted in German or English.
19+
Please submit sessions at [Sessionize](https://sessionize.com/powershell-usergroup-innsalzach/)
20+
21+
PowerShell User Group Inn-Salzach.
22+
News about Windows PowerShell and PowerShell 7 -
23+
24+
Even in the southern, or rather southeastern part of the country, there is now a community for PowerShell enthusiasts.
25+
Are you already among the PowerShell enthusiasts, passionately dedicated to simplifying and speeding up everyday admin tasks in cloud, hybrid, and on-premise environments?
26+
Or are you a newcomer, intensely interested in the technology and its possibilities?
27+
Then become a part of our PowerShell Community Inn-Salzach!
28+
We exchange experiences and ideas and offer exciting presentations on the topic of PowerShell.
29+
We look forward to many more PowerShell heroes and those who aspire to become one.

data/community_stats.json

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
{
22
"activities": [
33
{
4-
"message": "New reply in \"PowerShell 7.x ISE...\"",
5-
"time": "7 hours ago",
4+
"message": "New reply in \"PowerShell script for setting NTFS permi...\"",
5+
"time": "Yesterday",
66
"type": "reply",
77
"color": "bg-purple-500"
88
},
@@ -20,10 +20,10 @@
2020
}
2121
],
2222
"stats": {
23-
"total_topics": 19377,
24-
"total_posts": 118284,
23+
"total_topics": 19378,
24+
"total_posts": 118293,
2525
"active_users": 9539,
2626
"topics_this_week": 2
2727
},
28-
"last_updated": "2026-08-29T00:40:56.467Z"
28+
"last_updated": "2026-09-02T20:16:45.932Z"
2929
}

0 commit comments

Comments
 (0)