A Microsoft Outlook email forum. Outlook Banter

If this is your first visit, be sure to check out the FAQ by clicking the link above. You may have to register before you can post: click the register link above to proceed. To start viewing messages, select the forum that you want to visit from the selection below.

Go Back   Home » Outlook Banter forum » Microsoft Outlook Express Email Newsgroup » Outlook Express
Site Map Home Register Authors List Search Today's Posts Mark Forums Read Web Partners

Shortcuts to OE



 
 
Thread Tools Search this Thread Display Modes
  #1  
Old April 23rd 08, 09:02 AM posted to microsoft.public.windows.inetexplorer.ie6_outlookexpress
caroloyl
external usenet poster
 
Posts: 2
Default Shortcuts to OE

Is it possible to create a desktop shortcut that will automatically open a
specific OE identity? The default shortcut always opens the last identity I
used and toggling with the "switch identities" dialog is getting kinda old.
I have two persona set up--no one else uses my computer so neither is
password protected. OE 6.00.2800.1123, Windows Millennium.

Thanks for your thoughts.

carol



Ads
  #2  
Old April 23rd 08, 12:50 PM posted to microsoft.public.windows.inetexplorer.ie6_outlookexpress
Rich/rerat
external usenet poster
 
Posts: 134
Default Shortcuts to OE

caroloyl,
I want to give credit the person(s) who wrote this script file, but have
forgotten, but you know who you are, thank-you.
1. You will need to get information from the registy. So you can change some
of the registry info in the the file.
2. After you get the information, on your Desktop create a NotePad file, and
copy/paste the following into the NotePad file.

VBS File to SYNC/ALL For Email & Newsgroups: (Do Not copy this line)

Set WshShell = WScript.CreateObject("Wscript.Shell")

'Clear the values from the registry
WshShell.RegWrite "HKCU\Identities\Last Username", "IdentityName"
WshShell.RegWrite "HKCU\Identities\Last User ID", "{Long ID No.}"
WshShell.RegWrite "HKCU\Identities\Default User ID", "{Long ID No.}"
WshShell.RegWrite "HKCU\Identities\Start As", "{Long ID No.}"

Dim taskID
taskID = "* - Outlook Express"
WshShell.Run "c:\progra~1\outloo~1\msimn.exe", 9
WScript.Sleep 1000
WshShell.AppActivate taskID
WScript.Sleep 1000
WshShell.SendKeys "%TZ" 'sends Alt-T-Z for Tools|Synchronize All
WScript.Sleep 1000
WshShell.SendKeys "%H" 'sends Alt-H to Hide spooler window
'WshShell.AppActivate taskID
'Launch Outlook Express
WSHShell.Run "Msimn.exe"
'Launch Outlook Express
WSHShell.Run "Msimn.exe"


VBS File to SYNC/ALL For Just Newsgroups: (Do Not copy this line)

Set WshShell = WScript.CreateObject("Wscript.Shell")

'Clear the values from the registry
WshShell.RegWrite "HKCU\Identities\Last Username", "IdentityName"
WshShell.RegWrite "HKCU\Identities\Last User ID", "{Long ID No.}"
WshShell.RegWrite "HKCU\Identities\Default User ID", "{Long ID No.}"
WshShell.RegWrite "HKCU\Identities\Start As", "{Long ID No.}"

Dim taskID
taskID = "* - Outlook Express"
WshShell.Run "c:\progra~1\outloo~1\Msimn.exe /newsonly", 9
WScript.Sleep 1000
WshShell.AppActivate taskID
WScript.Sleep 1000
WshShell.SendKeys "%TZ" 'sends Alt-T-Z for Tools|Synchronize All
WScript.Sleep 1000
WshShell.SendKeys "%H" 'sends Alt-H to Hide spooler window
'WshShell.AppActivate taskID
'Launch Outlook Express
WSHShell.Run "Msimn.exe /newsonly"
'Launch Outlook Express
WSHShell.Run "Msimn.exe /newsonly"

3. Then in NotePad Select File Save As Name the file with a *.VBS
extension.
4 Create a folder in My Documents, Name it Forced OE ID Copy and Paste
*.VBS file into it.
5. With OE closed, click on the file and see if it is launches OE as you
desire. if successful:
6. Right click the *.VBS fileSend To Select Send Shortcut to Desktop.
7. Rename shortcut to some you can find easily on the Desktop.
8. Again with OE closed, see if this shortcut launches OE.




--
Add MS to your News Reader: news://msnews.microsoft.com
Rich/rerat
(RRR News) message rule
Previous Text Snipped to Save Bandwidth When Appropriate


"caroloyl" wrote in message
...
Is it possible to create a desktop shortcut that will automatically open a
specific OE identity? The default shortcut always opens the last identity I
used and toggling with the "switch identities" dialog is getting kinda old.
I have two persona set up--no one else uses my computer so neither is
password protected. OE 6.00.2800.1123, Windows Millennium.

Thanks for your thoughts.

carol



  #3  
Old April 23rd 08, 02:03 PM posted to microsoft.public.windows.inetexplorer.ie6_outlookexpress
Ron Sommer
external usenet poster
 
Posts: 1,463
Default Shortcuts to OE

