Jump to content

Sky Slate Blueberry Blackcurrant Watermelon Strawberry Orange Banana Apple Emerald Chocolate

how to open the recycle bin?


  • Please log in to reply
7 replies to this topic
recy
  • Guests
  • Last active:
  • Joined: --
Someone know if is possible to open the recycle bin whit ahk?
Thanks.

Dippy46
  • Members
  • 171 posts
  • Last active: Aug 17 2007 06:53 AM
  • Joined: 06 Jul 2004
@recy

Try the following:
Works ok in xp.


RUN C:\RECYCLED




Dave.
Simple ideas lie within reach, only of complex minds

recy
  • Guests
  • Last active:
  • Joined: --
Thank you, Dave!

Paulo
  • Members
  • 28 posts
  • Last active: May 31 2007 12:53 AM
  • Joined: 21 Apr 2006
Or use the clsid:
Run ::{645FF040-5081-101B-9F08-00AA002F954E}

Dippy46
  • Members
  • 171 posts
  • Last active: Aug 17 2007 06:53 AM
  • Joined: 06 Jul 2004
@paulo

Thanx for that, that's the one I was looking for but couldn't remember

Dave.
Simple ideas lie within reach, only of complex minds

Paulo
  • Members
  • 28 posts
  • Last active: May 31 2007 12:53 AM
  • Joined: 21 Apr 2006
Hello,
Here is a list of some more clsid we can use.
Administrative Tools= ::{D20EA4E1-3957-11d2-A40B-0C5020524153}
Briefcase= ::{85BBD92O-42A0-1O69-A2E4-08002B30309D}
Control Panel= ::{21EC2O2O-3AEA-1O69-A2DD-08002b30309d}
Fonts= ::{D20EA4E1-3957-11d2-A40B-0C5020524152}
History= ::{FF393560-C2A7-11CF-BFF4-444553540000}
Inbox= ::{00020D75-0000-0000-C000-000000000046}
Microsoft Network= ::{00028B00-0000-0000-C000-000000000046}
My Computer= ::{20D04FE0-3AEA-1069-A2D8-08002B30309D}
My Network Places= ::{208D2C60-3AEA-1069-A2D7-08002B30309D}
Network Computers= ::{1f4de370-d627-11d1-ba4f-00a0c91eedba}
Network Connections= ::{7007ACC7-3202-11D1-AAD2-00805FC1270E}
Printers and Faxes= ::{2227A280-3AEA-1069-A2DE-08002B30309D}
Recycle Bin= ::{645FF040-5081-101B-9F08-00AA002F954E}
Scanners and Cameras= ::{E211B736-43FD-11D1-9EFB-0000F8757FCD}
Scheduled Tasks= ::{D6277990-4C6A-11CF-8D87-00AA0060F5BF}
Temporary Internet Files= ::{7BD29E00-76C1-11CF-9DD0-00A0C9034933}
Web Folders= ::{BDEADF00-C265-11d0-BCED-00A0C90AB50F}

baby-luck
  • Members
  • 15 posts
  • Last active: Aug 10 2006 08:06 PM
  • Joined: 25 Apr 2006
I had tried a few of the main ones using
Run, explorer.exe ::{21EC2O2O-3AEA-1O69-A2DD-08002b30309d}
but found that the Control Panel one (shown) didn't work :(

PhiLho
  • Moderators
  • 6850 posts
  • Last active: Jan 02 2012 10:09 PM
  • Joined: 27 Dec 2005
I use this (on WinXP):
menuControlPanel =
(
&Control Panel
@%WinDir%\system32\control.exe
&Desktop
@%WinDir%\system32\control.exe desk.cpl
Desktop / &Screensaver
@%WinDir%\system32\control.exe desk.cpl,,1
&Installed Programs
@%WinDir%\system32\control.exe appwiz.cpl
)

The @ is a private convention stating to do a simple Run (I use > for Send).
Not as universal (?) and abstract as UUID, but work well enough for me.
Posted Image vPhiLho := RegExReplace("Philippe Lhoste", "^(\w{3})\w*\s+\b(\w{3})\w*$", "$1$2")