├── .gitattributes ├── .gitignore ├── images ├── powershell-emoji.png └── PowerShell-transparent-thumb.jpg ├── PSGallerydata.zip ├── scripts ├── register-job.ps1 ├── author-intro.txt ├── pdf-theme.yml ├── create-pdf.ps1 ├── make-taglist.ps1 ├── top-authorreport.ps1 ├── run.ps1 ├── make-reports.ps1 └── rubydocs.ps1 ├── .github └── workflows │ ├── git-clean.yml │ └── report-run.yml ├── License.txt ├── README.md └── psgallery-filtered.md /.gitattributes: -------------------------------------------------------------------------------- 1 | *.zip filter=lfs diff=lfs merge=lfs -text 2 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | *.adoc 2 | *.pdf 3 | *.bak 4 | export-run.yml 5 | CleanWorkflowRun.ps1 -------------------------------------------------------------------------------- /images/powershell-emoji.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jdhitsolutions/PSGalleryReport/HEAD/images/powershell-emoji.png -------------------------------------------------------------------------------- /images/PowerShell-transparent-thumb.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jdhitsolutions/PSGalleryReport/HEAD/images/PowerShell-transparent-thumb.jpg -------------------------------------------------------------------------------- /PSGallerydata.zip: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:15f3620870f79087c0916701c66bab456c036ad79e34fecad809df398adad5dd 3 | size 1220437 4 | -------------------------------------------------------------------------------- /scripts/register-job.ps1: -------------------------------------------------------------------------------- 1 | #requires -version 5.1 2 | #requires -module PSScheduledjob 3 | 4 | # I am now using a Github action to run the reporting scripts. 5 | # This file is retained for archive purposes. 6 | 7 | $splat = @{ 8 | Name = "PSGalleryReports" 9 | Trigger = New-JobTrigger -At 6:00AM -Daily 10 | MaxResultCount = 5 11 | FilePath = "c:\scripts\psgalleryreports\scripts\run.ps1" 12 | Credential = $env:username 13 | } 14 | 15 | Register-ScheduledJob @splat -------------------------------------------------------------------------------- /scripts/author-intro.txt: -------------------------------------------------------------------------------- 1 | This is a report of contributions to the [PowerShell Gallery](https://powershellgallery.org) from the top 25 module authors. This list excludes major vendors such as Microsoft, Amazon, and VMware. The exclusions are completely subjective. The intent is to use this report to highlight *individual contributors* to the PowerShell Gallery. 2 | 3 | This report does not include pre-release modules and be aware that not every module will have an online repository. 4 | 5 | Internal navigation links may not work in the PDF version of this report. -------------------------------------------------------------------------------- /.github/workflows/git-clean.yml: -------------------------------------------------------------------------------- 1 | name: git cleanup 2 | on: 3 | workflow_dispatch: 4 | 5 | # A workflow run is made up of one or more jobs that can run sequentially or in parallel 6 | jobs: 7 | # This workflow contains a single job called "build" 8 | clean: 9 | # The type of runner that the job will run on 10 | runs-on: ubuntu-latest 11 | 12 | # Steps represent a sequence of tasks that will be executed as part of the job 13 | steps: 14 | # Checks-out your repository under $GITHUB_WORKSPACE, so your job can access it 15 | - uses: actions/checkout@v4 16 | 17 | - name: git reflog 18 | run: git reflog expire --expire=now --all 19 | 20 | - name: git prune 21 | run: git gc --prune=now --aggressive 22 | -------------------------------------------------------------------------------- /.github/workflows/report-run.yml: -------------------------------------------------------------------------------- 1 | name: Run Reports 2 | 3 | on: 4 | workflow_dispatch: 5 | schedule: 6 | - cron: "50 9,21 * * *" 7 | jobs: 8 | build: 9 | runs-on: ubuntu-latest 10 | steps: 11 | - uses: actions/checkout@v3 12 | with: 13 | token: ${{secrets.ACTION_BOT}} 14 | - name: Run report script 15 | shell: pwsh 16 | run: ./scripts/run.ps1 17 | - name: git add 18 | run: git add . 19 | - name: git commit 20 | run: | 21 | git config user.name "Action Bot" 22 | git config user.email "<>" 23 | git commit -m "PSGallery Report Run $(date +'%Y-%m-%dT%H:%M:%S')" 24 | - name: git push 25 | run: git push 26 | -------------------------------------------------------------------------------- /License.txt: -------------------------------------------------------------------------------- 1 | MIT License 2 | 3 | Copyright (c) 2022-2025 JDH Information Technology Solutions, Inc. 4 | 5 | 6 | Permission is hereby granted, free of charge, to any person obtaining a copy 7 | of this software and associated documentation files (the "Software"), to deal 8 | in the Software without restriction, including without limitation the rights 9 | to use, copy, modify, merge, publish, distribute, sublicense, and/or sell 10 | copies of the Software, and to permit persons to whom the Software is 11 | furnished to do so, subject to the following conditions: 12 | 13 | 14 | The above copyright notice and this permission notice shall be included in 15 | all copies or substantial portions of the Software. 16 | 17 | 18 | THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR 19 | IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, 20 | FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE 21 | AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER 22 | LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, 23 | OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN 24 | THE SOFTWARE. 25 | -------------------------------------------------------------------------------- /scripts/pdf-theme.yml: -------------------------------------------------------------------------------- 1 | base: 2 | font-family: notosans 3 | font-size: 10 4 | heading: 5 | font-size: 12 6 | font-style: normal 7 | font-color: #04B404 8 | heading-h2: 9 | font-size: 11 10 | font-style: bold 11 | font-color: #2006fc 12 | heading-h3: 13 | font-size: 10 14 | font-style: italic 15 | font-color: #000000 16 | link: 17 | font-color: #0101DF 18 | text-decoration: underline 19 | code: 20 | font-size: 9 21 | background-color: f5f5f5 22 | font-family: consolas 23 | header: 24 | height: 0.5in 25 | line-height: 1 26 | border-style: solid 27 | border-color: #000000 28 | padding: [0,3,5,3] 29 | footer: 30 | height: 0.5in 31 | line-height: 1 32 | border-style: solid 33 | border-color: #000000 34 | padding: [0,3,5,3] 35 | recto: 36 | right: 37 | content: 'pg {page-number}/{page-count}' 38 | verso: 39 | left: 40 | content: $footer-recto-right-content 41 | font: 42 | catalog: 43 | notosans: 44 | normal: notosans-normal.ttf 45 | italic: notosans-italic.ttf 46 | bold: notosans-bold.ttf 47 | bold_italic: notosans-bold_italic.ttf 48 | mplus1p: 49 | normal: mplus1p-regular-fallback.ttf 50 | consolas: 51 | normal: consolas-regular.ttf 52 | bold: consolas-bold.ttf 53 | italic: consolas-italic.ttf 54 | bold_italic: consolas-bold_italic.ttf 55 | fallbacks: 56 | - mplus1p 57 | -------------------------------------------------------------------------------- /scripts/create-pdf.ps1: -------------------------------------------------------------------------------- 1 | Return "This script file is no longer used but remains for reference purposes." 2 | 3 | Write-Host "[$(Get-Date)] Starting Markdown to PDF conversion" -foreground green 4 | 5 | <# 6 | This script uses a private set of commands for converting markdown to adoc to pdf. 7 | The commands are Ruby-based and require additional configuration. There are VSCode 8 | extensions you can use to easily convert markdown files to PDF or you might find 9 | other tools for this task. 10 | #> 11 | $RubyScripts = Join-Path -Path $PSScriptRoot -ChildPath rubydocs.ps1 12 | Write-Host "[$(Get-Date)] dot sourcing $RubyScripts" -foreground green 13 | . $RubyScripts 14 | 15 | $GemFonts = Join-Path "$PSScriptRoot/../" -ChildPath GemFonts 16 | if (Test-Path $GemFonts) { 17 | Write-Host "[$(Get-Date)] Using GemFonts from $GemFonts" -foreground green 18 | } 19 | else { 20 | Write-Host "[$(Get-Date)] Cannot locate GemFonts in $GemFonts" -foreground red 21 | } 22 | 23 | $theme = Join-Path -Path $PSScriptRoot -ChildPath pdf-theme.yml 24 | if (Test-Path $theme) { 25 | Write-Host "[$(Get-Date)] Using theme from $theme" -foreground green 26 | } 27 | else { 28 | Write-Host "[$(Get-Date)] Cannot locate theme in $theme" -foreground red 29 | } 30 | 31 | Get-ChildItem $PSScriptRoot/../psgallery-*.md | 32 | ForEach-Object -Process { 33 | Write-Host "[$(Get-Date)] Converting $($_.fullname) to adoc format" -foreground green 34 | Convertto-Adoc -fullname $_.fullname -images $PSScriptRoot/../images -Passthru | Convert-Links 35 | $adoc = $($_.fullname).replace(".md", ".adoc") 36 | Write-Host "[$(Get-Date)] Converting $adoc to pdf" -foreground Green 37 | asciidoctor -a allow-uri-read -a linkattrs -b pdf -d article -r asciidoctor-pdf -a pdfwidth=pt -a pdf-fontsdir=$GemFonts -a pdf-theme=$theme $adoc 38 | Write-Host "[$(Get-Date)] Optimizing PDF for $($_.basename)" -foreground green 39 | Optimize-pdf $adoc.replace(".adoc", ".pdf") | Move-Item -Destination $PSScriptRoot/../pdf -Force 40 | } -End { 41 | Write-Host "[$(Get-Date)] Removing adoc files" -foreground green 42 | Remove-Item $PSScriptRoot/../*.adoc 43 | } 44 | 45 | Write-Host "[$(Get-Date)] Ending Markdown to PDF conversion" -foreground green 46 | 47 | <# 48 | Change Log 49 | 5/9/2022 50 | Revised to use Join-Path which works better cross-platform for building paths 51 | 5/8/2022 52 | Modified to use local ruby commands in preparation for moving to a GitHub action. 53 | 4/19/2022 54 | Moved PDFs for a separate folder 55 | 4/11/2022 56 | Changed asciidoctor type from manpage to article 57 | 4/8/2022 58 | Initial version 59 | #> -------------------------------------------------------------------------------- /scripts/make-taglist.ps1: -------------------------------------------------------------------------------- 1 | #create a text file of unique tags 2 | Param() 3 | Write-Host "[$(Get-Date)] Starting $($MyInvocation.MyCommand)" -ForegroundColor magenta 4 | $tmpData = Join-Path -Path $HOME -ChildPath psgallery.xml 5 | 6 | $out = Join-Path -Path "$PSScriptRoot/../" -ChildPath taglist.txt 7 | 8 | $open = @" 9 | This is a list of approximately 6500 unique tags found in the PowerShell Gallery. However, do not assume this is an authoritative or definitive list. Best efforts have been made to parse tags but tag definitions are not consistent across all published modules. 10 | 11 | Updated: $(Get-Date -Format U) UTC 12 | "@ 13 | $splat = @{ 14 | Value = $open 15 | Path = $out 16 | Encoding = "utf8" 17 | } 18 | Set-Content @splat 19 | 20 | $list = [System.Collections.Generic.list[string]]::new() 21 | if (Test-Path $tmpData) { 22 | #newest is the default 23 | Write-Host "[$(Get-Date)] Creating tag list from $tmpData" -ForegroundColor magenta 24 | $modules = (Import-Clixml $tmpData).Where({ $_.additionalmetadata.tags }) 25 | Write-Host "[$(Get-Date)] Found $($modules.count) modules with defined tags" -ForegroundColor magenta 26 | foreach ($mod in $modules) { 27 | #convert all tags to lower case 28 | if ($mod.additionalmetadata.tags -match ",") { 29 | $tags = $mod.additionalmetadata.tags.split(",").Foreach({ $_.tolower() }) 30 | } 31 | else { 32 | $tags = $mod.additionalmetadata.tags.split().Foreach({ $_.tolower() }) 33 | } 34 | foreach ($tag in $tags) { 35 | If ( (-Not $list.Contains($tag.trim())) -AND ($tag -ne '-')) { 36 | $list.add($tag.Trim()) 37 | } 38 | } 39 | } #foreach module 40 | 41 | Write-Host "[$(Get-Date)] Found $($list.count) unique tags" -ForegroundColor magenta 42 | #Sort the list 43 | Write-Host "[$(Get-Date)] Saving sorted list to $out" -ForegroundColor magenta 44 | $list | Sort-Object | Add-Content -Path $out -Encoding utf8 45 | } 46 | else { 47 | Write-Warning "Can't find $tmpData" 48 | } 49 | 50 | Write-Host "[$(Get-Date)] Ending $($MyInvocation.MyCommand)" -ForegroundColor magenta 51 | 52 | <# 53 | Change Log 54 | 5/9/2022 55 | Revised to use Join-Path which works better cross-platform for building paths 56 | 5/8/2022 57 | Modified and tested to run cross-platform in preparation to moving to a GitHub action. 58 | 4/12/2022 59 | Revised opening paragraph. 60 | Corrected bug that was improperly splitting comma-separated tags. 61 | Added code to trim spaces around tags. 62 | 4/11/2022 63 | Initial version 64 | #> -------------------------------------------------------------------------------- /scripts/top-authorreport.ps1: -------------------------------------------------------------------------------- 1 | #create top author report excluding major vendors 2 | #this script needs offline psgallery data 3 | Param( 4 | [string]$Path = (Join-Path -Path $HOME -ChildPath psgallery.xml), 5 | [string]$Title = "Top 25 PSGallery Contributors", 6 | [string]$Filename = "psgallery-authors.md" 7 | ) 8 | 9 | Write-Host "[$(Get-Date)] Starting $($MyInvocation.MyCommand)" -ForegroundColor darkcyan 10 | 11 | #initialize defaults 12 | $intro = Get-Content (Join-Path -Path $PSScriptRoot -ChildPath author-intro.txt) 13 | $all = Import-Clixml $Path 14 | 15 | #exclude major vendors. This is subjective and completely arbitrary. 16 | $filter = { $_.author -notmatch '\b(Microsoft|Amazon|Dell|DSC|Oracle|VMware|OneScript|HP|PowerShell Team|CData|BitTitan|Hewlett-Packard)\b' } 17 | $query = $all | Where-Object $filter -OutVariable f 18 | $top = $query | Group-Object author | Sort-Object count -Descending | Select-Object -First 25 19 | 20 | $md = [System.Collections.Generic.list[string]]::new() 21 | $md.Add("# $title`n") 22 | $md.AddRange([string[]]$intro) 23 | #$md.Add("`n") 24 | 25 | #insert navigation 4/21/2022 JDH 26 | $top.foreach({ 27 | #modify the name for the bookmark 28 | $link = $_.name.replace(' ', '-') 29 | $link = $link -replace "[\.@]", "" 30 | Write-Host "[$(Get-Date)] Creating link $link" -ForegroundColor DarkMagenta 31 | $nav = "+ [$($_.name)](#$link) ($($_. count))" 32 | $md.Add($nav) 33 | }) 34 | 35 | foreach ($item in $top) { 36 | Write-Host "[$(Get-Date)] Processing author $($item.name)" -ForegroundColor darkcyan 37 | $md.Add("`n## $($item.name)`n") 38 | 39 | $item.group | Sort-Object PublishedDate -Descending | ForEach-Object { 40 | if ($_.projectURI) { 41 | $uri = ($_.projectURI).absoluteUri 42 | $modName = "[$($_.name) $($_.version)]($uri)" 43 | } 44 | else { 45 | $modName = "$($_.name) $($_.version)" 46 | } 47 | 48 | $md.Add("+ **$modName** - $($_.description) [*$($_.PublishedDate)*]") 49 | } 50 | } 51 | 52 | $md.add("`n*Updated: $(Get-Date -Format U) UTC*") 53 | 54 | $out = Join-Path -Path "$PSScriptRoot/../" -ChildPath $filename 55 | Write-Host "[$(Get-Date)] Saving report to $filename" -ForegroundColor darkcyan 56 | $md | Out-File -FilePath $out -Encoding utf8 57 | Write-Host "[$(Get-Date)] Ending $($MyInvocation.MyCommand)" -ForegroundColor darkcyan 58 | 59 | <# 60 | Change log 61 | 62 | 5/8/2022 63 | Modified and tested to run cross-platform in preparation to moving to a GitHub action. 64 | 4/22/2022 65 | - updated code to define internal link 66 | 4/21/2022 67 | - Added navigation to top 25 authors 68 | 4/20/2022 69 | - Initial release 70 | 71 | #> -------------------------------------------------------------------------------- /scripts/run.ps1: -------------------------------------------------------------------------------- 1 | #requires -version 7.0 2 | #requires -module PowerShellGet 3 | 4 | #this script is run from a PowerShell scheduled job so use explicit paths to avoid errors. 5 | # IF RUNNING OFFLINE YOU NEED TO EXTRACT THE PSGallery DATA FROM PSGalleryDATA.ZIP AND 6 | # CONVERT TO PSGallery.XML 7 | 8 | Param( 9 | [Parameter(HelpMessage = "Run the reports using offline data")] 10 | [switch]$Offline, 11 | [Parameter(HelpMessage = "Create the reports but skip git commands.")] 12 | [switch]$Testing 13 | ) 14 | Write-Host "[$(Get-Date)] Starting $(Join-Path $PSScriptRoot run.ps1)" -ForegroundColor cyan 15 | $tmpData = Join-Path -Path $HOME -ChildPath psgallery.xml 16 | 17 | if (-Not $Offline) { 18 | Try { 19 | #verify PowerShell Gallery is online 20 | Write-Host "[$(Get-Date)] Testing PowerShellGallery.com" 21 | $test = Invoke-WebRequest -Uri https://powershellgallery.com -DisableKeepAlive -UseBasicParsing -ErrorAction Stop 22 | if ($test.StatusCode -eq 200) { 23 | #save an offline file of all modules and use that for the reports 24 | Write-Host "[$(Get-Date)] Saving offline data to $tmpData" -ForegroundColor cyan 25 | Find-Module -Repository PSGallery -ErrorAction Stop | Export-Clixml -Path $tmpData 26 | } 27 | else { 28 | Throw "PowerShellGallery.com is not available. Status code $($test.StatusCode)," 29 | } 30 | } 31 | Catch { 32 | Throw $_ 33 | } 34 | } 35 | 36 | if (Test-Path $tmpData) { 37 | #newest is the default 38 | Write-Host "[$(Get-Date)] Running report list" -ForegroundColor cyan 39 | & $PSScriptRoot/make-reports.ps1 -Offline 40 | & $PSScriptRoot/make-reports.ps1 -Offline -NoAzureAWS 41 | & $PSScriptRoot/make-reports.ps1 -Offline -ReportType Azure 42 | & $PSScriptRoot/make-reports.ps1 -Offline -ReportType Downloads 43 | & $PSScriptRoot/make-reports.ps1 -Offline -ReportType CommunityDownloads 44 | 45 | #top author report 46 | & $PSScriptRoot/top-authorreport.ps1 47 | 48 | #make tag list 49 | & $PSScriptRoot/make-taglist.ps1 50 | 51 | #export data to json 52 | Write-Host "[$(Get-Date)] Exporting gallery data to JSON" -ForegroundColor cyan 53 | 54 | # 4 January 2024 Use the -Compress parameter with ConvertTo-JSON to reduce the file size as much as possible. This requires PowerShell 7. 55 | Import-Clixml -Path $tmpData | 56 | Select-Object -Property Name, Version, Author, CompanyName, Tags, ProjectURI, 57 | Description, PublishedDate, @{Name = "Downloads"; Expression = { $_.AdditionalMetadata.DownloadCount } } | 58 | ConvertTo-Json -Compress | Out-File $PSScriptRoot/../PSGallerydata.json -Encoding utf8 59 | 60 | #2 March 2023 Compress the PSGallerydata.json file to a zip file 61 | Write-Host "[$(Get-Date)] Compressing PSGalleryData.json" -ForegroundColor cyan 62 | Compress-Archive -path $PSScriptRoot/../PSGallerydata.json -DestinationPath $PSScriptRoot/../PSGallerydata.zip -CompressionLevel Optimal -Force 63 | If (Test-Path $PSScriptRoot/../PSGallerydata.json) { 64 | Remove-Item -path $PSScriptRoot/../PSGallerydata.json 65 | } 66 | 67 | #Create PDFs 68 | #11 February 2024 This script file is no longer used but remains for reference purposes. 69 | # & $PSScriptRoot/create-pdf.ps1 70 | 71 | if (-Not $Testing) { 72 | #5/9/2022 disable git updates and move this to the Github action JDH 73 | <# #git updates 74 | Write-Host "[$(Get-Date)] Running git updates" -ForegroundColor cyan 75 | Set-Location $PSScriptRoot/.. 76 | git add . 77 | $msg = "reporting run $(Get-Date -Format u)" 78 | git commit -m $msg 79 | Write-Host "[$(Get-Date)] Pushing commit to Github" -ForegroundColor cyan 80 | git push #> 81 | } 82 | } 83 | else { 84 | Write-Warning "Can't find $tmpData" 85 | } 86 | 87 | Write-Host "[$(Get-Date)] Ending $(Join-Path $PSScriptRoot run.ps1)" -ForegroundColor cyan 88 | 89 | <# 90 | Change Log 91 | 92 | 2/11/2024 93 | Removed PDF file creation 94 | 3/24/2023 95 | Fixed missing PDF folder 96 | 3/2/2023 97 | Compress PSGallerydata.json to a zip file. 98 | 5/9/2022 99 | Revised to use Join-Path which works better cross-platform for building paths 100 | 5/8/2022 101 | Modified and tested to run cross-platform in preparation to moving to a GitHub action. 102 | 5/2/2022 103 | Updated to export a subset of PSGallery data to a JSON file so you can create your own custom reports. 104 | 4/23/2022 105 | Added test for PowerShellGallery.com 106 | 4/20/2022 107 | Added top author report 108 | 4/13/2022 109 | Replaced $MyInvocation.MyCommand with hard-coded references since $MyInvocation doesn't resolve 110 | when run from a PowerShell scheduled job. 111 | 4/11/2022 112 | added make-taglist.ps1 113 | added community download report 114 | #> -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # PSGallery Reports 2 | 3 | [![Run Reports](https://github.com/jdhitsolutions/PSGalleryReport/actions/workflows/report-run.yml/badge.svg)](https://github.com/jdhitsolutions/PSGalleryReport/actions/workflows/report-run.yml) 4 | 5 | ![MSPowerShell](images/PowerShell-transparent-thumb.jpg) 6 | 7 | This repository contains reports for the [PowerShell Gallery](https://powershellgallery.com). The hope is that it will be easier for you to find modules that will make your work easier. The plan is to update the reports twice a day and push them to this repository. 8 | 9 | Feel free to use the [Discussion](https://github.com/jdhitsolutions/PSGalleryReport/discussions) section of this repository to talk about specific modules. If you think there should be another type of report, feel free to submit a Feature Request in the [Issues](https://github.com/jdhitsolutions/PSGalleryReport/issues) section of this repository. 10 | 11 | > :warning: This project is __not__ a PowerShell module for you to install and run. This repository is a location for reports that I am generating and publishing through a GitHub Action. You are welcome to take my scripts and use them as the basis for your own reporting. Or feel free to fork and keep up-to-date on your own. 12 | 13 | ## Reports 14 | 15 | These are the currently active reports. Reports are created in Markdown. I have removed the PDF reports from the repository. 16 | 17 | GitHub will render reports in your browser. 18 | 19 | You are welcome to clone the repository or download individual reports. In PowerShell 7, you can use `Show-Markdown` to view markdown reports. 20 | 21 | ```powershell 22 | Show-Markdown .\psgallery-downloads.md -UseBrowser 23 | ``` 24 | 25 | The reports show the same information for each module. The only limiting factor is the report's scope. 26 | 27 | ### [Latest Published Modules](psgallery-newest.md) 28 | 29 | This report will show the most recent 250 modules published to the PowerShell Gallery. The report is sorted by the published date in descending order. The report includes links to the project in the Gallery as well as the project's repository if defined. This list *does not* include any *pre-release* modules. 30 | 31 | ### [Latest Published Modules (no Azure/AWS)](psgallery-filtered.md) 32 | 33 | This report is identical to the previous report except that the AWS and Azure modules published by Amazon and Microsoft are __excluded__. There are many of these modules and they could easily consume most of the newest released module report. 34 | 35 | ### [Latest Published Azure-Related Modules](psgallery-azure.md) 36 | 37 | This report gets the last 250 Azure-related modules published to the PowerShell Gallery. These are modules written by Microsoft and the community. The report is sorted by the published date in descending order. 38 | 39 | ### [Top Downloads](psgallery-downloads.md) 40 | 41 | This report is sorted by __total__ download count and is limited to the first 250 PowerShell modules. 42 | 43 | ### [Top Community Downloads](psgallery-downloads-community.md) 44 | 45 | This report is sorted by __total__ download count and limited to the first 250 modules where the author is __not__ Microsoft, Oracle, VMware, Amazon, HP, or Dell. Contributions from the DSC Community are also excluded. Ideally, this report highlights modules created by individual members of the PowerShell community. 46 | 47 | ### [Top Authors](psgallery-authors.md) 48 | 49 | This is a report of the top 25 module contributors to the PowerShell Gallery. The list *excludes* major vendors such as Microsoft and VMware. The exclusion criteria are admittedly arbitrary and subjective. The goal is to highlight individual contributions to the PowerShell Gallery. 50 | 51 | The end of the list is essentially by chance. If there are three contributors with the same number of contributions at the end of the list, the contributor included in the list is essentially random. I am not intentionally slighting anyone. 52 | 53 | ### [Tag List](taglist.txt) 54 | 55 | This is a simple text list of unique tags found in the PowerShell Gallery. All tags have been converted to lowercase, however that should not affect the use of the tag. 56 | 57 | ```powershell 58 | Find-Module -tag bios 59 | ``` 60 | 61 | :hand: Do not assume this is an authoritative or definitive list. Best efforts have been made to parse tags but tag definitions are not consistent across all published modules. 62 | 63 | ## PSGallery Data 64 | 65 | This repository will also contain a JSON file of export PSGallery information. You can import this file and use it to create your reports. 66 | 67 | ```powershell 68 | $data = Get-Content psgallerydata.json | ConvertFrom-JSON 69 | $data | where-object {$_.name -match "(SQL)|(database)"} | 70 | Select-Object -property name,author,version,description,projecturi 71 | ``` 72 | 73 | ## A Note on Scripts 74 | 75 | I am using a Github action to generate the reports every 8 hours. The action is executing the `run.ps1` script in the latest Ubuntu release. 76 | 77 | ## Limitations 78 | 79 | As of now, there is no way to include *pre-release* modules. You can only use `Find-Module` to search for pre-release when using the module name. You can always click the PowerShell Gallery link in a report and check for pre-release versions. 80 | 81 | ## PowerShellGet vs Microsoft.PowerShell.PSResourceGet 82 | 83 | I considered revising the scripts to use the newer and improved `Microsoft.PowerShell.PSResourceGet` module. However, I discovered that the module does not return the same information as PowerShellGet. Most importantly for my purposes, `Find-PSResource` does not include the download count. That defeats one of the primary purposes of this project. 84 | -------------------------------------------------------------------------------- /scripts/make-reports.ps1: -------------------------------------------------------------------------------- 1 | #requires -version 5.1 2 | #requires -module PowerShellGet 3 | 4 | [cmdletbinding(SupportsShouldProcess)] 5 | Param ( 6 | [Parameter(Position = 0, HelpMessage = "What type of report do you want to run")] 7 | [ValidateSet("Newest", "CommunityDownloads", "Downloads", "Azure")] 8 | [string]$ReportType = "Newest", 9 | [switch]$NoAzureAWS, 10 | [switch]$Offline, 11 | [int]$Count = 250 12 | ) 13 | 14 | Write-Host "[$(Get-Date)] Starting $($MyInvocation.MyCommand)" -ForegroundColor yellow 15 | if ($offline) { 16 | Write-Host "[$(Get-Date)] Working offline" -ForegroundColor yellow 17 | $all = Import-Clixml (Join-Path $HOME -ChildPath psgallery.xml) 18 | } 19 | else { 20 | Write-Host "[$(Get-Date)] Working online" -ForegroundColor yellow 21 | $all = Find-Module -Repository PSGallery 22 | } 23 | 24 | Switch ($ReportType) { 25 | "Newest" { 26 | Write-Host "[$(Get-Date)] Getting newest $count modules" -ForegroundColor yellow 27 | if ($NoAzureAWS) { 28 | Write-Host "[$(Get-Date)] Filtering out Azure and AWS" -ForegroundColor yellow 29 | $filter = { ($_. name -notmatch '^((AWS\.Tools)|(Az(ure?).+)(?=\.))') -AND ($_.author -notmatch "(Microsoft)|(Amazon)") } 30 | } 31 | else { 32 | $filter = { $_ } 33 | } 34 | $query = $all | Where-Object $filter -OutVariable f | Sort-Object { $_.publisheddate -as [datetime] } -Descending | 35 | Select-Object -First $count 36 | Write-Host "[$(Get-Date)] Found a total of $($f.count) matching modules." -ForegroundColor yellow 37 | if ($NoAzureAWS) { 38 | $title = "Latest from the PowerShell Gallery Filtered" 39 | $filename = "psgallery-filtered.md" 40 | $intro = "These are the latest $count modules published to the [PowerShell Gallery](https://powershellgallery.org). Azure and AWS modules published by Microsoft and Amazon have been __excluded__ from this report. The newest modules are listed first. Use ``Import-Module`` to install them or check the online repository for more information.`n" 41 | 42 | } 43 | else { 44 | $title = "Latest from the PowerShell Gallery" 45 | $filename = "psgallery-newest.md" 46 | $intro = "These are the latest $count modules published to the [PowerShell Gallery](https://powershellgallery.org). The newest modules are listed first. Use ``Import-Module`` to install them or check the online repository for more information.`n" 47 | } 48 | } 49 | "Downloads" { 50 | Write-Host "[$(Get-Date)] Getting top $count modules by total download count" -ForegroundColor yellow 51 | $filter = { $_ } 52 | $query = $all | Where-Object $filter -OutVariable f | 53 | Sort-Object { $_.additionalmetadata.DownloadCount -as [int64] } -Descending | 54 | Select-Object -First $count 55 | Write-Host "[$(Get-Date)] Found a total of $($f.count) matching modules." -ForegroundColor yellow 56 | $title = "Popular Downloads from the PowerShell Gallery" 57 | $filename = "psgallery-downloads.md" 58 | $intro = "These are the most popular $count modules based on total download count for modules published to the [PowerShell Gallery](https://powershellgallery.org). The newest modules are listed first. Use ``Import-Module`` to install them or check the online repository for more information.`n" 59 | } 60 | "CommunityDownloads" { 61 | Write-Host "[$(Get-Date)] Getting top $count Community modules by total download count" -ForegroundColor yellow 62 | $filter = { $_.author -notmatch '\b(Microsoft|Amazon|Dell|DSC|Oracle|VMware|OneScript|HP|PowerShell Team)\b' } 63 | $query = $all | Where-Object $filter -OutVariable f | 64 | Sort-Object { $_.additionalmetadata.DownloadCount -as [int64] } -Descending | 65 | Select-Object -First $count 66 | Write-Host "[$(Get-Date)] Found a total of $($f.count) matching modules." -ForegroundColor yellow 67 | $title = "Community Contributions from the PowerShell Gallery by Download" 68 | $filename = "psgallery-downloads-community.md" 69 | $intro = "These are the most popular $count modules based on total download count for modules published to the [PowerShell Gallery](https://powershellgallery.org). The report filters out corporate authored modules from Microsoft, Amazon, Dell, Oracle, HP, and VMware. DSC modules are also excluded. The intent is to highlight contributions from individual members of the PowerShell community. The newest modules are listed first. Use ``Import-Module`` to install them or check the online repository for more information.`n" 70 | } 71 | "Azure" { 72 | Write-Host "[$(Get-Date)] Getting latest $count Azure-related modules" -ForegroundColor yellow 73 | $filter = { $_.name -match '(Az(ure?).+)' } 74 | $query = $all | Where-Object $filter -OutVariable f | Sort-Object { $_.publisheddate -as [datetime] } -Descending | 75 | Select-Object -First $count 76 | Write-Host "[$(Get-Date)] Found a total of $($f.count) matching modules." -ForegroundColor yellow 77 | $title = "Latest from the PowerShell Gallery for Azure" 78 | $filename = "psgallery-azure.md" 79 | $intro = "These are the latest $count modules published to the [PowerShell Gallery](https://powershellgallery.org) that are Azure-related. This includes modules published by Microsoft and the community. The newest modules are listed first. Use ``Import-Module`` to install them or check the online repository for more information.`n" 80 | } 81 | } 82 | 83 | $fragments = [system.collections.generic.list[string]]::new() 84 | $fragments.Add("# $title") 85 | #$fragments.Add("`n") 86 | $fragments.Add("![PS](images/powershell-emoji.png)`n") 87 | $fragments.Add($intro) 88 | foreach ($item in $query) { 89 | $galleryLink = "https://www.powershellgallery.com/Packages/$($item.name)/$($item.version)" 90 | $fragments.Add("## [$($item.name)]($gallerylink) | $($item.version)`n") 91 | $fragments.Add("### Published: $($item.PublishedDate) by $($item.Author)`n") 92 | $fragments.Add("$($item.description)`n") 93 | $dl = "__Downloads__: {0:n0}" -f [int64]($item.additionalmetadata.DownloadCount) 94 | $repo = "__Repository__: $($item.projecturi.absoluteUri)" 95 | $Fragments.Add("$dl | $repo`n") 96 | } 97 | 98 | $fragments.add("*Updated: $(Get-Date -Format U) UTC*") 99 | $out = Join-Path -Path "$PSScriptRoot/../" -ChildPath $filename 100 | Write-Host "[$(Get-Date)] Saving report to $out" -ForegroundColor yellow 101 | #need to make sure files are encoded to UTF8 for future PDF conversion 102 | $fragments | Out-File -FilePath $out -Encoding utf8 103 | 104 | Write-Host "[$(Get-Date)] Ending $($MyInvocation.MyCommand)" -ForegroundColor yellow 105 | 106 | <# 107 | Change log 108 | 5/9/2022 109 | Revised to use Join-Path which works better cross-platform for building paths 110 | 5/8/2022 111 | Modified and tested to run cross-platform in preparation to moving to a GitHub action. 112 | 5/2/2022 113 | Fixed bug that was leaving an unprintable character in the title 114 | 4/20/2022 115 | Updated to use full paths and not $PSScriptRoot 116 | Modified to use absolute URI 117 | 4/19/2022 118 | Modified report titles 119 | 4/18/2022 120 | Updated community report to exclude contributions from major vendors and the DSC Community 121 | 4/11/2022 122 | Specified PSGallery explicitly as the repository 123 | Added support for -WhatIf 124 | #> -------------------------------------------------------------------------------- /scripts/rubydocs.ps1: -------------------------------------------------------------------------------- 1 | Return "This script file is no longer used but remains for reference purposes." 2 | 3 | 4 | # gem install kramdown kramdown-asciidoc asciidoctor asciidoctor-pdf asciidoctor-rouge hexapdf rouge 5 | 6 | # themes https://github.com/rouge-ruby/rouge/tree/master/lib/rouge/themes 7 | # fonts https://fonts.google.com/ 8 | # https://asciidoctor.org/docs/user-manual/ 9 | 10 | Function ConvertTo-Adoc { 11 | [cmdletbinding(SupportsShouldProcess)] 12 | 13 | Param( 14 | [Parameter(Position = 0, Mandatory, ValueFromPipeline, ValueFromPipelineByPropertyName)] 15 | [ValidateScript( { Test-Path $_ })] 16 | [alias("path", "pspath")] 17 | [string]$Fullname, 18 | 19 | [switch]$Passthru, 20 | 21 | [ValidateScript({ Test-Path $_ })] 22 | [string]$Images = "./images", 23 | 24 | [Parameter(HelpMessage = "Default possible values are base16,bw,colorful,github,gruvbox,igor_pro,magritte, 25 | molokai,monokai,monokai_sublime,pastie,thankful_eyes,tulip or create a custom theme.")] 26 | [ValidateNotNullOrEmpty()] 27 | [alias("theme")] 28 | [string]$CodeTheme = "github" 29 | ) 30 | Begin { 31 | Write-Verbose "[BEGIN ] Starting: $($MyInvocation.MyCommand)" 32 | } #begin 33 | Process { 34 | $file = Get-Item -Path $fullname 35 | $parent = Split-Path -Path $Fullname 36 | $adoc = Join-Path -Path $parent -ChildPath ("$($file.BaseName).adoc") 37 | Write-Verbose "[PROCESS] Converting $($file.name) to $adoc" 38 | if ($PSCmdlet.ShouldProcess($Fullname)) { 39 | kramdoc --output $adoc --imagesdir=$images -a data-uri -a autofit-option -a source-highlighter=rouge -a rouge-style=$codetheme -a icons=font -a iconset=fa -a allow-uri-read -a linkattrs $Fullname 40 | if ($passthru) { 41 | Get-Item $adoc 42 | } 43 | } 44 | } #process 45 | End { 46 | Write-Verbose "[END ] Ending: $($MyInvocation.MyCommand)" 47 | } #end 48 | } #ConvertTo-Adoc 49 | Function Export-Adoc { 50 | [cmdletbinding(SupportsShouldProcess)] 51 | param( 52 | [Parameter(Position = 0, Mandatory, ValueFromPipeline, ValueFromPipelineByPropertyName)] 53 | [ValidateScript( { Test-Path $_ })] 54 | [ValidatePattern("\.adoc$")] 55 | [alias("path", "pspath")] 56 | [string]$Fullname, 57 | 58 | [validateset("html5", "docbook5", "pdf", "latex", "xhtml5")] 59 | [ValidateNotNullOrEmpty()] 60 | [string]$Backend = "pdf", 61 | 62 | [ValidateSet("book", "article", "manpage", "inline")] 63 | [ValidateNotNullOrEmpty()] 64 | [string]$DocType = "book", 65 | 66 | [Parameter(HelpMessage = "Specify the path to a yaml theme file. See https://github.com/asciidoctor/asciidoctor-pdf/blob/v1.5.0.beta.5/docs/theming-guide.adoc for more help.")] 67 | [ValidateScript( { Test-Path $_ })] 68 | [ValidatePattern("\.yml$")] 69 | [string]$DocumentTheme, 70 | 71 | [Parameter(HelpMessage = "Specify the path to the custom code theme file. It should end in .rb")] 72 | [ValidateScript( { Test-Path $_ })] 73 | [ValidatePattern("\.rb$")] 74 | [string]$CodeThemePath, 75 | 76 | [Parameter(HelpMessage = "Specify an alternate font location for PDF generation.")] 77 | [ValidateScript({ Test-Path $_ })] 78 | [string]$FontDirectory = "./gemfonts", 79 | 80 | [Parameter(HelpMessage = "Include a table of contents")] 81 | [alias("toc")] 82 | [switch]$TableofContents, 83 | 84 | [Parameter(HelpMessage = "Specify the table of contents depth")] 85 | [int]$TocDepth = 3, 86 | 87 | [Switch]$Trace, 88 | [switch]$Passthru 89 | ) 90 | Begin { 91 | Write-Verbose "[BEGIN ] Starting: $($MyInvocation.MyCommand)" 92 | 93 | [string]$cmdText = "asciidoctor -a title-page -a allow-uri-read -a linkattrs -b $backEnd -d $DocType" 94 | 95 | #this is setup for future development 96 | Switch ($Backend) { 97 | "pdf" { 98 | $cmdText += " -r asciidoctor-pdf -a pdfwidth=pt" 99 | if ($FontDirectory) { 100 | $cmdText += " -a pdf-fontsdir=$FontDirectory" 101 | } 102 | if ($DocumentTheme) { 103 | $cmdText += " -a pdf-theme=$documentTheme" 104 | } 105 | $extension = "pdf" 106 | } 107 | "html5" { 108 | $cmdText += " -a html5-theme=$documentTheme" 109 | $extension = "html" 110 | } 111 | "docbook5" { 112 | $extension = "xml" 113 | } 114 | "latex" { 115 | #this will need a backend converter 116 | } 117 | "xhtml" { 118 | $extension = "html" 119 | } 120 | } 121 | If ($CodeThemePath) { 122 | $cmdText += " -r $CodeThemePath" 123 | } 124 | if ($Trace) { 125 | $cmdText += " --trace" 126 | } 127 | if ($TableofContents) { 128 | $cmdText += " -a toc -a toclevels=$TocDepth" 129 | } 130 | } #begin 131 | Process { 132 | $cmdText += " $fullname" 133 | $sb = [scriptblock]::create($cmdText) 134 | $file = Get-Item -Path $fullname 135 | $parent = Split-Path -Path $Fullname 136 | $out = Join-Path -Path $parent -ChildPath ("$($file.BaseName).$extension") 137 | 138 | Write-Verbose "[PROCESS] Converting $($file.name)" 139 | if ($PSCmdlet.ShouldProcess($Fullname)) { 140 | # asciidoctor -r $CodeThemePath -r asciidoctor-pdf -d $DocType -b $backEnd -a title-page -a toc -a pdfwidth=pt -a allow-uri-read -a linkattrs -a pdf-theme=$theme -a pdf-fontsdir=$FontDirectory --trace $fullname 141 | Write-Host $cmdtext -foreground green 142 | Invoke-Command -ScriptBlock $sb 143 | 144 | if ($passthru) { 145 | Get-Item -Path $out 146 | } 147 | } 148 | } #process 149 | End { 150 | Write-Verbose "[END ] Ending: $($MyInvocation.MyCommand)" 151 | } #end 152 | } 153 | Function Convert-Links { 154 | [cmdletbinding(SupportsShouldProcess)] 155 | 156 | Param( 157 | [Parameter(Position = 0, Mandatory, ValueFromPipeline, ValueFromPipelineByPropertyName)] 158 | [ValidateScript( { Test-Path $_ })] 159 | [ValidatePattern("\.adoc$")] 160 | [string]$Fullname 161 | ) 162 | 163 | Begin { 164 | Write-Verbose "[BEGIN ] Starting: $($MyInvocation.MyCommand)" 165 | 166 | [regex]$rx = "\<\ 145 | 146 | Dataverse data manipulation cmdlets 147 | 148 | __Downloads__: 10,743 | __Repository__: https://github.com/rnwood/Rnwood.Dataverse.Data.PowerShell 149 | 150 | ## [powerCat](https://www.powershellgallery.com/Packages/powerCat/2.0.0) | 2.0.0 151 | 152 | ### Published: 12/21/2025 09:35:21 by Matthew Poole Chicano 153 | 154 | PowerCat is a single-shot concatenator that bundles markdown and code files into one text file. Outputs to stdout (Unix cat-style) or file. Supports recursion, Markdown fencing, custom extensions, sorting, minification, and token estimation for AI context planning. 155 | 156 | __Downloads__: 79 | __Repository__: https://github.com/TheOnliestMattastic/PowerCat 157 | 158 | ## [qbo4.Infrastructure](https://www.powershellgallery.com/Packages/qbo4.Infrastructure/1.0.21.79) | 1.0.21.79 159 | 160 | ### Published: 12/21/2025 06:29:51 by Quandis Inc. 161 | 162 | Quandis Infrastructure Management, including publishing of qbo databases and websites. 163 | 164 | __Downloads__: 1,804 | __Repository__: https://dev.azure.com/quandis/qbo4/_git/qbo4.Infrastructure 165 | 166 | ## [SqlServer-Version-Management](https://www.powershellgallery.com/Packages/SqlServer-Version-Management/2.1.171) | 2.1.171 167 | 168 | ### Published: 12/21/2025 03:24:31 by devizer 169 | 170 | SQL Server Setup and Version Management Guide: https://devizer.github.io/SqlServer-Version-Management 171 | 172 | It installs Developer, Express, or LocalDB editions. 173 | The intended use of this project is for Continuous Integration (CI) scenarios, where: 174 | 1) SQL Server or LocalDB needs to be installed without user interaction. 175 | 2) SQL Server or LocalDB installation doesn't need to persist across multiple CI runs. 176 | 177 | By default it installs SQL Engine and full text search, adds built-in Administrators to SQL Server Administrators, and turns on TCP/IP and Named Pipe protocols. Default sa password is 'Meaga$tr0ng'. 178 | 179 | __Downloads__: 58,808 | __Repository__: https://github.com/devizer/Universe.SqlServerJam/tree/master/SqlServer-Version-Management 180 | 181 | ## [PSCompletions](https://www.powershellgallery.com/Packages/PSCompletions/6.2.2) | 6.2.2 182 | 183 | ### Published: 12/21/2025 02:00:37 by abgox 184 | 185 | A completion manager for a better and simpler tab-completion experience in PowerShell. 186 | It provides an enhanced scrollable completion menu with sorting and filtering. 187 | - Website: https://pscompletions.abgox.com 188 | - Github: https://github.com/abgox/PSCompletions 189 | - Gitee: https://gitee.com/abgox/PSCompletions 190 | 191 | __Downloads__: 88,512 | __Repository__: https://pscompletions.abgox.com/ 192 | 193 | ## [helium](https://www.powershellgallery.com/Packages/helium/1.3.0) | 1.3.0 194 | 195 | ### Published: 12/20/2025 22:22:33 by Skatterbrainz 196 | 197 | Assorted Utilities to make your day happier than inhaling a party balloon. 198 | 199 | __Downloads__: 1,068 | __Repository__: https://github.com/Skatterbrainz/helium 200 | 201 | ## [RubrikSecurityCloud](https://www.powershellgallery.com/Packages/RubrikSecurityCloud/1.14.20251215) | 1.14.20251215 202 | 203 | ### Published: 12/20/2025 19:38:34 by Rubrik 204 | 205 | PowerShell Module for Rubrik Security Cloud. GraphQL schema version: v20251215-36 . 206 | 207 | __Downloads__: 86,654 | __Repository__: https://github.com/rubrikinc/rubrik-powershell-sdk 208 | 209 | ## [Lcov](https://www.powershellgallery.com/Packages/Lcov/2.1.0) | 2.1.0 210 | 211 | ### Published: 12/20/2025 12:17:25 by Cédric Belin 212 | 213 | Parse and format to LCOV your code coverage reports. 214 | 215 | __Downloads__: 8 | __Repository__: https://github.com/cedx/lcov.net 216 | 217 | ## [WindmillClient](https://www.powershellgallery.com/Packages/WindmillClient/1.596.0) | 1.596.0 218 | 219 | ### Published: 12/20/2025 10:05:34 by Windmill Labs 220 | 221 | Client for the Windmill platform. 222 | 223 | __Downloads__: 12,844 | __Repository__: https://github.com/windmill-labs/windmill/tree/main/powershell-client 224 | 225 | ## [LeastPrivilegedMSGraph](https://www.powershellgallery.com/Packages/LeastPrivilegedMSGraph/1.1.0) | 1.1.0 226 | 227 | ### Published: 12/19/2025 23:16:54 by Morten Mynster 228 | 229 | Analyzes Microsoft Graph permissions and provides least privileged recommendations 230 | 231 | __Downloads__: 49 | __Repository__: 232 | 233 | ## [command-not-found](https://www.powershellgallery.com/Packages/command-not-found/0.2.0) | 0.2.0 234 | 235 | ### Published: 12/19/2025 23:11:16 by PowerShell 236 | 237 | Provide feedback on the 'CommandNotFound' error stemmed from running an executable on Linux platform. 238 | 239 | __Downloads__: 2,453 | __Repository__: https://github.com/PowerShell/command-not-found 240 | 241 | ## [Dune](https://www.powershellgallery.com/Packages/Dune/1.0.0) | 1.0.0 242 | 243 | ### Published: 12/19/2025 22:37:08 by yendico AG 244 | 245 | Powershell Wrapper for Dune API (duneframework.com) 246 | 247 | __Downloads__: 9 | __Repository__: 248 | 249 | ## [DscResource.Common](https://www.powershellgallery.com/Packages/DscResource.Common/0.24.5) | 0.24.5 250 | 251 | ### Published: 12/19/2025 20:07:47 by DSC Community 252 | 253 | Common functions used in DSC Resources 254 | 255 | __Downloads__: 42,722 | __Repository__: https://github.com/dsccommunity/DscResource.Common 256 | 257 | ## [IntegrisPowerShell](https://www.powershellgallery.com/Packages/IntegrisPowerShell/2.0.84) | 2.0.84 258 | 259 | ### Published: 12/19/2025 15:45:16 by David McVicker 260 | 261 | Integris PowerShell module 262 | 263 | __Downloads__: 758 | __Repository__: 264 | 265 | ## [OctopusDeploy](https://www.powershellgallery.com/Packages/OctopusDeploy/2.1.0) | 2.1.0 266 | 267 | ### Published: 12/19/2025 14:44:45 by Emrys MacInally 268 | 269 | Powershell wrapper around Octopus.Client.dll to help with standard problems 270 | 271 | __Downloads__: 1,107 | __Repository__: https://github.com/LindnerBrewery/OctopusDeploy 272 | 273 | ## [Airpower](https://www.powershellgallery.com/Packages/Airpower/1.0.0) | 1.0.0 274 | 275 | ### Published: 12/19/2025 14:43:05 by Airpower Team 276 | 277 | A package manager and environment to provide consistent tooling for software teams. 278 | 279 | __Downloads__: 16,784 | __Repository__: https://github.com/airpwr/airpwr 280 | 281 | ## [PSOpenAI](https://www.powershellgallery.com/Packages/PSOpenAI/4.46.0) | 4.46.0 282 | 283 | ### Published: 12/19/2025 14:36:49 by mkht 284 | 285 | PowerShell module for OpenAI API 286 | 287 | __Downloads__: 40,528 | __Repository__: https://github.com/mkht/PSOpenAI 288 | 289 | ## [PsBundler](https://www.powershellgallery.com/Packages/PsBundler/2.1.7) | 2.1.7 290 | 291 | ### Published: 12/19/2025 12:22:49 by Maxim Zaytsev 292 | 293 | A PowerShell bundler that merges multiple script files into a single bundle file. 294 | 295 | __Downloads__: 9 | __Repository__: https://github.com/Krinopotam/PsBundler 296 | 297 | ## [EntraIDAccessToken](https://www.powershellgallery.com/Packages/EntraIDAccessToken/3.0.0) | 3.0.0 298 | 299 | ### Published: 12/19/2025 11:17:55 by Marius Solbakken Mellum 300 | 301 | A module for simplifying the process of getting an access token from Entra ID 302 | 303 | __Downloads__: 67,287 | __Repository__: https://github.com/fortytwoservices/powershell-module-entraidaccesstoken 304 | 305 | ## [BuildPhpExtension](https://www.powershellgallery.com/Packages/BuildPhpExtension/1.5.1.0) | 1.5.1.0 306 | 307 | ### Published: 12/19/2025 10:17:12 by Shivam Mathur 308 | 309 | Build PHP Extension 310 | 311 | __Downloads__: 321 | __Repository__: https://github.com/php/php-windows-builder 312 | 313 | ## [BuildPhp](https://www.powershellgallery.com/Packages/BuildPhp/1.5.1.0) | 1.5.1.0 314 | 315 | ### Published: 12/19/2025 10:17:05 by Shivam Mathur 316 | 317 | Build PHP 318 | 319 | __Downloads__: 575 | __Repository__: https://github.com/php/php-windows-builder 320 | 321 | ## [AutomateNOW](https://www.powershellgallery.com/Packages/AutomateNOW/1.0.42) | 1.0.42 322 | 323 | ### Published: 12/19/2025 04:26:54 by AutomateNOW-Fan 324 | 325 | Interact with the API of an AutomateNOW! instance 326 | 327 | __Downloads__: 471 | __Repository__: https://github.com/AutomateNOW-Fan/AutomateNOW 328 | 329 | ## [PS365](https://www.powershellgallery.com/Packages/PS365/0.0.44) | 0.0.44 330 | 331 | ### Published: 12/18/2025 19:46:13 by Bastien Perez 332 | 333 | Module PS365 334 | 335 | __Downloads__: 63 | __Repository__: 336 | 337 | ## [PS_HWinfo](https://www.powershellgallery.com/Packages/PS_HWinfo/1.0.3) | 1.0.3 338 | 339 | ### Published: 12/18/2025 18:27:43 by Jared Heinrichs 340 | 341 | Displays a professional hardware info dashboard in the terminal, inspired by HWinfo64. Shows CPU, motherboard, BIOS, GPU, monitor, memory, and hard drive info in a compact Format-Table layout. 342 | 343 | __Downloads__: 14 | __Repository__: https://github.com/jaredheinrichs/PS_HWinfo 344 | 345 | ## [Broadcom.Community.VCFLicensing](https://www.powershellgallery.com/Packages/Broadcom.Community.VCFLicensing/1.0.0) | 1.0.0 346 | 347 | ### Published: 12/18/2025 15:25:26 by William Lam 348 | 349 | PowerShell Module for automating license entitlement between VCF Business Service Console and VCF Operations 350 | 351 | __Downloads__: 4 | __Repository__: https://github.com/lamw/Broadcom.Community.VCFLicensing 352 | 353 | ## [Logic.Monitor.SE](https://www.powershellgallery.com/Packages/Logic.Monitor.SE/1.8.5) | 1.8.5 354 | 355 | ### Published: 12/18/2025 14:36:56 by Steven Villardi 356 | 357 | PowerShell module to assist with Sale Engineering activities. 358 | 359 | __Downloads__: 3,049,804 | __Repository__: https://github.com/logicmonitor/Logic.Monitor.SE 360 | 361 | ## [OpenAI.Compliance.PowerShell](https://www.powershellgallery.com/Packages/OpenAI.Compliance.PowerShell/0.0.4.1) | 0.0.4.1 362 | 363 | ### Published: 12/18/2025 13:49:05 by Gabriel Delaney - gdelaney@phzconsulting.com | https://github.com/thetolkienblackguy 364 | 365 | PowerShell module for the OpenAI Compliance API. 366 | 367 | __Downloads__: 62 | __Repository__: 368 | 369 | ## [Nexthink-Omnissa-Connector](https://www.powershellgallery.com/Packages/Nexthink-Omnissa-Connector/0.2.6) | 0.2.6 370 | 371 | ### Published: 12/18/2025 13:11:34 by Nexthink 372 | 373 | Nexthink Omnissa Connector Module for PowerShell 374 | 375 | __Downloads__: 90 | __Repository__: 376 | 377 | ## [EasyGUI](https://www.powershellgallery.com/Packages/EasyGUI/1.2.8) | 1.2.8 378 | 379 | ### Published: 12/18/2025 12:34:34 by SercretProgrammer 380 | 381 | EasyGUI is a lightweight PowerShell module for quickly creating graphical user interfaces (GUIs). It provides simple, easy-to-use functions for creating windows, buttons, input boxes, dropdowns, radio buttons, tabs, and more. Designed for simplicity and rapid development, EasyGUI lets PowerShell users build GUIs efficiently for scripts, tools, or utilities. 382 | 383 | __Downloads__: 75 | __Repository__: https://github.com/SercretProgrammer/EasyGUI 384 | 385 | ## [PsSqlTestServer](https://www.powershellgallery.com/Packages/PsSqlTestServer/1.7.1) | 1.7.1 386 | 387 | ### Published: 12/18/2025 10:28:05 by Steffen Kampmann 388 | 389 | Cmdlets to provide and manage SQL servers for tests. 390 | 391 | __Downloads__: 20,063 | __Repository__: https://github.com/abbgrade/PsSqlTestServer 392 | 393 | ## [PsDac](https://www.powershellgallery.com/Packages/PsDac/1.8.1) | 1.8.1 394 | 395 | ### Published: 12/18/2025 10:24:05 by Steffen Kampmann 396 | 397 | PsDac connects DacFx and PowerShell. It gives you PowerShell Cmdlets with the power of Microsoft.SqlServer.DacFx. 398 | 399 | __Downloads__: 80,638 | __Repository__: https://abbgrade.github.io/PsDac/ 400 | 401 | ## [PsSmo](https://www.powershellgallery.com/Packages/PsSmo/1.4.1) | 1.4.1 402 | 403 | ### Published: 12/18/2025 10:03:01 by Steffen Kampmann 404 | 405 | The PowerShell SQL Client module replaces the SQL Server utilities SQLCMD with native PowerShell commands. 406 | 407 | __Downloads__: 19,797 | __Repository__: https://github.com/abbgrade/PsSmo 408 | 409 | ## [PsSqlClient](https://www.powershellgallery.com/Packages/PsSqlClient/2.3.1) | 2.3.1 410 | 411 | ### Published: 12/18/2025 09:56:00 by Steffen Kampmann 412 | 413 | The PowerShell SQL Client module replaces the SQL Server utilities SQLCMD and BCP with native PowerShell commands. 414 | 415 | __Downloads__: 45,183 | __Repository__: https://abbgrade.github.io/PsSqlClient/ 416 | 417 | ## [Servers101](https://www.powershellgallery.com/Packages/Servers101/0.1.1) | 0.1.1 418 | 419 | ### Published: 12/18/2025 05:05:51 by James Brundage 420 | 421 | Simple Servers in PowerShell 422 | 423 | __Downloads__: 9 | __Repository__: https://github.com/PowerShellWeb/Servers101 424 | 425 | ## [PSPromptly](https://www.powershellgallery.com/Packages/PSPromptly/0.1.3) | 0.1.3 426 | 427 | ### Published: 12/18/2025 02:30:23 by Marcos Santos 428 | 429 | PowerShell module for creating beautiful interactive command-line menus with keyboard navigation, custom themes, and ASCII art support 430 | 431 | __Downloads__: 29 | __Repository__: https://github.com/krzgvfs/promptly_pwsh 432 | 433 | ## [AcuInstallerHelper](https://www.powershellgallery.com/Packages/AcuInstallerHelper/1.0) | 1.0 434 | 435 | ### Published: 12/18/2025 00:46:17 by Kyle Vanderstoep 436 | 437 | PowerShell module for managing Acumatica ERP installations, sites, versions, and patches. Provides automated installation, site creation/removal, configuration management, and patch operations. Requires PowerShell 7.0 or higher. 438 | 439 | __Downloads__: 312 | __Repository__: https://github.com/lekker-solutions/acumatica-installerHelper 440 | 441 | ## [Sql](https://www.powershellgallery.com/Packages/Sql/0.17.0) | 0.17.0 442 | 443 | ### Published: 12/17/2025 22:43:21 by Cédric Belin 444 | 445 | A simple micro-ORM, based on ADO.NET and data annotations. 446 | 447 | __Downloads__: 204 | __Repository__: https://github.com/cedx/sql.net 448 | 449 | ## [Devolutions.PowerShell](https://www.powershellgallery.com/Packages/Devolutions.PowerShell/2025.3.3) | 2025.3.3 450 | 451 | ### Published: 12/17/2025 19:59:27 by Devolutions 452 | 453 | The Devolutions.PowerShell module is a set of cmdlets that allow administrators to manage Remote Desktop Manager, Devolutions Server and Devolutions Hub Business using PowerShell. This module provides a simple and consistent interface for interacting with these products, making it easy to automate various tasks, such as creating and managing connections, sessions, and credentials, configuring security settings, and generating reports. The module can be easily integrated with other PowerShell modules, allowing administrators to automate tasks across multiple products and platforms, streamline their workflows and increase efficiency. 454 | 455 | __Downloads__: 466,920 | __Repository__: https://devolutions.net/ 456 | 457 | ## [aitools](https://www.powershellgallery.com/Packages/aitools/1.0.12) | 1.0.12 458 | 459 | ### Published: 12/17/2025 19:23:30 by Chrissy LeMaire 460 | 461 | PowerShell wrapper for AI coding assistants. Batch process files using Claude Code, Aider, Gemini CLI, GitHub Copilot CLI, and Codex CLI with unified commands and pipeline support. 462 | 463 | __Downloads__: 440 | __Repository__: https://github.com/potatoqualitee/aitools 464 | 465 | ## [SentinelARConverter](https://www.powershellgallery.com/Packages/SentinelARConverter/2.4.7) | 2.4.7 466 | 467 | ### Published: 12/17/2025 17:22:57 by Fabian Bader 468 | 469 | Helper module to convert Sentinel Analytics Rules between YAML, ARM and back 470 | 471 | __Downloads__: 571,040 | __Repository__: https://github.com/f-bader/SentinelARConverter 472 | 473 | ## [PsAstViewer](https://www.powershellgallery.com/Packages/PsAstViewer/1.0.12) | 1.0.12 474 | 475 | ### Published: 12/17/2025 13:37:41 by Maxim Zaytsev 476 | 477 | A graphical viewer and explorer for PowerShell Abstract Syntax Trees (AST) 478 | 479 | __Downloads__: 71 | __Repository__: https://github.com/Krinopotam/PsAstViewer 480 | 481 | ## [AzurePIMStuff](https://www.powershellgallery.com/Packages/AzurePIMStuff/0.0.4) | 0.0.4 482 | 483 | ### Published: 12/17/2025 11:40:01 by @AndrewZtrhgf 484 | 485 | PowerShell module for Azure Privileged Identity Management (PIM) automation. Some of them are explained at https://doitpshway.com. 486 | 487 | Some of the interesting functions: 488 | - Get-PIMGroup: Returns Azure groups with some PIM eligible assignments. 489 | - Get-PIMGroupEligibleAssignment: Returns eligible assignments for Azure AD groups. 490 | - Get-PIMAccountEligibleMemberOf: Returns groups where selected account(s) is eligible (via PIM) as a member. 491 | - Get-PIMDirectoryRoleAssignmentSetting: Gets PIM assignment settings for a given Azure AD directory role. 492 | - Get-PIMDirectoryRoleEligibleAssignment: Returns Azure Directory role eligible assignments. 493 | - Get-PIMManagementGroupEligibleAssignment: Returns all PIM eligible IAM assignments on selected (all) Azure Management group(s). 494 | - Get-PIMResourceRoleAssignmentSetting: Gets PIM assignment settings for a given Azure resource role at a specific scope. 495 | - Get-PIMSubscriptionEligibleAssignment: Returns eligible role assignments on selected subscription(s) and below (resources included). 496 | - Invoke-PIMDirectoryRoleActivation: Activates PIM eligible directory role for current user (supports FIDO2 auth context). 497 | - Invoke-PIMResourceRoleActivation: Activates PIM eligible resource role for current user (supports FIDO2 auth context). 498 | - New-PIMResourceEligibleRoleAssignment - function for creating PIM eligible role assignment for specified Azure resource 499 | - Set-PIMResourceRoleAssignmentSetting - function for setting PIM assignment settings for a given Azure resource role at a specific scope 500 | 501 | __Downloads__: 44 | __Repository__: https://github.com/ztrhgf/useful_powershell_modules 502 | 503 | ## [EntraExporterFast](https://www.powershellgallery.com/Packages/EntraExporterFast/1.0.7) | 1.0.7 504 | 505 | ### Published: 12/17/2025 08:53:21 by @AndrewZtrhgf 506 | 507 | This is improved version of the official EntraExporter module. 508 | - it is significantly faster thanks to Graph API batching (parallelization) 509 | - there are new backup options (like "IAM", "AccessPolicies", ...) 510 | - and fixes (like "PIM" data export). 511 | 512 | __Downloads__: 1,957 | __Repository__: https://github.com/ztrhgf/EntraExporterFast 513 | 514 | ## [Fortytwo.CheckID.PasswordAgent](https://www.powershellgallery.com/Packages/Fortytwo.CheckID.PasswordAgent/1.3.0) | 1.3.0 515 | 516 | ### Published: 12/17/2025 08:32:56 by Marius Solbakken Mellum 517 | 518 | A module for completing password reset requests from the CheckID service into Active Directory 519 | 520 | __Downloads__: 212 | __Repository__: 521 | 522 | ## [MapiADTools](https://www.powershellgallery.com/Packages/MapiADTools/1.5.0) | 1.5.0 523 | 524 | ### Published: 12/17/2025 07:31:52 by Matthias Piplak 525 | 526 | MapiADTools is a collection of advanced PowerShell functions for Windows and Active Directory administration. It focuses on system diagnostics, client management, and rapid inventory by combining high-speed parallel processing with deep-dive analysis. 527 | 528 | --- Available Functions --- 529 | - Get-AppLockerEvents (gale): Retrieves AppLocker events from a specified target computer. 530 | - Find-GpoSetting (search-GPO): Searches within Group Policy Object (GPO) reports for a specific string pattern 531 | - Get-ADUserInfo (gadu): Flexible AD user search (name, SAM) with password expiry, last logon, and MECM PC data. 532 | - Get-ClientActivity: Creates a timeline of computer power events (logon, shutdown, sleep). 533 | - Get-ClientFQDN (fqdn): Gets a client's FQDN from its NetBIOS name and copies it to the clipboard. 534 | - Get-ClientUptime (uptime): Gets computer uptime and interactively logged-on users. 535 | - Get-ComputerLastOnline (lol): Finds a computer's most accurate last logon time by querying all DCs. 536 | - Get-ComputerReport (gcr): All-in-one client health dashboard (ping, OS, uptime, reboot, AD last logon). 537 | - Get-FastPing (fping): High-performance, parallel ping with reverse DNS validation for large lists. 538 | - Get-InstalledSoftware (soft): Inventories software on remote computers with remote uninstallation. 539 | - Get-M365UpdateSource: Diagnoses the M365 Apps update source (MECM, GPO, ODT) and task health. 540 | - Get-MappedDrives: Lists all mapped network drives for active user sessions. 541 | - Get-MicrosoftUpdatesReport (gmur): updates report for Windows and Microsoft 365 Apps (Office) 542 | - Get-OSVersion (os): Retrieves detailed OS info (build, friendly name like 23H2). 543 | - Get-PendingReboot (gpr): Comprehensive check for pending reboot reasons (CBS, WU, MECM, etc.). 544 | - Get-Win10ADClient: Queries AD for Win 10/11 clients, showing friendly OS names (e.g., 23H2). 545 | - Invoke-GarbageCollection (igc): Manually triggers .NET Garbage Collection for memory profiling. 546 | - Set-ADUserMustChangePassword: Toggles the "User must change password at next logon" flag. 547 | - Test-ADUserMailboxMigrationStatus: Checks a user's Exchange Hybrid mailbox migration state. 548 | - Test-AdminAccess (IsAdmin): Checks for local admin privileges on target computers. 549 | 550 | __Downloads__: 63 | __Repository__: 551 | 552 | ## [DSCSchemaGenerator](https://www.powershellgallery.com/Packages/DSCSchemaGenerator/0.0.1) | 0.0.1 553 | 554 | ### Published: 12/17/2025 06:54:24 by Gijs Reijn 555 | 556 | PowerShell module for generating Microsoft DSC resource manifests with embedded JSON schemas from class-based DSC resources. 557 | 558 | __Downloads__: 10 | __Repository__: https://github.com/Gijsreyn/DscSchemaGenerator 559 | 560 | ## [F5-LTM](https://www.powershellgallery.com/Packages/F5-LTM/1.4.355) | 1.4.355 561 | 562 | ### Published: 12/17/2025 04:58:07 by Joel Newton 563 | 564 | This module uses the REST API in the F5 LTM v11.6 and higher to query and manipulate the F5 LTM device. 565 | 566 | __Downloads__: 290,392 | __Repository__: https://github.com/joel74/POSH-LTM-Rest 567 | 568 | ## [PSFzf](https://www.powershellgallery.com/Packages/PSFzf/2.7.9) | 2.7.9 569 | 570 | ### Published: 12/17/2025 04:21:52 by Michael Kelley 571 | 572 | A thin wrapper around Fzf (https://github.com/junegunn/fzf). If PSReadline is loaded, this wrapper registers Fzf with the keyboard chord Ctrl+t. 573 | 574 | __Downloads__: 887,515 | __Repository__: 575 | 576 | ## [OCI.PSModules](https://www.powershellgallery.com/Packages/OCI.PSModules/120.2.0) | 120.2.0 577 | 578 | ### Published: 12/17/2025 01:01:40 by Oracle Cloud Infrastructure 579 | 580 | Oracle Cloud Infrastructure (OCI) PowerShell Modules - Cmdlets to manage resources in OCI. 581 | For more information, please visit: https://docs.oracle.com/en-us/iaas/Content/API/SDKDocs/powershell.htm 582 | 583 | __Downloads__: 10,708 | __Repository__: https://github.com/oracle/oci-powershell-modules/ 584 | 585 | ## [OCI.PSModules.Zpr](https://www.powershellgallery.com/Packages/OCI.PSModules.Zpr/120.2.0) | 120.2.0 586 | 587 | ### Published: 12/17/2025 00:44:14 by Oracle Cloud Infrastructure 588 | 589 | This modules provides Cmdlets for OCI Zpr Service 590 | 591 | __Downloads__: 2,693 | __Repository__: https://github.com/oracle/oci-powershell-modules/ 592 | 593 | ## [OCI.PSModules.Workrequests](https://www.powershellgallery.com/Packages/OCI.PSModules.Workrequests/120.2.0) | 120.2.0 594 | 595 | ### Published: 12/17/2025 00:44:08 by Oracle Cloud Infrastructure 596 | 597 | This modules provides Cmdlets for OCI Workrequests Service 598 | 599 | __Downloads__: 13,175 | __Repository__: https://github.com/oracle/oci-powershell-modules/ 600 | 601 | ## [OCI.PSModules.Wlms](https://www.powershellgallery.com/Packages/OCI.PSModules.Wlms/120.2.0) | 120.2.0 602 | 603 | ### Published: 12/17/2025 00:44:03 by Oracle Cloud Infrastructure 604 | 605 | This modules provides Cmdlets for OCI Wlms Service 606 | 607 | __Downloads__: 1,125 | __Repository__: https://github.com/oracle/oci-powershell-modules/ 608 | 609 | ## [OCI.PSModules.Waf](https://www.powershellgallery.com/Packages/OCI.PSModules.Waf/120.2.0) | 120.2.0 610 | 611 | ### Published: 12/17/2025 00:43:58 by Oracle Cloud Infrastructure 612 | 613 | This modules provides Cmdlets for OCI Waf Service 614 | 615 | __Downloads__: 11,805 | __Repository__: https://github.com/oracle/oci-powershell-modules/ 616 | 617 | ## [OCI.PSModules.Waas](https://www.powershellgallery.com/Packages/OCI.PSModules.Waas/120.2.0) | 120.2.0 618 | 619 | ### Published: 12/17/2025 00:43:52 by Oracle Cloud Infrastructure 620 | 621 | This modules provides Cmdlets for OCI Waas Service 622 | 623 | __Downloads__: 13,949 | __Repository__: https://github.com/oracle/oci-powershell-modules/ 624 | 625 | ## [OCI.PSModules.Waa](https://www.powershellgallery.com/Packages/OCI.PSModules.Waa/120.2.0) | 120.2.0 626 | 627 | ### Published: 12/17/2025 00:43:47 by Oracle Cloud Infrastructure 628 | 629 | This modules provides Cmdlets for OCI Waa Service 630 | 631 | __Downloads__: 10,621 | __Repository__: https://github.com/oracle/oci-powershell-modules/ 632 | 633 | ## [OCI.PSModules.Vulnerabilityscanning](https://www.powershellgallery.com/Packages/OCI.PSModules.Vulnerabilityscanning/120.2.0) | 120.2.0 634 | 635 | ### Published: 12/17/2025 00:43:41 by Oracle Cloud Infrastructure 636 | 637 | This modules provides Cmdlets for OCI Vulnerabilityscanning Service 638 | 639 | __Downloads__: 12,696 | __Repository__: https://github.com/oracle/oci-powershell-modules/ 640 | 641 | ## [OCI.PSModules.Vnmonitoring](https://www.powershellgallery.com/Packages/OCI.PSModules.Vnmonitoring/120.2.0) | 120.2.0 642 | 643 | ### Published: 12/17/2025 00:43:34 by Oracle Cloud Infrastructure 644 | 645 | This modules provides Cmdlets for OCI Vnmonitoring Service 646 | 647 | __Downloads__: 10,555 | __Repository__: https://github.com/oracle/oci-powershell-modules/ 648 | 649 | ## [OCI.PSModules.Visualbuilder](https://www.powershellgallery.com/Packages/OCI.PSModules.Visualbuilder/120.2.0) | 120.2.0 650 | 651 | ### Published: 12/17/2025 00:43:29 by Oracle Cloud Infrastructure 652 | 653 | This modules provides Cmdlets for OCI Visualbuilder Service 654 | 655 | __Downloads__: 11,389 | __Repository__: https://github.com/oracle/oci-powershell-modules/ 656 | 657 | ## [OCI.PSModules.Vbsinst](https://www.powershellgallery.com/Packages/OCI.PSModules.Vbsinst/120.2.0) | 120.2.0 658 | 659 | ### Published: 12/17/2025 00:43:23 by Oracle Cloud Infrastructure 660 | 661 | This modules provides Cmdlets for OCI Vbsinst Service 662 | 663 | __Downloads__: 9,461 | __Repository__: https://github.com/oracle/oci-powershell-modules/ 664 | 665 | ## [OCI.PSModules.Vault](https://www.powershellgallery.com/Packages/OCI.PSModules.Vault/120.2.0) | 120.2.0 666 | 667 | ### Published: 12/17/2025 00:43:19 by Oracle Cloud Infrastructure 668 | 669 | This modules provides Cmdlets for OCI Vault Service 670 | 671 | __Downloads__: 14,242 | __Repository__: https://github.com/oracle/oci-powershell-modules/ 672 | 673 | ## [OCI.PSModules.Usageapi](https://www.powershellgallery.com/Packages/OCI.PSModules.Usageapi/120.2.0) | 120.2.0 674 | 675 | ### Published: 12/17/2025 00:43:13 by Oracle Cloud Infrastructure 676 | 677 | This modules provides Cmdlets for OCI Usageapi Service 678 | 679 | __Downloads__: 16,194 | __Repository__: https://github.com/oracle/oci-powershell-modules/ 680 | 681 | ## [OCI.PSModules.Usage](https://www.powershellgallery.com/Packages/OCI.PSModules.Usage/120.2.0) | 120.2.0 682 | 683 | ### Published: 12/17/2025 00:43:05 by Oracle Cloud Infrastructure 684 | 685 | This modules provides Cmdlets for OCI Usage Service 686 | 687 | __Downloads__: 11,636 | __Repository__: https://github.com/oracle/oci-powershell-modules/ 688 | 689 | ## [OCI.PSModules.Threatintelligence](https://www.powershellgallery.com/Packages/OCI.PSModules.Threatintelligence/120.2.0) | 120.2.0 690 | 691 | ### Published: 12/17/2025 00:43:00 by Oracle Cloud Infrastructure 692 | 693 | This modules provides Cmdlets for OCI Threatintelligence Service 694 | 695 | __Downloads__: 11,560 | __Repository__: https://github.com/oracle/oci-powershell-modules/ 696 | 697 | ## [OCI.PSModules.Tenantmanagercontrolplane](https://www.powershellgallery.com/Packages/OCI.PSModules.Tenantmanagercontrolplane/120.2.0) | 120.2.0 698 | 699 | ### Published: 12/17/2025 00:42:19 by Oracle Cloud Infrastructure 700 | 701 | This modules provides Cmdlets for OCI Tenantmanagercontrolplane Service 702 | 703 | __Downloads__: 12,948 | __Repository__: https://github.com/oracle/oci-powershell-modules/ 704 | 705 | ## [OCI.PSModules.Streaming](https://www.powershellgallery.com/Packages/OCI.PSModules.Streaming/120.2.0) | 120.2.0 706 | 707 | ### Published: 12/17/2025 00:42:13 by Oracle Cloud Infrastructure 708 | 709 | This modules provides Cmdlets for OCI Streaming Service 710 | 711 | __Downloads__: 13,132 | __Repository__: https://github.com/oracle/oci-powershell-modules/ 712 | 713 | ## [OCI.PSModules.Stackmonitoring](https://www.powershellgallery.com/Packages/OCI.PSModules.Stackmonitoring/120.2.0) | 120.2.0 714 | 715 | ### Published: 12/17/2025 00:42:06 by Oracle Cloud Infrastructure 716 | 717 | This modules provides Cmdlets for OCI Stackmonitoring Service 718 | 719 | __Downloads__: 10,978 | __Repository__: https://github.com/oracle/oci-powershell-modules/ 720 | 721 | ## [OCI.PSModules.Servicemanagerproxy](https://www.powershellgallery.com/Packages/OCI.PSModules.Servicemanagerproxy/120.2.0) | 120.2.0 722 | 723 | ### Published: 12/17/2025 00:42:01 by Oracle Cloud Infrastructure 724 | 725 | This modules provides Cmdlets for OCI Servicemanagerproxy Service 726 | 727 | __Downloads__: 12,978 | __Repository__: https://github.com/oracle/oci-powershell-modules/ 728 | 729 | ## [OCI.PSModules.Servicecatalog](https://www.powershellgallery.com/Packages/OCI.PSModules.Servicecatalog/120.2.0) | 120.2.0 730 | 731 | ### Published: 12/17/2025 00:41:55 by Oracle Cloud Infrastructure 732 | 733 | This modules provides Cmdlets for OCI Servicecatalog Service 734 | 735 | __Downloads__: 12,343 | __Repository__: https://github.com/oracle/oci-powershell-modules/ 736 | 737 | ## [OCI.PSModules.Securityattribute](https://www.powershellgallery.com/Packages/OCI.PSModules.Securityattribute/120.2.0) | 120.2.0 738 | 739 | ### Published: 12/17/2025 00:41:49 by Oracle Cloud Infrastructure 740 | 741 | This modules provides Cmdlets for OCI Securityattribute Service 742 | 743 | __Downloads__: 2,701 | __Repository__: https://github.com/oracle/oci-powershell-modules/ 744 | 745 | ## [OCI.PSModules.Secrets](https://www.powershellgallery.com/Packages/OCI.PSModules.Secrets/120.2.0) | 120.2.0 746 | 747 | ### Published: 12/17/2025 00:41:42 by Oracle Cloud Infrastructure 748 | 749 | This modules provides Cmdlets for OCI Secrets Service 750 | 751 | __Downloads__: 14,432 | __Repository__: https://github.com/oracle/oci-powershell-modules/ 752 | 753 | ## [OCI.PSModules.Sch](https://www.powershellgallery.com/Packages/OCI.PSModules.Sch/120.2.0) | 120.2.0 754 | 755 | ### Published: 12/17/2025 00:41:37 by Oracle Cloud Infrastructure 756 | 757 | This modules provides Cmdlets for OCI Sch Service 758 | 759 | __Downloads__: 13,073 | __Repository__: https://github.com/oracle/oci-powershell-modules/ 760 | 761 | ## [OCI.PSModules.Rover](https://www.powershellgallery.com/Packages/OCI.PSModules.Rover/120.2.0) | 120.2.0 762 | 763 | ### Published: 12/17/2025 00:41:30 by Oracle Cloud Infrastructure 764 | 765 | This modules provides Cmdlets for OCI Rover Service 766 | 767 | __Downloads__: 12,842 | __Repository__: https://github.com/oracle/oci-powershell-modules/ 768 | 769 | ## [OCI.PSModules.Resourcesearch](https://www.powershellgallery.com/Packages/OCI.PSModules.Resourcesearch/120.2.0) | 120.2.0 770 | 771 | ### Published: 12/17/2025 00:40:43 by Oracle Cloud Infrastructure 772 | 773 | This modules provides Cmdlets for OCI Resourcesearch Service 774 | 775 | __Downloads__: 13,752 | __Repository__: https://github.com/oracle/oci-powershell-modules/ 776 | 777 | ## [OCI.PSModules.Resourcescheduler](https://www.powershellgallery.com/Packages/OCI.PSModules.Resourcescheduler/120.2.0) | 120.2.0 778 | 779 | ### Published: 12/17/2025 00:40:36 by Oracle Cloud Infrastructure 780 | 781 | This modules provides Cmdlets for OCI Resourcescheduler Service 782 | 783 | __Downloads__: 5,673 | __Repository__: https://github.com/oracle/oci-powershell-modules/ 784 | 785 | ## [OCI.PSModules.Resourcemanager](https://www.powershellgallery.com/Packages/OCI.PSModules.Resourcemanager/120.2.0) | 120.2.0 786 | 787 | ### Published: 12/17/2025 00:40:31 by Oracle Cloud Infrastructure 788 | 789 | This modules provides Cmdlets for OCI Resourcemanager Service 790 | 791 | __Downloads__: 13,164 | __Repository__: https://github.com/oracle/oci-powershell-modules/ 792 | 793 | ## [OCI.PSModules.Resourceanalytics](https://www.powershellgallery.com/Packages/OCI.PSModules.Resourceanalytics/120.2.0) | 120.2.0 794 | 795 | ### Published: 12/17/2025 00:40:25 by Oracle Cloud Infrastructure 796 | 797 | This modules provides Cmdlets for OCI Resourceanalytics Service 798 | 799 | __Downloads__: 540 | __Repository__: https://github.com/oracle/oci-powershell-modules/ 800 | 801 | ## [OCI.PSModules.Redis](https://www.powershellgallery.com/Packages/OCI.PSModules.Redis/120.2.0) | 120.2.0 802 | 803 | ### Published: 12/17/2025 00:40:20 by Oracle Cloud Infrastructure 804 | 805 | This modules provides Cmdlets for OCI Redis Service 806 | 807 | __Downloads__: 8,074 | __Repository__: https://github.com/oracle/oci-powershell-modules/ 808 | 809 | ## [OCI.PSModules.Recovery](https://www.powershellgallery.com/Packages/OCI.PSModules.Recovery/120.2.0) | 120.2.0 810 | 811 | ### Published: 12/17/2025 00:40:14 by Oracle Cloud Infrastructure 812 | 813 | This modules provides Cmdlets for OCI Recovery Service 814 | 815 | __Downloads__: 9,480 | __Repository__: https://github.com/oracle/oci-powershell-modules/ 816 | 817 | ## [OCI.PSModules.Queue](https://www.powershellgallery.com/Packages/OCI.PSModules.Queue/120.2.0) | 120.2.0 818 | 819 | ### Published: 12/17/2025 00:40:09 by Oracle Cloud Infrastructure 820 | 821 | This modules provides Cmdlets for OCI Queue Service 822 | 823 | __Downloads__: 9,659 | __Repository__: https://github.com/oracle/oci-powershell-modules/ 824 | 825 | ## [OCI.PSModules.Psql](https://www.powershellgallery.com/Packages/OCI.PSModules.Psql/120.2.0) | 120.2.0 826 | 827 | ### Published: 12/17/2025 00:40:04 by Oracle Cloud Infrastructure 828 | 829 | This modules provides Cmdlets for OCI Psql Service 830 | 831 | __Downloads__: 7,913 | __Repository__: https://github.com/oracle/oci-powershell-modules/ 832 | 833 | ## [OCI.PSModules.Psa](https://www.powershellgallery.com/Packages/OCI.PSModules.Psa/120.2.0) | 120.2.0 834 | 835 | ### Published: 12/17/2025 00:39:58 by Oracle Cloud Infrastructure 836 | 837 | This modules provides Cmdlets for OCI Psa Service 838 | 839 | __Downloads__: 287 | __Repository__: https://github.com/oracle/oci-powershell-modules/ 840 | 841 | ## [OCI.PSModules.Osubusage](https://www.powershellgallery.com/Packages/OCI.PSModules.Osubusage/120.2.0) | 120.2.0 842 | 843 | ### Published: 12/17/2025 00:39:54 by Oracle Cloud Infrastructure 844 | 845 | This modules provides Cmdlets for OCI Osubusage Service 846 | 847 | __Downloads__: 11,352 | __Repository__: https://github.com/oracle/oci-powershell-modules/ 848 | 849 | ## [OCI.PSModules.Osubsubscription](https://www.powershellgallery.com/Packages/OCI.PSModules.Osubsubscription/120.2.0) | 120.2.0 850 | 851 | ### Published: 12/17/2025 00:39:48 by Oracle Cloud Infrastructure 852 | 853 | This modules provides Cmdlets for OCI Osubsubscription Service 854 | 855 | __Downloads__: 11,364 | __Repository__: https://github.com/oracle/oci-powershell-modules/ 856 | 857 | ## [OCI.PSModules.Osuborganizationsubscription](https://www.powershellgallery.com/Packages/OCI.PSModules.Osuborganizationsubscription/120.2.0) | 120.2.0 858 | 859 | ### Published: 12/17/2025 00:39:42 by Oracle Cloud Infrastructure 860 | 861 | This modules provides Cmdlets for OCI Osuborganizationsubscription Service 862 | 863 | __Downloads__: 13,179 | __Repository__: https://github.com/oracle/oci-powershell-modules/ 864 | 865 | ## [OCI.PSModules.Osubbillingschedule](https://www.powershellgallery.com/Packages/OCI.PSModules.Osubbillingschedule/120.2.0) | 120.2.0 866 | 867 | ### Published: 12/17/2025 00:39:37 by Oracle Cloud Infrastructure 868 | 869 | This modules provides Cmdlets for OCI Osubbillingschedule Service 870 | 871 | __Downloads__: 11,386 | __Repository__: https://github.com/oracle/oci-powershell-modules/ 872 | 873 | ## [OCI.PSModules.Ospgateway](https://www.powershellgallery.com/Packages/OCI.PSModules.Ospgateway/120.2.0) | 120.2.0 874 | 875 | ### Published: 12/17/2025 00:39:32 by Oracle Cloud Infrastructure 876 | 877 | This modules provides Cmdlets for OCI Ospgateway Service 878 | 879 | __Downloads__: 11,472 | __Repository__: https://github.com/oracle/oci-powershell-modules/ 880 | 881 | ## [OCI.PSModules.Osmanagementhub](https://www.powershellgallery.com/Packages/OCI.PSModules.Osmanagementhub/120.2.0) | 120.2.0 882 | 883 | ### Published: 12/17/2025 00:39:27 by Oracle Cloud Infrastructure 884 | 885 | This modules provides Cmdlets for OCI Osmanagementhub Service 886 | 887 | __Downloads__: 8,861 | __Repository__: https://github.com/oracle/oci-powershell-modules/ 888 | 889 | ## [OCI.PSModules.Optimizer](https://www.powershellgallery.com/Packages/OCI.PSModules.Optimizer/120.2.0) | 120.2.0 890 | 891 | ### Published: 12/17/2025 00:39:21 by Oracle Cloud Infrastructure 892 | 893 | This modules provides Cmdlets for OCI Optimizer Service 894 | 895 | __Downloads__: 13,288 | __Repository__: https://github.com/oracle/oci-powershell-modules/ 896 | 897 | ## [OCI.PSModules.Opsi](https://www.powershellgallery.com/Packages/OCI.PSModules.Opsi/120.2.0) | 120.2.0 898 | 899 | ### Published: 12/17/2025 00:39:16 by Oracle Cloud Infrastructure 900 | 901 | This modules provides Cmdlets for OCI Opsi Service 902 | 903 | __Downloads__: 13,040 | __Repository__: https://github.com/oracle/oci-powershell-modules/ 904 | 905 | ## [OCI.PSModules.Operatoraccesscontrol](https://www.powershellgallery.com/Packages/OCI.PSModules.Operatoraccesscontrol/120.2.0) | 120.2.0 906 | 907 | ### Published: 12/17/2025 00:39:10 by Oracle Cloud Infrastructure 908 | 909 | This modules provides Cmdlets for OCI Operatoraccesscontrol Service 910 | 911 | __Downloads__: 12,783 | __Repository__: https://github.com/oracle/oci-powershell-modules/ 912 | 913 | ## [OCI.PSModules.Opensearch](https://www.powershellgallery.com/Packages/OCI.PSModules.Opensearch/120.2.0) | 120.2.0 914 | 915 | ### Published: 12/17/2025 00:39:05 by Oracle Cloud Infrastructure 916 | 917 | This modules provides Cmdlets for OCI Opensearch Service 918 | 919 | __Downloads__: 10,578 | __Repository__: https://github.com/oracle/oci-powershell-modules/ 920 | 921 | ## [OCI.PSModules.Opa](https://www.powershellgallery.com/Packages/OCI.PSModules.Opa/120.2.0) | 120.2.0 922 | 923 | ### Published: 12/17/2025 00:39:00 by Oracle Cloud Infrastructure 924 | 925 | This modules provides Cmdlets for OCI Opa Service 926 | 927 | __Downloads__: 10,495 | __Repository__: https://github.com/oracle/oci-powershell-modules/ 928 | 929 | ## [OCI.PSModules.Ons](https://www.powershellgallery.com/Packages/OCI.PSModules.Ons/120.2.0) | 120.2.0 930 | 931 | ### Published: 12/17/2025 00:38:53 by Oracle Cloud Infrastructure 932 | 933 | This modules provides Cmdlets for OCI Ons Service 934 | 935 | __Downloads__: 13,329 | __Repository__: https://github.com/oracle/oci-powershell-modules/ 936 | 937 | ## [OCI.PSModules.Onesubscription](https://www.powershellgallery.com/Packages/OCI.PSModules.Onesubscription/120.2.0) | 120.2.0 938 | 939 | ### Published: 12/17/2025 00:38:46 by Oracle Cloud Infrastructure 940 | 941 | This modules provides Cmdlets for OCI Onesubscription Service 942 | 943 | __Downloads__: 10,681 | __Repository__: https://github.com/oracle/oci-powershell-modules/ 944 | 945 | ## [OCI.PSModules.Oda](https://www.powershellgallery.com/Packages/OCI.PSModules.Oda/120.2.0) | 120.2.0 946 | 947 | ### Published: 12/17/2025 00:38:40 by Oracle Cloud Infrastructure 948 | 949 | This modules provides Cmdlets for OCI Oda Service 950 | 951 | __Downloads__: 13,185 | __Repository__: https://github.com/oracle/oci-powershell-modules/ 952 | 953 | ## [OCI.PSModules.Ocvp](https://www.powershellgallery.com/Packages/OCI.PSModules.Ocvp/120.2.0) | 120.2.0 954 | 955 | ### Published: 12/17/2025 00:38:35 by Oracle Cloud Infrastructure 956 | 957 | This modules provides Cmdlets for OCI Ocvp Service 958 | 959 | __Downloads__: 15,356 | __Repository__: https://github.com/oracle/oci-powershell-modules/ 960 | 961 | ## [OCI.PSModules.Ocicontrolcenter](https://www.powershellgallery.com/Packages/OCI.PSModules.Ocicontrolcenter/120.2.0) | 120.2.0 962 | 963 | ### Published: 12/17/2025 00:37:45 by Oracle Cloud Infrastructure 964 | 965 | This modules provides Cmdlets for OCI Ocicontrolcenter Service 966 | 967 | __Downloads__: 8,946 | __Repository__: https://github.com/oracle/oci-powershell-modules/ 968 | 969 | ## [OCI.PSModules.Oce](https://www.powershellgallery.com/Packages/OCI.PSModules.Oce/120.2.0) | 120.2.0 970 | 971 | ### Published: 12/17/2025 00:37:40 by Oracle Cloud Infrastructure 972 | 973 | This modules provides Cmdlets for OCI Oce Service 974 | 975 | __Downloads__: 13,242 | __Repository__: https://github.com/oracle/oci-powershell-modules/ 976 | 977 | ## [OCI.PSModules.Objectstorage](https://www.powershellgallery.com/Packages/OCI.PSModules.Objectstorage/120.2.0) | 120.2.0 978 | 979 | ### Published: 12/17/2025 00:37:32 by Oracle Cloud Infrastructure 980 | 981 | This modules provides Cmdlets for OCI Objectstorage Service 982 | 983 | __Downloads__: 23,667 | __Repository__: https://github.com/oracle/oci-powershell-modules/ 984 | 985 | ## [OCI.PSModules.Nosql](https://www.powershellgallery.com/Packages/OCI.PSModules.Nosql/120.2.0) | 120.2.0 986 | 987 | ### Published: 12/17/2025 00:37:26 by Oracle Cloud Infrastructure 988 | 989 | This modules provides Cmdlets for OCI Nosql Service 990 | 991 | __Downloads__: 15,604 | __Repository__: https://github.com/oracle/oci-powershell-modules/ 992 | 993 | ## [OCI.PSModules.Networkloadbalancer](https://www.powershellgallery.com/Packages/OCI.PSModules.Networkloadbalancer/120.2.0) | 120.2.0 994 | 995 | ### Published: 12/17/2025 00:37:20 by Oracle Cloud Infrastructure 996 | 997 | This modules provides Cmdlets for OCI Networkloadbalancer Service 998 | 999 | __Downloads__: 12,984 | __Repository__: https://github.com/oracle/oci-powershell-modules/ 1000 | 1001 | ## [OCI.PSModules.Networkfirewall](https://www.powershellgallery.com/Packages/OCI.PSModules.Networkfirewall/120.2.0) | 120.2.0 1002 | 1003 | ### Published: 12/17/2025 00:36:18 by Oracle Cloud Infrastructure 1004 | 1005 | This modules provides Cmdlets for OCI Networkfirewall Service 1006 | 1007 | __Downloads__: 10,725 | __Repository__: https://github.com/oracle/oci-powershell-modules/ 1008 | 1009 | ## [OCI.PSModules.Mysql](https://www.powershellgallery.com/Packages/OCI.PSModules.Mysql/120.2.0) | 120.2.0 1010 | 1011 | ### Published: 12/17/2025 00:36:12 by Oracle Cloud Infrastructure 1012 | 1013 | This modules provides Cmdlets for OCI Mysql Service 1014 | 1015 | __Downloads__: 26,242 | __Repository__: https://github.com/oracle/oci-powershell-modules/ 1016 | 1017 | ## [OCI.PSModules.Multicloud](https://www.powershellgallery.com/Packages/OCI.PSModules.Multicloud/120.2.0) | 120.2.0 1018 | 1019 | ### Published: 12/17/2025 00:36:06 by Oracle Cloud Infrastructure 1020 | 1021 | This modules provides Cmdlets for OCI Multicloud Service 1022 | 1023 | __Downloads__: 881 | __Repository__: https://github.com/oracle/oci-powershell-modules/ 1024 | 1025 | ## [OCI.PSModules.Monitoring](https://www.powershellgallery.com/Packages/OCI.PSModules.Monitoring/120.2.0) | 120.2.0 1026 | 1027 | ### Published: 12/17/2025 00:36:01 by Oracle Cloud Infrastructure 1028 | 1029 | This modules provides Cmdlets for OCI Monitoring Service 1030 | 1031 | __Downloads__: 13,412 | __Repository__: https://github.com/oracle/oci-powershell-modules/ 1032 | 1033 | ## [OCI.PSModules.Modeldeployment](https://www.powershellgallery.com/Packages/OCI.PSModules.Modeldeployment/120.2.0) | 120.2.0 1034 | 1035 | ### Published: 12/17/2025 00:35:55 by Oracle Cloud Infrastructure 1036 | 1037 | This modules provides Cmdlets for OCI Modeldeployment Service 1038 | 1039 | __Downloads__: 1,376 | __Repository__: https://github.com/oracle/oci-powershell-modules/ 1040 | 1041 | ## [OCI.PSModules.Mngdmac](https://www.powershellgallery.com/Packages/OCI.PSModules.Mngdmac/120.2.0) | 120.2.0 1042 | 1043 | ### Published: 12/17/2025 00:35:49 by Oracle Cloud Infrastructure 1044 | 1045 | This modules provides Cmdlets for OCI Mngdmac Service 1046 | 1047 | __Downloads__: 1,793 | __Repository__: https://github.com/oracle/oci-powershell-modules/ 1048 | 1049 | ## [OCI.PSModules.Mediaservices](https://www.powershellgallery.com/Packages/OCI.PSModules.Mediaservices/120.2.0) | 120.2.0 1050 | 1051 | ### Published: 12/17/2025 00:35:43 by Oracle Cloud Infrastructure 1052 | 1053 | This modules provides Cmdlets for OCI Mediaservices Service 1054 | 1055 | __Downloads__: 11,574 | __Repository__: https://github.com/oracle/oci-powershell-modules/ 1056 | 1057 | ## [OCI.PSModules.Marketplacepublisher](https://www.powershellgallery.com/Packages/OCI.PSModules.Marketplacepublisher/120.2.0) | 120.2.0 1058 | 1059 | ### Published: 12/17/2025 00:35:37 by Oracle Cloud Infrastructure 1060 | 1061 | This modules provides Cmdlets for OCI Marketplacepublisher Service 1062 | 1063 | __Downloads__: 8,172 | __Repository__: https://github.com/oracle/oci-powershell-modules/ 1064 | 1065 | ## [OCI.PSModules.Marketplaceprivateoffer](https://www.powershellgallery.com/Packages/OCI.PSModules.Marketplaceprivateoffer/120.2.0) | 120.2.0 1066 | 1067 | ### Published: 12/17/2025 00:35:31 by Oracle Cloud Infrastructure 1068 | 1069 | This modules provides Cmdlets for OCI Marketplaceprivateoffer Service 1070 | 1071 | __Downloads__: 5,839 | __Repository__: https://github.com/oracle/oci-powershell-modules/ 1072 | 1073 | ## [OCI.PSModules.Marketplace](https://www.powershellgallery.com/Packages/OCI.PSModules.Marketplace/120.2.0) | 120.2.0 1074 | 1075 | ### Published: 12/17/2025 00:35:25 by Oracle Cloud Infrastructure 1076 | 1077 | This modules provides Cmdlets for OCI Marketplace Service 1078 | 1079 | __Downloads__: 13,300 | __Repository__: https://github.com/oracle/oci-powershell-modules/ 1080 | 1081 | ## [OCI.PSModules.Managementdashboard](https://www.powershellgallery.com/Packages/OCI.PSModules.Managementdashboard/120.2.0) | 120.2.0 1082 | 1083 | ### Published: 12/17/2025 00:35:17 by Oracle Cloud Infrastructure 1084 | 1085 | This modules provides Cmdlets for OCI Managementdashboard Service 1086 | 1087 | __Downloads__: 15,605 | __Repository__: https://github.com/oracle/oci-powershell-modules/ 1088 | 1089 | ## [OCI.PSModules.Managementagent](https://www.powershellgallery.com/Packages/OCI.PSModules.Managementagent/120.2.0) | 120.2.0 1090 | 1091 | ### Published: 12/17/2025 00:35:11 by Oracle Cloud Infrastructure 1092 | 1093 | This modules provides Cmdlets for OCI Managementagent Service 1094 | 1095 | __Downloads__: 13,210 | __Repository__: https://github.com/oracle/oci-powershell-modules/ 1096 | 1097 | ## [OCI.PSModules.Managedkafka](https://www.powershellgallery.com/Packages/OCI.PSModules.Managedkafka/120.2.0) | 120.2.0 1098 | 1099 | ### Published: 12/17/2025 00:33:26 by Oracle Cloud Infrastructure 1100 | 1101 | This modules provides Cmdlets for OCI Managedkafka Service 1102 | 1103 | __Downloads__: 809 | __Repository__: https://github.com/oracle/oci-powershell-modules/ 1104 | 1105 | ## [OCI.PSModules.Lustrefilestorage](https://www.powershellgallery.com/Packages/OCI.PSModules.Lustrefilestorage/120.2.0) | 120.2.0 1106 | 1107 | ### Published: 12/17/2025 00:33:21 by Oracle Cloud Infrastructure 1108 | 1109 | This modules provides Cmdlets for OCI Lustrefilestorage Service 1110 | 1111 | __Downloads__: 1,675 | __Repository__: https://github.com/oracle/oci-powershell-modules/ 1112 | 1113 | ## [OCI.PSModules.Loggingsearch](https://www.powershellgallery.com/Packages/OCI.PSModules.Loggingsearch/120.2.0) | 120.2.0 1114 | 1115 | ### Published: 12/17/2025 00:33:17 by Oracle Cloud Infrastructure 1116 | 1117 | This modules provides Cmdlets for OCI Loggingsearch Service 1118 | 1119 | __Downloads__: 13,247 | __Repository__: https://github.com/oracle/oci-powershell-modules/ 1120 | 1121 | ## [OCI.PSModules.Loggingingestion](https://www.powershellgallery.com/Packages/OCI.PSModules.Loggingingestion/120.2.0) | 120.2.0 1122 | 1123 | ### Published: 12/17/2025 00:33:11 by Oracle Cloud Infrastructure 1124 | 1125 | This modules provides Cmdlets for OCI Loggingingestion Service 1126 | 1127 | __Downloads__: 13,511 | __Repository__: https://github.com/oracle/oci-powershell-modules/ 1128 | 1129 | ## [OCI.PSModules.Logging](https://www.powershellgallery.com/Packages/OCI.PSModules.Logging/120.2.0) | 120.2.0 1130 | 1131 | ### Published: 12/17/2025 00:33:06 by Oracle Cloud Infrastructure 1132 | 1133 | This modules provides Cmdlets for OCI Logging Service 1134 | 1135 | __Downloads__: 13,560 | __Repository__: https://github.com/oracle/oci-powershell-modules/ 1136 | 1137 | ## [OCI.PSModules.Loganalytics](https://www.powershellgallery.com/Packages/OCI.PSModules.Loganalytics/120.2.0) | 120.2.0 1138 | 1139 | ### Published: 12/17/2025 00:33:00 by Oracle Cloud Infrastructure 1140 | 1141 | This modules provides Cmdlets for OCI Loganalytics Service 1142 | 1143 | __Downloads__: 15,570 | __Repository__: https://github.com/oracle/oci-powershell-modules/ 1144 | 1145 | ## [OCI.PSModules.Lockbox](https://www.powershellgallery.com/Packages/OCI.PSModules.Lockbox/120.2.0) | 120.2.0 1146 | 1147 | ### Published: 12/17/2025 00:32:54 by Oracle Cloud Infrastructure 1148 | 1149 | This modules provides Cmdlets for OCI Lockbox Service 1150 | 1151 | __Downloads__: 10,613 | __Repository__: https://github.com/oracle/oci-powershell-modules/ 1152 | 1153 | ## [OCI.PSModules.Loadbalancer](https://www.powershellgallery.com/Packages/OCI.PSModules.Loadbalancer/120.2.0) | 120.2.0 1154 | 1155 | ### Published: 12/17/2025 00:32:48 by Oracle Cloud Infrastructure 1156 | 1157 | This modules provides Cmdlets for OCI Loadbalancer Service 1158 | 1159 | __Downloads__: 13,552 | __Repository__: https://github.com/oracle/oci-powershell-modules/ 1160 | 1161 | ## [PPDS.Tools](https://www.powershellgallery.com/Packages/PPDS.Tools/1.1.0) | 1.1.0 1162 | 1163 | ### Published: 12/17/2025 00:32:43 by Josh Smith 1164 | 1165 | PowerShell tools for Dataverse plugin deployment, drift detection, and CI/CD automation. Part of the Power Platform Developer Suite. 1166 | 1167 | __Downloads__: 15 | __Repository__: https://github.com/joshsmithxrm/ppds-tools 1168 | 1169 | ## [OCI.PSModules.Limits](https://www.powershellgallery.com/Packages/OCI.PSModules.Limits/120.2.0) | 120.2.0 1170 | 1171 | ### Published: 12/17/2025 00:32:43 by Oracle Cloud Infrastructure 1172 | 1173 | This modules provides Cmdlets for OCI Limits Service 1174 | 1175 | __Downloads__: 13,709 | __Repository__: https://github.com/oracle/oci-powershell-modules/ 1176 | 1177 | ## [OCI.PSModules.Licensemanager](https://www.powershellgallery.com/Packages/OCI.PSModules.Licensemanager/120.2.0) | 120.2.0 1178 | 1179 | ### Published: 12/17/2025 00:32:37 by Oracle Cloud Infrastructure 1180 | 1181 | This modules provides Cmdlets for OCI Licensemanager Service 1182 | 1183 | __Downloads__: 10,837 | __Repository__: https://github.com/oracle/oci-powershell-modules/ 1184 | 1185 | ## [OCI.PSModules.Keymanagement](https://www.powershellgallery.com/Packages/OCI.PSModules.Keymanagement/120.2.0) | 120.2.0 1186 | 1187 | ### Published: 12/17/2025 00:31:54 by Oracle Cloud Infrastructure 1188 | 1189 | This modules provides Cmdlets for OCI Keymanagement Service 1190 | 1191 | __Downloads__: 13,481 | __Repository__: https://github.com/oracle/oci-powershell-modules/ 1192 | 1193 | ## [OCI.PSModules.Jmsutils](https://www.powershellgallery.com/Packages/OCI.PSModules.Jmsutils/120.2.0) | 120.2.0 1194 | 1195 | ### Published: 12/17/2025 00:31:48 by Oracle Cloud Infrastructure 1196 | 1197 | This modules provides Cmdlets for OCI Jmsutils Service 1198 | 1199 | __Downloads__: 555 | __Repository__: https://github.com/oracle/oci-powershell-modules/ 1200 | 1201 | ## [OCI.PSModules.Jmsjavadownloads](https://www.powershellgallery.com/Packages/OCI.PSModules.Jmsjavadownloads/120.2.0) | 120.2.0 1202 | 1203 | ### Published: 12/17/2025 00:31:43 by Oracle Cloud Infrastructure 1204 | 1205 | This modules provides Cmdlets for OCI Jmsjavadownloads Service 1206 | 1207 | __Downloads__: 8,089 | __Repository__: https://github.com/oracle/oci-powershell-modules/ 1208 | 1209 | ## [OCI.PSModules.Jms](https://www.powershellgallery.com/Packages/OCI.PSModules.Jms/120.2.0) | 120.2.0 1210 | 1211 | ### Published: 12/17/2025 00:31:38 by Oracle Cloud Infrastructure 1212 | 1213 | This modules provides Cmdlets for OCI Jms Service 1214 | 1215 | __Downloads__: 12,481 | __Repository__: https://github.com/oracle/oci-powershell-modules/ 1216 | 1217 | ## [OCI.PSModules.Iot](https://www.powershellgallery.com/Packages/OCI.PSModules.Iot/120.2.0) | 120.2.0 1218 | 1219 | ### Published: 12/17/2025 00:31:33 by Oracle Cloud Infrastructure 1220 | 1221 | This modules provides Cmdlets for OCI Iot Service 1222 | 1223 | __Downloads__: 453 | __Repository__: https://github.com/oracle/oci-powershell-modules/ 1224 | 1225 | ## [OCI.PSModules.Integration](https://www.powershellgallery.com/Packages/OCI.PSModules.Integration/120.2.0) | 120.2.0 1226 | 1227 | ### Published: 12/17/2025 00:31:28 by Oracle Cloud Infrastructure 1228 | 1229 | This modules provides Cmdlets for OCI Integration Service 1230 | 1231 | __Downloads__: 13,268 | __Repository__: https://github.com/oracle/oci-powershell-modules/ 1232 | 1233 | ## [OCI.PSModules.Identitydomains](https://www.powershellgallery.com/Packages/OCI.PSModules.Identitydomains/120.2.0) | 120.2.0 1234 | 1235 | ### Published: 12/17/2025 00:31:23 by Oracle Cloud Infrastructure 1236 | 1237 | This modules provides Cmdlets for OCI Identitydomains Service 1238 | 1239 | __Downloads__: 9,482 | __Repository__: https://github.com/oracle/oci-powershell-modules/ 1240 | 1241 | ## [OCI.PSModules.Identitydataplane](https://www.powershellgallery.com/Packages/OCI.PSModules.Identitydataplane/120.2.0) | 120.2.0 1242 | 1243 | ### Published: 12/17/2025 00:31:17 by Oracle Cloud Infrastructure 1244 | 1245 | This modules provides Cmdlets for OCI Identitydataplane Service 1246 | 1247 | __Downloads__: 11,601 | __Repository__: https://github.com/oracle/oci-powershell-modules/ 1248 | 1249 | ## [OCI.PSModules.Identity](https://www.powershellgallery.com/Packages/OCI.PSModules.Identity/120.2.0) | 120.2.0 1250 | 1251 | ### Published: 12/17/2025 00:31:11 by Oracle Cloud Infrastructure 1252 | 1253 | This modules provides Cmdlets for OCI Identity Service 1254 | 1255 | __Downloads__: 24,224 | __Repository__: https://github.com/oracle/oci-powershell-modules/ 1256 | 1257 | ## [OCI.PSModules.Healthchecks](https://www.powershellgallery.com/Packages/OCI.PSModules.Healthchecks/120.2.0) | 120.2.0 1258 | 1259 | ### Published: 12/17/2025 00:31:05 by Oracle Cloud Infrastructure 1260 | 1261 | This modules provides Cmdlets for OCI Healthchecks Service 1262 | 1263 | __Downloads__: 27,890 | __Repository__: https://github.com/oracle/oci-powershell-modules/ 1264 | 1265 | ## [OCI.PSModules.Governancerulescontrolplane](https://www.powershellgallery.com/Packages/OCI.PSModules.Governancerulescontrolplane/120.2.0) | 120.2.0 1266 | 1267 | ### Published: 12/17/2025 00:30:59 by Oracle Cloud Infrastructure 1268 | 1269 | This modules provides Cmdlets for OCI Governancerulescontrolplane Service 1270 | 1271 | __Downloads__: 10,862 | __Repository__: https://github.com/oracle/oci-powershell-modules/ 1272 | 1273 | ## [OCI.PSModules.Goldengate](https://www.powershellgallery.com/Packages/OCI.PSModules.Goldengate/120.2.0) | 120.2.0 1274 | 1275 | ### Published: 12/17/2025 00:30:54 by Oracle Cloud Infrastructure 1276 | 1277 | This modules provides Cmdlets for OCI Goldengate Service 1278 | 1279 | __Downloads__: 12,949 | __Repository__: https://github.com/oracle/oci-powershell-modules/ 1280 | 1281 | ## [OCI.PSModules.Globallydistributeddatabase](https://www.powershellgallery.com/Packages/OCI.PSModules.Globallydistributeddatabase/120.2.0) | 120.2.0 1282 | 1283 | ### Published: 12/17/2025 00:30:48 by Oracle Cloud Infrastructure 1284 | 1285 | This modules provides Cmdlets for OCI Globallydistributeddatabase Service 1286 | 1287 | __Downloads__: 7,456 | __Repository__: https://github.com/oracle/oci-powershell-modules/ 1288 | 1289 | ## [OCI.PSModules.Genericartifactscontent](https://www.powershellgallery.com/Packages/OCI.PSModules.Genericartifactscontent/120.2.0) | 120.2.0 1290 | 1291 | ### Published: 12/17/2025 00:30:42 by Oracle Cloud Infrastructure 1292 | 1293 | This modules provides Cmdlets for OCI Genericartifactscontent Service 1294 | 1295 | __Downloads__: 12,571 | __Repository__: https://github.com/oracle/oci-powershell-modules/ 1296 | 1297 | ## [OCI.PSModules.Generativeaiinference](https://www.powershellgallery.com/Packages/OCI.PSModules.Generativeaiinference/120.2.0) | 120.2.0 1298 | 1299 | ### Published: 12/17/2025 00:30:35 by Oracle Cloud Infrastructure 1300 | 1301 | This modules provides Cmdlets for OCI Generativeaiinference Service 1302 | 1303 | __Downloads__: 7,553 | __Repository__: https://github.com/oracle/oci-powershell-modules/ 1304 | 1305 | ## [OCI.PSModules.Generativeaiagentruntime](https://www.powershellgallery.com/Packages/OCI.PSModules.Generativeaiagentruntime/120.2.0) | 120.2.0 1306 | 1307 | ### Published: 12/17/2025 00:30:30 by Oracle Cloud Infrastructure 1308 | 1309 | This modules provides Cmdlets for OCI Generativeaiagentruntime Service 1310 | 1311 | __Downloads__: 2,786 | __Repository__: https://github.com/oracle/oci-powershell-modules/ 1312 | 1313 | ## [OCI.PSModules.Generativeaiagent](https://www.powershellgallery.com/Packages/OCI.PSModules.Generativeaiagent/120.2.0) | 120.2.0 1314 | 1315 | ### Published: 12/17/2025 00:30:25 by Oracle Cloud Infrastructure 1316 | 1317 | This modules provides Cmdlets for OCI Generativeaiagent Service 1318 | 1319 | __Downloads__: 2,788 | __Repository__: https://github.com/oracle/oci-powershell-modules/ 1320 | 1321 | ## [OCI.PSModules.Generativeai](https://www.powershellgallery.com/Packages/OCI.PSModules.Generativeai/120.2.0) | 120.2.0 1322 | 1323 | ### Published: 12/17/2025 00:30:19 by Oracle Cloud Infrastructure 1324 | 1325 | This modules provides Cmdlets for OCI Generativeai Service 1326 | 1327 | __Downloads__: 7,559 | __Repository__: https://github.com/oracle/oci-powershell-modules/ 1328 | 1329 | ## [OCI.PSModules.Fusionapps](https://www.powershellgallery.com/Packages/OCI.PSModules.Fusionapps/120.2.0) | 120.2.0 1330 | 1331 | ### Published: 12/17/2025 00:30:13 by Oracle Cloud Infrastructure 1332 | 1333 | This modules provides Cmdlets for OCI Fusionapps Service 1334 | 1335 | __Downloads__: 10,643 | __Repository__: https://github.com/oracle/oci-powershell-modules/ 1336 | 1337 | ## [OCI.PSModules.Functions](https://www.powershellgallery.com/Packages/OCI.PSModules.Functions/120.2.0) | 120.2.0 1338 | 1339 | ### Published: 12/17/2025 00:30:07 by Oracle Cloud Infrastructure 1340 | 1341 | This modules provides Cmdlets for OCI Functions Service 1342 | 1343 | __Downloads__: 13,289 | __Repository__: https://github.com/oracle/oci-powershell-modules/ 1344 | 1345 | ## [OCI.PSModules.Fleetsoftwareupdate](https://www.powershellgallery.com/Packages/OCI.PSModules.Fleetsoftwareupdate/120.2.0) | 120.2.0 1346 | 1347 | ### Published: 12/17/2025 00:30:01 by Oracle Cloud Infrastructure 1348 | 1349 | This modules provides Cmdlets for OCI Fleetsoftwareupdate Service 1350 | 1351 | __Downloads__: 8,792 | __Repository__: https://github.com/oracle/oci-powershell-modules/ 1352 | 1353 | ## [OCI.PSModules.Fleetappsmanagement](https://www.powershellgallery.com/Packages/OCI.PSModules.Fleetappsmanagement/120.2.0) | 120.2.0 1354 | 1355 | ### Published: 12/17/2025 00:29:55 by Oracle Cloud Infrastructure 1356 | 1357 | This modules provides Cmdlets for OCI Fleetappsmanagement Service 1358 | 1359 | __Downloads__: 3,471 | __Repository__: https://github.com/oracle/oci-powershell-modules/ 1360 | 1361 | ## [OCI.PSModules.Filestorage](https://www.powershellgallery.com/Packages/OCI.PSModules.Filestorage/120.2.0) | 120.2.0 1362 | 1363 | ### Published: 12/17/2025 00:29:49 by Oracle Cloud Infrastructure 1364 | 1365 | This modules provides Cmdlets for OCI Filestorage Service 1366 | 1367 | __Downloads__: 16,112 | __Repository__: https://github.com/oracle/oci-powershell-modules/ 1368 | 1369 | ## [OCI.PSModules.Events](https://www.powershellgallery.com/Packages/OCI.PSModules.Events/120.2.0) | 120.2.0 1370 | 1371 | ### Published: 12/17/2025 00:29:43 by Oracle Cloud Infrastructure 1372 | 1373 | This modules provides Cmdlets for OCI Events Service 1374 | 1375 | __Downloads__: 13,413 | __Repository__: https://github.com/oracle/oci-powershell-modules/ 1376 | 1377 | ## [OCI.PSModules.Emwarehouse](https://www.powershellgallery.com/Packages/OCI.PSModules.Emwarehouse/120.2.0) | 120.2.0 1378 | 1379 | ### Published: 12/17/2025 00:29:38 by Oracle Cloud Infrastructure 1380 | 1381 | This modules provides Cmdlets for OCI Emwarehouse Service 1382 | 1383 | __Downloads__: 10,767 | __Repository__: https://github.com/oracle/oci-powershell-modules/ 1384 | 1385 | ## [OCI.PSModules.Emaildataplane](https://www.powershellgallery.com/Packages/OCI.PSModules.Emaildataplane/120.2.0) | 120.2.0 1386 | 1387 | ### Published: 12/17/2025 00:29:32 by Oracle Cloud Infrastructure 1388 | 1389 | This modules provides Cmdlets for OCI Emaildataplane Service 1390 | 1391 | __Downloads__: 6,344 | __Repository__: https://github.com/oracle/oci-powershell-modules/ 1392 | 1393 | ## [OCI.PSModules.Email](https://www.powershellgallery.com/Packages/OCI.PSModules.Email/120.2.0) | 120.2.0 1394 | 1395 | ### Published: 12/17/2025 00:29:27 by Oracle Cloud Infrastructure 1396 | 1397 | This modules provides Cmdlets for OCI Email Service 1398 | 1399 | __Downloads__: 13,332 | __Repository__: https://github.com/oracle/oci-powershell-modules/ 1400 | 1401 | ## [OCI.PSModules.Dns](https://www.powershellgallery.com/Packages/OCI.PSModules.Dns/120.2.0) | 120.2.0 1402 | 1403 | ### Published: 12/17/2025 00:29:21 by Oracle Cloud Infrastructure 1404 | 1405 | This modules provides Cmdlets for OCI Dns Service 1406 | 1407 | __Downloads__: 13,401 | __Repository__: https://github.com/oracle/oci-powershell-modules/ 1408 | 1409 | ## [OCI.PSModules.Distributeddatabase](https://www.powershellgallery.com/Packages/OCI.PSModules.Distributeddatabase/120.2.0) | 120.2.0 1410 | 1411 | ### Published: 12/17/2025 00:29:15 by Oracle Cloud Infrastructure 1412 | 1413 | This modules provides Cmdlets for OCI Distributeddatabase Service 1414 | 1415 | __Downloads__: 1,301 | __Repository__: https://github.com/oracle/oci-powershell-modules/ 1416 | 1417 | ## [OCI.PSModules.Disasterrecovery](https://www.powershellgallery.com/Packages/OCI.PSModules.Disasterrecovery/120.2.0) | 120.2.0 1418 | 1419 | ### Published: 12/17/2025 00:29:10 by Oracle Cloud Infrastructure 1420 | 1421 | This modules provides Cmdlets for OCI Disasterrecovery Service 1422 | 1423 | __Downloads__: 10,201 | __Repository__: https://github.com/oracle/oci-powershell-modules/ 1424 | 1425 | ## [OCI.PSModules.Dif](https://www.powershellgallery.com/Packages/OCI.PSModules.Dif/120.2.0) | 120.2.0 1426 | 1427 | ### Published: 12/17/2025 00:29:04 by Oracle Cloud Infrastructure 1428 | 1429 | This modules provides Cmdlets for OCI Dif Service 1430 | 1431 | __Downloads__: 296 | __Repository__: https://github.com/oracle/oci-powershell-modules/ 1432 | 1433 | ## [OCI.PSModules.Devops](https://www.powershellgallery.com/Packages/OCI.PSModules.Devops/120.2.0) | 120.2.0 1434 | 1435 | ### Published: 12/17/2025 00:29:00 by Oracle Cloud Infrastructure 1436 | 1437 | This modules provides Cmdlets for OCI Devops Service 1438 | 1439 | __Downloads__: 12,335 | __Repository__: https://github.com/oracle/oci-powershell-modules/ 1440 | 1441 | ## [OCI.PSModules.Desktops](https://www.powershellgallery.com/Packages/OCI.PSModules.Desktops/120.2.0) | 120.2.0 1442 | 1443 | ### Published: 12/17/2025 00:28:54 by Oracle Cloud Infrastructure 1444 | 1445 | This modules provides Cmdlets for OCI Desktops Service 1446 | 1447 | __Downloads__: 7,095 | __Repository__: https://github.com/oracle/oci-powershell-modules/ 1448 | 1449 | ## [OCI.PSModules.Demandsignal](https://www.powershellgallery.com/Packages/OCI.PSModules.Demandsignal/120.2.0) | 120.2.0 1450 | 1451 | ### Published: 12/17/2025 00:28:49 by Oracle Cloud Infrastructure 1452 | 1453 | This modules provides Cmdlets for OCI Demandsignal Service 1454 | 1455 | __Downloads__: 5,710 | __Repository__: https://github.com/oracle/oci-powershell-modules/ 1456 | 1457 | ## [OCI.PSModules.Delegateaccesscontrol](https://www.powershellgallery.com/Packages/OCI.PSModules.Delegateaccesscontrol/120.2.0) | 120.2.0 1458 | 1459 | ### Published: 12/17/2025 00:28:44 by Oracle Cloud Infrastructure 1460 | 1461 | This modules provides Cmdlets for OCI Delegateaccesscontrol Service 1462 | 1463 | __Downloads__: 3,296 | __Repository__: https://github.com/oracle/oci-powershell-modules/ 1464 | 1465 | ## [OCI.PSModules.Dbmulticloud](https://www.powershellgallery.com/Packages/OCI.PSModules.Dbmulticloud/120.2.0) | 120.2.0 1466 | 1467 | ### Published: 12/17/2025 00:28:39 by Oracle Cloud Infrastructure 1468 | 1469 | This modules provides Cmdlets for OCI Dbmulticloud Service 1470 | 1471 | __Downloads__: 1,113 | __Repository__: https://github.com/oracle/oci-powershell-modules/ 1472 | 1473 | ## [OCI.PSModules.Dblm](https://www.powershellgallery.com/Packages/OCI.PSModules.Dblm/120.2.0) | 120.2.0 1474 | 1475 | ### Published: 12/17/2025 00:28:34 by Oracle Cloud Infrastructure 1476 | 1477 | This modules provides Cmdlets for OCI Dblm Service 1478 | 1479 | __Downloads__: 1,930 | __Repository__: https://github.com/oracle/oci-powershell-modules/ 1480 | 1481 | ## [OCI.PSModules.Datascience](https://www.powershellgallery.com/Packages/OCI.PSModules.Datascience/120.2.0) | 120.2.0 1482 | 1483 | ### Published: 12/17/2025 00:28:30 by Oracle Cloud Infrastructure 1484 | 1485 | This modules provides Cmdlets for OCI Datascience Service 1486 | 1487 | __Downloads__: 14,657 | __Repository__: https://github.com/oracle/oci-powershell-modules/ 1488 | 1489 | ## [OCI.PSModules.Datasafe](https://www.powershellgallery.com/Packages/OCI.PSModules.Datasafe/120.2.0) | 120.2.0 1490 | 1491 | ### Published: 12/17/2025 00:28:24 by Oracle Cloud Infrastructure 1492 | 1493 | This modules provides Cmdlets for OCI Datasafe Service 1494 | 1495 | __Downloads__: 18,470 | __Repository__: https://github.com/oracle/oci-powershell-modules/ 1496 | 1497 | ## [OCI.PSModules.Datalabelingservicedataplane](https://www.powershellgallery.com/Packages/OCI.PSModules.Datalabelingservicedataplane/120.2.0) | 120.2.0 1498 | 1499 | ### Published: 12/17/2025 00:28:18 by Oracle Cloud Infrastructure 1500 | 1501 | This modules provides Cmdlets for OCI Datalabelingservicedataplane Service 1502 | 1503 | __Downloads__: 12,056 | __Repository__: https://github.com/oracle/oci-powershell-modules/ 1504 | 1505 | ## [OCI.PSModules.Datalabelingservice](https://www.powershellgallery.com/Packages/OCI.PSModules.Datalabelingservice/120.2.0) | 120.2.0 1506 | 1507 | ### Published: 12/17/2025 00:28:12 by Oracle Cloud Infrastructure 1508 | 1509 | This modules provides Cmdlets for OCI Datalabelingservice Service 1510 | 1511 | __Downloads__: 12,044 | __Repository__: https://github.com/oracle/oci-powershell-modules/ 1512 | 1513 | ## [OCI.PSModules.Dataintegration](https://www.powershellgallery.com/Packages/OCI.PSModules.Dataintegration/120.2.0) | 120.2.0 1514 | 1515 | ### Published: 12/17/2025 00:28:07 by Oracle Cloud Infrastructure 1516 | 1517 | This modules provides Cmdlets for OCI Dataintegration Service 1518 | 1519 | __Downloads__: 13,670 | __Repository__: https://github.com/oracle/oci-powershell-modules/ 1520 | 1521 | ## [OCI.PSModules.Dataflow](https://www.powershellgallery.com/Packages/OCI.PSModules.Dataflow/120.2.0) | 120.2.0 1522 | 1523 | ### Published: 12/17/2025 00:28:01 by Oracle Cloud Infrastructure 1524 | 1525 | This modules provides Cmdlets for OCI Dataflow Service 1526 | 1527 | __Downloads__: 18,034 | __Repository__: https://github.com/oracle/oci-powershell-modules/ 1528 | 1529 | ## [OCI.PSModules.Datacatalog](https://www.powershellgallery.com/Packages/OCI.PSModules.Datacatalog/120.2.0) | 120.2.0 1530 | 1531 | ### Published: 12/17/2025 00:27:56 by Oracle Cloud Infrastructure 1532 | 1533 | This modules provides Cmdlets for OCI Datacatalog Service 1534 | 1535 | __Downloads__: 13,650 | __Repository__: https://github.com/oracle/oci-powershell-modules/ 1536 | 1537 | ## [OCI.PSModules.Databasetools](https://www.powershellgallery.com/Packages/OCI.PSModules.Databasetools/120.2.0) | 120.2.0 1538 | 1539 | ### Published: 12/17/2025 00:27:50 by Oracle Cloud Infrastructure 1540 | 1541 | This modules provides Cmdlets for OCI Databasetools Service 1542 | 1543 | __Downloads__: 12,067 | __Repository__: https://github.com/oracle/oci-powershell-modules/ 1544 | 1545 | ## [OCI.PSModules.Databasemigration](https://www.powershellgallery.com/Packages/OCI.PSModules.Databasemigration/120.2.0) | 120.2.0 1546 | 1547 | ### Published: 12/17/2025 00:27:45 by Oracle Cloud Infrastructure 1548 | 1549 | This modules provides Cmdlets for OCI Databasemigration Service 1550 | 1551 | __Downloads__: 12,703 | __Repository__: https://github.com/oracle/oci-powershell-modules/ 1552 | 1553 | ## [OCI.PSModules.Databasemanagement](https://www.powershellgallery.com/Packages/OCI.PSModules.Databasemanagement/120.2.0) | 120.2.0 1554 | 1555 | ### Published: 12/17/2025 00:27:40 by Oracle Cloud Infrastructure 1556 | 1557 | This modules provides Cmdlets for OCI Databasemanagement Service 1558 | 1559 | __Downloads__: 13,106 | __Repository__: https://github.com/oracle/oci-powershell-modules/ 1560 | 1561 | ## [OCI.PSModules.Database](https://www.powershellgallery.com/Packages/OCI.PSModules.Database/120.2.0) | 120.2.0 1562 | 1563 | ### Published: 12/17/2025 00:27:33 by Oracle Cloud Infrastructure 1564 | 1565 | This modules provides Cmdlets for OCI Database Service 1566 | 1567 | __Downloads__: 51,566 | __Repository__: https://github.com/oracle/oci-powershell-modules/ 1568 | 1569 | ## [OCI.PSModules.Dashboardservice](https://www.powershellgallery.com/Packages/OCI.PSModules.Dashboardservice/120.2.0) | 120.2.0 1570 | 1571 | ### Published: 12/17/2025 00:27:27 by Oracle Cloud Infrastructure 1572 | 1573 | This modules provides Cmdlets for OCI Dashboardservice Service 1574 | 1575 | __Downloads__: 12,030 | __Repository__: https://github.com/oracle/oci-powershell-modules/ 1576 | 1577 | ## [OCI.PSModules.Core](https://www.powershellgallery.com/Packages/OCI.PSModules.Core/120.2.0) | 120.2.0 1578 | 1579 | ### Published: 12/17/2025 00:27:21 by Oracle Cloud Infrastructure 1580 | 1581 | This modules provides Cmdlets for OCI Core Service 1582 | 1583 | __Downloads__: 26,246 | __Repository__: https://github.com/oracle/oci-powershell-modules/ 1584 | 1585 | ## [OCI.PSModules.Containerinstances](https://www.powershellgallery.com/Packages/OCI.PSModules.Containerinstances/120.2.0) | 120.2.0 1586 | 1587 | ### Published: 12/17/2025 00:27:15 by Oracle Cloud Infrastructure 1588 | 1589 | This modules provides Cmdlets for OCI Containerinstances Service 1590 | 1591 | __Downloads__: 9,856 | __Repository__: https://github.com/oracle/oci-powershell-modules/ 1592 | 1593 | ## [OCI.PSModules.Containerengine](https://www.powershellgallery.com/Packages/OCI.PSModules.Containerengine/120.2.0) | 120.2.0 1594 | 1595 | ### Published: 12/17/2025 00:27:10 by Oracle Cloud Infrastructure 1596 | 1597 | This modules provides Cmdlets for OCI Containerengine Service 1598 | 1599 | __Downloads__: 13,390 | __Repository__: https://github.com/oracle/oci-powershell-modules/ 1600 | 1601 | ## [OCI.PSModules.Computeinstanceagent](https://www.powershellgallery.com/Packages/OCI.PSModules.Computeinstanceagent/120.2.0) | 120.2.0 1602 | 1603 | ### Published: 12/17/2025 00:27:04 by Oracle Cloud Infrastructure 1604 | 1605 | This modules provides Cmdlets for OCI Computeinstanceagent Service 1606 | 1607 | __Downloads__: 13,586 | __Repository__: https://github.com/oracle/oci-powershell-modules/ 1608 | 1609 | ## [OCI.PSModules.Computecloudatcustomer](https://www.powershellgallery.com/Packages/OCI.PSModules.Computecloudatcustomer/120.2.0) | 120.2.0 1610 | 1611 | ### Published: 12/17/2025 00:26:59 by Oracle Cloud Infrastructure 1612 | 1613 | This modules provides Cmdlets for OCI Computecloudatcustomer Service 1614 | 1615 | __Downloads__: 8,679 | __Repository__: https://github.com/oracle/oci-powershell-modules/ 1616 | 1617 | ## [OCI.PSModules.Clusterplacementgroups](https://www.powershellgallery.com/Packages/OCI.PSModules.Clusterplacementgroups/120.2.0) | 120.2.0 1618 | 1619 | ### Published: 12/17/2025 00:26:54 by Oracle Cloud Infrastructure 1620 | 1621 | This modules provides Cmdlets for OCI Clusterplacementgroups Service 1622 | 1623 | __Downloads__: 6,195 | __Repository__: https://github.com/oracle/oci-powershell-modules/ 1624 | 1625 | ## [OCI.PSModules.Cloudmigrations](https://www.powershellgallery.com/Packages/OCI.PSModules.Cloudmigrations/120.2.0) | 120.2.0 1626 | 1627 | ### Published: 12/17/2025 00:26:48 by Oracle Cloud Infrastructure 1628 | 1629 | This modules provides Cmdlets for OCI Cloudmigrations Service 1630 | 1631 | __Downloads__: 10,364 | __Repository__: https://github.com/oracle/oci-powershell-modules/ 1632 | 1633 | ## [OCI.PSModules.Cloudguard](https://www.powershellgallery.com/Packages/OCI.PSModules.Cloudguard/120.2.0) | 120.2.0 1634 | 1635 | ### Published: 12/17/2025 00:26:42 by Oracle Cloud Infrastructure 1636 | 1637 | This modules provides Cmdlets for OCI Cloudguard Service 1638 | 1639 | __Downloads__: 13,318 | __Repository__: https://github.com/oracle/oci-powershell-modules/ 1640 | 1641 | ## [OCI.PSModules.Cloudbridge](https://www.powershellgallery.com/Packages/OCI.PSModules.Cloudbridge/120.2.0) | 120.2.0 1642 | 1643 | ### Published: 12/17/2025 00:26:35 by Oracle Cloud Infrastructure 1644 | 1645 | This modules provides Cmdlets for OCI Cloudbridge Service 1646 | 1647 | __Downloads__: 10,371 | __Repository__: https://github.com/oracle/oci-powershell-modules/ 1648 | 1649 | ## [OCI.PSModules.Cims](https://www.powershellgallery.com/Packages/OCI.PSModules.Cims/120.2.0) | 120.2.0 1650 | 1651 | ### Published: 12/17/2025 00:26:30 by Oracle Cloud Infrastructure 1652 | 1653 | This modules provides Cmdlets for OCI Cims Service 1654 | 1655 | __Downloads__: 13,588 | __Repository__: https://github.com/oracle/oci-powershell-modules/ 1656 | 1657 | ## [OCI.PSModules.Certificatesmanagement](https://www.powershellgallery.com/Packages/OCI.PSModules.Certificatesmanagement/120.2.0) | 120.2.0 1658 | 1659 | ### Published: 12/17/2025 00:26:24 by Oracle Cloud Infrastructure 1660 | 1661 | This modules provides Cmdlets for OCI Certificatesmanagement Service 1662 | 1663 | __Downloads__: 12,411 | __Repository__: https://github.com/oracle/oci-powershell-modules/ 1664 | 1665 | ## [OCI.PSModules.Certificates](https://www.powershellgallery.com/Packages/OCI.PSModules.Certificates/120.2.0) | 120.2.0 1666 | 1667 | ### Published: 12/17/2025 00:26:19 by Oracle Cloud Infrastructure 1668 | 1669 | This modules provides Cmdlets for OCI Certificates Service 1670 | 1671 | __Downloads__: 12,265 | __Repository__: https://github.com/oracle/oci-powershell-modules/ 1672 | 1673 | ## [OCI.PSModules.Capacitymanagement](https://www.powershellgallery.com/Packages/OCI.PSModules.Capacitymanagement/120.2.0) | 120.2.0 1674 | 1675 | ### Published: 12/17/2025 00:26:14 by Oracle Cloud Infrastructure 1676 | 1677 | This modules provides Cmdlets for OCI Capacitymanagement Service 1678 | 1679 | __Downloads__: 7,797 | __Repository__: https://github.com/oracle/oci-powershell-modules/ 1680 | 1681 | ## [OCI.PSModules.Budget](https://www.powershellgallery.com/Packages/OCI.PSModules.Budget/120.2.0) | 120.2.0 1682 | 1683 | ### Published: 12/17/2025 00:26:08 by Oracle Cloud Infrastructure 1684 | 1685 | This modules provides Cmdlets for OCI Budget Service 1686 | 1687 | __Downloads__: 13,616 | __Repository__: https://github.com/oracle/oci-powershell-modules/ 1688 | 1689 | ## [OCI.PSModules.Blockchain](https://www.powershellgallery.com/Packages/OCI.PSModules.Blockchain/120.2.0) | 120.2.0 1690 | 1691 | ### Published: 12/17/2025 00:26:03 by Oracle Cloud Infrastructure 1692 | 1693 | This modules provides Cmdlets for OCI Blockchain Service 1694 | 1695 | __Downloads__: 13,642 | __Repository__: https://github.com/oracle/oci-powershell-modules/ 1696 | 1697 | ## [OCI.PSModules.Bds](https://www.powershellgallery.com/Packages/OCI.PSModules.Bds/120.2.0) | 120.2.0 1698 | 1699 | ### Published: 12/17/2025 00:25:57 by Oracle Cloud Infrastructure 1700 | 1701 | This modules provides Cmdlets for OCI Bds Service 1702 | 1703 | __Downloads__: 13,694 | __Repository__: https://github.com/oracle/oci-powershell-modules/ 1704 | 1705 | ## [OCI.PSModules.Batch](https://www.powershellgallery.com/Packages/OCI.PSModules.Batch/120.2.0) | 120.2.0 1706 | 1707 | ### Published: 12/17/2025 00:25:51 by Oracle Cloud Infrastructure 1708 | 1709 | This modules provides Cmdlets for OCI Batch Service 1710 | 1711 | __Downloads__: 32 | __Repository__: https://github.com/oracle/oci-powershell-modules/ 1712 | 1713 | ## [OCI.PSModules.Bastion](https://www.powershellgallery.com/Packages/OCI.PSModules.Bastion/120.2.0) | 120.2.0 1714 | 1715 | ### Published: 12/17/2025 00:25:47 by Oracle Cloud Infrastructure 1716 | 1717 | This modules provides Cmdlets for OCI Bastion Service 1718 | 1719 | __Downloads__: 12,819 | __Repository__: https://github.com/oracle/oci-powershell-modules/ 1720 | 1721 | ## [OCI.PSModules.Autoscaling](https://www.powershellgallery.com/Packages/OCI.PSModules.Autoscaling/120.2.0) | 120.2.0 1722 | 1723 | ### Published: 12/17/2025 00:25:42 by Oracle Cloud Infrastructure 1724 | 1725 | This modules provides Cmdlets for OCI Autoscaling Service 1726 | 1727 | __Downloads__: 13,622 | __Repository__: https://github.com/oracle/oci-powershell-modules/ 1728 | 1729 | ## [OCI.PSModules.Audit](https://www.powershellgallery.com/Packages/OCI.PSModules.Audit/120.2.0) | 120.2.0 1730 | 1731 | ### Published: 12/17/2025 00:25:36 by Oracle Cloud Infrastructure 1732 | 1733 | This modules provides Cmdlets for OCI Audit Service 1734 | 1735 | __Downloads__: 14,416 | __Repository__: https://github.com/oracle/oci-powershell-modules/ 1736 | 1737 | ## [OCI.PSModules.Artifacts](https://www.powershellgallery.com/Packages/OCI.PSModules.Artifacts/120.2.0) | 120.2.0 1738 | 1739 | ### Published: 12/17/2025 00:25:31 by Oracle Cloud Infrastructure 1740 | 1741 | This modules provides Cmdlets for OCI Artifacts Service 1742 | 1743 | __Downloads__: 13,136 | __Repository__: https://github.com/oracle/oci-powershell-modules/ 1744 | 1745 | ## [OCI.PSModules.Appmgmtcontrol](https://www.powershellgallery.com/Packages/OCI.PSModules.Appmgmtcontrol/120.2.0) | 120.2.0 1746 | 1747 | ### Published: 12/17/2025 00:25:25 by Oracle Cloud Infrastructure 1748 | 1749 | This modules provides Cmdlets for OCI Appmgmtcontrol Service 1750 | 1751 | __Downloads__: 12,227 | __Repository__: https://github.com/oracle/oci-powershell-modules/ 1752 | 1753 | ## [OCI.PSModules.Apmtraces](https://www.powershellgallery.com/Packages/OCI.PSModules.Apmtraces/120.2.0) | 120.2.0 1754 | 1755 | ### Published: 12/17/2025 00:25:20 by Oracle Cloud Infrastructure 1756 | 1757 | This modules provides Cmdlets for OCI Apmtraces Service 1758 | 1759 | __Downloads__: 15,373 | __Repository__: https://github.com/oracle/oci-powershell-modules/ 1760 | 1761 | ## [OCI.PSModules.Apmsynthetics](https://www.powershellgallery.com/Packages/OCI.PSModules.Apmsynthetics/120.2.0) | 120.2.0 1762 | 1763 | ### Published: 12/17/2025 00:25:14 by Oracle Cloud Infrastructure 1764 | 1765 | This modules provides Cmdlets for OCI Apmsynthetics Service 1766 | 1767 | __Downloads__: 13,126 | __Repository__: https://github.com/oracle/oci-powershell-modules/ 1768 | 1769 | ## [OCI.PSModules.Apmcontrolplane](https://www.powershellgallery.com/Packages/OCI.PSModules.Apmcontrolplane/120.2.0) | 120.2.0 1770 | 1771 | ### Published: 12/17/2025 00:25:08 by Oracle Cloud Infrastructure 1772 | 1773 | This modules provides Cmdlets for OCI Apmcontrolplane Service 1774 | 1775 | __Downloads__: 14,529 | __Repository__: https://github.com/oracle/oci-powershell-modules/ 1776 | 1777 | ## [OCI.PSModules.Apmconfig](https://www.powershellgallery.com/Packages/OCI.PSModules.Apmconfig/120.2.0) | 120.2.0 1778 | 1779 | ### Published: 12/17/2025 00:25:03 by Oracle Cloud Infrastructure 1780 | 1781 | This modules provides Cmdlets for OCI Apmconfig Service 1782 | 1783 | __Downloads__: 12,851 | __Repository__: https://github.com/oracle/oci-powershell-modules/ 1784 | 1785 | ## [OCI.PSModules.Apiplatform](https://www.powershellgallery.com/Packages/OCI.PSModules.Apiplatform/120.2.0) | 120.2.0 1786 | 1787 | ### Published: 12/17/2025 00:24:57 by Oracle Cloud Infrastructure 1788 | 1789 | This modules provides Cmdlets for OCI Apiplatform Service 1790 | 1791 | __Downloads__: 984 | __Repository__: https://github.com/oracle/oci-powershell-modules/ 1792 | 1793 | ## [OCI.PSModules.Apigateway](https://www.powershellgallery.com/Packages/OCI.PSModules.Apigateway/120.2.0) | 120.2.0 1794 | 1795 | ### Published: 12/17/2025 00:24:53 by Oracle Cloud Infrastructure 1796 | 1797 | This modules provides Cmdlets for OCI Apigateway Service 1798 | 1799 | __Downloads__: 13,838 | __Repository__: https://github.com/oracle/oci-powershell-modules/ 1800 | 1801 | ## [OCI.PSModules.Apiaccesscontrol](https://www.powershellgallery.com/Packages/OCI.PSModules.Apiaccesscontrol/120.2.0) | 120.2.0 1802 | 1803 | ### Published: 12/17/2025 00:24:46 by Oracle Cloud Infrastructure 1804 | 1805 | This modules provides Cmdlets for OCI Apiaccesscontrol Service 1806 | 1807 | __Downloads__: 1,186 | __Repository__: https://github.com/oracle/oci-powershell-modules/ 1808 | 1809 | ## [OCI.PSModules.Announcementsservice](https://www.powershellgallery.com/Packages/OCI.PSModules.Announcementsservice/120.2.0) | 120.2.0 1810 | 1811 | ### Published: 12/17/2025 00:24:41 by Oracle Cloud Infrastructure 1812 | 1813 | This modules provides Cmdlets for OCI Announcementsservice Service 1814 | 1815 | __Downloads__: 16,338 | __Repository__: https://github.com/oracle/oci-powershell-modules/ 1816 | 1817 | ## [OCI.PSModules.Analytics](https://www.powershellgallery.com/Packages/OCI.PSModules.Analytics/120.2.0) | 120.2.0 1818 | 1819 | ### Published: 12/17/2025 00:24:36 by Oracle Cloud Infrastructure 1820 | 1821 | This modules provides Cmdlets for OCI Analytics Service 1822 | 1823 | __Downloads__: 13,719 | __Repository__: https://github.com/oracle/oci-powershell-modules/ 1824 | 1825 | ## [OCI.PSModules.Aivision](https://www.powershellgallery.com/Packages/OCI.PSModules.Aivision/120.2.0) | 120.2.0 1826 | 1827 | ### Published: 12/17/2025 00:24:30 by Oracle Cloud Infrastructure 1828 | 1829 | This modules provides Cmdlets for OCI Aivision Service 1830 | 1831 | __Downloads__: 11,785 | __Repository__: https://github.com/oracle/oci-powershell-modules/ 1832 | 1833 | ## [OCI.PSModules.Aispeech](https://www.powershellgallery.com/Packages/OCI.PSModules.Aispeech/120.2.0) | 120.2.0 1834 | 1835 | ### Published: 12/17/2025 00:24:23 by Oracle Cloud Infrastructure 1836 | 1837 | This modules provides Cmdlets for OCI Aispeech Service 1838 | 1839 | __Downloads__: 12,095 | __Repository__: https://github.com/oracle/oci-powershell-modules/ 1840 | 1841 | ## [OCI.PSModules.Ailanguage](https://www.powershellgallery.com/Packages/OCI.PSModules.Ailanguage/120.2.0) | 120.2.0 1842 | 1843 | ### Published: 12/17/2025 00:24:17 by Oracle Cloud Infrastructure 1844 | 1845 | This modules provides Cmdlets for OCI Ailanguage Service 1846 | 1847 | __Downloads__: 15,594 | __Repository__: https://github.com/oracle/oci-powershell-modules/ 1848 | 1849 | ## [OCI.PSModules.Aidocument](https://www.powershellgallery.com/Packages/OCI.PSModules.Aidocument/120.2.0) | 120.2.0 1850 | 1851 | ### Published: 12/17/2025 00:24:12 by Oracle Cloud Infrastructure 1852 | 1853 | This modules provides Cmdlets for OCI Aidocument Service 1854 | 1855 | __Downloads__: 10,169 | __Repository__: https://github.com/oracle/oci-powershell-modules/ 1856 | 1857 | ## [OCI.PSModules.Aidataplatform](https://www.powershellgallery.com/Packages/OCI.PSModules.Aidataplatform/120.2.0) | 120.2.0 1858 | 1859 | ### Published: 12/17/2025 00:24:06 by Oracle Cloud Infrastructure 1860 | 1861 | This modules provides Cmdlets for OCI Aidataplatform Service 1862 | 1863 | __Downloads__: 657 | __Repository__: https://github.com/oracle/oci-powershell-modules/ 1864 | 1865 | ## [OCI.PSModules.Adm](https://www.powershellgallery.com/Packages/OCI.PSModules.Adm/120.2.0) | 120.2.0 1866 | 1867 | ### Published: 12/17/2025 00:24:01 by Oracle Cloud Infrastructure 1868 | 1869 | This modules provides Cmdlets for OCI Adm Service 1870 | 1871 | __Downloads__: 11,232 | __Repository__: https://github.com/oracle/oci-powershell-modules/ 1872 | 1873 | ## [OCI.PSModules.Accessgovernancecp](https://www.powershellgallery.com/Packages/OCI.PSModules.Accessgovernancecp/120.2.0) | 120.2.0 1874 | 1875 | ### Published: 12/17/2025 00:23:55 by Oracle Cloud Infrastructure 1876 | 1877 | This modules provides Cmdlets for OCI Accessgovernancecp Service 1878 | 1879 | __Downloads__: 9,436 | __Repository__: https://github.com/oracle/oci-powershell-modules/ 1880 | 1881 | ## [OCI.PSModules.Common](https://www.powershellgallery.com/Packages/OCI.PSModules.Common/120.2.0) | 120.2.0 1882 | 1883 | ### Published: 12/17/2025 00:22:52 by Oracle Cloud Infrastructure 1884 | 1885 | OCI Common module exports Cmdlets that manages features offered by OCI Modules for Powershell like History Store, OCI Configuration file setup and Per-Session Region/Config/Profile preferences. Common module also contains some functionalties that are common to all OCI Service modules, therefore all OCI Service modules depends on Common module. 1886 | 1887 | __Downloads__: 336,393 | __Repository__: https://github.com/oracle/oci-powershell-modules/ 1888 | 1889 | ## [joshooaj.frigate](https://www.powershellgallery.com/Packages/joshooaj.frigate/0.1.20) | 0.1.20 1890 | 1891 | ### Published: 12/16/2025 23:22:45 by joshooaj 1892 | 1893 | PowerShell integration for the Frigate API 1894 | 1895 | __Downloads__: 9 | __Repository__: https://github.com/joshooaj/joshooaj.frigate 1896 | 1897 | ## [tiPS](https://www.powershellgallery.com/Packages/tiPS/1.4.16) | 1.4.16 1898 | 1899 | ### Published: 12/16/2025 22:45:44 by Daniel Schroeder 1900 | 1901 | PowerShell tips delivered straight to your terminal. 1902 | 1903 | __Downloads__: 39,362 | __Repository__: https://github.com/deadlydog/PowerShell.tiPS 1904 | 1905 | ## [Logic.Monitor](https://www.powershellgallery.com/Packages/Logic.Monitor/7.7.5) | 7.7.5 1906 | 1907 | ### Published: 12/16/2025 21:51:37 by Steven Villardi 1908 | 1909 | PowerShell module to query the Logic Monitor API. This PowerShell module is developed as an open-source project and is not officially supported by LogicMonitor. It is maintained by a community of users who are passionate about enhancing its capabilities and functionality. While LogicMonitor recognizes the effort and ingenuity behind this module, please note that it is provided "as is" without any official support or warranty from LogicMonitor. 1910 | 1911 | __Downloads__: 3,089,800 | __Repository__: https://github.com/logicmonitor/lm-powershell-module 1912 | 1913 | ## [JumpCloud.SDK.V2](https://www.powershellgallery.com/Packages/JumpCloud.SDK.V2/0.1.2) | 0.1.2 1914 | 1915 | ### Published: 12/16/2025 21:27:52 by JumpCloud 1916 | 1917 | The JumpCloud V2 PowerShell SDK 1918 | 1919 | __Downloads__: 1,368,902 | __Repository__: https://github.com/TheJumpCloud/jcapi-powershell/tree/master/SDKs/PowerShell/JumpCloud.SDK.V2/ 1920 | 1921 | ## [JumpCloud.SDK.V1](https://www.powershellgallery.com/Packages/JumpCloud.SDK.V1/0.1.2) | 0.1.2 1922 | 1923 | ### Published: 12/16/2025 21:27:50 by JumpCloud 1924 | 1925 | The JumpCloud V1 PowerShell SDK 1926 | 1927 | __Downloads__: 1,371,473 | __Repository__: https://github.com/TheJumpCloud/jcapi-powershell/tree/master/SDKs/PowerShell/JumpCloud.SDK.V1/ 1928 | 1929 | ## [PSCompression](https://www.powershellgallery.com/Packages/PSCompression/3.1.0) | 3.1.0 1930 | 1931 | ### Published: 12/16/2025 19:09:15 by Santiago Squarzon 1932 | 1933 | Zip, tar, and string compression utilities for PowerShell! 1934 | 1935 | __Downloads__: 380,932 | __Repository__: https://github.com/santisq/PSCompression 1936 | 1937 | ## [Nectar10](https://www.powershellgallery.com/Packages/Nectar10/4.29) | 4.29 1938 | 1939 | ### Published: 12/16/2025 17:25:27 by Ken Lasko 1940 | 1941 | PowerShell module for Nectar DXP 1942 | 1943 | __Downloads__: 2,363 | __Repository__: 1944 | 1945 | ## [Voicemeeter](https://www.powershellgallery.com/Packages/Voicemeeter/4.0.0) | 4.0.0 1946 | 1947 | ### Published: 12/16/2025 15:58:34 by onyx_online 1948 | 1949 | Voicemeeter API Wrapper in Powershell 1950 | 1951 | __Downloads__: 2,353 | __Repository__: 1952 | 1953 | ## [Nebula.Core](https://www.powershellgallery.com/Packages/Nebula.Core/1.1.1) | 1.1.1 1954 | 1955 | ### Published: 12/16/2025 14:11:51 by Giovanni Solone 1956 | 1957 | A PowerShell module that go beyond your workstations. It will make your Microsoft 365 life easier! 1958 | 1959 | __Downloads__: 19 | __Repository__: https://github.com/gioxx/Nebula.Core 1960 | 1961 | ## [PsDnsClient](https://www.powershellgallery.com/Packages/PsDnsClient/1.0.1) | 1.0.1 1962 | 1963 | ### Published: 12/16/2025 13:43:40 by adrian-andersson 1964 | 1965 | A PowerShell module leveraging DnsClient.NET - allowing for true cross-platform DNS in PowerShell 1966 | 1967 | __Downloads__: 9 | __Repository__: https://github.com/adrian-andersson/PSDnsClient 1968 | 1969 | ## [IntuneBackupAndRestore](https://www.powershellgallery.com/Packages/IntuneBackupAndRestore/4.0.1) | 4.0.1 1970 | 1971 | ### Published: 12/16/2025 12:47:49 by John Seerden 1972 | 1973 | PowerShell Module that queries Microsoft Graph, and allows for cross-tenant Backup & Restore actions of your Intune Configuration. 1974 | 1975 | __Downloads__: 229,436 | __Repository__: 1976 | 1977 | ## [SimpleLogPS](https://www.powershellgallery.com/Packages/SimpleLogPS/0.0.2) | 0.0.2 1978 | 1979 | ### Published: 12/16/2025 12:16:39 by Vaclav Spaninger 1980 | 1981 | Module for communication with CityLine cloud service server over API from environment of PowerShell7 1982 | 1983 | __Downloads__: 11 | __Repository__: 1984 | 1985 | ## [pwsh-neofetch](https://www.powershellgallery.com/Packages/pwsh-neofetch/1.3.0) | 1.3.0 1986 | 1987 | ### Published: 12/16/2025 10:12:14 by Sriram PR 1988 | 1989 | A feature-rich PowerShell implementation of the popular Neofetch system information tool for Windows. 1990 | 1991 | __Downloads__: 519 | __Repository__: https://github.com/Sriram-PR/pwsh-neofetch/tree/main 1992 | 1993 | ## [PoshJohn](https://www.powershellgallery.com/Packages/PoshJohn/1.0.1) | 1.0.1 1994 | 1995 | ### Published: 12/16/2025 09:50:41 by ArmaanMcleod 1996 | 1997 | Binary PowerShell module which contains cmdlets to help with extracting and cracking password hashes from password-protected files using John the Ripper (https://www.openwall.com/john/). 1998 | 1999 | __Downloads__: 9 | __Repository__: https://github.com/ArmaanMcleod/PoshJohn 2000 | 2001 | ## [AzureFailureSimulator](https://www.powershellgallery.com/Packages/AzureFailureSimulator/1.0.14) | 1.0.14 2002 | 2003 | ### Published: 12/16/2025 08:20:19 by wmoselhy 2004 | 2005 | A PowerShell module to simulate Azure resource failures 2006 | 2007 | __Downloads__: 74 | __Repository__: 2008 | 2009 | ## [Gordon](https://www.powershellgallery.com/Packages/Gordon/4.0.19) | 4.0.19 2010 | 2011 | ### Published: 12/16/2025 08:18:46 by EOS Solutions 2012 | 2013 | Your friendly neighborhood helper for all things BC, NAV and AL 2014 | 2015 | __Downloads__: 643 | __Repository__: https://eos-solutions.github.io/Gordon 2016 | 2017 | ## [AdminToolbox](https://www.powershellgallery.com/Packages/AdminToolbox/12.0.0.57) | 12.0.0.57 2018 | 2019 | ### Published: 12/16/2025 03:34:21 by Taylor Lee 2020 | 2021 | Master module for a collection of modules. These modules are varied in their tasks. The overall purpose of them being to provide a powerfull Toolset to improve IT Admin workflows. 2022 | 2023 | __Downloads__: 131,961 | __Repository__: https://github.com/TheTaylorLee/AdminToolbox 2024 | 2025 | ## [AdminToolbox.SecOps](https://www.powershellgallery.com/Packages/AdminToolbox.SecOps/1.5.0.44) | 1.5.0.44 2026 | 2027 | ### Published: 12/16/2025 03:33:08 by Taylor Lee 2028 | 2029 | Functions for Security Operations and Investigations 2030 | 2031 | __Downloads__: 6,514 | __Repository__: https://github.com/TheTaylorLee/AdminToolbox/ 2032 | 2033 | ## [AdminToolbox.FortiWizard](https://www.powershellgallery.com/Packages/AdminToolbox.FortiWizard/2.22.0.69) | 2.22.0.69 2034 | 2035 | ### Published: 12/16/2025 03:33:04 by Taylor Lee 2036 | 2037 | Functions that generate configuration scripts and manage FortiOS. 2038 | 2039 | __Downloads__: 117,619 | __Repository__: https://github.com/TheTaylorLee/AdminToolbox/ 2040 | 2041 | ## [AdminToolbox.VMWareAutomate](https://www.powershellgallery.com/Packages/AdminToolbox.VMWareAutomate/4.9.0.98) | 4.9.0.98 2042 | 2043 | ### Published: 12/16/2025 03:31:59 by Taylor Lee 2044 | 2045 | Functions to Automate Bulk VMWare Tasks 2046 | 2047 | __Downloads__: 125,553 | __Repository__: https://github.com/TheTaylorLee/AdminToolbox/ 2048 | 2049 | ## [AdminToolbox.Remoting](https://www.powershellgallery.com/Packages/AdminToolbox.Remoting/1.10.2.6) | 1.10.2.6 2050 | 2051 | ### Published: 12/16/2025 03:31:54 by Taylor Lee 2052 | 2053 | Functions for remote management and access. 2054 | 2055 | __Downloads__: 125,728 | __Repository__: https://github.com/TheTaylorLee/AdminToolbox/ 2056 | 2057 | *Updated: Monday, 22 December 2025 21:52:18 UTC* 2058 | --------------------------------------------------------------------------------