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
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
Note: Do not forget to run PowerShell as administrator.