cancel
Showing results for 
Search instead for 
Did you mean: 

Assign new SLP Window to existing images

Ray_Downer1
Level 3

We have a backlog of SLP images and would like to change the SLP Window assigned to the back logged images. Is this possible? If so, how?

We have an SLP window that opens at 5 PM and closes at 7 AM. We would like to either temporarily change the SLP window or create a new one. That part is easy but we need to assign the modified/new SLP Window to existing backup images - not new images.

1 ACCEPTED SOLUTION

Accepted Solutions

RiaanBadenhorst
Moderator
Moderator
Partner    VIP    Accredited Certified

Hi

 

First you need to run

nbstl "SLP name" -L

That will show you all the versions of that SLP.

Then you can run

nbstl "SLP Name" -modify_version -version "Version number" -window window1, window2

Take note that for backup function there is no window so window1 in example above would be "__NA__"

Example

new window is called OFFICE_HOURS

nbstl EXCH_SLP -modify_version -version 3 -window __NA__, OFFICE_HOURS

View solution in original post

3 REPLIES 3

RiaanBadenhorst
Moderator
Moderator
Partner    VIP    Accredited Certified

Hi

 

First you need to run

nbstl "SLP name" -L

That will show you all the versions of that SLP.

Then you can run

nbstl "SLP Name" -modify_version -version "Version number" -window window1, window2

Take note that for backup function there is no window so window1 in example above would be "__NA__"

Example

new window is called OFFICE_HOURS

nbstl EXCH_SLP -modify_version -version 3 -window __NA__, OFFICE_HOURS

RamNagalla
Moderator
Moderator
Partner    VIP    Certified

you need to version of the SLP associated with old images and modifiy the version according to your need

nbslt is the command that helps to list all version of specific SLP and also helps to modiviy earler versions

look into below T/N for details and examples for nbstl command

https://support.symantec.com/en_US/article.HOWTO103885.html

 

your command should be something look like below to modify it

nbstl LCPolicy -modify_version -version 4 -window window_1

Ray_Downer1
Level 3

Thanks Riaan,

Your answer was exactly what i needed. Thanks for the detail about __NA__ and the example too.