Help
  • Explore Community
  • Get Started
  • Ask the Community
  • How-To & Best Practices
  • Contact Support
Notifications
Login / Register
Community
Community
Notifications
close
  • Forums
  • Knowledge Center
  • Events & Webinars
  • Ideas
  • Blogs
Help
Help
  • Explore Community
  • Get Started
  • Ask the Community
  • How-To & Best Practices
  • Contact Support
Login / Register
Sustainability
Sustainability

Join our "Ask Me About" community webinar on May 20th at 9 AM CET and 5 PM CET to explore cybersecurity and monitoring for Data Center and edge IT. Learn about market trends, cutting-edge technologies, and best practices from industry experts.
Register and secure your Critical IT infrastructure

PowerChute Network Shutdown OVA - Can you automate the deployment config settings

APC UPS Data Center & Enterprise Solutions Forum

Schneider, APC support forum to share knowledge about installation and configuration for Data Center and Business Power UPSs, Accessories, Software, Services.

cancel
Turn on suggestions
Auto-suggest helps you quickly narrow down your search results by suggesting possible matches as you type.
Showing results for 
Show  only  | Search instead for 
Did you mean: 
  • Home
  • Schneider Electric Community
  • APC UPS, Critical Power, Cooling and Racks
  • APC UPS Data Center & Enterprise Solutions Forum
  • PowerChute Network Shutdown OVA - Can you automate the deployment config settings
Options
  • Subscribe to RSS Feed
  • Mark Topic as New
  • Mark Topic as Read
  • Float this Topic for Current User
  • Bookmark
  • Subscribe
  • Mute
  • Printer Friendly Page
Invite a Co-worker
Send a co-worker an invite to the portal.Just enter their email address and we'll connect them to register. After joining, they will belong to the same company.
You have entered an invalid email address. Please re-enter the email address.
This co-worker has already been invited to the Exchange portal. Please invite another co-worker.
Please enter email address
Send Invite Cancel
Invitation Sent
Your invitation was sent.Thanks for sharing Exchange with your co-worker.
Send New Invite Close
Top Experts
User Count
BillP
Administrator BillP Administrator
5060
voidstar_apc
Janeway voidstar_apc
196
Erasmus_apc
Sisko Erasmus_apc
112
TheNotoriousKMP_apc
Sisko TheNotoriousKMP_apc
108
View All

Invite a Colleague

Found this content useful? Share it with a Colleague!

Invite a Colleague Invite
Back to APC UPS Data Center & Enterprise Solutions Forum
TobyF
TobyF
Cadet

Posted: ‎2024-11-07 12:11 PM

0 Likes
1
332
  • Mark as New
  • Bookmark
  • Subscribe
  • Mute
  • Subscribe to RSS Feed
  • Permalink
  • Print
  • Email to a Friend
  • Report Inappropriate Content

Link copied. Please paste this link to share this article on your social media post.

Posted: ‎2024-11-07 12:11 PM

PowerChute Network Shutdown OVA - Can you automate the deployment config settings

I am deploying the APC Powerchute Network Shutdown OVA appliance in a VMWare environment to multiple remote locations. I am trying to find out if it is possible to automate the deployment, rather than have to input the VM settings and the PowerChute configuration items manually for each one. If so, is there a document that outlines how to do that. I'm assuming it can be done through Powershell/Powercli.

  • Tags:
  • english
Reply

Link copied. Please paste this link to share this article on your social media post.

  • All forum topics
  • Previous Topic
  • Next Topic
Reply 1
TobyF
TobyF
Cadet

Posted: ‎2024-11-11 02:57 PM

0 Likes
0
289
  • Mark as New
  • Bookmark
  • Subscribe
  • Mute
  • Subscribe to RSS Feed
  • Permalink
  • Print
  • Email to a Friend
  • Report Inappropriate Content

Link copied. Please paste this link to share this article on your social media post.

Posted: ‎2024-11-11 02:57 PM

I did manage to figure out the answer to my original question. Here is what I found, in case anyone else struggles to determine how to pre-populate the PowerChute Network Shutdown OVA appliance provided by Schneider...

Prerequisites:

1. Download the .ova file (PCNS_en_5.1.0.ova)

2. Must have PowerShell connection to VMWare vCenter to run the needed commands

3. Must have PowerCLI also installed, in addition to Powershell

 

