Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations gkittelson on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Search results for query: *

  1. nickpark

    Exchange feasibility question - forwarding emails after a delay

    1) Users send to a Public folder (or central mailbox) Central department then fwd it on from there. 2) Complex requirement - requires code - can be done even as a quick VBSCRIPT. Not as easy as Lotus Notes - but only because the Notes stuff is all integrated including the development...
  2. nickpark

    Creating Folders for ALL users

    1. Create a PST containing the folders. 2. Use exmerge to import it into everyone's mailbox. See http://www.msexchange.org/tutorials/Adding-Events-Multiple-Mailboxes-Exmerge.html a great step by step article. Alternatively, write a bit of CDO vbscript to do it. e.g...
  3. nickpark

    Deploy msi + custom file

    Some people have roaming profiles. Most people have local profiles. Users share computers. Ideally, the app is not installed to all computers except for a start-menu/desktop icon shortcut which when clicked, installed the app if not already installed and copies the config file if not already...
  4. nickpark

    Deploy msi + custom file

    I have an msi I can deploy via SMS. I also wish to deploy a configuration file in the local user profile (say, in the c:\Documents and Settings\Profile\Bob\Application Data\AppName\ folder) Is this easy using sms2003? Or do i need some jiggery pokery?
  5. nickpark

    Find text in internet explorer window

    you saying this doesnt work? or are you redirecting the stdout of the script to a file? Dim str str= ie.document.body.innerText Set myFSO = CreateObject("Scripting.FileSystemObject") Set f = myFSO.OpenTextFile("page.html", 8, True) f.WriteLine(str) f.Close
  6. nickpark

    Find text in internet explorer window

    instr tells you whether or not string1 appears in string2. It doesnt modify your strings test="Bin Laden" if instr (ie.document.body.innerText,test) then Wscript.echo "I have found " & test else Wscript.echo test & " is missing" end if
  7. nickpark

    KickStart to Find and Delete True Duplicate Files

    OK, thanks. If I have to do it myself on Windows, i was going to use md5sum.exe from UnxUtils.
  8. nickpark

    FRS Replication Hellp

    Not an exchange problem though, is it?
  9. nickpark

    Is The X.400 Protocol Still Needed?

    No, lots of organisations use X.400. You are unlikely to though and if you need to, its easy (ish) to setup a connector in exhange.
  10. nickpark

    Sorting OUs

    Good empirical comparison of sorted speeds here... http://www.devx.com/vb2themax/Article/19900
  11. nickpark

    Sorting OUs

    Forget what i said This nice chap uses a disconnected record set and sorts by canonicalName asc... http://www.visualbasicscript.com/m_23974/tm.htm
  12. nickpark

    Sorting OUs

    OK, yes, silly me. I doubt the sorting is the slow bit. I'd add some Wscript.Echo Now prexied logging in your script so you can see which parts are taking the time. Bubble sort is slow... performance at N^2 magnitude Quicksort is N Log 2 N For 180 records, bubble sort would take avg effort...
  13. nickpark

    open password for excel files in VBscript

    Could you elaborate on what you require as that sentence didnt make sense to me.
  14. nickpark

    Sorting OUs

    Surely, even a bubble sort cant take more than a couple of milliseconds to sort only a couple hundred items?? Why can you not simply sort by DN? Sort by Name? Use quicksort?
  15. nickpark

    KickStart to Find and Delete True Duplicate Files

    Did you manage to write this? Can you publish it?
  16. nickpark

    mail enabled public folders getting spammed

    your spam software isnt
  17. nickpark

    Custom app Calendar to Exchange 2003 Calendar

    It depends. I generally look to CDO with vbscript for batch programs; VBA for quick outlook based programs. How exactly would your app work - maybe try outlookcode.com for non-enterprise app coding.
  18. nickpark

    Use Perfmon to monitor a named process to notify me if it stops runnin

    Is this possible? I have setup perfmon to notify me via email when disk space is low or cpu is high. I can setup perfmon to notify me using the "Alert when the value is" Under <number> rule to tell me when a process has been recently started using the Process(instance.exe)\Elapsed Time...
  19. nickpark

    Outlook Font Changes after Sent

    [wink]
  20. nickpark

    Global Address List

    I think if you remove permission for your users to view the GAL, it will then default to the next one. Usual disclaimer: Try it on test system first as i havent tried this. Obviously you'll have to grant the correct read permissions to each company address list.

Part and Inventory Search

Back
Top