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 Move-ADGroupMemberofToMember { | |
<# | |
.SYNOPSIS | |
Moves all Member Of objects to the Members section of an Active Directory group. | |
.DESCRIPTION | |
Queries an Active Directory group for all Member Of groups then add them to the members section | |
and removes them from the member of section of the active directory group. | |
.PARAMETER TargetGroup | |
Specify the group to run the cmdlet against. | |
.EXAMPLE |
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
#Find External DHCP enabled interface | |
$External = (Get-NetIPAddress -AddressFamily IPv4).Where{$_.PrefixOrigin -eq 'Dhcp'} | |
#Rename DHCP adpter to External | |
Rename-NetAdapter -Name $External.InterfaceAlias -NewName 'External' | |
#Find Internal adpater | |
$Internal = (Get-NetIPAddress -AddressFamily IPv4).Where{$_.PrefixOrigin -ne 'Dhcp' -and $_.InterfaceAlias -notmatch 'Loopback'} | |
Rename-NetAdapter -Name $Internal.InterfaceAlias -NewName 'Internal' |
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
$source = "C:\LabResources\xTimeZone" | |
$destination = "C:\temp" | |
$Version = (Get-ChildItem -Path $source -Depth 1).Name | |
$ResoureName = (Get-ChildItem -Path $source -Depth 1).Parent.Name | |
$ModuleName = $ResoureName+'_'+$Version | |
New-Item -Path ($destination+'\'+$ModuleName) -ItemType Directory |
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 ConvertTo-DSCPullArchive | |
{ | |
<# | |
.Synopsis | |
Converts PowerShell Modules to compressed .zip files. | |
.DESCRIPTION | |
Converts PowerShell Modules to compressed .zip files | |
used by Desired State Configuraiton pull servers. | |
.PARAMETER Source | |
Specifies the source location of a PowerShell module. |
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 Net Adapter Names | |
$NetAdapterName = (Get-NetAdapter).Name | |
#Create the External Hyper-V Switch | |
New-VMSwitch -NetAdapterName $NetAdapterName[0] -Name 'External' | |
#Create the Internal Hyper-V Switch | |
New-VMSwitch -SwitchType Internal -Name 'Internal' |
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
$Name = 'VyOS' | |
$SwitchName = 'Internal' | |
$HardDiskSize = 2GB | |
$HDPath = 'E:\Hyper-V\Virtual Hard Disks'+'\'+$Name+'.vhdx' | |
$Generation = '1' | |
$ISO_Path = 'D:\ISOs\vyos-1.1.6-amd64.iso' | |
New-VM -Name $Name -SwitchName $SwitchName ` | |
-NewVHDSizeBytes $HardDiskSize ` | |
-NewVHDPath $HDPath -Generation $Generation -MemoryStartupBytes 512MB |
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
Register-PSRepository -Name myNuGetSource -SourceLocation 'https://www.myget.org/F/powershellgetdemo/api/v2' -PublishLocation 'https://www.myget.org/F/powershellgetdemo/api/v2/Packages' -InstallationPolicy Trusted |
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
Invoke-Command -ComputerName S2 -ScriptBlock {Find-Module xAdcsDeployment,xNetworking,xComputerManagement,xTimeZone | Install-Module -Confirm:$false -Verbose} |
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
Invoke-Command -Computername s3 {Get-Childitem Cert:\LocalMachine\My} |