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...
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...
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 -...
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...
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...
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)...
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...
' 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...
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...
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
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...
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
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...
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...
<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...
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...
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...
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...
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...
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...
This site uses cookies to help personalise content, tailor your experience and to keep you logged in if you register.
By continuing to use this site, you are consenting to our use of cookies.