I'd appreciate it if anyone give me suggestion on how do we get the list of publications which is published during certain ranges of time in ISHREMOTE?
For example: List the publication published during Startdate: DD-MM-YYYY to EndDate: DD:MM:YYYY
You are currently working on UAT
I'd appreciate it if anyone give me suggestion on how do we get the list of publications which is published during certain ranges of time in ISHREMOTE?
For example: List the publication published during Startdate: DD-MM-YYYY to EndDate: DD:MM:YYYY
Hi,
You can get all publish event by passing minus date value from today.
Get-IshVersion -IshSession $ishSession
$ishsession.Application25.GetVersion()
$xyz=Get-IshEvent -EventTypes publish -ModifiedSince (Get-Date).AddDays(-300).ToString("dd/MM/yyyy HH:mm:ss")
echo $xyz out-file -encoding utf8 -append 'c:/Result/publish.txt'
Hi,
You can get all publish event by passing minus date value from today.
Get-IshVersion -IshSession $ishSession
$ishsession.Application25.GetVersion()
$xyz=Get-IshEvent -EventTypes publish -ModifiedSince (Get-Date).AddDays(-300).ToString("dd/MM/yyyy HH:mm:ss")
echo $xyz out-file -encoding utf8 -append 'c:/Result/publish.txt'
This is to find the Modified since from Get-ISHEvent, But looking for the list of publication with names between the date range.