13 lines
539 B
PowerShell
13 lines
539 B
PowerShell
# Example values - you need to replace these with your own from Azure Portal
|
|
$params = @{
|
|
SaveTo = "C:\Temp\2024\12"
|
|
PathToScan = "/Photos/Camera Roll"
|
|
ClientId = "d581ab07-3a21-44d3-84c4-16b06bef6266" # From Azure App Registration
|
|
TenantId = "common" # Use "common" for personal Microsoft accounts
|
|
}
|
|
|
|
# '\Photos\Auto-saved\2024\12'
|
|
# /Photos/Camera Roll
|
|
.\Download-ODLivePhotosV2.ps1 -SaveTo 'C:\Temp\2024\12' -PathToScan '\Photos\Auto-saved\2024\12' -ClientId 'd581ab07-3a21-44d3-84c4-16b06bef6266' -TenantId 'common'
|
|
|