View uniform_keys.py
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
''' | |
Class: UniformKeys | |
Class Summary: This Class is used to make key values | |
uniform and requires a list of dictionaries | |
Author: Bryan McClellan | |
Created: 6/22/2021 |
View create-dhcp-dns-for-vms.ps1
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 ( | |
[Parameter(Mandatory=$true)] | |
[string]$esx_vm_name, | |
[Parameter(Mandatory=$true)] | |
[string]$vcenter_build, | |
[Parameter(Mandatory=$true)] | |
[string]$scope_id, | |
[Parameter(Mandatory=$true)] | |
[string]$dhcp_server, | |
[Parameter(Mandatory=$true)] |
View calm-unattend.xml
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
<?xml version="1.0" encoding="utf-8"?> | |
<unattend xmlns="urn:schemas-microsoft-com:unattend"> | |
<settings pass="windowsPE"> | |
<component name="Microsoft-Windows-Setup" processorArchitecture="amd64" publicKeyToken="31bf3856ad364e35" language="neutral" versionScope="nonSxS" xmlns:wcm="http://schemas.microsoft.com/WMIConfig/2002/State" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"> | |
<UserData> | |
<AcceptEula>true</AcceptEula> | |
<FullName>@@{windows_admin.username}@@</FullName> | |
<Organization>Organization</Organization> | |
<ProductKey> | |
<Key>@@{PRODUCT_KEY}@@</Key> |
View tkg-sa-priv-user-role-binding.yaml
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
apiVersion: rbac.authorization.k8s.io/v1 | |
kind: ClusterRoleBinding | |
metadata: | |
name: psp:vmware-system-privileged | |
roleRef: | |
kind: ClusterRole | |
name: psp:vmware-system-privileged | |
apiGroup: rbac.authorization.k8s.io | |
subjects: | |
- kind: ServiceAccount |
View vro-get.vm-and-sdk-vm-name-exact.js
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
var reg = new RegExp("^"+ strVmName + "$", 'ig'); | |
for each(vm in VcPlugin.getAllVirtualMachines(null,"xpath:name='" + strVmName + "'")) { | |
if(vm.name.match(reg)) { | |
vcenterSdk = vm.sdkConnection | |
vmOut = vm | |
System.log(vmOut.summary) | |
System.log(vcenterSdk) | |
} | |
} |
View format-svc-output-csv
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
$basepath = 'C:\Storage-Migration' | |
$content = gc "$basepath\mc\mcsvc01vdisks.txt" | |
gc "$basepath\mc\mcsvc01vdisksbyhost.txt" | %{ | |
$line = $_ | |
if($line -match "^\d+") { | |
$match = [regex]::Matches($line, "\S*(?>\s+)") | |
$vol_match = $content | sls -Pattern $(($match[4].value).Trim()) | |
try{ | |
if($match) { | |
$vol_size = [regex]::Match($vol_match,'(?<=,)[\w\.\w]+(?=,[m\d])') |
View find-vmhost-lun-no-datastore.ps1
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
try{ | |
$luns = get-vmhost | Get-Datastore | Get-ScsiLun -ErrorAction SilentlyContinue | |
# $luns.CanonicalName | |
} catch { | |
"Error getting lun info for one or more luns" | |
} | |
$array = @() | |
Get-VMHost | Get-ScsiLun | ?{$_.CanonicalName -notlike "mpx.*"} | %{ | |
if(($luns.CanonicalName -notcontains $_.CanonicalName) -and ($array -notcontains $_.CanonicalName)) { | |
$array += $_.CanonicalName |
View Openshift 4.2 on VMware using govc
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
curl https://mirror.openshift.com/pub/openshift-v4/dependencies/rhcos/4.2/4.2.0/rhcos-4.2.0-x86_64-vmware.ova -o rhcos-4.2.0-x86_64-vmware.ova | |
govc import.ova -name=rhcos-4.2.0-x86_64-vmware ./rhcos-4.2.0-x86_64-vmware.ova | |
export GOVC_URL='vsphere.server.local | |
export GOVC_USERNAME='admin@vsphere.local' | |
export GOVC_PASSWORD='password | |
export GOVC_INSECURE=1 | |
export GOVC_NETWORK='NETWORK' |
View openmanage-compute.py
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
#!/usr/bin/env python | |
# Copyright: (c) 2018, Keiran Steele | |
# GNU General Public License v3.0+ (see COPYING or https://www.gnu.org/licenses/gpl-3.0.txt) | |
import os | |
import sys | |
import argparse | |
try: |
View getADGroupNamesFilterByNamePrefix-Exceptions.js
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
arr_groups = new Array() | |
System.log(nameStartsWith) | |
System.log("Running active Directory Search") | |
var groups = ActiveDirectory.search("UserGroup", nameStartsWith) | |
var arr_ExceptionList = exceptionList.split(",") | |
for (var i in groups) { | |
if(arr_ExceptionList.indexOf(groups[i].name) == -1) { | |
arr_groups.push(groups[i].name) |
NewerOlder