gitextract_uv8sk41q/ ├── Active Directory/ │ ├── Get-ADGroupMemberAddDate.ps1 │ ├── Get-ADGroupMemberChangesHistory.ps1 │ ├── Get-ADGroupMemberRecursive.ps1 │ ├── Invoke-ADPasswordsAudit.ps1 │ └── Reset-KrbtgtAccount.ps1 ├── Azure/ │ ├── Add-AzureADAppUserConsent.ps1 │ └── Get-AzureDevOpsOrganizationOverview.ps1 ├── CHANGELOG.md ├── Confluence/ │ └── fill_confluence_table_with_aws_dns_records.ps1 ├── ConvertFrom-HTMLTable.ps1 ├── ConvertFrom-XML.ps1 ├── Copy-Item2.ps1 ├── Export-ScheduledTask.ps1 ├── Export-ScriptsToModule.ps1 ├── FTP/ │ └── install_FTP_server.ps1 ├── Get-AccountFromSID.ps1 ├── Get-AdministrativeEvents.ps1 ├── Get-ComputerInfo.ps1 ├── Get-CurrentLoad.ps1 ├── Get-FailedScheduledTask.ps1 ├── Get-FirewallLog.ps1 ├── Get-FirewallRules.ps1 ├── Get-FolderSize.ps1 ├── Get-InstalledSoftware.ps1 ├── Get-LogOnOff.ps1 ├── Get-LoggedOnUser.ps1 ├── Get-NetworkCapture.ps1 ├── Get-PSLog.ps1 ├── Get-PendingReboot.ps1 ├── Get-ReliabilityHistory.ps1 ├── Get-SFCLogEvent.ps1 ├── Get-SIDFromAccount.ps1 ├── Get-Shutdown.ps1 ├── Get-Uptime.ps1 ├── Get-WinEventArchivedIncluded.ps1 ├── INTUNE/ │ ├── Connect-Graph.ps1 │ ├── ConvertFrom-MDMDiagReport.ps1 │ ├── ConvertFrom-MDMDiagReportXML.ps1 │ ├── Get-ClientIntunePolicyResult.ps1 │ ├── Get-ClientStatusReport.ps1 │ ├── Get-IntuneDeviceComplianceStatus.ps1 │ ├── Get-IntuneEnrollmentStatus.ps1 │ ├── Get-IntuneLog.ps1 │ ├── Get-IntuneOverallComplianceStatus.ps1 │ ├── Get-IntuneReport.ps1 │ ├── Get-MDMClientData.ps1 │ ├── Invoke-IntuneScriptRedeploy.ps1 │ ├── Invoke-IntuneWin32AppRedeploy.ps1 │ ├── Invoke-MDMReenrollment.ps1 │ ├── New-GraphAPIAuthHeader.ps1 │ ├── Reset-HybridADJoin.ps1 │ ├── Reset-IntuneEnrollment.ps1 │ └── Win32App/ │ └── SetBitLockerPin/ │ ├── BitlockerIsEnabledAndNotSet.ps1 │ ├── DetectBitLockerPin.ps1 │ ├── Popup.ps1 │ └── SetBitLockerPin.ps1 ├── Invoke-AsLoggedUser.ps1 ├── Invoke-AsSystem.ps1 ├── Invoke-Command2.ps1 ├── Invoke-NetworkCapture.ps1 ├── JIRA/ │ └── New-JIRATicket.ps1 ├── OSD/ │ ├── OSDComputerName_via_ServiceTag/ │ │ └── Set-CMTSStep_ServiceTag2OSDComputerName.ps1 │ └── OfflineDomainJoin/ │ └── Set-CMDeviceDJoinBlobVariable.ps1 ├── Quote-String.ps1 ├── README.md ├── Read-FromClipboard.ps1 ├── SCCM/ │ ├── Connect-SCCM.ps1 │ ├── Get-CMLog.ps1 │ ├── Invoke-CMAdminServiceQuery.ps1 │ ├── Invoke-CMComplianceEvaluation.ps1 │ └── Update-CMClientPolicy.ps1 ├── SCVMM/ │ └── New-VMFromTemplate.ps1 ├── Search-ADObjectACL.ps1 ├── Search-GPOSetting.ps1 ├── Shutdown-Computer.ps1 ├── Start-TCPPortListener.ps1 ├── Test-Connection2.ps1 ├── Test-Path2.ps1 ├── Test-Port.ps1 ├── Unlock-File.ps1 ├── Watch-EventLog.ps1 ├── Write-Log.ps1 ├── environmental variables/ │ ├── Get-EnvVariable.ps1 │ ├── Remove-EnvVariable.ps1 │ └── Set-EnvVariable.ps1 ├── event subscriptions/ │ ├── Get-EventSubscription.ps1 │ ├── Get-EventSubscriptionStatus.ps1 │ ├── New-EventSubscription.ps1 │ ├── Remove-EventSubscription.ps1 │ └── Set-EventSubscription.ps1 └── modules/ ├── AdmPwd.PS/ │ ├── AdmPwd.PS.format.ps1xml │ ├── AdmPwd.PS.psd1 │ └── en-US/ │ └── AdmPwd.PS.dll-Help.xml ├── AutoItX/ │ └── AutoItX.psd1 ├── ConfluencePS/ │ └── 2.5.0/ │ ├── CHANGELOG.md │ ├── ConfluencePS.Types.cs │ ├── ConfluencePS.format.ps1xml │ ├── ConfluencePS.psd1 │ ├── ConfluencePS.psm1 │ ├── LICENSE │ ├── PSGetModuleInfo.xml │ ├── README.md │ └── en-US/ │ ├── ConfluencePS-help.xml │ └── about_ConfluencePS.help.txt ├── PSScriptAnalyzer/ │ └── 1.17.1/ │ ├── PSScriptAnalyzer.cat │ ├── PSScriptAnalyzer.psd1 │ ├── PSScriptAnalyzer.psm1 │ ├── ScriptAnalyzer.format.ps1xml │ ├── ScriptAnalyzer.types.ps1xml │ └── Settings/ │ ├── CmdletDesign.psd1 │ ├── CodeFormatting.psd1 │ ├── CodeFormattingAllman.psd1 │ ├── CodeFormattingOTBS.psd1 │ ├── CodeFormattingStroustrup.psd1 │ ├── DSC.psd1 │ ├── PSGallery.psd1 │ ├── ScriptFunctions.psd1 │ ├── ScriptSecurity.psd1 │ ├── ScriptingStyle.psd1 │ ├── core-6.0.2-linux.json │ ├── core-6.0.2-macos.json │ ├── core-6.0.2-windows.json │ ├── desktop-3.0-windows.json │ ├── desktop-4.0-windows.json │ └── desktop-5.1.14393.206-windows.json ├── SplitPipeline/ │ ├── LICENSE.txt │ ├── README.htm │ ├── Release-Notes.htm │ ├── SplitPipeline.nuspec │ ├── SplitPipeline.psd1 │ ├── [Content_Types].xml │ ├── _rels/ │ │ └── .rels │ ├── en-US/ │ │ ├── SplitPipeline.dll-Help.xml │ │ └── about_SplitPipeline.help.txt │ ├── package/ │ │ └── services/ │ │ └── metadata/ │ │ └── core-properties/ │ │ └── 9ffd50a1389e4b6d8b6c79579467ccd3.psmdcp │ └── tools/ │ └── SplitPipeline/ │ ├── LICENSE.txt │ ├── README.htm │ ├── Release-Notes.htm │ ├── SplitPipeline.psd1 │ └── en-US/ │ ├── SplitPipeline.dll-Help.xml │ └── about_SplitPipeline.help.txt └── psasync/ ├── psasync.psd1 └── psasync.psm1