Steps:

1. Create a copy of the .ova file and name it according to your deployment needs.

2. Save copied file to a workstation/server that has Powershell and Powercli installed, with access to VMWare vCenter.

3. Open PowerShell as Administrator

4. Type command: connect-viserver "ipaddress of VMWare vCenter"

5. Enter credentials for VMWare vCenter connection when prompted

6.Type Command: $ovfPath = "in quotes type the path of the OVA file (example C:\Temp\PCNS_en_1.5.0.ova)"

  •  This command saves the file path as a reusable variable for PowerCLI

7. Type Command: $ovfconfig = get-ovfconfiguration -ovf $ovfpath

  • This parses the .ova file and returns the parameters that you can set for the deployment configuration and saves the output to the $ovfconfig reusable variable

8. Enter the following information to set the parameters for the virtual appliance .ova file. In PowerShell, type the following commands...

  • $ovfconfig.Common.DNS.Value = "Enter IP address of DNS servers, comma separated, no spaces"
  • $ovfconfig.Common.Gateway.Value = "Enter IP Gateway Address"
  • $ovfconfig.Common.IP.Value = "Enter IP address of PowerChute Network Shutdown OVA"
  • $ovfconfig.Common.NetMask.Value = "Enter Subnet Mask IP Address"
  • $ovfconfig.Common.HostName.Value = "Enter hostname of ESXi Host you are deploying the .ova to"
  • $ovfconfig.Common.rootpw.Value = "Enter root password"
  • $ovfconfig.Common.SSHEnabled.Value = "True"
  • $ovfconfig.Common.Timezone.Value = "Enter timezone information"
    • Options for Pacific/Mountain/Central/Eastern: America/Los_Angeles, America/Denver, America/Chicago or America/New_York
  • $ovfconfig.Common.PowerchuteUsername.Value = "Enter UPS network management login username"
  • $ovfconfig.Common.PowerchutePassword.Value = "Enter UPS network management password"
  • $ovfconfig.NetworkMapping.VM_Network.Value = "Enter name of virtual switch configured on VMWare Host"

9.Type Command: $ovfconfig.Common

  • This will verify the information you have entered for the Common settings parameters

10. Type Command: $ovfconfig.NetworkMapping

  • This will verify the virtual switch configuration you have entered

11. Type command: import-vapp -Source $ovfPath -name $ovfconfig.Common.Hostname -ovfconfiguration $ovfconfig -Datastore "Enter datastore you want to install on" -DiskStorageFormat Thin -VMhost "Enter FQDN Hostname of ESXi server you want to deploy your .ova to"

12. Once the deployment activities complete and BEFORE you boot for the first time, select the virtual machine you deployed in VMWare vSphere

  • Click on Configure->vApp
  • Click "Edit" button on IP Allocation Tab
  • Check the box "Authoring->IP allocation scheme->OVF Environment"
  • Click on OVF Details tab
  • Check the box "OVF environment transport->VMWare Tools"
  • Click "OK"

13. Wait for 5 minutes to ensure changes are applied

14. Boot VM and open a console window to view the boot process

15. VM should now be configured and boot straight to a login prompt

Reply

Link copied. Please paste this link to share this article on your social media post.

Preview Exit Preview

never-displayed

You must be signed in to add attachments

never-displayed

 
To The Top!

Forums

  • APC UPS Data Center Backup Solutions
  • EcoStruxure IT
  • EcoStruxure Geo SCADA Expert
  • Metering & Power Quality
  • Schneider Electric Wiser

Knowledge Center

Events & webinars

Ideas

Blogs

Get Started

  • Ask the Community
  • Community Guidelines
  • Community User Guide
  • How-To & Best Practice
  • Experts Leaderboard
  • Contact Support
Brand-Logo
Subscribing is a smart move!
You can subscribe to this board after you log in or create your free account.
Forum-Icon

Create your free account or log in to subscribe to the board - and gain access to more than 10,000+ support articles along with insights from experts and peers.

Register today for FREE

Register Now

Already have an account? Login

Terms & Conditions Privacy Notice Change your Cookie Settings © 2025 Schneider Electric

This is a heading

With achievable small steps, users progress and continually feel satisfaction in task accomplishment.

Usetiful Onboarding Checklist remembers the progress of every user, allowing them to take bite-sized journeys and continue where they left.

of