Setting Up an Offline Depot for VMware Cloud Foundation 9.x Using Apache on Ubuntu

VMware Cloud Foundation 9 introduces a more comprehensive and flexible architecture, making it easier to design and deploy modern infrastructure stacks. One of the key improvements is the streamlined deployment of core components like vCenter, ESXi, NSX, and Aria Operations. Compared to previous versions—especially vSphere 8 and Aria Suite 8—VCF 9 simplifies lifecycle management and reduces manual steps. For example, […]

How to Run a PowerShell Script Inside Python

Sometimes when writing Python code, you might need to call an external script to do something that’s easier in another language. A common case is running a PowerShell script from Python. For example: The good news: Python’s built-in subprocess module makes this very straightforward. Step 1 – Create a PowerShell Script Let’s say we have a file called hello.ps1 in […]