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

How I can upgrade firmware AP8953?

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
  • How I can upgrade firmware AP8953?
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
Teken
Spock Teken
109
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
JAZ
Crewman JAZ
Crewman

Posted: ‎2023-10-03 11:56 PM

0 Likes
3
1122
  • 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: ‎2023-10-03 11:56 PM

How I can upgrade firmware AP8953?

Hello,

 

I have a lot of AP8953 but I don't know how I can do upgrade firmware and where I found firmware or tools for that? Someone can help me please?

Thanks.

  • Tags:
  • AP8953
  • english
Reply

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

  • All forum topics
  • Previous Topic
  • Next Topic
Replies 3
Morgan_D
Crewman Morgan_D Crewman
Crewman

Posted: ‎2023-10-08 05:57 PM

0 Likes
0
1090
  • 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: ‎2023-10-08 05:57 PM

Hello Jaz,

Have you explored this?

https://www.apc.com/eg/en/faqs/FA156099/

 

But the best would probably be to leverage EcoStruxure IT Expert

https://ecostruxureit.com/ecostruxure-it-expert/

On top of providing monitoring, benchmarking, alarms, dashboards, health assessment, cybersecurity check, it has a device management, where you can centralized the management of your equipment and apply new firmware release directly. Much easier I think.

Reply

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

dpierce4776
Lieutenant dpierce4776
Lieutenant

Posted: ‎2023-10-08 06:44 PM

0 Likes
0
984
  • 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: ‎2023-10-08 06:44 PM

There are 3 ways I know of to do what you are needing to do.

1. if you know something about batch scripting you can use a FOR loop to loop though a a CSV file with the IP addresses of each of the PDUs in question. You would need to download the firmware in question then use something like this 

REM @echo off
set upscurfileloc=%cd%
set uploadunitold=
FOR /F "skip=1 tokens=* delims=," %%G IN (%upscurfileloc%\Downlist.csv) do call :SetVars %%G
if DEFINED uploadunitold echo ************************************************************
if DEFINED uploadunitold echo %uploadunitold% complete!!! All downgrades finished!!!
if DEFINED uploadunitold echo ************************************************************
pause
goto :eof

:SetVars
set upshost=%1
set uploadip=%2
cd %upscurfileloc%\files
set sa=
DIR /A-D /B > %upscurfileloc%\Downgrade.txt
cd..
set counter=0
if DEFINED uploadunitold echo ************************************************************
if DEFINED uploadunitold echo %upshost% complete moving to %uploadunit%
if DEFINED uploadunitold echo ************************************************************
FOR /F "tokens=1* delims=\-" %%G IN (%upscurfileloc%\Downgrade.txt) DO Call :WakeFTPScript %%G
fc %upscurfileloc%\downgrade.txt %upscurfileloc%\listtest.txt >NUL && set sa=good || set sa=bad
if %sa% EQU good (
ECHO ALL GOOD!!!!!!!
goto :eof
)
if %sa% EQU bad (
set counter=0
FOR /F "tokens=1* delims=\-" %%H IN (%upscurfileloc%\Downgrade.txt) DO Call :WakeFTPScript %%H
goto :eof
)
goto :eof

:WakeFTPScript
if %counter% GEQ 1 goto :CreateFTPScript
echo Makeing sure %upshost% FTP is active
echo open %uploadip%> %upscurfileloc%\WakeFTP.txt
echo DCSapc>> %upscurfileloc%\WakeFTP.txt
echo DCSapc>> %upscurfileloc%\WakeFTP.txt
echo quit>> %upscurfileloc%\WakeFTP.txt
sleep 5
@ftp -i -s:"%upscurfileloc%\WakeFTP.txt"
sleep 20
echo %upshost% FTP is active
sleep 5
goto CreateFTPScript
goto :eof

:CreateFTPScript
set upfile=%1
if %counter% EQU 0 echo Downgrading %uploadunit%
echo open %uploadip%> %upscurfileloc%\APC22.txt
echo DCSapc>> %upscurfileloc%\APC22.txt
echo DCSapc>> %upscurfileloc%\APC22.txt
echo bin>> %upscurfileloc%\APC22.txt
echo put %upscurfileloc%\files\%upfile%>> %upscurfileloc%\APC22.txt
echo ls . %upscurfileloc%\listtest2.txt>> %upscurfileloc%\APC22.txt
echo quit>> %upscurfileloc%\APC22.txt
sleep 5
if %counter% LEQ 1 echo Uploading %upfile% to %upshost%
@ftp -i -s:"%upscurfileloc%\APC22.txt"
type listtest2.txt | findstr /b a> listtest.txt
set /a "counter+=1"
Echo %counter%
if %counter% LEQ 1 goto :pingtest

:continue
if %counter% LEQ 1 echo Finished uploading %upfile% to %upshost%
if %counter% EQU 1 sleep 10
if %counter% EQU 1 echo Finished Config File for %uploadunit%
goto :eof

goto :eof

:pingtest
sleep 5
PING %uploadip% -n 1
IF %ERRORLEVEL% EQU 0 (
COLOR 97
Echo ********** UNIT IS UP **********
sleep 10
goto :Continue
)
IF %ERRORLEVEL% EQU 1 (
COLOR 47
Echo ********** UNIT IS still Booting UP **********
Sleep 5
goto :pingtest
)

:eof

 

2. Most of the new(er) firmware files come in a zip file. Once you unzip the file there is a "devices.txt file in it. there are a few FAQs on using that to input all the ip addresses and log on info for all your devices. Then the firmware utility will run though the list upgrading all the PDUs. If you do not know batch well then this is the second easiest and it is the cheapest way. 
3. Get either Datacenter Expert or EcoStruxureware. They are basically the same APC is just pushing people to its web platform. Depending on your company this might be OK or not OK with the security team. Using these programs allows you to upgrade many devices at once. They also tell you when new firmware comes out.

 

Reply

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

JAZ
Crewman JAZ
Crewman

Posted: ‎2024-02-14 12:06 AM

0 Likes
0
880
  • 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-02-14 12:06 AM

Thanks for your help, I found nmc utilitary and it works fine.

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