This file contains 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
PARAM( | |
$RemoteComputer = $env:COMPUTERNAME, | |
$Sender, | |
$Message = (Get-Date), | |
$ImageFile | |
) | |
function New-ToastNotification { | |
param($Sender, $Message, $ImageBase64) |
This file contains 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 Get-AzVmSizesByLocation { | |
[CmdletBinding()] | |
param($LocationFilter = '*') | |
Write-Verbose -Message 'Getting all locations with the vmSizes providers' | |
$locations = Get-AzResourceProvider | | |
Where-Object { $_.ResourceTypes.ResourceTypeName -contains 'locations/vmSizes' } | | |
Select-Object -ExpandProperty Locations | |
This file contains 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 Add-ExtendedAttribute { | |
[CmdletBinding()] | |
param( | |
[Parameter(Mandatory = $true, | |
ValueFromPipeline = $true, | |
ValueFromPipelineByPropertyName = $true)] | |
[Alias(‘FullName’, ‘PSPath’)] | |
[string[]]$Path, | |
This file contains 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
# Login to Azure | |
Login-AzureRmAccount | |
# Select a specific subscription for the context | |
Get-AzureRmSubscription | Out-GridView -PassThru -Title 'Select Subscription' | Select-AzureRmSubscription | |
# Get all the Hybrid Connections from all namespaces in all resource groups | |
$hybridConnections = Get-AzureRmResource -ResourceType Microsoft.Relay/namespaces | ForEach-Object { | |
$resourceGroupName = $_.ResourceGroupName | |
Get-AzureRmRelayHybridConnection -ResourceGroupName $resourceGroupName -Namespace $namespace.Name | ForEach-Object { |
This file contains 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 Get-InstalledSoftware { | |
[cmdletbinding()] | |
param( | |
[parameter(ValueFromPipeline=$true,ValueFromPipelineByPropertyName=$true)] | |
[string[]]$ComputerName = $env:ComputerName | |
) | |
begin { | |
$UninstallRegKey = 'SOFTWARE\\Microsoft\\Windows\\CurrentVersion\\Uninstall' | |
} |
This file contains 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 Get-MsiProductInformation { | |
param($Path) | |
$msis = Get-ChildItem -File -Path $Path -Filter '*.msi' | |
foreach($msi in $msis) { | |
$WI = New-Object -ComObject WindowsInstaller.Installer | |
$DB = $WI.GetType().InvokeMember("OpenDatabase","InvokeMethod", $Null, $WI, @($msi.FullName, 0)) | |
$query = 'SELECT * FROM Property' | |
$View = $DB.GetType().InvokeMember("OpenView","InvokeMethod",$Null,$DB,($query)) | |
$View.GetType().InvokeMember("Execute", "InvokeMethod", $Null, $View, $Null) |
This file contains 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
#region Helper functions | |
function Set-Ownership { | |
[CmdletBinding(SupportsShouldProcess = $false)] | |
param( | |
[Parameter(Mandatory = $true)] | |
[ValidateNotNullOrEmpty()] | |
[string]$Path, | |
[Parameter(Mandatory = $true)] | |
[ValidateNotNullOrEmpty()] [ValidatePattern('(\w+)\\(\w+)')] |
This file contains 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 Get-LogonReport { | |
param($ComputerName = $Env:COMPUTERNAME) | |
$filterXml = '<QueryList><Query Id="0" Path="Security"><Select Path="Security">*[System[(EventID=4624)]]</Select></Query></QueryList>' | |
$logonTypes = @{ | |
2 = 'Interactive' | |
3 = 'Network' | |
4 = 'Batch' | |
5 = 'Service' | |
6 = 'Proxy' |
This file contains 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
# The identity to add permissions for | |
$Identity = "myDomain\nonAdmins" | |
# The configuration name to change permissions to (default is 'microsoft.powershell') | |
$sessionConfigurationName = 'microsoft.powershell' | |
# Get the current permissions on the default endpoint | |
$sddl = (Get-PSSessionConfiguration -Name $sessionConfigurationName).SecurityDescriptorSddl |
This file contains 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
#region ### BUILD THE CONFIGURATION ### | |
# Declare the configuration: | |
Configuration TestDscWithoutWinRm { | |
Import-DscResource –ModuleName PSDesiredStateConfiguration | |
node localhost { | |
File akada { | |
Ensure = 'Present' | |
Type = 'File' | |
Contents = 'Martin was here!' |
NewerOlder