A simple example illustrating how to collect a centralized list of PowerShell user groups
Keith asked if there were a list of PowerShell user groups. There is not.
A simple example illustrating how to collect a centralized list of PowerShell user groups
Keith asked if there were a list of PowerShell user groups. There is not.
Hi all!
TLDR: Would it be helpful to track PowerShell-related sessions at non-PowerShell events, rather than just tracking PowerShell-related events?
So! Personally, I've found that sessions covering $OtherTechnology through PowerShell fairly helpful.
Folks presenting on how to automate and configure SQL Server, VMware, Azure, Active Directory, and the many other technologies PowerShell can interface with tend to be good folks to learn from.
<# | |
This is a PowerShell function wrapping the ADMT executable to abstract out migrating Active Directory users. | |
Read all the ADMT docs, and all the code and comments below before considering using this : ) | |
The COM object was covered nicely by Jan Egil Ring: | |
http://blog.powershell.no/2010/08/04/automate-active-directory-migration-tool-using-windows-powershell/ | |
Unfortunately, the COM object does not support Include files, a critical requirement for us. |
%% -*- mode: erlang -*- | |
%% ---------------------------------------------------------------------------- | |
%% See http://www.rabbitmq.com/configure.html for details. | |
%% ---------------------------------------------------------------------------- | |
[ | |
{rabbit, | |
[%% | |
%% Network Connectivity | |
%% ==================== | |
%% |
<# | |
This code illustrates highlighting a line based on a cell value | |
Search-CellValue will help identify the rows we care about | |
Format-Cell will format these rows | |
Prerequisite: Download and load up PSExcel http://ramblingcookiemonster.github.io/PSExcel-Intro/ | |
#> | |
# View the help on the primary commands we will be using | |
Get-Help Search-CellValue -Full |
function Get-EnumValues { | |
<# | |
.SYNOPSIS | |
Return list of names and values for an enumeration object | |
.DESCRIPTION | |
Return list of names and values for an enumeration object | |
.PARAMETER Type | |
Pass in an actual type, or a string for the type name. |
<# | |
Fun trying to determine a current runspaces variables and modules. | |
In response to thise tweet: https://twitter.com/xvorsx/status/556348047022510080 | |
I'm assuming there are a number of issues I'm not considering, this was just a morning distraction. | |
#> | |
#This would create a new runspace, get variables, modules, snapins. | |
#Presumably this changes based on PS version, so need dynamic method to extract it | |
$StandardUserEnv = [powershell]::create().addscript({ |
<# | |
This function and following examples illustrate the implementation of two helpful scenarios: | |
Pipeline input, with verbose output describing the values and types within the Begin, Process, and End blocks | |
ShouldProcess support, with friendly bypass handling using a Force switch. | |
#> | |
Function Test-Pipeline { |
<# | |
Picked up a trial for Thycotic Secret Server. | |
Very impressed so far. Simple setup, had a quick and dirty Get-Secret function a few minutes later. | |
All code here assumes you have configured IIS and Secret Server to allow Windows Authentication, and have enabled web services. | |
This is quick and dirty, i.e. we don't handle errors, we don't handle varying environments, etc. | |