This file contains hidden or 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
| $folderPath = "C:\Repositories\Github\FH-Inway\d365fo.tools" | |
| $moduleName = "AzureAD" | |
| . .\SearchFilesForTerms.ps1 | |
| # Import the module with the commands to search for | |
| Import-Module $moduleName | |
| # Get all commands from the module, including aliases | |
| $moduleCommands = Get-Command -Module $moduleName | Select-Object -ExpandProperty Name |
This file contains hidden or 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
| <?xml version="1.0" encoding="utf-8"?> | |
| <edmx:Edmx Version="4.0" xmlns:edmx="http://docs.oasis-open.org/odata/ns/edmx"> | |
| <edmx:DataServices> | |
| <Schema Namespace="Microsoft.Dynamics.DataEntities" xmlns="http://docs.oasis-open.org/odata/ns/edm"> | |
| <EntityType Name="BalanceControl"> | |
| <Key> | |
| <PropertyRef Name="dataAreaId" /> | |
| <PropertyRef Name="MainAccountId" /> | |
| <PropertyRef Name="ChartOfAccounts" /> | |
| </Key> |
This file contains hidden or 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
Show hidden characters
| { | |
| "image": "mcr.microsoft.com/powershell:latest", | |
| "features": { | |
| "ghcr.io/devcontainers/features/git:1": {}, | |
| "ghcr.io/natescherer/devcontainers-custom-features/powershell-resources": { | |
| "resources": "PSFramework,PoshRSJob" | |
| } | |
| }, | |
| "customizations": { | |
| "vscode": { |
This file contains hidden or 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
| $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 |
This file contains hidden or 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
| # Script to format the comments/documentation of the cmdlets used for the commend based help. | |
| # based on https://gist.github.com/Splaxi/ff7485a24f6ed9937f3e8da76b5d4840 | |
| # See also https://github.com/d365collaborative/d365fo.tools/wiki/Building-tools | |
| $moduleName = "d365fo.tools" | |
| #$path = "C:\GIT\GITHUB\$moduleName.Workspace\$moduleName\$moduleName" | |
| $path = "C:\Repositories\d365fo.tools\$moduleName" | |
| function Get-Header ($text) { | |
| $start = $text.IndexOf('<#') | |
| $temp = $start - 2 |
This file contains hidden or 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
| // ==UserScript== | |
| // @name Change Microsoft Yammer Feedback program page title | |
| // @namespace https://github.com/FH-Inway/tampermonkey | |
| // @version 0.3 | |
| // @description Changes titles of Microsoft Yammer Feedback program pages to provide better friendly links in Edge browser | |
| // @author FH-Inway | |
| // @match https://www.yammer.com/dynamicsaxfeedbackprograms/ | |
| // @icon https://www.google.com/s2/favicons?sz=64&domain=yammer.com | |
| // @updateURL https://gist.github.com/FH-Inway/74e6cd22c98b8b359fdc715a9f621fea/raw/Change%2520Yammer%2520page%2520titles.user.js | |
| // @downloadURL https://gist.github.com/FH-Inway/74e6cd22c98b8b359fdc715a9f621fea/raw/Change%2520Yammer%2520page%2520titles.user.js |
This file contains hidden or 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
| // ==UserScript== | |
| // @name Change Microsoft Learn page titles | |
| // @namespace https://github.com/FH-Inway/tampermonkey | |
| // @version 0.3 | |
| // @description Changes titles of Microsoft Learn pages to provide better friendly links in Edge browser | |
| // @author FH-Inway | |
| // @match https://learn.microsoft.com/en-us/* | |
| // @icon https://www.google.com/s2/favicons?sz=64&domain=microsoft.com | |
| // @updateURL https://gist.github.com/FH-Inway/471eabdc3d859b7ca9b83ff24289c0a1/raw/Change%2520page%2520titles.user.js | |
| // @downloadURL https://gist.github.com/FH-Inway/471eabdc3d859b7ca9b83ff24289c0a1/raw/Change%2520page%2520titles.user.js |
This file contains hidden or 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
| # Replace the following three variables with values for your own azure storage | |
| $azureStorageAccountId = "miscfiles" | |
| $sas = "sv2018-03-28&siunlisted&src&sigAUOpdsfpoWE976ASDhfjkasdf(5678sdfhk" | |
| $container = "backupfiles" | |
| $repositoryModulePath = ".\d365fo.tools" | |
| $fileName = "Test.txt" | |
| # Install d365fo.tools prerequisites | |
| $modules = @("PSFramework", "PSScriptAnalyzer", "Az.Storage", "AzureAd", "PSNotification", "PSOAuthHelper", "ImportExcel") |