Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merge to master #3

Merged
merged 3 commits into from
Jan 20, 2015
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
87 changes: 87 additions & 0 deletions Get-AllVMNetworkAdapters.ps1
Original file line number Diff line number Diff line change
@@ -0,0 +1,87 @@
<#
.SYNOPSIS
Basic script that will list what type of network adapter each powered on guest has been assigned
.DESCRIPTION
Basic script that will list what type of network adapter each powered on guest has been assigned

This was originally written to provide a quick way of discovering guests that had a certain network adapter type, such as 'e1000', for the
entire inventory of guests that are powered on
.PARAMETER Server
Name of vCenter Server (VI Server)
.INPUTS
System.String
.EXAMPLE
.\Get-AllVMNetworkAdapters.ps1 -Server VCENTER01.corp.com -Verbose
.NOTES
20150120 K. Kirkpatrick
[+] Added script to repo

#TAG:PUBLIC

GitHub: https://github.com/vScripter
Twitter: @vScripter
Email: [email protected]
Blog: www.vMotioned.com

[-------------------------------------DISCLAIMER-------------------------------------]
All script are provided as-is with no implicit
warranty or support. It's always considered a best practice
to test scripts in a DEV/TEST environment, before running them
in production. In other words, I will not be held accountable
if one of my scripts is responsible for an RGE (Resume Generating Event).
If you have questions or issues, please reach out/report them on
my GitHub page. Thanks for your support!
[-------------------------------------DISCLAIMER-------------------------------------]

.LINK
https://github.com/vScripter
#>

[cmdletbinding()]
param (
[parameter(Mandatory = $true,
Position = 0)]
[System.String]$Server
)

BEGIN {

$vmName = @{ Name = "VM"; Expression = { $_.Parent.Name } }

Write-Verbose -Message 'Checking for VMware.VimAutomation.Core PSSnapin'
if ((Get-PSSnapin -Name VMware.VimAutomation.Core -ErrorAction 'SilentlyContinue').Name -eq $null) {
try {
Add-PSSnapin VMware.VimAutomation.Core -ErrorAction 'Stop'
} catch {
Write-Warning -Message "Error adding VMware PSSnapin: $_"
Write-Warning -Message 'Exiting script'
Exit
} # try/catch
} else {
Write-Verbose -Message "VMware.VimAutomation.Core PSSnapin is already added; continuing..."
} # end if/else

Write-Verbose -Message "Connecting to vCenter Server '$Server'"
try {
Connect-VIServer -Server $Server -ErrorAction 'Stop' | Out-Null
} catch {
Write-Warning -Message 'Error connecting to vCenter'
Write-Warning -Message 'Exiting script'
Exit
} # end try/catch

} # end BEGIN block

PROCESS {
Write-Verbose -Message 'Gathering Network Adpater Details for ALL guests'

Get-VM |
Where-Object { $_.PowerState -eq "PoweredOn" } |
Get-NetworkAdapter |
Select-Object $vmName, Name, Type

} # end PROCESS block

END {
Write-Verbose -Message 'Done'
} # end END block
14 changes: 10 additions & 4 deletions Get-VMDiskSpace.ps1
Original file line number Diff line number Diff line change
Expand Up @@ -119,8 +119,6 @@ BEGIN {
- Connect to the provided vCenter Server, if none if provided, check to see if a connection has already been established
#>

$ErrorActionPreference = [System.Management.Automation.ActionPreference]::Stop

function Get-ScriptDirectory {
if ($hostinvocation -ne $null) {
Split-Path $hostinvocation.MyCommand.path
Expand Down Expand Up @@ -210,7 +208,7 @@ PROCESS {

if (($Name).GetType().Fullname -ne 'VMware.VimAutomation.ViCore.Impl.V1.Inventory.VirtualMachineImpl') {
try {
$Name = Get-VM -Name $Name
$Name = Get-VM -Name $Name -ErrorAction 'Stop'
} catch {
Write-Warning -Message "Error converting $Name to a proper VI object type"
Write-Warning -Message 'Exiting script'
Expand Down Expand Up @@ -279,7 +277,15 @@ PROCESS {

Write-Verbose -Message "Gathering VM Host details for $($vm.Name)"

$vmHostDetail = Get-VMHost -Id ($vmDetail.Summary.Runtime.Host)
try {
$vmHostDetail = Get-VMHost -Id ($vmDetail.Summary.Runtime.Host) -ErrorAction 'Stop'
} catch {
Write-Warning -Message "Error gathering host details"
Write-Warning -Message 'Exiting script'
Write-Output "$(TimeStamp) Error: gathering host details - $_" >> $log
Write-Output "$(TimeStamp) Error: Exiting script" >> $log
Exit
} # end try/catch


Write-Verbose -Message "Gathering partition details on $($vm.Name)"
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
PowerCLI
========

PowerCLI Scripts
Public PowerCLI script repository.