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
| <# | |
| This script contains the code that was presented in the blog post: | |
| SCSM PowerShell: Getting Started with Service Manager PowerShell | |
| For more details on this and other SCSM PowerShell script see the series overview at http://bit.ly/SCSM-PS | |
| #> | |
| ##################################################################################################### | |
| # # |
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
| # Use to Test AD Credentials | |
| function Test-ADCredential { | |
| [CmdletBinding()] | |
| Param | |
| ( | |
| [string]$UserName, | |
| [string]$Password | |
| ) | |
| if (!($UserName) -or !($Password)) { | |
| Write-Warning 'Test-ADCredential: Please specify both user name and password' |
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
| # Remember, leave a key empty if there is no value. None will be a string, | |
| # not a Python "NoneType" | |
| actions: | |
| 1: | |
| action: close | |
| description: close indices | |
| options: | |
| delete_aliases: False | |
| timeout_override: | |
| continue_if_exception: True |
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
| # Remember, leave a key empty if there is no value. None will be a string, | |
| # not a Python "NoneType" | |
| client: | |
| hosts: | |
| - 127.0.0.1 | |
| port: 9200 | |
| url_prefix: | |
| use_ssl: False | |
| certificate: | |
| client_cert: |
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
| Function Search-PSScripts{ | |
| <# | |
| .SYNOPSIS | |
| Use to search the text inside PowerShell scripts for a particular string | |
| .PARAMETER SearchString | |
| The string to search for inside the script file | |
| .PARAMETER Path | |
| The folder path to search for PowerShell files in. Default to userprofile if not specified. |
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
| Function Out-GridViewCode{ | |
| <# | |
| .SYNOPSIS | |
| Sends output to an interactive table in a separate window. With extended support to display Out-GridView as main window when using VS Code | |
| .DESCRIPTION | |
| The Out-GridView cmdlet sends the output from a command to a grid view window where the output is displayed in an interactive table. However, when you use VS Code the window appears in the background. Running this wrapper will bring the window to the front. | |
| Parameters remain the same as the orginal Out-GridView | |
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
| <# | |
| This script will query all Azure Subscriptions for Windows Virtual Machines and check them for the presence of potential Log4j vulnerabilities. | |
| It checks for Java installations and search all files for Log4j JAR files. This is not a conclusive scan, but is a good way to quickly | |
| identify potentially at risk machines. | |
| To function correctly, the VM requires connectivity (port 443) to Azure public IP addresses. | |
| Updated 12/22/2021 - Now includes ability to scan Arc servers | |
| The account running this script must have read access to the VMs along with |
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
| <# | |
| Uses BluebirdPS to get all of the people you follow on Twitter. | |
| Then searches their profile for potential Mastodon usernames. | |
| To setup BluebirdPS: https://github.com/thedavecarroll/BluebirdPS | |
| #> | |
| $TwitterFriends = Get-TwitterFriends | |
| # The property fields to search | |
| $properties = 'Name','Description' | |
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
| <# | |
| This script was created to test the output and runtimes for Azure Automation runbooks running in different regions. | |
| It is scope to only us regions. Update line 23 to use different areas. | |
| #> | |
| $SubscriptionId = '' | |
| $ResourceGroupName = '' | |
| $Runbook = 'Test-Sandbox' | |
| if ($(Get-AzContext).Subscription.SubscriptionId -ne $SubscriptionId) { | |
| Set-AzContext -SubscriptionId $SubscriptionId -ErrorAction SilentlyContinue |
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
| <# | |
| This script contains functions to help you identify potential runbooks still using Run As accounts. | |
| If requires that you have the Az modules installed and that you are authenticated to Azure. | |
| Azure Automation Run As Account will retire on September 30, 2023 and will be replaced with Managed Identities. | |
| Before that date, you'll need to migrate your runbooks to use managed identities. | |
| However, just the presence of a Run As account doesn’t mean a it is being used. Often these were just created | |
| during the automation account provisioning. This script help to determine if you are using the Run As account | |
| by search through the runbooks to find references to the Run As Account actually being called. Then finds the |
OlderNewer