-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathfix-vm-foldername.ps1
101 lines (85 loc) · 7.73 KB
/
fix-vm-foldername.ps1
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
# A PowerCLI script that makes use of Storage VMotion to realign the files and folder names on a DataStore with the
# name assigned to the virtual machine.
# Jason Fenech (Sep 16)
#----------------------------------------------------------[Libraries]-----------------------------------------------
# Uncomment the 2 lines below if running script using PowerShell (not PowerCLI)
#
# Import-Module VMware.VimAutomation.Core -ErrorAction:SilentlyContinue
# Import-Module VMware.VimAutomation.Storage -ErrorAction:SilentlyContinue
#----------------------------------------------------------[Declarations]--------------------------------------------
#Change the following as required
####################################################################################
$vCenter="192.168.16.70"
$DSDest="iSCSI_LUNB"
$DSFreeSpace=0
$user="xxxxxxxx"
$pass="xxxxxxxx"
$auto=$true
$logFile="c:\test\renameVM_folders.txt"
####################################################################################
clear
#Connect to vCenter Server
try{
Disconnect-VIServer -Confirm:$false -ErrorAction:SilentlyContinue
Connect-VIServer -Server $vCenter -User $user -Password $pass -ErrorAction:Stop | Out-Null
}
catch{
Write-Host "Failed to connect to vCenter Server $vCenter"
exit #Exit script on error
}
#Get virtual machine view
$vms = get-view -viewtype VirtualMachine
#Loop
$vms | % {
#Datastore Free Space
$DSFreeSpace=(Get-Datastore -Name $DSDest).FreeSpaceGB
$DSFreeSpace=[Math]::Round($DSFreeSpace,3)
#Retrienve VM Name, size, DS folder and current DS
$DSpath = $($_.summary.Config.VmPathName.Split("]").split("/").trimstart())[1]
$VMDS = $_.config.DatastoreUrl.name
$VMName = $_.Name
$VMSize = ($_.Summary.Storage.Committed) / (1024*1024*1024);
$VMSize = [Math]::Round($VMSize,3)
if (!$DSpath.equals($VMName))
{
$_.Name | out-file -Append -FilePath $logFile
Write-Host "-------------------------------------------------------------------------------------------------" -ForegroundColor DarkCyan
Write-Host ("VM Name : " + $VMName);
Write-Host ("VM Size : " + $VMSize + " GB");
Write-Host ("DS Path : " + $_.summary.Config.VmPathName) -ForegroundColor DarkYellow;
if (($VMSize -lt $DSFreeSpace) -and !($VMDS.Equals($DSDest)))
{
Write-Host ("Status : Migration possible (DS:" + $DSFreeSpace + " GB, VM:" + $VMSize + " GB)") -ForegroundColor Green
#Let user choose whether to migrate or not
$ans=read-host "`nType YES to migrate"
#$ans="YES"
if ($ans.ToUpper() -eq "YES")
{
$DSOrig = $_.config.DatastoreUrl.name
Write-Host "Moving vm to DS $DSDest ..."
try
{
Move-VM -VM $VMName -Datastore $DSDest | Out-Null
Write-Host "Moving vm back to DS $DSOrig ..."
Move-VM -VM $VMName -Datastore $DSOrig | Out-Null
#Re-retrieve vm's DS path
$DSpath = (get-vm -Name $VMName).extensiondata.summary.config.VmPathName
Write-Host "New DS path is $DSpath" -ForegroundColor DarkYellow;
}
catch
{
write-host "Unexpected migration error!"
exit
}
}
else
{Write-Host "Skipping migrating!" -ForegroundColor DarkYellow}
}
if ($VMSize -ge $DSFreeSpace)
{Write-Host ("Warning : Not enough free space on DS to migrate vm!") -ForegroundColor Red}
if ($VMDS.Equals($DSDest))
{Write-Host ("Warning : Cannot migrate vm to same datastore!") -ForegroundColor Red}
Write-Host "-------------------------------------------------------------------------------------------------`n" -ForegroundColor DarkCyan
}
}
write-host "Done migrating!"