Summary: Easily identify which files have been saved in the PowerShell ISE.
How can I see which of my open files in the Windows PowerShell ISE been saved?
To show a list of files that have been saved, run the following code in the ISE.
$psISE.PowerShellTabs.files | where { $_.IsSaved } | Select-Object DisplayName