-
Notifications
You must be signed in to change notification settings - Fork 7
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Added Set-CheckoutDevice.ps1 to assign a staged MacOS device to a use…
…r. (#16) * Added Set-CheckoutDevice.ps1 * Fixed error with Send-Patch
- Loading branch information
1 parent
53277ed
commit f1c03bf
Showing
3 changed files
with
117 additions
and
2 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,86 @@ | ||
<# | ||
.SYNOPSIS | ||
Assigns staged device to user via checkout API. | ||
.DESCRIPTION | ||
Assigns staged device to user via checkout API. Requires a CSV file with DeviceId and desired UserId columns | ||
.PARAMETER file | ||
Path of a CSV file with a list of DeviceId and desired UserId. This is required. | ||
.PARAMETER deviceColumn | ||
Column title in CSV file containing DeviceId values. This is optional, with a default value of "DeviceId". | ||
.PARAMETER userColumn | ||
Column title in CSV file containing UserId values. This is optional, with a default value of "UserId". | ||
.INPUTS | ||
AirWatchConfig.json | ||
CSV File with headers | ||
.OUTPUTS | ||
NO OUTPUT CURRENTLY:Outputs a CSV log of actions | ||
.NOTES | ||
Version: 1.0.1 | ||
Author: Joshua Clark @MrTechGadget | ||
Creation Date: 01/11/2021 | ||
Update Date: 01/20/2021 | ||
Site: https://github.com/MrTechGadget/aw-bulkdevices-script | ||
.EXAMPLE | ||
.\Set-CheckoutDevice.ps1 -file "Devices.csv" -deviceColumn "DeviceId" -userColumn "UserId" | ||
#> | ||
|
||
|
||
[CmdletBinding()] | ||
Param( | ||
[Parameter(Mandatory=$True,Position=0,ValueFromPipeline=$true,HelpMessage="Path to file listing DeviceIds and UserIds.")] | ||
[string]$file, | ||
[Parameter(HelpMessage="Name of Id column in file, default is DeviceId")] | ||
[string]$deviceColumn = "DeviceId", | ||
[Parameter(HelpMessage="Name of desired UserId column in file, default is UserId")] | ||
[string]$userColumn = "UserId" | ||
) | ||
|
||
Import-Module .\PSairwatch.psm1 | ||
|
||
$Logfile = "$PSScriptRoot\Checkout.log" | ||
|
||
Function Write-Log { | ||
Param ([string]$logstring) | ||
|
||
$logstring = ((Get-Date).ToString() + " - " + $logstring) | ||
Add-content $Logfile -value $logstring | ||
} | ||
|
||
$list = Read-FileWithData $file $deviceColumn $userColumn | ||
|
||
Write-Log "$($MyInvocation.Line)" | ||
|
||
$decision = $Host.UI.PromptForChoice( | ||
"Attention! If you proceed, " + @($list).count + " devices will be assigned to the corresponding user identified in this file in AirWatch", | ||
"", | ||
@('&Yes', '&No'), 1) | ||
|
||
if ($decision -eq 0) { | ||
Write-Log "Assigning to users on $($list.count) devices in AirWatch" | ||
$i = 0 | ||
foreach ($item in $list) { | ||
$i++ | ||
Write-Progress -Activity "Assigning Devices..." -Status "$($i) of $($list.Count)" -CurrentOperation "$($item.$deviceColumn) : $($item.$userColumn)" -PercentComplete ((($i)/(@($list).Count))*100) | ||
$endpointURL = "mdm/devices/$($item.$deviceColumn)/enrollmentuser/$($item.$userColumn)" | ||
try { | ||
$result = Send-Patch -endpoint $endpointURL -version $version2 | ||
if ($result -ne "") { | ||
$err = ($Error[0].ErrorDetails.Message | ConvertFrom-Json) | ||
Write-Warning ("Error Assigning DeviceName: $($item.$deviceColumn) : Error", $err.errorCode, $err.message) | ||
Write-Log ("Error Assigning DeviceName: $($item.$deviceColumn) : Error", $err.errorCode, $err.message) | ||
} else { | ||
Write-Host "$($item.$deviceColumn) assigned to $($item.$userColumn) $result" | ||
Write-Log "$($item.$deviceColumn) assigned to $($item.$userColumn) $result" | ||
} | ||
} | ||
catch { | ||
$err2 = ($Error[0].ErrorDetails.Message | ConvertFrom-Json) | ||
Write-Warning "Error Assigning DeviceName: $($item.$deviceColumn) to $($item.$userColumn) $err2" | ||
Write-Log "Error Assigning DeviceName: $($item.$deviceColumn) to $($item.$userColumn) $err2" | ||
} | ||
} | ||
} else { | ||
Write-Host "Action Cancelled" | ||
Write-Log "Action Cancelled" | ||
} | ||
|