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
<# | |
.SYNOPSIS | |
This script lists all Logic app api connections v1 and shows which apis belong | |
to which Logic app.It also lists the orfan apis | |
.DESCRIPTION | |
This script lists all Logic app api connections v1 and shows which apis belong | |
to which Logic app.It also lists the orfan apis | |
.NOTES | |
This script was created by the Microsoft Engineer Yanbo Deng | |
.LINK |
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
Set-ADAccountPassword -Identity elisada -OldPassword (ConvertTo-SecureString -AsPlainText "oldPassword" -Force) -NewPassword (ConvertTo-SecureString -AsPlainText "#newP@ssword" -Force) |
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
# Get all Azure AD applications (app registrations) owned by me | |
Install-Module -Name Az.Resources -Force -ErrorAction SilentlyContinue | |
Get-AzADApplication -OwnedApplication |
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
sh -x script [arg1 …] | |
bash -x script [arg1 …] | |
#disable debug | |
set +x | |
#enable debug |