Skip to content

Instantly share code, notes, and snippets.

@FH-Inway
Created July 3, 2023 11:40
Show Gist options
  • Select an option

  • Save FH-Inway/71d6637fd159077cb2acece1b9956737 to your computer and use it in GitHub Desktop.

Select an option

Save FH-Inway/71d6637fd159077cb2acece1b9956737 to your computer and use it in GitHub Desktop.
Download D365FO OData specification
$MetaDataUrl = 'https://<YourSiteURL>/data/$metadata'
$Outfile = 'C:\Temp\d365fo-odata.edmx'
If (!$Cred){ $Cred = Get-Credential}
Write-Output "Downloading OData specification..."
Invoke-WebRequest -Credential $Cred -Uri $MetaDataUrl -OutFile $Outfile
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment