Skip to content
Merged
2 changes: 1 addition & 1 deletion .github/workflows/Process-PSModule.yml
Original file line number Diff line number Diff line change
Expand Up @@ -29,4 +29,4 @@ jobs:
Process-PSModule:
uses: PSModule/Process-PSModule/.github/workflows/workflow.yml@16419d018975ece156bbc07d92738dd441efcb2c # v8.0.3
secrets:
APIKEY: ${{ secrets.APIKEY }}
APIKey: ${{ secrets.PSGALLERY_API_KEY || secrets.APIKEY || secrets.APIKey }}
6 changes: 5 additions & 1 deletion src/functions/public/Device/Get-IntuneDevice.ps1
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
#Requires -Modules @{ ModuleName = 'Microsoft.Graph.Authentication'; ModuleVersion = '2.28.0' }
#SkipTest:PublicHelpLink:GitHub Pages is the canonical documentation site for this module
#Requires -Modules @{ ModuleName = 'Microsoft.Graph.Authentication'; ModuleVersion = '2.28.0' }

function Get-IntuneDevice {
<#
Expand Down Expand Up @@ -55,6 +56,9 @@ function Get-IntuneDevice {
- Compliance (string)
- LastSyncDateTime (datetime)

.LINK
https://hjorslev.github.io/IntuneOperator/Functions/Device/Get-IntuneDevice/

.NOTES
Author: FHN & GitHub Copilot
Uses /beta Graph endpoints for managed device properties.
Expand Down
6 changes: 5 additions & 1 deletion src/functions/public/Device/Get-IntuneDeviceLogin.ps1
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
#Requires -Modules @{ ModuleName = 'Microsoft.Graph.Authentication'; ModuleVersion = '2.28.0' }
#SkipTest:PublicHelpLink:GitHub Pages is the canonical documentation site for this module
#Requires -Modules @{ ModuleName = 'Microsoft.Graph.Authentication'; ModuleVersion = '2.28.0' }

function Get-IntuneDeviceLogin {
<#
Expand Down Expand Up @@ -66,6 +67,9 @@ function Get-IntuneDeviceLogin {
- UserPrincipalName (string)
- LastLogonDateTime (datetime)

.LINK
https://hjorslev.github.io/IntuneOperator/Functions/Device/Get-IntuneDeviceLogin/

.NOTES
Author: FHN & ChatGPT & GitHub Copilot
- Uses /beta Graph endpoints because usersLoggedOn is exposed there.
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
function Get-IntuneRemediationDeviceStatus {
#SkipTest:PublicHelpLink:GitHub Pages is the canonical documentation site for this module
function Get-IntuneRemediationDeviceStatus {
<#
.SYNOPSIS
Retrieves per-device run state and pre/post remediation output for a specific Intune proactive remediation.
Expand Down Expand Up @@ -78,6 +79,9 @@
- RemediationError (string) : stderr from the remediation script
- DetectionError (string) : stderr from the detection script

.LINK
https://hjorslev.github.io/IntuneOperator/Functions/Remediation/Get-IntuneRemediationDeviceStatus/

.NOTES
Author: FHN & GitHub Copilot
- Uses /beta Graph endpoints.
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
function Get-IntuneRemediationSummary {
#SkipTest:PublicHelpLink:GitHub Pages is the canonical documentation site for this module
function Get-IntuneRemediationSummary {
<#
.SYNOPSIS
Retrieves remediation summary statistics for all Intune proactive remediations.
Expand Down Expand Up @@ -28,6 +29,9 @@
- IssueRecurred (int)
- TotalRemediated (int)

.LINK
https://hjorslev.github.io/IntuneOperator/Functions/Remediation/Get-IntuneRemediationSummary/

.NOTES
Author: FHN & GitHub Copilot
- Uses /beta Graph endpoints.
Expand Down