0

iis> application pool> (recycling wizard)> i succeeded to edit "specific time(s) by appcmd. i cant find help how to check "Scheduled time(s) through appcmd.

thanks

Udi
  • 11

1 Answers1

1

You could get application pool recycle scheduled time by using below command

Import-Module WebAdministration
(Get-ItemProperty ('IIS:\AppPools\sample1') -Name Recycling.periodicRestart.schedule.collection) | select value

enter image description here

Note: Do not forget to run PowerShell as administrator.

Jalpa Panchal
  • 8,251
  • 1
  • 11
  • 26