{"id":17676588,"url":"https://github.com/trossr32/ps-transmission","last_synced_at":"2025-08-31T17:33:41.936Z","repository":{"id":44997948,"uuid":"291767950","full_name":"trossr32/ps-transmission","owner":"trossr32","description":"A Powershell module that integrates with the Transmission RPC API","archived":false,"fork":false,"pushed_at":"2024-01-04T22:28:53.000Z","size":222,"stargazers_count":22,"open_issues_count":0,"forks_count":1,"subscribers_count":3,"default_branch":"master","last_synced_at":"2025-04-20T18:38:36.285Z","etag":null,"topics":["api","api-wrapper","cmdlet","cmdlets","net6","powershell","powershell-module","powershell-modules","transmission","transmission-api","transmission-rpc"],"latest_commit_sha":null,"homepage":"https://www.powershellgallery.com/packages/Transmission","language":"C#","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"mpl-2.0","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/trossr32.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null}},"created_at":"2020-08-31T16:30:31.000Z","updated_at":"2025-04-20T07:25:13.000Z","dependencies_parsed_at":"2024-11-18T07:56:38.051Z","dependency_job_id":null,"html_url":"https://github.com/trossr32/ps-transmission","commit_stats":null,"previous_names":[],"tags_count":8,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/trossr32%2Fps-transmission","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/trossr32%2Fps-transmission/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/trossr32%2Fps-transmission/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/trossr32%2Fps-transmission/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/trossr32","download_url":"https://codeload.github.com/trossr32/ps-transmission/tar.gz/refs/heads/master","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":253824316,"owners_count":21969998,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["api","api-wrapper","cmdlet","cmdlets","net6","powershell","powershell-module","powershell-modules","transmission","transmission-api","transmission-rpc"],"created_at":"2024-10-24T07:26:07.537Z","updated_at":"2025-05-12T21:26:17.423Z","avatar_url":"https://github.com/trossr32.png","language":"C#","funding_links":["https://ko-fi.com/K3K22CEIT'"],"categories":[],"sub_categories":[],"readme":"# PsTransmission\n\n[![PowerShell Gallery Version](https://img.shields.io/powershellgallery/v/Transmission?label=Transmission\u0026logo=powershell\u0026style=plastic)](https://www.powershellgallery.com/packages/Transmission)\n[![PowerShell Gallery](https://img.shields.io/powershellgallery/dt/Transmission?style=plastic)](https://www.powershellgallery.com/packages/Transmission)\n\nA Powershell module that integrates with the Transmission RPC API.\n\nAvailable in the [Powershell Gallery](https://www.powershellgallery.com/packages/Transmission)\n\n## Description\nA collection of Powershell cmdlets that allow integration with a Transmission instance via the RPC API.\n\nAll endpoints in the RPC specification are exposed: [Transmission RPC spec](https://github.com/transmission/transmission/blob/master/extras/rpc-spec.txt).\n\n## Installation (from the Powershell Gallery)\n\n```powershell\nInstall-Module Transmission\nImport-Module Transmission\n```\n\n## Supplying API credentials\n\nBefore any of the Transmission cmdlets can be run, both your host and credentials need to be registered to the current session using the Set-TransmissionCredentials cmdlet, for example:\n\n```powershell\nSet-TransmissionCredentials -Host \"http://192.168.0.1:9091/transmission/rpc\" -User \"user\" -Password \"password\"\n```\n\nThis registers your credentials for the duration of the session. Adding a -StorePermanent switch to the Set-TransmissionCredentials command will create an encrypted file saved on your machine that will obviate the need to set credentials with each new session:\n\n```powershell\nSet-TransmissionCredentials -Host \"http://192.168.0.1:9091/transmission/rpc\" -User \"user\" -Password \"password\" -StorePermanent\n```\n\nYou can remove credentials at any time by using the Remove-TransmissionCredentials cmdlet. To remove a file created using the -StorePermanent switch run the Remove-TransmissionCredentials with a -DeletePermanent switch:\n\n```powershell\nRemove-TransmissionCredentials -DeletePermanent\n```\n\n## Included cmdlets\n\n### Credentials\n\n```powershell\nSet-TransmissionCredentials\nRemove-TransmissionCredentials\n```\n\n### Session\n\n```powershell\nClose-TransmissionSession\nGet-TransmissionSession\nGet-TransmissionSessionStatistics\nSet-TransmissionAltSpeedLimits\nSet-TransmissionSession\n```\n\n### System\n\n```powershell\nTest-TransmissionPort\nUpdate-TransmissionBlockLists\nInvoke-TransmissionWeb\n```\n\n### Torrents\n\n```powershell\nAdd-TransmissionTorrents\nAssert-TransmissionTorrentsVerified\nGet-TransmissionTorrents\nInvoke-TransmissionTorrentsReannounce\nMove-TransmissionTorrentsQueue\nRemove-TransmissionTorrents\nRename-TransmissionTorrentPath\nSet-TransmissionTorrents\nSet-TransmissionTorrentsLocation\nStart-TransmissionTorrents\nStart-TransmissionTorrentsNow\nStop-TransmissionTorrents\n```\n\n## Building the module and importing locally\n\n### Build the .NET core solution\n\n```powershell\ndotnet build [Github clone/download directory]\\ps-transmission\\src\\PsTransmission.sln\n```\n\n### Copy the built files to your Powershell modules directory\n\nRemove any existing installation in this directory, create a new module directory and copy all the built files.\n\n```powershell\nRemove-Item \"C:\\Users\\[User]\\Documents\\PowerShell\\Modules\\Transmission\" -Recurse -Force -ErrorAction SilentlyContinue\nNew-Item -Path 'C:\\Users\\[User]\\Documents\\PowerShell\\Modules\\Transmission' -ItemType Directory\nGet-ChildItem -Path \"[Github clone/download directory]\\ps-transmission\\src\\PsTransmissionCmdlet\\bin\\Debug\\netcoreapp3.1\\\" | Copy-Item -Destination \"C:\\Users\\[User]\\Documents\\PowerShell\\Modules\\Transmission\" -Recurse\n```\n\n## Contribute\n\nPlease raise an issue if you find a bug or want to request a new feature, or create a pull request to contribute.\n\n\u003ca href='https://ko-fi.com/K3K22CEIT' target='_blank'\u003e\u003cimg height='36' style='border:0px;height:36px;' src='https://cdn.ko-fi.com/cdn/kofi4.png?v=2' border='0' alt='Buy Me a Coffee at ko-fi.com' /\u003e\u003c/a\u003e\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Ftrossr32%2Fps-transmission","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Ftrossr32%2Fps-transmission","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Ftrossr32%2Fps-transmission/lists"}