Djentacodic

New-ProvisioningPackage.ps1

Apr 12th, 2024 (edited)
76
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PowerShell 3.66 KB | Source Code | 0 0
  1. # ------------------------------------------------------------------------------
  2. # File: New-AADJoinPackage.ps1
  3. # Author: Michael Niehaus
  4. #
  5. # Description:
  6. # A sample script to generate a provisioning package that can be used to join
  7. # one or more devices to an Azure AD tenant (AAD join). This uses the
  8. # AADInternals module, available on the PowerShell Gallery, as well as the
  9. # ICD.EXE tool from the Windows 10/11 ADK.
  10. #
  11. # Provided as-is with no support. See https://oofhours.com for related
  12. # information.
  13. # ------------------------------------------------------------------------------
  14. [CmdletBinding()]
  15. param(
  16.     [Parameter(ValueFromPipeline = $True,Position = 0)]
  17.     [String]$PackageName = "Join-AzureAD"
  18. )
  19.  
  20. $package_GUID = New-Guid
  21. # Make sure NuGet is installed
  22. $provider = Get-PackageProvider -Name NuGet -ErrorAction Ignore
  23. if (-not $provider) {
  24.     Find-PackageProvider -Name NuGet -ForceBootstrap -IncludeDependencies
  25. }
  26.  
  27. # Import the AADInternals module, installing if necessary
  28. $module = Import-Module AADInternals -PassThru -ErrorAction Ignore
  29. if (-not $module) {
  30.     Install-Module -Name AADInternals -RequiredVersion 0.8.0 -Force
  31.     Import-Module AADInternals -Force
  32. }
  33.  
  34. # Get the access token
  35. $null = Get-AADIntAccessTokenForAADGraph -Resource urn:ms-drs:enterpriseregistration.windows.net -SaveToCache
  36.  
  37. # Create a new BPRT (bulk token/bulk PRT)
  38. $bprt = New-AADIntBulkPRTToken -Expires ((Get-Date).AddDays(179))
  39.  
  40. # Generate the customizations xml file
  41. $xml = @"
  42. <?xml version="1.0" encoding="utf-8"?>
  43. <WindowsCustomizations>
  44.     <PackageConfig xmlns="urn:schemas-Microsoft-com:Windows-ICD-Package-Config.v1.0">
  45.         <ID>{$package_GUID}</ID>
  46.         <Name>$PackageName</Name>
  47.         <Version>1.4</Version>
  48.         <OwnerType>OEM</OwnerType>
  49.         <Rank>0</Rank>
  50.         <Notes></Notes>
  51.     </PackageConfig>
  52.     <Settings xmlns="urn:schemas-microsoft-com:windows-provisioning">
  53.         <Customizations>
  54.             <Common>
  55.                 <Accounts>
  56.                     <Azure>
  57.                         <Authority>https://login.microsoftonline.com/common</Authority>
  58.                         <BPRT>$bprt</BPRT>
  59.                     </Azure>
  60.                     <ComputerAccount>
  61.                         <ComputerName>HUB-%SERIAL%</ComputerName>
  62.                     </ComputerAccount>
  63.                 </Accounts>
  64.                 <OOBE>
  65.                     <Desktop>
  66.                         <HideOobe>True</HideOobe>
  67.                     </Desktop>
  68.                 </OOBE>
  69.                 <Policies>
  70.                     <ApplicationManagement>
  71.                         <AllowAllTrustedApps>Yes</AllowAllTrustedApps>
  72.                     </ApplicationManagement>
  73.                 </Policies>
  74.             </Common>
  75.         </Customizations>
  76.     </Settings>
  77. </WindowsCustomizations>
  78. "@
  79. $xml | Out-File "$FileName.xml" -Encoding UTF8 -Force
  80.  
  81. # Find the ADK and ICD.exe
  82. if (Test-Path 'HKLM:\SOFTWARE\WOW6432Node\Microsoft\Windows Kits\Installed Roots') {
  83.     $kitsRoot = Get-ItemPropertyValue -Path 'HKLM:\SOFTWARE\WOW6432Node\Microsoft\Windows Kits\Installed Roots' -Name KitsRoot10
  84. } elseif (Test-Path 'HKLM:\SOFTWARE\Microsoft\Windows Kits\Installed Roots') {
  85.     $kitsRoot = Get-ItemPropertyValue -Path 'HKLM:\SOFTWARE\Microsoft\Windows Kits\Installed Roots' -Name KitsRoot10
  86. } else {
  87.     Write-Error "ADK is not installed."
  88.     return
  89. }
  90.  
  91. $icdPath = "$kitsRoot\Assessment and Deployment Kit\Imaging and Configuration Designer\x86"
  92. $icdExe = "$icdPath\ICD.exe"
  93. $icdStoreCommon = "$icdPath\Microsoft-Common-Provisioning.dat"
  94. $icdStoreDesktop = "$icdPath\Microsoft-Desktop-Provisioning.dat"
  95.  
  96. if (-not (Test-Path "$icdPath\ICD.exe")) {
  97.     Write-Error "ICD.exe not found."
  98.     return
  99. }
  100.  
  101. # Generate the PPKG
  102. & "$icdExe" /Build-ProvisioningPackage /CustomizationXML:${FileName}.xml /PackagePath:${FileName}.ppkg /StoreFile:"""${icdStoreDesktop}""","""${icdStoreCommon}"""
  103.  
  104. Remove-Variable -Name package_GUID,provider,module,user,bprt,xml,kitsroot,icdPath,icdExe,icdStoreCommon,icdStoreDesktop -Force
Add Comment
Please, Sign In to add comment