{"id":18488773,"url":"https://github.com/samk13/powershell-notes","last_synced_at":"2026-01-24T04:34:02.896Z","repository":{"id":216515886,"uuid":"741522494","full_name":"Samk13/powershell-notes","owner":"Samk13","description":null,"archived":false,"fork":false,"pushed_at":"2024-04-18T08:37:29.000Z","size":4,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"master","last_synced_at":"2025-05-13T23:10:39.706Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":null,"language":null,"has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":null,"status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/Samk13.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":null,"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":"2024-01-10T15:15:05.000Z","updated_at":"2024-01-10T15:15:05.000Z","dependencies_parsed_at":"2024-11-06T12:55:30.086Z","dependency_job_id":"d22931fe-aed3-4343-8401-f4422c2f8aa9","html_url":"https://github.com/Samk13/powershell-notes","commit_stats":null,"previous_names":["samk13/powershell-notes"],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/Samk13/powershell-notes","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Samk13%2Fpowershell-notes","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Samk13%2Fpowershell-notes/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Samk13%2Fpowershell-notes/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Samk13%2Fpowershell-notes/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/Samk13","download_url":"https://codeload.github.com/Samk13/powershell-notes/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Samk13%2Fpowershell-notes/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":28711547,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-01-23T23:51:44.727Z","status":"online","status_checked_at":"2026-01-24T02:00:06.909Z","response_time":89,"last_error":null,"robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":true,"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":[],"created_at":"2024-11-06T12:52:48.524Z","updated_at":"2026-01-24T04:34:02.882Z","avatar_url":"https://github.com/Samk13.png","language":null,"funding_links":[],"categories":[],"sub_categories":[],"readme":"# Powershell commands\n\n## Get motherboard model\n\n```powershell\nGet-WmiObject win32_baseboard | Select-Object -Property Product\n```\n\n## Get the maximum capacity of the MB RAM in GB\n\n```powershell\nGet-WmiObject -Class Win32_PhysicalMemoryArray | Select-Object -Property @{Name=\"MaxCapacityGB\";Expression={$_.MaxCapacity / 1MB}}\n```\n\n## Get the current RAM installed\n\n```powershell\n Get-WmiObject -Class Win32_PhysicalMemory | Measure-Object -Property Capacity -Sum | Select-Object @{Name=\"TotalGB\"; Expression={ $_.Sum / 1GB }}\n```\n\n## Get the list of connected storage devices\n\n```powershell\n Get-PhysicalDisk | Select-Object MediaType, BusType, Model\n```\n\n## Get the current graphic driver version\n\n```powershell\nGet-WmiObject Win32_VideoController | Select-Object Name, DriverVersion\n# or\nGet-WmiObject Win32_VideoController | Select-Object -Property Name, DriverVersion\n```\n\n````log\nName                          DriverVersion\n----                          -------------\nNVIDIA GeForce RTX 4090 SUPER 31.0.15.4633\n```\n\n# Windows issues\n\n## Windows security not openening \n- Open Command Prompt and execute:\n```powershell\nsfc /scannow\nDISM /Online /Cleanup-Image /RestoreHealth\n```\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fsamk13%2Fpowershell-notes","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fsamk13%2Fpowershell-notes","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fsamk13%2Fpowershell-notes/lists"}