{"id":22357435,"url":"https://github.com/lazywinadmin/ciresonassetmanagementps","last_synced_at":"2026-03-06T20:01:47.824Z","repository":{"id":76024295,"uuid":"40949351","full_name":"lazywinadmin/CiresonAssetManagementPS","owner":"lazywinadmin","description":"PowerShell module for Cireson Asset Management (CAM)","archived":false,"fork":false,"pushed_at":"2016-11-28T04:57:50.000Z","size":45,"stargazers_count":5,"open_issues_count":1,"forks_count":2,"subscribers_count":3,"default_branch":"master","last_synced_at":"2025-10-07T04:48:20.372Z","etag":null,"topics":["assets-management","cireson","cireson-asset-management","powershell","script","scripting","scsm","smlets"],"latest_commit_sha":null,"homepage":null,"language":"PowerShell","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"mit","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/lazywinadmin.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE.md","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,"zenodo":null}},"created_at":"2015-08-18T03:46:22.000Z","updated_at":"2024-02-21T13:11:09.000Z","dependencies_parsed_at":null,"dependency_job_id":"4c49ec01-37b3-49e6-a442-d2155745bdf9","html_url":"https://github.com/lazywinadmin/CiresonAssetManagementPS","commit_stats":null,"previous_names":[],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/lazywinadmin/CiresonAssetManagementPS","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/lazywinadmin%2FCiresonAssetManagementPS","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/lazywinadmin%2FCiresonAssetManagementPS/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/lazywinadmin%2FCiresonAssetManagementPS/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/lazywinadmin%2FCiresonAssetManagementPS/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/lazywinadmin","download_url":"https://codeload.github.com/lazywinadmin/CiresonAssetManagementPS/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/lazywinadmin%2FCiresonAssetManagementPS/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":30195529,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-03-06T19:07:06.838Z","status":"ssl_error","status_checked_at":"2026-03-06T18:57:34.882Z","response_time":250,"last_error":"SSL_connect returned=1 errno=0 peeraddr=140.82.121.6:443 state=error: unexpected eof while reading","robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":false,"can_crawl_api":true,"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":["assets-management","cireson","cireson-asset-management","powershell","script","scripting","scsm","smlets"],"created_at":"2024-12-04T14:14:16.980Z","updated_at":"2026-03-06T20:01:47.786Z","avatar_url":"https://github.com/lazywinadmin.png","language":"PowerShell","funding_links":[],"categories":[],"sub_categories":[],"readme":"# CiresonAssetManagementPS\n\nThis PowerShell module allows you to manage the Cireson Asset Management (CAM) solution.\nCAM is plug-in attached to the System Center Service Manager (SCSM) plateform. \n\nThis module is relying on the SMlets PowerShell module which allows you to manage SCSM.\n\n## Requirements\n * Smlet PowerShell module\n  * [Download the Smlets module](https://smlets.codeplex.com/)\n  * [Installation/Configuration](http://www.lazywinadmin.com/2014/09/powershell-scsm-install-and-config.html)\n\n## Installation\n#### Download from PowerShell Gallery\n``` powershell\nInstall-Module CiresonAssetManagementPS\n```\n#### Download from GitHub repository\n\n* Download the repository\n* Unblock the zip file\n* Extract the folder CiresonAssetManagementPS to a module path (e.g. $home\\Documents\\WindowsPowerShell\\Modules)\n\n## Getting Started\n\n``` powershell\n# Load the module into your session\nImport-Module CiresonAssetManagementPS\n\n# Retrieve all Hardware Assets\nGet-CAMHardwareAsset\n\n# Retrieve related object to a specific Asset\n$hw = Get-CamHardwareAsset -DisplayName \"TestPC\" \nGet-CAMRelatedObject -WorkItem $hw\n\n# Retrieve relationship objects to a specific Asset\n$hw = Get-CamHardwareAsset -DisplayName \"TestPC\" \nGet-CAMRelationshipObject -BySource $hw\n\n# Retrieve Support Contract\nGet-CAMSupportContract -DisplayName \"HP Workstation 2016\"\n\n# Retrieve the custodian of a Support Contract\n$HPContract = Get-CAMSupportContract -DisplayName \"HP Workstation 2016\"\nGet-CAMRelatedCustodian -WorkItemObject $HPContract\n\n# New Support Contract\n$props = @{\n    Name = \"HP Servers 2016\"\n}\nNew-CAMObject -HashTable $props -TypeName SupportContract\n\n# Create a new Vendor\n$props = @{\n    Name = \"LazyWinAdmin\"\n    Website = \"www.LazyWinAdmin.com\"\n    VendorAddress1 = \"Montreal\"\n}\t\nNew-CAMVendor -hashtable $props\n```\n\n\n## Cmdlets\n\n``` powershell\n# Retrieving all the Cmdlets available\nGet-Command -module CiresonAssetManagementPS\n```\n\n* Get-CAMBase\n* Get-CAMCatalogItem\n* Get-CAMClass\n* Get-CAMConsumable\n* Get-CAMCostCenter\n* Get-CAMHardwareAsset\n* Get-CAMImportConnector\n* Get-CAMInvoice\n* Get-CAMLease\n* Get-CAMLicense\n* Get-CAMLocation\n* Get-CAMLog\n* Get-CAMMeteringData\n* Get-CAMNoticeEvent\n* Get-CAMNoticeEventData\n* Get-CAMOrganization\n* Get-CAMPurchase\n* Get-CAMPurchaseOrder\n* Get-CAMRelatedCustodian\n* Get-CAMRelatedObject\n* Get-CAMRelatedVendor\n* Get-CAMRelationshipObject\n* Get-CAMSettings\n* Get-CAMSoftwareAsset\n* Get-CAMStandard\n* Get-CAMSubnet\n* Get-CAMSupportContract\n* Get-CAMVendor\n* Get-CAMWarranty\n* New-CAMVendor\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Flazywinadmin%2Fciresonassetmanagementps","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Flazywinadmin%2Fciresonassetmanagementps","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Flazywinadmin%2Fciresonassetmanagementps/lists"}