Messages - gogogadgetscott [ switch to compact view ]

Pages: prev1 [2] 3 4 5next
6
I use an AutoHotkey script to handle startup. Be warned that it clears any current entries in the registry and startup folder.  First it asks if you want to run startup apps (all or nothing). Then it loops though a customizable startup folder (on my machine... D:\_Links\Startup) launching all shortcuts. I do this to ensure that one place controls all my startup apps. I also have FARR indexing the same folder to launch any of the same apps after startup.

#SingleInstance FORCE

MsgBox, 4, AutoHotkey Start, Whould like to run startup apps?, 10
IfMsgBox, No
return

;;; Clean reg
RegDelete, HKCU, SOFTWARE\Microsoft\Windows\CurrentVersion\Run
RegDelete, HKLM, Software\Microsoft\Windows\CurrentVersion\Run
RegWrite, REG_SZ, HKCU, Software\Microsoft\Windows\CurrentVersion\Run, Start, %A_ScriptFullPath%

;;; Clean start menu
FileDelete, %A_StartMenuCommon%\Programs\Startup\*.*
FileDelete, %A_StartMenu%\Programs\Startup\*.*

;;; Open apps
Loop, D:\_Links\Startup\*.lnk
{
    Run, %A_LoopFileFullPath%
}

7
Thanks for the link! Looks like a very promising tool.

8
General Software Discussion / Re: Outlook 2007 isn't so bad
« on: September 04, 2008, 11:07 PM »
My work flushed possibly $100k+ when migrating from GroupWise to Outlook. The IT department totally botched the archive migration. I never cried so much about an email program. GroupWise is fantastic. People were always telling me about features that Outlook does that GroupWise does not. For every feature I was happy to explain how or where to find it in GroupWise. It is function over form.

GroupWise allowed the sender to view when recipients opened an email without the silly read receipt. It also allows a single rule to filter both the inbox and sentbox. Outlook requires two rules. Anyone that hates this as much as I do, I am happy to share my custom VBA used in place of the lame rule support in Outlook.

It could be the way IT setup exchange but the auto delete sucks. They delete any emails from the server that are 60 days from the time sent or received. However, Outlook auto archives based on the last modified date. So is very possible to lose emails. As a result, I have to set auto archive to every day so emails are not at risk of deletion. I do keep my archive pst files on a network drive (Microsoft does not support this), but it cannot be opened on two machines at once (GroupWise allowed the archives to be open on many machines at once). Have no access to it via webmail (GroupWise had the same issue).

So with all these archive emails how do I perform a search? One archive at a time. Outlook will not search across multiple pst files. Groupwise had one search for everything.

I will give one point to Outlook for the ability to open many pst files. GroupWise only allowed one archive to be opened at a time.

Do not even get me started on the Exchange vs Outlook address book. Why can they not be one in the same? And why is it such a pain to give email access to your personal Outlook address book? Control Panel > Mail > Address Books > Add > Outlook Address Book. Open outlook > right-click Contacts folder > select Properties > click tab Outlook Address Book > check Show this folder as an e-mail Address Book.

What about the default profile dialog box? IT has the computers locked down so it does not allow one to set the default profile. Because ever machine has multiple mail profiles left from the migration, every time you open Outlook you have to select the Exchange profile (thank you AutoHotkey).

You call this progress? LOL

9
Windows Vista has the option to add a Folder, Folder name, and/or Folder path. Another option is to install a shell extension that adds a item to the context menu allowing you to open the folder or copy path to clipboard.

Been using a small program I wrote in VB a while back to copy path to clipboard.
FileShellControl

Snap1.bmp

10
FARR Plugins and Aliases / Re: New Script FARR Plugin: Clock
« on: August 31, 2008, 09:33 PM »
I am currently running v2.30.31 and find the performance has much improved on my machine. Thank you, mouser.

Pages: prev1 [2] 3 4 5next
Go to full version