Switches, Hubs, and Modems
1748014 Members
4600 Online
108757 Solutions
New Discussion юеВ

Re: PCM+ v3 automated backup

 
IJdo Dijkstra
Occasional Contributor

PCM+ v3 automated backup

Does anybody know if there is a way to automatically schedule the backup feature in PCM+ v3?

cheers,

IJdo
3 REPLIES 3
Mohammed Faiz
Honored Contributor

Re: PCM+ v3 automated backup

Hi,

Not that I could find when I looked last. I was a bit annoyed by this too, you can schedule it to backup switches but no one thought about doing the same for PCM?
cenk sasmaztin
Honored Contributor

Re: PCM+ v3 automated backup

pcm 3.0 available back up database (new feature)

Backup and restore utility: The backup and recovery utility provides HP ProCurve Manager Plus with the ability to back up the net management database and the configuration files of HP ProCurve Manager Plus 3.0. Users never have to worry about losing known good configurations or database information when making changes or updates to the network. New!


may be you create one bat file for backup pcm data base folder's
for example

xcopy /s /c /d /e /h /i /r /k /y "C:\(PCM DATA BASE)" "D:\PCM BACKUP"
cenk

cenk sasmaztin
Honored Contributor

Re: PCM+ v3 automated backup

or other bat. file example

@echo off
CLS
ECHO.
ECHO %DATE% backup date!
ECHO please shutdown all application and system folder...
pause
ECHO start backup!
ECHO please wait...
MKDIR D:\BACKUP\PROGRAM\PROGRAM_%DATE%
XCOPY C:\PROGRAM\DATA\*.* D:\BACKUP\PROGRAM\PROGRAM_%DATE% /E /Y /H /R /Q
Command.com/c DIR D:\BACKUP\PROGRAM\*.* /A /S > D:\BACKUP\PROGRAM\PROGRAM_%DATE%\LOG.TXT
ECHO.
ECHO BACKUP SUCCESFULL!
ECHO START pcm!
ECHO.
pause
START /Dpatch D:\BACKUP\PROGRAM\PROGRAM_%DATE%\
EXIT
cenk