{"id":18653907,"url":"https://github.com/powershellcrack/osdhashchecker","last_synced_at":"2025-07-03T05:01:51.648Z","repository":{"id":111449971,"uuid":"303690722","full_name":"PowerShellCrack/OSDHashChecker","owner":"PowerShellCrack","description":"A UI that will display the integrity of an MDT deployment share","archived":false,"fork":false,"pushed_at":"2021-03-19T02:50:52.000Z","size":3290,"stargazers_count":0,"open_issues_count":0,"forks_count":1,"subscribers_count":1,"default_branch":"master","last_synced_at":"2025-05-17T23:09:47.556Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":"","language":"PowerShell","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/PowerShellCrack.png","metadata":{"files":{"readme":"README.md","changelog":"CHANGELOG.md","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":"2020-10-13T12:09:50.000Z","updated_at":"2021-03-19T02:53:45.000Z","dependencies_parsed_at":null,"dependency_job_id":"75c79619-1377-4f38-9c60-9ab02691c171","html_url":"https://github.com/PowerShellCrack/OSDHashChecker","commit_stats":null,"previous_names":[],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/PowerShellCrack/OSDHashChecker","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/PowerShellCrack%2FOSDHashChecker","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/PowerShellCrack%2FOSDHashChecker/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/PowerShellCrack%2FOSDHashChecker/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/PowerShellCrack%2FOSDHashChecker/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/PowerShellCrack","download_url":"https://codeload.github.com/PowerShellCrack/OSDHashChecker/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/PowerShellCrack%2FOSDHashChecker/sbom","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":263264641,"owners_count":23439246,"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":[],"created_at":"2024-11-07T07:13:29.677Z","updated_at":"2025-07-03T05:01:51.608Z","avatar_url":"https://github.com/PowerShellCrack.png","language":"PowerShell","funding_links":[],"categories":[],"sub_categories":[],"readme":"# Hash checking steps\n\n## Steps to check uploaded and downloaded ISO\n\n### Collect hash from each zip file (Before Upload)\n\n```powershell\nSet-Location \"C:\\Users\\ritracyi\\Downloads\\ISOs\"\n```\n\n```powershell\nGet-ChildItem \".\\\" -Filter \"*.zip*\" | Get-FileHash | Export-Clixml .\\UploadedZipFileHash.xml\n```\n\n### Collect hash from each zip file (After Download)\n\n```powershell\nGet-ChildItem \".\\\" -Filter \"*.zip*\" | Get-FileHash | Export-Clixml .\\DownloadedZipFileHash.xml\n```\n\n### Compare hashes against upload and download\n\n```powershell\nCompare-Object (Import-Clixml .\\UploadedZipFileHash.xml) (Import-Clixml .\\DownloadedZipFileHash.xml -OutVariable 'downloads') -Property Hash -OutVariable 'NotEqual'\n```\n\nIf nothing is displayed, the hashes are valid. Continue to build media.\nIf a hash comparison comes back, there is a file that is not valid and must be re-downloaded and checked again. To find the invalid file run:\n\n\n### Retrieve invalid file name\n\n```powershell\nSplit-Path ($downloads | Where {$_.Hash -in $NotEqual.hash}).Path -Leaf\n```\n\n## Steps to build OEM Media\n\n### Update MEDIA (intial/update)\n\n 1. Make updates to the OEM items if needed.\n 2. Run Update content on Media. This will build the initial or update content folder based on Deploymentshare used to build the media.\nWARNING: This may generate an ISO, but do not use this just yet\n\n### Add hash to customsettings.ini\n\nNOTE Properties being added to the ini are:\n\n```ini\nHash_DeployFiles=\u003chash\u003e\nHash_DeployFolders=\u003chash\u003e\nHash_DeployTS=\u003chash\u003e\nHash_DeployWIM=\u003chash\u003e\n```\n\n## Store Hash Script\n\n### Command _before_ Update Content\n\n```powershell\n .\\LTIHashStoreUI.ps1 -WorkingPath \"C:\\DeployOEM\\Content\\Deploy\" -StoreType StoreHash -TaskSequenceID WIN10_DEP\n```\n\n## Check Hash Script\n\n### Command _before_ OEM copy (OEM Tasksequence)\n\n```powershell\n.\\LTIHashCheckUI.ps1 -WorkingPath %DeployDrive%\\Deploy -Title 'Validate Media' -CompareType StoredHash -TaskSequenceID WIN10_DEP -ShowStatusUI\n```\n\n### Command _after_ OEM copy (OEM Tasksequence)\n\n```powershell\n.\\LTIHashCheckUI.ps1 -WorkingPath %OSDisk%\\Deploy -Title 'Validate Transfer' -CompareType StoredHash -TaskSequenceID WIN10_DEP -ShowStatusUI\n```\n\n### Command before EUH UI (EUH Tasksequence)\n\n```powershell\n.\\LTIHashCheckUI.ps1 -WorkingPath %DeployDrive% -Title 'Validate Content' -CompareType StoredHash -TaskSequenceID %TaskSequenceID% -ShowStatusUI\n```\n\n\n## Screenshots\n\n![UI](./UI_Screenshots/InvalidHashcheck_example.PNG)\n\n![UI](./UI_Screenshots/InvalidHashcheck_example2.PNG)\n\n![UI](./UI_Screenshots/InvalidHashcheck_example.PNG)\n\n![UI](./UI_Screenshots/ValidHashcheck.PNG)","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fpowershellcrack%2Fosdhashchecker","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fpowershellcrack%2Fosdhashchecker","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fpowershellcrack%2Fosdhashchecker/lists"}