Just for info looked at this a little.
Could manually delete the LNK*.PNL files, but that would then require some other cleanup.
HIERARCH.PM would have links that would need to be removed.
Also, STATE.PMJ has links as well.
In my current state only have 1 search.
HIERARCH.PM has
1,1,"3A8E1356:Recent search re","024B349:My mailbox","Recent search results",1,20
0,0,"fa971a213c9f40298c81bdaec8615956","3A8E1356:Recent search re","Pegasus (23 Mar 23 2:55)"
and STATE.PMJ has
8db5be2f5aabc53ac496d2f65b6129d7=10,10,510,360,"147,209,122,256,50,0"
fa971a213c9f40298c81bdaec8615956=10,10,510,360,"0,0,0,256,0,0"
So, in my case would require deleting those lines and deleting LNK01C33.PNL
STATE.PMJ might clean itself with an open and the close of Pegasus.
HIERARCH.PM would get the name_unavailable with open after deleting files.
I have script that cleans those out on Linux, but similar could be done on windows.
#!/usr/bin/bash
grep -v Name_Unavailable <HIERARCH.PM >HIERARCH.PMz
cp HIERARCH.PMz HIERARCH.PM
I generally don't have more than 3 searches so deleting isn't an issue.
Good Luck.
Just for info looked at this a little.
Could manually delete the LNK*.PNL files, but that would then require some other cleanup.
HIERARCH.PM would have links that would need to be removed.
Also, STATE.PMJ has links as well.
In my current state only have 1 search.
HIERARCH.PM has
1,1,"3A8E1356:Recent search re","024B349:My mailbox","Recent search results",1,20
0,0,"fa971a213c9f40298c81bdaec8615956","3A8E1356:Recent search re","Pegasus (23 Mar 23 2:55)"
and STATE.PMJ has
8db5be2f5aabc53ac496d2f65b6129d7=10,10,510,360,"147,209,122,256,50,0"
fa971a213c9f40298c81bdaec8615956=10,10,510,360,"0,0,0,256,0,0"
So, in my case would require deleting those lines and deleting LNK01C33.PNL
STATE.PMJ might clean itself with an open and the close of Pegasus.
HIERARCH.PM would get the name_unavailable with open after deleting files.
I have script that cleans those out on Linux, but similar could be done on windows.
\#!/usr/bin/bash
grep -v Name_Unavailable <HIERARCH.PM >HIERARCH.PMz
cp HIERARCH.PMz HIERARCH.PM
I generally don't have more than 3 searches so deleting isn't an issue.
Good Luck.