-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathfolder-create.ps1
40 lines (32 loc) · 1.49 KB
/
folder-create.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
<#
.SYNOPSIS
Create a folder on a datastore
.DESCRIPTION
Script used to test folder creation on a datastore with a user account. This will test permissions as well as provide debug output
for foreman_bootdisk debugging
Replace Line# 19 with your vCenter URL and username/password you are going to authenticate with
Replace Line# 21 Datastore1 with the datastore you are wanting to test against
.NOTES
File Name : folder-create.ps1
Author : Chris Roberts [email protected]
Prerequisite : PowerShell V2
.LINK
Script posted at:
http://github.com/chris1984/vmware-scripts
#>
# Connect to the VMware vCenter
Connect-VIServer -Server <vcenterfqdn> -User <adminuser> -Password <adminpassword>
# Store datastore as variable so we can use it for folder creation
$DataStore = Get-Datastore -Name Datastore1
# Set datastore as a PowerShell drive so we do not have to mess with Linux/Windows local file creation
New-PSDrive -Location $datastore -Name DS -PSProvider VimDatastore -Root "\"
# Create the directory on the datastore
New-Item -Path DS:\powershell_directory -ItemType Directory
# Let user know directory was created
Write-Host "Directory powershell_directory has been created on datastore $DataStore"
# Remove PowerShell drive
Remove-PSDrive -Name DS -Confirm:$false
# Let user know script is finished
Write-Host "Script finished, please verify in vCenter that the directory is present"
# Disconnect from vCenter server
Disconnect-VIServer -Confirm:$false