- VMware vSphere 5.5 Cookbook
- Abhilash GB
- 147字
- 2021-07-23 20:21:59
Removing an ESXi image profile
Starting with the vSphere Image Builder 5.1, there is a cmdlet Remove-EsxImageProfile
to remove an image profile. The command and its syntax remain the same with vSphere Image Builder 5.5 as well.
How to do it...
The following procedure will guide you through the steps required to remove/delete image profiles:
- Issue the command
Get-EsxImageProfile
to list all the available image profiles. - Identify the image profile to be deleted. In this example, we will delete the image profile
Profile001
. - Issue the
Remove-EsxImageProfile
command to delete the image profile:Remove-EsxImageProfile –ImageProfile "Profile001"
How it works...
The Remove-EsxImageProfile
command will only delete the image profile from the current vSphere PowerCLI session. However, it is important to know that you can't remove an image profile from a read-only software depot. For example, the predefined image profiles available in the ESXi offline bundle cannot be removed.
推薦閱讀
- Raspberry Pi for Python Programmers Cookbook(Second Edition)
- Redis Applied Design Patterns
- 自己動手寫Java虛擬機
- 控糖控脂健康餐
- 數據結構簡明教程(第2版)微課版
- Hands-On C++ Game Animation Programming
- Magento 1.8 Development Cookbook
- Backbone.js Blueprints
- Python機器學習算法與實戰
- Python數據分析從0到1
- JavaScript 程序設計案例教程
- 學Python也可以這么有趣
- HTML5 APP開發從入門到精通(微課精編版)
- Java SE實踐教程
- Learning Node.js for .NET Developers