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 strongm 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. fredmartinmaine

    WebScrapBook

    I just added the extension called WebScrapBook to Firefox and having a hard time getting it to work properly. I'm sure I'm misconfiguring it. Goal is simple. If I have a web page up, I want to save that page, its images, and any images for which there is a link. I don't want to recurse...
  2. fredmartinmaine

    Domain Controller without DNS Server

    We had a pair of Domain Controllers that offered AD Authentication, DNS and DHCP. Dynamic DNS actually. A decision has been made to move DHCP and DNS to another device, a firewall. I moved DHCP a while ago, and other than not having Dynamic DNS, it's worked well. However, when I start up DNS...
  3. fredmartinmaine

    Robocopy OK on command line, errors when in batch file

    This robocopy command: robocopy "H:" "T:\My Drive" /E /XD "*$RECYCLE.BIN*" /XF "*thumbs.db*" /V /LOG:"H:\robocopy.txt" Works fine from a DOS command line, but in a batch file that's run from the command line, produces this: Source - I:\IT Files\Projects\My Drive\┬áH:\MX┬áT:\My Drive Dest -...
  4. fredmartinmaine

    Properly closing Outlook

    Had a similar issue a while back with Excel and solved it, in similar fashion to the below, but it doesn't appear to be working with Outlook. My vbscript opens Outlook to parse some things out of an email body. When it comes time to quit the script, I close Outlook like this...
  5. fredmartinmaine

    Issues quitting Excel

    In a vbscript, I open an Excel file to read a few items from it, then close it. I make no changes. However, even though I quit Excel, the process stays in Task Manager, until my script exits. Set objExcel = CreateObject("Excel.Application") objExcel.Application.Visible = False Set ExcelFile...
  6. fredmartinmaine

    Get HTML Email body into IE document object

    I have a need to open Outlook emails, which contain HTML tables. I need to parse some data out of the tables. I have the email in an object, and can access the HTML body: Set objOutlook = CreateObject("Outlook.Application") Set objEmail = objOutlook.CreateItemFromTemplate(EmailFile)...
  7. fredmartinmaine

    Outlook; user environment differences

    The script below opens the Outlook default Inbox of the logged-in user. It displays the number of emails in the inbox, then interates through the first 4 emails, displaying sender and subject. I log in as UserOne. The script is in a shared folder. When I run the script, it works exactly as...
  8. fredmartinmaine

    MS Word Save As PDF / scheduled task

    ' ChildScript.vbs Set objWord = CreateObject("Word.Application") Set objDoc = objWord.Documents.Add() Set objSelection = objWord.Selection objSelection.TypeText "Hello World" objDoc.SaveAs "test.pdf", 17 ' 17 = PDF objDoc.Close 0 The above code creates a Word doc and saves it as a PDF file...
  9. fredmartinmaine

    Exchange Public Folder Db removal / woes

    I'm attempting to decommission Exchange 2010. We have one public folder DB, which at the moment contains no folders in either 'Default Public Folders' or 'System Public Folders'. When I try to remove the Public Folder DB, it says there are replicas, so can't. When I try to query the PF DB in...
  10. fredmartinmaine

    IP Office 500 complete reset

    I have been tasked with doing a complete factory reset of: - Avaya IP Office 500 - IP400 modules (two) The purpose is to clear them (and put them up for sale if possible). I know how to erase our company config from it. Is there anything else that I can do? Fred
  11. fredmartinmaine

    GSuite/GMail Auto reply

    Auto-reply (or, auto-respond) is easy enough to set up in GMail. But, we have a GSuite business account and I am wanting a particular user mailbox to always auto-respond. It currently responds only once to each new sender. I need it to always reply to senders. Basically it's a "thank you for...
  12. fredmartinmaine

    Forward extension, dealing with Voicemail

    An employee has been terminated; we forward their extension to someone else. However, if that someone else doesn't pick up, the caller is left in the terminated person's voicemail. What's the common solution for this problem with IP Office 6 ? Thanks Fred
  13. fredmartinmaine

    FileZilla Server / user setup

    I have set up a FileZilla SFTP server only once, quickly, and used local host user accounts. Pretty straight forward. Can it be set up for non-computer users? Can I set it up with FileZilla users (not computer or AD users) and give them a home folder to which non-authenticated users have...
  14. fredmartinmaine

    VBScript, XML, adding an attribute to root element

    I'm trying to create a new XML doc; for the moment just the root element. I'd like the output to look like this: <ImportInspectionsRequest xmlns="http://schemas.datacontract.org/BlahBlah_V2"> <ImportInspectionsRequest> Here's the code: Set xmlDoc = CreateObject("Microsoft.XMLDOM") Set objRoot...
  15. fredmartinmaine

    XML DOM searching/filters

    <Properties> <Property> <LocationNumber>023</LocationNumber> <BuildingNumber>001</BuildingNumber> <BldgCost>234500</BldgCost> <BldgSqFt>1200</BldgSqFt> There are one or more <Property> nodes. I'd like to work with a <Property> but only want the one with a specific location number in it. Once I...
  16. fredmartinmaine

    Closing an open objIE

    In vbscript, I've opened a web doc for the user to have as a reference, like this: Set objIE = CreateObject("InternetExplorer.Application") objIE.Navigate "C:\webpage.mht" It pops right up and my script continues on, prompting user to verify some stuff from the page. Beautiful. When I'm...
  17. fredmartinmaine

    Open .msg file in an Outlook object

    I have a need - using vbscript - to create an Outlook object and open a message currently stored in an .msg file. Spent a lot of time on the web trying to find out how to do this and although you'd think you could just create an Outloook Message object and open it in there, it seems to be a lot...
  18. fredmartinmaine

    Missing incoming messages

    We have a 3rd party email gateway, which logged inbound emails to one of our public folders as being delivered successfully to our Exchange server. However - the emails were not showing up in the public folder. We discovered fairly quickly that 'anonymous' lacked create items permission, it...
  19. fredmartinmaine

    mshta / select a file / filepath

    I found this four-line vbscript fragment online someplace: Set wShell=CreateObject("WScript.Shell") Set oExec=wShell.Exec("mshta.exe ""about:<input type=file id=FILE><script>FILE.click();new...
  20. fredmartinmaine

    Syntax error?

    I'm getting a runtime error from this code. It deals with Excel documents that either have a worksheet named "Current" or a worksheet named "QAReviewReport". I'm opening the Excel document 'src_file' read Only. That works. Then , if there is a worksheet named "Current" it activates. That...

Part and Inventory Search

Back
Top