(Msg. 1) Posted: Thu Mar 29, 2007 4:49 pm
Post subject: Is there a way to print Outlook folder lists? Archived from groups: microsoft>public>outlook>printing (more info?)
I have a user who is trying to print folder lists in Outlook (eg, the list
of folders in a mail folder). I have been unable to find a method, either
built in or as an add on, to do this. Short of doing mulitple screen shots
is there a way to do this? She is using Outlook 2003 but I have 2007
installed on my system. Thanks in advance for any ideas,
(Msg. 2) Posted: Sun Apr 01, 2007 1:26 pm
Post subject: RE: Is there a way to print Outlook folder lists? [Login to view extended thread Info.] Archived from groups: per prev. post (more info?)
You might see if the custom form offered at http://www.wickett.net/Exchange
will work on Outlook 2003...I just tested it on Outlook 2007 and it doesn't
seem to work.
--
Jocelyn Fiorello
MVP - Outlook
*** Messages sent to my e-mail address will NOT be answered -- please reply
only to the newsgroup to preserve the message thread. ***
"Mike" wrote:
> I have a user who is trying to print folder lists in Outlook (eg, the list
> of folders in a mail folder). I have been unable to find a method, either
> built in or as an add on, to do this. Short of doing mulitple screen shots
> is there a way to do this? She is using Outlook 2003 but I have 2007
> installed on my system. Thanks in advance for any ideas,
>
> Mike
>
>
>
(Msg. 3) Posted: Wed Feb 03, 2010 5:28 am
Post subject: Re: Is there a way to print Outlook folder lists? [Login to view extended thread Info.]
Mike wrote:
I have a user who is trying to print folder lists in Outlook (eg, the list
of folders in a mail folder). I have been unable to find a method, either
built in or as an add on, to do this. Short of doing mulitple screen shots
is there a way to do this? She is using Outlook 2003 but I have 2007
installed on my system. Thanks in advance for any ideas,
Mike
Look at this tool to Print Directory Listings called Print Directory.
(Msg. 4) Posted: Tue Sep 14, 2010 4:29 am
Post subject: Outlook folder name extraction [Login to view extended thread Info.]
The below allows you to select an outlook folder or archive and it then exports all the subfolder names to a text file. Works with Outlook 2007. The the following code to a vbs file.
Thanks,
Hasan.
Code:
dim loggit_logfilename, loggit_fso, loggit_silent
loggit_logfilename = ".\Outlook_Folder_List.log"
loggit_silent = true ' log file only or with MsgBox/Echo
set loggit_fso = CreateObject("Scripting.FileSystemObject")
Set objOutlook = CreateObject("Outlook.Application")
Set objNamespace = objOutlook.GetNamespace("MAPI")
Set olFolder = objNamespace.PickFolder
loggit "Selected Archive Name: " & olFolder.Name
loggit "Total Number of Sub Folders: " & olFolder.Folders.Count
GetSubfolders(olFolder)
Sub GetSubfolders(objParentFolder)
Set colFolders = objParentFolder.Folders
For Each objFolder in colFolders
Set objSubfolder = objParentFolder.Folders(objFolder.Name)
loggit objFolder.FolderPath
GetSubfolders objSubfolder
Next
End Sub
' From http://www.rgagnon.com/wshdetails/wsh-0003.html -=-=-=-=-=-=-=-=-=-
sub loggit (msg)
set stream = loggit_fso.OpenTextFile(loggit_logfilename, 8, True)
stream.writeline date & " " & time & ": " & msg
stream.close
if not loggit_silent then
WScript.echo msg
end if
end sub
(Msg. 5) Posted: Thu Oct 14, 2010 7:21 am
Post subject: Print Outlook Folders [Login to view extended thread Info.]
To the person who shared vbs code:
It isn't enough for me to have this code if I am not familiar with how to proceed from the point of copying your code to some vbs file. Please help with the steps needed to accomplish this. I am totally unfamiliar with what to do next regarding putting this code into a vbs file and then running this file in Outlook.
To write that you put this code into a vbs file is so foreign to me that I do not at all understand what to do next.
Please help!!
(Msg. 6) Posted: Thu Oct 14, 2010 7:46 am
Post subject: [Login to view extended thread Info.]
To use the vbs code here is what you need to do:
1. Create a notepad file (In WinXP found in start > program > accessories > notepad)
2. Paste the vbs code in the file.
3. Save the file as folderoutput.vbs
Make sure that the file that you create has a vbs extension and not txt. To execute the file you just double click on the vbs file. It will create the output file in the same folder as the vbs file.
All times are: Eastern Time (US & Canada) (change)
Page 1 of 1
You can post new topics in this forum You can reply to topics in this forum You cannot edit your posts in this forum You cannot delete your posts in this forum You cannot vote in polls in this forum