Some of the info can be found he
http://www.insideoe.com/tips/forceid.htm
--
Ronald Sommer

"Rich/rerat" wrote in message
...
caroloyl,
I want to give credit the person(s) who wrote this script file, but have
forgotten, but you know who you are, thank-you.
1. You will need to get information from the registy. So you can change
some
of the registry info in the the file.
2. After you get the information, on your Desktop create a NotePad file,
and
copy/paste the following into the NotePad file.

VBS File to SYNC/ALL For Email & Newsgroups: (Do Not copy this line)

Set WshShell = WScript.CreateObject("Wscript.Shell")

'Clear the values from the registry
WshShell.RegWrite "HKCU\Identities\Last Username", "IdentityName"
WshShell.RegWrite "HKCU\Identities\Last User ID", "{Long ID No.}"
WshShell.RegWrite "HKCU\Identities\Default User ID", "{Long ID No.}"
WshShell.RegWrite "HKCU\Identities\Start As", "{Long ID No.}"

Dim taskID
taskID = "* - Outlook Express"
WshShell.Run "c:\progra~1\outloo~1\msimn.exe", 9
WScript.Sleep 1000
WshShell.AppActivate taskID
WScript.Sleep 1000
WshShell.SendKeys "%TZ" 'sends Alt-T-Z for Tools|Synchronize All
WScript.Sleep 1000
WshShell.SendKeys "%H" 'sends Alt-H to Hide spooler window
'WshShell.AppActivate taskID
'Launch Outlook Express
WSHShell.Run "Msimn.exe"
'Launch Outlook Express
WSHShell.Run "Msimn.exe"


VBS File to SYNC/ALL For Just Newsgroups: (Do Not copy this line)

Set WshShell = WScript.CreateObject("Wscript.Shell")

'Clear the values from the registry
WshShell.RegWrite "HKCU\Identities\Last Username", "IdentityName"
WshShell.RegWrite "HKCU\Identities\Last User ID", "{Long ID No.}"
WshShell.RegWrite "HKCU\Identities\Default User ID", "{Long ID No.}"
WshShell.RegWrite "HKCU\Identities\Start As", "{Long ID No.}"

Dim taskID
taskID = "* - Outlook Express"
WshShell.Run "c:\progra~1\outloo~1\Msimn.exe /newsonly", 9
WScript.Sleep 1000
WshShell.AppActivate taskID
WScript.Sleep 1000
WshShell.SendKeys "%TZ" 'sends Alt-T-Z for Tools|Synchronize All
WScript.Sleep 1000
WshShell.SendKeys "%H" 'sends Alt-H to Hide spooler window
'WshShell.AppActivate taskID
'Launch Outlook Express
WSHShell.Run "Msimn.exe /newsonly"
'Launch Outlook Express
WSHShell.Run "Msimn.exe /newsonly"

3. Then in NotePad Select File Save As Name the file with a *.VBS
extension.
4 Create a folder in My Documents, Name it Forced OE ID Copy and Paste
*.VBS file into it.
5. With OE closed, click on the file and see if it is launches OE as you
desire. if successful:
6. Right click the *.VBS fileSend To Select Send Shortcut to Desktop.
7. Rename shortcut to some you can find easily on the Desktop.
8. Again with OE closed, see if this shortcut launches OE.




--
Add MS to your News Reader: news://msnews.microsoft.com
Rich/rerat
(RRR News) message rule
Previous Text Snipped to Save Bandwidth When Appropriate


"caroloyl" wrote in message
...
Is it possible to create a desktop shortcut that will automatically open a
specific OE identity? The default shortcut always opens the last identity
I
used and toggling with the "switch identities" dialog is getting kinda
old.
I have two persona set up--no one else uses my computer so neither is
password protected. OE 6.00.2800.1123, Windows Millennium.

Thanks for your thoughts.

carol



  #6  
Old April 24th 08, 11:59 PM posted to microsoft.public.windows.inetexplorer.ie6_outlookexpress
caroloyl
external usenet poster
 
Posts: 2
Default Shortcuts to OE

Thank you Rich and Ron! This going to be awesome :-)))


 




Thread Tools Search this Thread
Search this Thread:

Advanced Search
Display Modes

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

vB code is On
Smilies are On
[IMG] code is On
HTML code is Off
Forum Jump

Similar Threads
Thread Thread Starter Forum Replies Last Post
Shortcuts Butterbean65 Outlook Express 2 November 23rd 07 09:14 PM
Outlook 2003 - Saving Shortcuts Set on Shortcuts Nav Toolbar Dlbert Outlook - Installation 0 November 15th 07 06:47 PM
Name Shortcuts Kerry Outlook - Installation 6 December 19th 06 05:45 AM
Keyboard shortcuts Alan Smul Outlook - Calandaring 0 November 8th 06 07:06 PM
keyboard shortcuts JD2 Outlook and VBA 1 September 6th 06 06:25 PM


All times are GMT +1. The time now is 06:53 AM.


Powered by vBulletin® Version 3.6.4
Copyright ©2000 - 2025, Jelsoft Enterprises Ltd.Search Engine Friendly URLs by vBSEO 2.4.0
Copyright ©2004-2025 Outlook Banter.
The comments are property of their posters.